body, html {
  margin: 0px;
  padding: 0px;
}

body * {
  box-sizing: border-box;
  font-family: "Gilroy", sans-serif;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.container {
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

header.white .outer__header > .main__header .btns > .signup {
  background-color: #FFFFFF;
  color: #101010;
}
header.white .outer__header > .main__header .btns > .signup:hover {
  border-color: #fff;
  color: #fff;
}
header.white .outer__header > .main__header .btns > .login {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transition: 0.3s ease all;
}
header.white .outer__header > .main__header .btns > .login:hover {
  background-color: #fff;
  color: #4635B1;
}
header.white .outer__header > .main__header > ul > li > a {
  color: #FFFFFF;
}
header .outer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px;
}
header .outer__header .main__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 45px;
}
header .outer__header .main__header .btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .outer__header .main__header .btns .login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: #4635B1;
  border: 2px solid #4635B1;
  border-radius: 8px;
  margin-right: 15px;
  min-width: 90px;
  transition: 0.3s ease all;
}
header .outer__header .main__header .btns .login:hover {
  background-color: #4635B1;
  color: #fff;
}
header .outer__header .main__header .btns .signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  min-width: 90px;
  font-size: 16px;
  background-color: #4635B1;
  line-height: 100%;
  font-weight: 500;
  color: #FFFFFF;
  border: 2px solid #4635B1;
  border-radius: 8px;
  margin-right: 0px;
  transition: 0.3s ease all;
}
header .outer__header .main__header .btns .signup:hover {
  background-color: transparent;
  color: #4635B1;
}
header .outer__header .main__header > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .outer__header .main__header > ul > li {
  margin-right: 48px;
}
header .outer__header .main__header > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease all;
  position: relative;
}
header .outer__header .main__header > ul > li > a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  bottom: -9px;
  width: 55px;
  background: url("../img/stick.svg");
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: center;
  opacity: 0;
  transition: 0.3s ease all;
}
header .outer__header .main__header > ul > li > a.current {
  font-weight: 800;
}
header .outer__header .main__header > ul > li > a.current:before {
  opacity: 1;
}
header .outer__header .main__header > ul > li > a:hover:before {
  opacity: 1;
}
header .outer__header .main__header > ul > li:last-child {
  margin-right: 0px;
}
header .outer__header .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .outer__header .logo > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer {
  padding-top: 80px;
  padding-bottom: 80px;
}
footer .outer__footer .top__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 80px;
}
footer .outer__footer .top__footer .menu__items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: 720px;
}
footer .outer__footer .top__footer .menu__items .menu {
  width: 100%;
}
footer .outer__footer .top__footer .menu__items .menu > p {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 150%;
  font-weight: bold;
  color: #101010;
}
footer .outer__footer .top__footer .menu__items .menu > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
footer .outer__footer .top__footer .menu__items .menu > ul > li a {
  padding: 8px 0px;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 500;
  display: block;
  transition: 0.3s ease all;
}
footer .outer__footer .top__footer .menu__items .menu > ul > li a:hover {
  color: rgba(70, 53, 177, 0.99);
}
footer .outer__footer .top__footer .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
}
footer .outer__footer .top__footer .logo > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
footer .outer__footer .top__footer .logo > p {
  margin: 0px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  color: #101010;
}
footer .outer__footer .bottom__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #DEDEDE;
}
footer .outer__footer .bottom__footer .socials ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .outer__footer .bottom__footer .socials ul > li {
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .outer__footer .bottom__footer .socials ul > li:last-child {
  margin-right: 0px;
}
footer .outer__footer .bottom__footer .socials ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .outer__footer .bottom__footer .socials ul > li > a:hover svg path {
  fill: #4635B1;
}
footer .outer__footer .bottom__footer .socials ul > li > a svg path {
  transition: 0.3s ease all;
}
footer .outer__footer .bottom__footer > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
footer .outer__footer .bottom__footer > ul > li {
  margin-right: 24px;
}
footer .outer__footer .bottom__footer > ul > li > a {
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101010;
}
footer .outer__footer .bottom__footer > ul > li:last-child {
  margin-right: 0px;
}
footer .outer__footer .bottom__footer > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101010;
}

.container__check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.container__check p {
  margin: 0px;
  margin-left: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
}

.container__check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  border: 2px solid #ADADAD;
  border-radius: 8px;
  position: relative;
}

.container__check input:checked ~ .checkmark {
  background-color: #4635B1;
  border-color: #4635B1;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container__check input:checked ~ .checkmark:after {
  display: block;
}

.container__check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  margin-left: -1.5px;
  margin-top: -1.5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form__wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
.form__wrapper .outer__form {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.form__wrapper .outer__form form {
  width: 100%;
}
.form__wrapper .outer__form form .after {
  margin-top: 24px;
  text-align: center;
}
.form__wrapper .outer__form form .after > p {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.form__wrapper .outer__form form .after > p a {
  color: #4635B1;
  text-decoration: none;
  transition: 0.3s ease all;
  font-weight: 600;
}
.form__wrapper .outer__form form .after > p a:hover {
  opacity: 0.7;
}
.form__wrapper .outer__form form .after > p:last-child {
  margin-bottom: 0px;
}
.form__wrapper .outer__form form .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form__wrapper .outer__form form .btns > a {
  display: inline-flex;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid #DEDEDE;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
  transition: 0.3s ease all;
}
.form__wrapper .outer__form form .btns > a:hover {
  background-color: #DEDEDE;
}
.form__wrapper .outer__form form .btns > a:last-child {
  margin-bottom: 0px;
}
.form__wrapper .outer__form form .btns > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.form__wrapper .outer__form form .or {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.form__wrapper .outer__form form .or > span {
  width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 1px;
  background-color: #DEDEDE;
}
.form__wrapper .outer__form form .or > p {
  margin: 0px 8px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
  letter-spacing: -0.02em;
}
.form__wrapper .outer__form form .group__submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__wrapper .outer__form form .group__submit > button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  border: 0px;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 600;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #4635B1;
  cursor: pointer;
}
.form__wrapper .outer__form form .group__submit > button:hover span {
  left: -5px;
}
.form__wrapper .outer__form form .group__submit > button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0px;
  transition: 0.3s ease all;
}
.form__wrapper .outer__form form .double__info {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: space-between;
}
.form__wrapper .outer__form form .double__info > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #4635B1;
  text-decoration: none;
  transition: 0.3s ease all;
}
.form__wrapper .outer__form form .double__info > a:hover {
  opacity: 0.7;
}
.form__wrapper .outer__form form .group__input {
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}
.form__wrapper .outer__form form .group__input > .show__hide {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  bottom: 20px;
}
.form__wrapper .outer__form form .group__input > .show__hide svg path {
  transition: 0.3s ease all;
}
.form__wrapper .outer__form form .group__input > .show__hide.active svg path {
  fill: #4635B1;
}
.form__wrapper .outer__form form .group__input > p {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.form__wrapper .outer__form form .group__input > input {
  width: 100%;
  height: 56px;
  background-color: #EDEDED;
  border-radius: 12px;
  outline: none;
  border: 0px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
}
.form__wrapper .outer__form form .group__input > input[type=password] {
  padding-right: 45px;
}
.form__wrapper .outer__form > .top {
  text-align: center;
  margin-bottom: 48px;
}
.form__wrapper .outer__form > .top > h2 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #101010;
}
.form__wrapper .outer__form > .top > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.form__wrapper .outer__form > .top > p a {
  color: #4635B1;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease all;
}
.form__wrapper .outer__form > .top > p a:hover {
  opacity: 0.7;
}

.close__menu {
  display: none;
}

.menu__btn {
  display: none;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.profile__picker {
  position: relative;
  text-align: center;
}
.profile__picker > p {
  margin-top: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
  margin-bottom: 0px;
}
.profile__picker .profile__picture {
  cursor: pointer;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
  border-radius: 250px;
  background-color: #DEDEDE;
}
.profile__picker .profile__picture:hover > p {
  bottom: 0px;
}
.profile__picker .profile__picture > p {
  pointer-events: none;
  margin: 0px;
  position: absolute;
  bottom: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 600;
  height: 52px;
  width: 100%;
  background-color: rgba(70, 53, 177, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -60px;
  transition: 0.2s ease-in-out;
}
.profile__picker .profile__picture:last-child {
  margin-bottom: 0px;
}
.profile__picker .profile__picture > img {
  display: none;
}
.profile__picker .profile__picture > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile__picker > input {
  position: absolute;
  left: -2000px;
  opacity: 0;
}

.group__dropdown {
  position: relative;
}
.group__dropdown .dropdown {
  position: absolute;
  left: 0px;
  top: 59px;
  width: 100%;
  border: 1.5px solid #C6C0E7;
  border-radius: 12px;
  background-color: #fff;
  max-height: 240px;
  z-index: 3;
  overflow-y: auto;
  padding: 10px;
}
.group__dropdown .dropdown::-webkit-scrollbar {
  width: 4px;
}
.group__dropdown .dropdown ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.group__dropdown .dropdown ul li {
  margin-bottom: 2px;
}
.group__dropdown .dropdown ul li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.3s ease all;
}
.group__dropdown .dropdown ul li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.group__dropdown .dropdown ul li:last-child {
  margin-bottom: 0px;
}
.group__dropdown .dropdown::-webkit-scrollbar-thumb {
  background-color: rgba(70, 53, 177, 0.984);
}
.group__dropdown > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  border: 1.5px solid #C6C0E7;
  border-radius: 12px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
}
.group__dropdown > a.opened > img {
  transform: rotate(180deg);
}
.group__dropdown > a > img {
  transition: 0.3s ease all;
}
.group__dropdown > a span {
  color: #101010;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 20px);
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.005em;
}

.profile__wrapper {
  padding-top: 40px;
  padding-bottom: 80px;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -6px;
  margin-left: -6px;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker > a {
  white-space: nowrap;
  margin: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 250px;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
  text-decoration: none;
  background-color: #DEDEDE;
  border-radius: 100px;
  transition: 0.3s ease all;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker > a.active {
  background-color: #4635B1;
  color: #fff;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker > a.active svg path {
  fill: #fff;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker > a svg path {
  transition: 0.3s ease all;
}
.profile__wrapper .outer__profile .right__secondary .tags__picker > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.profile__wrapper .outer__profile .right__secondary > p {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.profile__wrapper .outer__profile .profile__settings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 80px;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #C6C0E7;
}
.profile__wrapper .outer__profile .profile__settings .profile__picker {
  margin-bottom: 48px;
}
.profile__wrapper .outer__profile .profile__settings .more__details .group__input {
  margin-bottom: 24px;
  width: 100%;
}
.profile__wrapper .outer__profile .profile__settings .more__details .group__input:last-child {
  margin-bottom: 0px;
}
.profile__wrapper .outer__profile .profile__settings .more__details .group__input .date {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
}
.profile__wrapper .outer__profile .profile__settings .more__details .group__input > p {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.profile__wrapper .outer__profile .profile__settings .more__details .group__input > input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #EDEDED;
  outline: none;
  border: 0px;
  outilne: none;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.profile__wrapper .outer__profile .controls {
  display: flex;
  margin-top: 32px;
  justify-content: flex-end;
}
.profile__wrapper .outer__profile .controls > .skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #4635B1;
  margin-right: 40px;
}
.profile__wrapper .outer__profile .controls > .save {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 240px;
  min-height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #4635B1;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.profile__wrapper .outer__profile .controls > .save span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0px;
  transition: 0.3s ease all;
}
.profile__wrapper .outer__profile .controls > .save:hover span {
  left: -5px;
}
.profile__wrapper .outer__profile .head {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  align-items: flex-start;
}
.profile__wrapper .outer__profile .head > p {
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.profile__wrapper .outer__profile .head > h2 {
  margin-top: 0px;
  margin-bottom: 7px;
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.profile__wrapper .outer__profile .head > h2 span {
  color: #4635B1;
  font-weight: 600;
}

.add__another {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 24px;
  margin-bottom: 24px;
}
.add__another > .another-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #4635B1;
  text-decoration: none;
  transition: 0.3s ease all;
}
.add__another > .another-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.add__another > .another-btn:hover {
  opacity: 0.7;
}
.add__another .all__done {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  background-color: #4635B1;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  color: #FFFFFF;
  min-height: 56px;
}
.add__another .all__done:hover span {
  left: -5px;
}
.add__another .all__done span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.add__another .all__done span:hover {
  opacity: 0.7;
}

.profiles__list {
  margin-bottom: 24px;
}
.profiles__list .elem {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.profiles__list .elem > .btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.profiles__list .elem > .btns > a {
  margin-right: 40px;
}
.profiles__list .elem > .btns > a.edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 40px;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
  border: 1.5px solid #4635B1;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #4635B1;
  font-weight: 500;
  transition: 0.3s ease all;
}
.profiles__list .elem > .btns > a.edit:hover {
  background-color: #4635B1;
  color: #fff;
}
.profiles__list .elem > .btns > a.delete {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #E13939;
  text-decoration: none;
  transition: 0.3s ease all;
}
.profiles__list .elem > .btns > a.delete:hover {
  opacity: 0.7;
}
.profiles__list .elem > .btns > a:last-child {
  margin-right: 0px;
}
.profiles__list .elem > .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.profiles__list .elem > .info > h6 {
  margin: 0px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #101010;
}
.profiles__list .elem > .info > span {
  display: inline-flex;
  align-items: center;
  margin-right: 24px;
  justify-content: center;
}
.profiles__list .elem > .info > span img {
  min-width: 64px;
  max-width: 64px;
  min-height: 64px;
  max-height: 64px;
  border-radius: 250px;
  object-fit: cover;
}
.profiles__list .elem:last-child {
  margin-bottom: 0px;
}

.float__info + header.absolute {
  top: 50px;
}

header.absolute {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.hero__section {
  overflow: hidden;
  background-color: #4635B1;
  padding-top: 90px;
  padding-bottom: 110px;
}
.hero__section.middle {
  padding-top: 125px;
  padding-bottom: 125px;
}
.hero__section .outer__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero__section .outer__hero.center {
  align-items: center;
}
.hero__section .outer__hero .media {
  position: relative;
}
.hero__section .outer__hero .media span.float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 33px;
  right: -45px;
  position: absolute;
}
.hero__section .outer__hero .media > img {
  max-width: 490px;
}
.hero__section .outer__hero .desc {
  max-width: 640px;
  width: 100%;
  position: relative;
}
.hero__section .outer__hero .desc > .icons {
  position: absolute;
  right: 0px;
  top: auto;
  pointer-events: none;
  bottom: -100px;
}
.hero__section .outer__hero .desc .btn__part {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__section .outer__hero .desc .btn__part .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__section .outer__hero .desc .btn__part .desc > p {
  margin-top: 0px;
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 600;
}
.hero__section .outer__hero .desc .btn__part .desc > span {
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  font-weight: 500;
}
.hero__section .outer__hero .desc .btn__part .review {
  margin-right: 16px;
}
.hero__section .outer__hero .desc .btn__part .review ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__section .outer__hero .desc .btn__part .review ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 250px;
  border: 1px solid #FFFBCA;
  margin-right: -12px;
  flex-direction: column;
  background-color: #101010;
  font-size: 10px;
  line-height: 12px;
  color: #FFFFFF;
  font-weight: 500;
}
.hero__section .outer__hero .desc .btn__part .review ul li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__section .outer__hero .desc .btn__part .review ul li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__section .outer__hero .desc .btn__part .review ul li > span img {
  min-width: 10px;
  max-width: 10px;
  margin-bottom: 2px;
}
.hero__section .outer__hero .desc .btn__part .review ul li:last-child {
  margin-right: 0px;
}
.hero__section .outer__hero .desc .btn__part .review ul li img {
  max-width: 100%;
}
.hero__section .outer__hero .desc .btn__part > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  min-width: 200px;
  min-height: 56px;
  border-radius: 12px;
  background-color: #FFFFFF;
  padding-left: 24px;
  margin-right: 24px;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
  padding-right: 24px;
}
.hero__section .outer__hero .desc .btn__part > a span {
  transition: 0.3s ease all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0px;
}
.hero__section .outer__hero .desc .btn__part > a:hover span {
  right: 15px;
}
.hero__section .outer__hero .desc > p {
  margin: 0px;
  font-size: 20px;
  line-height: 130%;
  font-weight: 500;
  color: #D3D3D3;
}
.hero__section .outer__hero .desc > h1 {
  margin: 0px;
  font-size: 72px;
  margin-bottom: 84px;
  line-height: 76px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__section .outer__hero .desc > h1.nospace {
  margin-bottom: 24px;
}
.hero__section .outer__hero .desc > h1 .slash__orange {
  position: relative;
}
.hero__section .outer__hero .desc > h1 .slash__orange img {
  position: absolute;
  top: -30px;
  right: -43px;
}
.hero__section .outer__hero .desc > h1 span {
  color: #F5B323;
}
.hero__section .outer__hero .desc > h1 span.colored {
  position: relative;
}
.hero__section .outer__hero .desc > h1 span.colored img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  bottom: -20px;
}
.hero__section .outer__hero .desc > img {
  position: absolute;
  top: -50px;
  right: 30px;
}

.float__info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 15px;
  position: relative;
  background-color: #101010;
}
.float__info > a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
}
.float__info > p {
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0px;
}
.float__info > p span {
  color: #F5DA6A;
}

.stats__wrapper {
  padding: 60px 0px;
}
.stats__wrapper .outer__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stats__wrapper .outer__stats .grid {
  width: 100%;
  max-width: 740px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stats__wrapper .outer__stats .grid > .elem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stats__wrapper .outer__stats .grid > .elem > span {
  display: block;
  font-size: 40px;
  line-height: 48px;
  color: #101010;
  font-weight: 600;
}
.stats__wrapper .outer__stats .grid > .elem > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #8B8B8B;
  font-weight: 600;
}
.stats__wrapper .outer__stats > h2 {
  font-size: 48px;
  line-height: 54px;
  color: #101010;
  font-weight: 600;
  margin: 0px;
  max-width: 440px;
  letter-spacing: -0.01em;
}

.learn__wrapper {
  padding: 80px 0px;
}
.learn__wrapper .outer__learn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.learn__wrapper .outer__learn > img {
  position: absolute;
  top: -150px;
  pointer-events: none;
  left: -100px;
}
.learn__wrapper .outer__learn .grid {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.learn__wrapper .outer__learn .grid > .elem {
  display: block;
  border-radius: 16px;
  background-color: #EDEDED;
  border: 2px solid #EAEAEA;
  padding: 24px;
  text-decoration: none;
  transition: 0.3s ease all;
}
.learn__wrapper .outer__learn .grid > .elem:hover {
  border-color: #EAEAEA;
  background-color: #4635B1;
}
.learn__wrapper .outer__learn .grid > .elem:hover .top > p {
  border-color: #8378CB;
  background-color: #fff;
}
.learn__wrapper .outer__learn .grid > .elem:hover .top > p svg path {
  fill: #4635B1;
}
.learn__wrapper .outer__learn .grid > .elem:hover .content > p {
  color: #FFFFFF;
}
.learn__wrapper .outer__learn .grid > .elem:hover .content > span {
  color: #FFFFFF;
}
.learn__wrapper .outer__learn .grid > .elem .content {
  display: block;
}
.learn__wrapper .outer__learn .grid > .elem .content > span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
  transition: 0.3s ease all;
}
.learn__wrapper .outer__learn .grid > .elem .content > p {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
  transition: 0.3s ease all;
}
.learn__wrapper .outer__learn .grid > .elem > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.learn__wrapper .outer__learn .grid > .elem > .top > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.learn__wrapper .outer__learn .grid > .elem > .top > p {
  margin: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  border: 2px solid #8378CB;
  border-radius: 250px;
  transition: 0.3s ease all;
}
.learn__wrapper .outer__learn .grid > .elem > .top > p svg path {
  transition: 0.3s ease all;
}
.learn__wrapper .outer__learn > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #8B8B8B;
}
.learn__wrapper .outer__learn > h2 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 56px;
  color: #101010;
  font-weight: 600;
  position: relative;
}
.learn__wrapper .outer__learn > h2 > img {
  position: absolute;
  top: -30px;
  right: -180px;
}

.our__classes {
  padding: 80px 0px;
  background-color: #F8F8F8;
  position: relative;
}
.our__classes .outer__classes .grid__classes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.our__classes .outer__classes .grid__classes > .elem {
  padding: 24px;
  background-color: #EDEDED;
  border-radius: 16px;
}
.our__classes .outer__classes .grid__classes > .elem .desc > p {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 12px;
  background-color: #4635B1;
  padding-left: 24px;
  padding-right: 24px;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 600;
  transition: 0.3s ease all;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > a:hover span {
  left: -8px;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > a span {
  transition: 0.3s ease all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
  left: 0px;
  position: relative;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > a span svg path {
  fill: #fff;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > .price {
  display: inline-flex;
  flex-direction: column;
  margin-right: 24px;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > .price > span {
  margin-bottom: 4px;
  display: inline-flex;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
  font-weight: 500;
}
.our__classes .outer__classes .grid__classes > .elem .desc .bottom > .price > p {
  margin: 0px;
  font-size: 24px;
  line-height: 32px;
  color: #21A400;
  font-weight: 600;
}
.our__classes .outer__classes .grid__classes > .elem .desc .double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.our__classes .outer__classes .grid__classes > .elem .desc .double > .el {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.our__classes .outer__classes .grid__classes > .elem .desc .double > .el > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
}
.our__classes .outer__classes .grid__classes > .elem .desc .double > .el > span {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
  font-weight: 500;
}
.our__classes .outer__classes .grid__classes > .elem .media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part {
  position: absolute;
  top: 17px;
  left: 16px;
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0px;
  background-color: #FFFFFF;
  border-radius: 100px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .left > .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 100px;
  margin-right: 16px;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 600;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .left > .tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .heart > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  background-color: #FFFFFF;
  border-radius: 250px;
}
/* Favorite heart icon styles */
.our__classes .outer__classes .grid__classes > .elem .media .top__part .heart .heart-icon.favorited path,
.detail__class .outer__details .double .side__box .side .top .heart svg.favorited path {
  fill: #FF0000 !important;
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part .heart .heart-icon,
.detail__class .outer__details .double .side__box .side .top .heart svg {
  transition: all 0.3s ease;
}
.our__classes .outer__classes .grid__classes > .elem .media img {
  max-width: 100%;
  border-radius: 12px;
}
.our__classes .outer__classes .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.our__classes .outer__classes .btn > a {
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 22px;
  color: #4635B1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  border: 2px solid #4635B1;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease all;
}
.our__classes .outer__classes .btn > a:hover {
  background-color: #4635B1;
  color: #fff;
}
.our__classes .outer__classes .btn > a:hover span svg path {
  fill: #fff;
}
.our__classes .outer__classes .btn > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}
.our__classes .outer__classes .btn > a span svg path {
  transition: 0.3s ease all;
}
.our__classes .outer__classes > p {
  text-align: center;
  font-size: 16px;
  line-height: 120%;
  color: #8B8B8B;
  font-weight: 500;
  margin-bottom: 80px;
}
.our__classes .outer__classes > h2 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.our__classes .outer__classes > h2 span {
  color: #4635B1;
}
.our__classes > img {
  position: absolute;
  top: 0px;
  right: 0px;
  pointer-events: none;
}

.our__classes.transparent {
  background-color: transparent;
}

.tutors__wrapper {
  padding: 60px 0px;
  overflow-x: hidden;
}
.tutors__wrapper .slick-prev {
  z-index: 2;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  background: url("../img/prevarrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.tutors__wrapper .slick-prev:before {
  content: "";
}
.tutors__wrapper .slick-next {
  z-index: 3;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  background: url("../img/nextarrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: 12%;
}
.tutors__wrapper .slick-next:before {
  content: "";
}
.tutors__wrapper .outer__tutors {
  position: relative;
}
.tutors__wrapper .outer__tutors .slider .slick-list {
  padding: 0 20% 0 0;
}
.tutors__wrapper .outer__tutors .slider .slick-slide {
  margin: 0 8px;
}
.tutors__wrapper .outer__tutors .slider .slick-list {
  margin: 0 -8px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn {
  height: 560px;
  position: relative;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  justify-content: flex-end;
  flex-direction: column;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .rate {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .rate span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  min-height: 40px;
  border-radius: 100px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .rate span img {
  margin-right: 9px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn > span {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn > span svg {
  width: 100%;
  height: auto;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc {
  padding: 16px;
  width: 100%;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  grid-row-gap: 24px;
  position: relative;
  z-index: 2;
  padding: 16px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > p {
  margin: 0px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #101010;
  font-weight: 600;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > p.gray {
  color: #767676;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > p.gray span {
  color: #21A400;
  font-weight: 600;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > span {
  display: inline-flex;
  font-size: 16px;
  line-height: 100%;
  color: #767676;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top > p {
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top .right > p {
  margin: 0px;
  font-size: 16px;
  line-height: 20px;
  color: #8B8B8B;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top .right > span {
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .media {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  height: calc(100% - 32px);
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .media img {
  max-height: 100%;
}
.tutors__wrapper .outer__tutors .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.tutors__wrapper .outer__tutors .head > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.tutors__wrapper .outer__tutors .head > h2 {
  position: relative;
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.tutors__wrapper .outer__tutors .head > h2 .left__slash {
  position: absolute;
  left: -52px;
  top: -30px;
}
.tutors__wrapper .outer__tutors .head > h2 .slashesright {
  position: absolute;
  right: -52px;
  top: -30px;
}
.tutors__wrapper .outer__tutors .head > h2 span {
  color: #4635B1;
}
.tutors__wrapper .outer__tutors > img {
  position: absolute;
  top: -100px;
  left: -40px;
}

.feedback__wrapper {
  overflow: hidden;
  padding: 80px 0px;
}
.feedback__wrapper .outer__feedback .controls__feedback {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}
.feedback__wrapper .outer__feedback .controls__feedback > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: 0.3s ease all;
}
.feedback__wrapper .outer__feedback .controls__feedback > a:hover {
  opacity: 0.7;
}
.feedback__wrapper .outer__feedback .controls__feedback > a:last-child {
  margin-right: 0px;
}
.feedback__wrapper .outer__feedback .inner .slick-slide {
  margin: 0 9px;
}
.feedback__wrapper .outer__feedback .inner .slick-list {
  margin: 0 -9px;
  padding: 0px 10% 0px 0px;
}
.feedback__wrapper .outer__feedback .inner .slick-track {
  display: flex !important;
}
.feedback__wrapper .outer__feedback .inner .slick-slide {
  height: inherit !important;
}
.feedback__wrapper .outer__feedback .inner .elem {
  padding: 24px;
  background-color: #EDEDED;
  border-radius: 20px;
  position: relative;
  padding-bottom: 60px;
}
.feedback__wrapper .outer__feedback .inner .elem > .desc > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #8B8B8B;
}
.feedback__wrapper .outer__feedback .inner .elem > .desc ul {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  margin-top: 24px;
  justify-content: flex-start;
}
.feedback__wrapper .outer__feedback .inner .elem > .desc ul > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.feedback__wrapper .outer__feedback .inner .elem > .desc ul > li:last-child {
  margin-right: 0px;
}
.feedback__wrapper .outer__feedback .inner .elem .top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feedback__wrapper .outer__feedback .inner .elem .top .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feedback__wrapper .outer__feedback .inner .elem .top .desc > p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.feedback__wrapper .outer__feedback .inner .elem .top .desc > span {
  font-size: 16px;
  line-height: 20px;
  color: #767676;
  font-weight: 600;
}
.feedback__wrapper .outer__feedback .inner .elem .top .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 34px;
}
.feedback__wrapper .outer__feedback .inner .elem .top .media img {
  min-width: 64px;
  max-width: 64px;
}
.feedback__wrapper .outer__feedback > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.feedback__wrapper .outer__feedback > .top > h2 {
  margin: 0px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #101010;
}
.feedback__wrapper .outer__feedback > .top > p {
  margin: 0px;
  max-width: 310px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #8B8B8B;
}

.cta__wrapper .outer__cta {
  padding: 50px 40px;
  background: url("../img/ctaback.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #4635B1;
  border-radius: 24px;
  text-align: center;
}
.cta__wrapper .outer__cta .after {
  margin-top: 48px;
}
.cta__wrapper .outer__cta .after > p {
  margin: 0px;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
}
.cta__wrapper .outer__cta .after > p a {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: underline;
}
.cta__wrapper .outer__cta form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 532px;
  margin-left: auto;
  margin-right: auto;
}
.cta__wrapper .outer__cta form .group__submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__wrapper .outer__cta form .group__submit button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 56px;
  border-radius: 12px;
  background-color: #FFFFFF;
  cursor: pointer;
  outline: none;
  border: 0px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  color: #101010;
  line-height: 100%;
  font-weight: 600;
}
.cta__wrapper .outer__cta form .group__submit button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0px;
  transition: 0.3s ease all;
}
.cta__wrapper .outer__cta form .group__submit button:hover span {
  left: -10px;
}
.cta__wrapper .outer__cta form .group__input {
  width: 100%;
  margin-right: 12px;
}
.cta__wrapper .outer__cta form .group__input input {
  background-color: #9086D0;
  border-radius: 8px;
  outline: none;
  border: 0px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  line-height: 24px;
  height: 56px;
  font-weight: 500;
  width: 100%;
}
.cta__wrapper .outer__cta form .group__input input::-webkit-input-placeholder {
  color: #D7D3F2;
}
.cta__wrapper .outer__cta form .group__input input::-moz-placeholder {
  color: #D7D3F2;
}
.cta__wrapper .outer__cta form .group__input input:-ms-input-placeholder {
  color: #D7D3F2;
}
.cta__wrapper .outer__cta form .group__input input:-moz-placeholder {
  color: #D7D3F2;
}
.cta__wrapper .outer__cta > .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.cta__wrapper .outer__cta > .top > h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 48px;
  line-height: 150%;
  font-weight: 600;
  color: #FFFFFF;
}
.cta__wrapper .outer__cta > .top > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #FFFFFF;
}

.go__up {
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
}
.go__up.active {
  opacity: 1;
  pointer-events: initial;
}
.go__up > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  z-index: 3;
  border-radius: 16px;
  background-color: #4635B1;
  border: 2px solid #fff;
  transition: 0.3s ease all;
}
.go__up > a:hover {
  transform: translateY(-4px);
}
.go__up > a img {
  position: relative;
}

.pagination {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
}
.pagination > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
}
.pagination > a:hover {
  opacity: 0.7;
}
.pagination ul {
  margin: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding: 0px;
}
.pagination ul li {
  margin-right: 4px;
}
.pagination ul li:last-child {
  margin-right: 0px;
}
.pagination ul li.dots {
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  font-size: 20px;
  line-height: 24px;
  color: #767676;
  font-weight: 500;
  text-decoration: none;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease all;
}
.pagination ul li a:hover {
  color: #4635B1;
  border-color: #4635B1;
}
.pagination ul li a.current {
  color: #4635B1;
  border-color: #4635B1;
}

.top__form {
  margin-bottom: 48px;
}
.top__form .top__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DEDEDE;
}
.top__form .top__info form {
  width: 100%;
  max-width: 320px;
}
.top__form .top__info form .group__input {
  width: 100%;
  position: relative;
}
.top__form .top__info form .group__input button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0px;
  cursor: pointer;
  outline: none;
}
.top__form .top__info form .group__input > input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #EDEDED;
  outline: none;
  border: 0px;
  padding-left: 16px;
  padding-right: 45px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.top__form .top__info > .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top__form .top__info > .left > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.top__form .top__info > .left > h2 {
  margin-top: 0px;
  font-size: 48px;
  line-height: 100%;
  color: #101010;
  font-weight: 600;
  margin-bottom: 12px;
}

.form__fields .grid {
  display: grid;
  grid-column-gap: 24px;
}
.form__fields .grid .group__dropdown .dropdown {
  top: 92px;
}
.form__fields .grid .group__dropdown > p {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
  letter-spacing: -0.02em;
}
.form__fields .grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.form__fields .grid.triple {
  grid-template-columns: repeat(3, 1fr);
}

.tutor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -120px;
}

.tutors__wrapper.no__slider {
  padding: 0px;
}
.tutors__wrapper.no__slider .slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.detail__class {
  padding-top: 105px;
  padding-bottom: 80px;
}
.detail__class .outer__details .double {
  display: flex;
  justify-content: space-between;
}
.detail__class .outer__details .double .main__part {
  width: calc(100% - 480px);
}
.detail__class .outer__details .double .main__part .tutor__box {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.detail__class .outer__details .double .main__part .tutor__box .description {
  margin-top: 40px;
  margin-bottom: 24px;
}
.detail__class .outer__details .double .main__part .tutor__box .info .years {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.detail__class .outer__details .double .main__part .tutor__box .info .years:last-child {
  margin-bottom: 0px;
}
.detail__class .outer__details .double .main__part .tutor__box .info .years .desc > span {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #101010;
  font-weight: 400;
}
.detail__class .outer__details .double .main__part .tutor__box .info .years .desc > p {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #101010;
}
.detail__class .outer__details .double .main__part .tutor__box .info .years > span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 100px;
  margin-right: 24px;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #101010;
  font-weight: 400;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part .left > span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #767676;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part .left > p {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #4635B1;
  font-weight: 600;
  margin-bottom: 12px;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part .left > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part .left > .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part .left > .media img {
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 100px;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part > .right > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-left: 24px;
  padding-right: 24px;
  width: 240px;
  background-color: #4635B1;
  border-radius: 8px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part > .right > a:hover span {
  left: -5px;
}
.detail__class .outer__details .double .main__part .tutor__box .top__part > .right > a span {
  left: 0px;
  transition: 0.3s ease all;
  position: relative;
}
.detail__class .outer__details .double .main__part .curriculum__wrapper {
  margin-top: 48px;
}
.detail__class .outer__details .double .main__part .curriculum__wrapper > h6 {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 100%;
}
.detail__class .outer__details .double .main__part .boxes .box {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.detail__class .outer__details .double .main__part .boxes .box .right {
  width: 100%;
  max-width: 160px;
}
.detail__class .outer__details .double .main__part .boxes .box .right > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0px 24px;
  background-color: #4635B1;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.detail__class .outer__details .double .main__part .boxes .box .right > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.detail__class .outer__details .double .main__part .boxes .box .right > a:hover span {
  left: -6px;
}
.detail__class .outer__details .double .main__part .boxes .box .right > p {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.detail__class .outer__details .double .main__part .boxes .box .info {
  width: 100%;
  margin-right: 24px;
}
.detail__class .outer__details .double .main__part .boxes .box .info .show__more > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #4635B1;
  font-weight: 600;
  text-decoration: none;
}
.detail__class .outer__details .double .main__part .boxes .box .info .show__more > a.opened > span {
  transform: rotate(180deg);
}
.detail__class .outer__details .double .main__part .boxes .box .info .show__more > a span {
  display: inline-flex;
  margin-left: 5px;
  transition: 0.3s ease all;
}
.detail__class .outer__details .double .main__part .boxes .box .info .show__more > a span.show {
  margin-left: 0px;
}
.detail__class .outer__details .double .main__part .boxes .box .info .show__more > a p {
  margin: 0px;
}
.detail__class .outer__details .double .main__part .boxes .box .info > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 48px;
  margin-top: 24px;
  margin-bottom: 24px;
  grid-row-gap: 16px;
}
.detail__class .outer__details .double .main__part .boxes .box .info > ul > li {
  display: none;
}
.detail__class .outer__details .double .main__part .boxes .box .info > ul > li:nth-child(1), .detail__class .outer__details .double .main__part .boxes .box .info > ul > li:nth-child(2) {
  display: block !important;
}
.detail__class .outer__details .double .main__part .boxes .box .info > ul > li > span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: #767676;
  margin-bottom: 6px;
  display: inline-flex;
}
.detail__class .outer__details .double .main__part .boxes .box .info > ul > li > p {
  margin: 0px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.detail__class .outer__details .double .main__part .boxes .box .info > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #6B6B6B;
}
.detail__class .outer__details .double .main__part .boxes .box .info > h2 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.detail__class .outer__details .double .main__part .boxes .box:last-child {
  margin-bottom: 0px;
}
.detail__class .outer__details .double .main__part .description {
  margin-bottom: 48px;
}
.detail__class .outer__details .double .main__part .description .included {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.detail__class .outer__details .double .main__part .description .included > .el {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 24px;
}
.detail__class .outer__details .double .main__part .description .included > .el > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 250px;
  background-color: #EDEDED;
  margin-right: 24px;
}
.detail__class .outer__details .double .main__part .description .included > .el .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__class .outer__details .double .main__part .description .included > .el .desc > p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #101010;
}
.detail__class .outer__details .double .main__part .description .included > .el .desc > span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #767676;
}
.detail__class .outer__details .double .main__part .description > h6 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 100%;
  color: #101010;
  font-weight: 600;
}
.detail__class .outer__details .double .main__part .description > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  color: #767676;
  font-weight: 400;
}
.detail__class .outer__details .double .main__part .description > p.opened span {
  -webkit-line-clamp: 80;
}
.detail__class .outer__details .double .main__part .description > p span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.detail__class .outer__details .double .main__part .description > p a {
  font-weight: 600;
  color: #4635B1;
  text-decoration: none;
}
.detail__class .outer__details .double .main__part > h1 {
  margin-top: 0px;
  margin-bottom: 48px;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
  letter-spacing: -0.02em;
}
.detail__class .outer__details .double .main__part .image {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  justify-content: center;
}
.detail__class .outer__details .double .main__part .image > img {
  max-width: 100%;
  border-radius: 16px;
}
.detail__class .outer__details .double .side__box {
  min-width: 400px;
  max-width: 400px;
}
.detail__class .outer__details .double .side__box .side {
  position: sticky;
  top: 30px;
  left: 0px;
  width: 100%;
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.detail__class .outer__details .double .side__box .side .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
.detail__class .outer__details .double .side__box .side .btns > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.detail__class .outer__details .double .side__box .side .btns > a.book__now {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  background-color: #4635B1;
  border-radius: 12px;
  text-decoration: none;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 600;
}
.detail__class .outer__details .double .side__box .side .btns > a.book__now span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.detail__class .outer__details .double .side__box .side .btns > a.book__now:hover span {
  left: -8px;
}
.detail__class .outer__details .double .side__box .side .btns > a.available {
  margin-bottom: 16px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid #4635B1;
  text-decoration: none;
  font-size: 16px;
  line-height: 100%;
  padding-left: 24px;
  transition: 0.3s ease all;
  padding-right: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #4635B1;
}
.detail__class .outer__details .double .side__box .side .btns > a.available svg path {
  transition: 0.3s ease all;
}
.detail__class .outer__details .double .side__box .side .btns > a.available:hover {
  background-color: #4635B1;
  color: #fff;
}
.detail__class .outer__details .double .side__box .side .btns > a.available:hover svg path {
  fill: #fff;
}
.detail__class .outer__details .double .side__box .side > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}
.detail__class .outer__details .double .side__box .side > ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__class .outer__details .double .side__box .side > ul li > span {
  display: inline-flex;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #767676;
  font-weight: 500;
}
.detail__class .outer__details .double .side__box .side > ul li > p {
  margin: 0px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.detail__class .outer__details .double .side__box .side .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.detail__class .outer__details .double .side__box .side .top .heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detail__class .outer__details .double .side__box .side .top .heart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 250px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
}
.detail__class .outer__details .double .side__box .side .top .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__class .outer__details .double .side__box .side .top .price > span {
  display: inline-flex;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 23px;
  color: #767676;
  font-weight: 500;
}
.detail__class .outer__details .double .side__box .side .top .price > h2 {
  margin: 0px;
  font-size: 40px;
  color: #21A400;
  line-height: 100%;
  font-weight: 600;
}
.detail__class .outer__details > .back {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
}
.detail__class .outer__details > .back > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #4635B1;
  font-weight: 600;
}
.detail__class .outer__details > .back > a img {
  margin-right: 8px;
}

.curriculum__wrapper > h6 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 25px;
  color: #101010;
  font-weight: 600;
}
.curriculum__wrapper .list {
  width: 100%;
}
.curriculum__wrapper .list > .elem {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  padding: 24px;
}
.curriculum__wrapper .list > .elem.opened .head > span {
  transform: rotate(180deg);
}
.curriculum__wrapper .list > .elem.opened .head > p {
  color: #4635B1;
}
.curriculum__wrapper .list > .elem .content {
  margin-top: 24px;
}
.curriculum__wrapper .list > .elem .content > p {
  margin: 0px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #6D6D6D;
}
.curriculum__wrapper .list > .elem .content > p:last-child {
  margin-bottom: 0px;
}
.curriculum__wrapper .list > .elem .content .files__list {
  margin-top: 24px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right .progress {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right .progress > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right .progress > .bar {
  width: 160px;
  height: 4px;
  position: relative;
  border-radius: 250px;
  background-color: rgba(49, 67, 98, 0.1);
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right .progress > .bar .active {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background-color: #6B5DC1;
  border-radius: 250px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right .progress > p {
  margin: 0px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  color: #4635B1;
  margin-left: 12px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  background-color: #4635B1;
  border-radius: 8px;
  transition: 0.3s ease all;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .right > a:hover {
  background-color: #4532be;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left .desc > p {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #222222;
  font-weight: 600;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left .desc > span {
  display: block;
  color: #B0ADAD;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.curriculum__wrapper .list > .elem .content .files__list .elem .left > span > img {
  min-width: 32px;
  max-width: 32px;
}
.curriculum__wrapper .list > .elem .head {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}
.curriculum__wrapper .list > .elem .head > span {
  display: inline-flex;
  transition: 0.3s ease all;
  align-items: center;
  justify-content: center;
}
.curriculum__wrapper .list > .elem .head > p {
  margin: 0px;
  margin-right: 12px;
  transition: 0.3s ease all;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.curriculum__wrapper .list > .elem:last-child {
  margin-bottom: 0px;
}

.curriculum__wrapper .list > .elem .content .files__list .elem .left {
  margin-right: 15px;
}

.our__classes.smaller {
  padding: 0px;
}
.our__classes.list .outer__classes > p {
  text-align: left;
  margin-bottom: 24px;
  margin-top: 0px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}

.detail__teacher {
  padding-top: 105px;
}
.detail__teacher .outer__teacher {
  display: flex;
  justify-content: space-between;
}
.detail__teacher .outer__teacher .teacher__main {
  width: calc(100% - 480px);
}
.detail__teacher .outer__teacher .teacher__main .curriculum__wrapper {
  width: 100%;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description {
  margin-bottom: 48px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 24px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 250px;
  background-color: #EDEDED;
  margin-right: 24px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el .desc > p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #101010;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el .desc > span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #767676;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description > h6 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 100%;
  color: #101010;
  font-weight: 600;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  color: #767676;
  font-weight: 400;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description > p.opened span {
  -webkit-line-clamp: 80;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description > p span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info .description > p a {
  font-weight: 600;
  color: #4635B1;
  text-decoration: none;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > .description {
  margin-bottom: 40px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > span {
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #767676;
  margin-bottom: 40px;
  font-weight: 400;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > p {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
  color: #4635B1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.detail__teacher .outer__teacher .teacher__main .teacher__main__info > .media img {
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
  border-radius: 250px;
  object-fit: cover;
}
.detail__teacher .outer__teacher .teacher__side {
  min-width: 400px;
  max-width: 400px;
}
.detail__teacher .outer__teacher .teacher__side .book__box {
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  min-height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  min-width: 160px;
  background-color: #4635B1;
  border-radius: 12px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #FFFFFF;
  width: 100%;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > a:hover span {
  left: -5px;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > .left > span {
  display: inline-flex;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #767676;
  font-weight: 500;
}
.detail__teacher .outer__teacher .teacher__side .book__box .price > .left > p {
  margin: 0px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
  color: #21A400;
  margin-top: 6px;
}
.detail__teacher .outer__teacher .teacher__side .book__box > h6 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
  letter-spacing: -0.02em;
}
.detail__teacher .outer__teacher .teacher__side .inner {
  position: sticky;
  top: 0px;
}
.detail__teacher .outer__teacher .teacher__side .inner > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  border-radius: 12px;
  background-color: #4635B1;
  text-decoration: none;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  font-weight: 600;
}
.detail__teacher .outer__teacher .teacher__side .inner > a:hover span {
  left: -6px;
}
.detail__teacher .outer__teacher .teacher__side .inner > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0px;
  transition: 0.3s ease all;
}
.detail__teacher .outer__teacher .teacher__side .inner .video {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 16px;
}
.detail__teacher .outer__teacher .teacher__side .inner .video > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.3s ease all;
  transform: translate(-50%, -50%);
}
.detail__teacher .outer__teacher .teacher__side .inner .video > a:hover {
  opacity: 0.7;
}
.detail__teacher .outer__teacher .teacher__side .inner .video > img {
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail__teacher .back {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
}
.detail__teacher .back > a {
  text-decoration: none;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.detail__teacher .back > a > img {
  margin-right: 8px;
}

.reviews__box {
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  margin-top: 48px;
}
.reviews__box .reviews__cont .elem .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.reviews__box .reviews__cont .elem .el {
  padding: 24px;
  background-color: #EDEDED;
  border-radius: 20px;
  padding-bottom: 64px;
  position: relative;
}
.reviews__box .reviews__cont .elem .el > .desc {
  margin-top: 24px;
}
.reviews__box .reviews__cont .elem .el > .desc > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #8B8B8B;
}
.reviews__box .reviews__cont .elem .el > .desc ul {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.reviews__box .reviews__cont .elem .el > .desc ul > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.reviews__box .reviews__cont .elem .el > .desc ul > li:last-child {
  margin-right: 0px;
}
.reviews__box .reviews__cont .elem .el .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.reviews__box .reviews__cont .elem .el .top .desc > p {
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
  margin-bottom: 4px;
}
.reviews__box .reviews__cont .elem .el .top .desc > span {
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #767676;
}
.reviews__box .reviews__cont .elem .el .top .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
.reviews__box .reviews__cont .elem .el .top .media img {
  min-width: 64px;
  max-width: 64px;
  min-height: 64px;
  max-height: 64px;
  object-fit: cover;
  border-radius: 50%;
}
.reviews__box > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 42px;
}
.reviews__box > ul > li {
  margin-right: 24px;
}
.reviews__box > ul > li > a {
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #767676;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease all;
}
.reviews__box > ul > li > a:before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  bottom: -15px;
  height: 12px;
  background: url("../img/reviewsstick.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: 0.3s ease all;
}
.reviews__box > ul > li > a:hover {
  color: #101010;
}
.reviews__box > ul > li > a.current {
  color: #101010;
}
.reviews__box > ul > li > a.current:before {
  opacity: 1;
}
.reviews__box > ul > li:last-child {
  margin-right: 0px;
}
.reviews__box .head {
  margin-bottom: 24px;
}
.reviews__box .head > p {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.reviews__box .head > p > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 250px;
  background-color: #EDEDED;
  margin-right: 24px;
}

.schedule__box {
  width: 100%;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.schedule__box .schedule__plates {
  width: 100%;
  border-top: 1px solid #DEDEDE;
  display: flex;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: auto;
}
.schedule__box .schedule__plates::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.schedule__box .schedule__plates::-webkit-scrollbar-thumb {
  background-color: rgba(70, 53, 177, 0.984);
}
.schedule__box .schedule__plates > .row {
  min-width: 170px;
  max-height: 440px;
  width: 100%;
  display: block;
  margin: 0px;
}
.schedule__box .schedule__plates > .row:last-child .head {
  border-right: 0px;
}
.schedule__box .schedule__plates > .row .content {
  height: calc(100% - 56px);
  padding: 16px;
  border-right: 1px solid #DEDEDE;
}
.schedule__box .schedule__plates > .row .content > .elem {
  padding: 12px;
  border: 1px solid #B771E5;
  border-radius: 8px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.schedule__box .schedule__plates > .row .content > .elem .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.schedule__box .schedule__plates > .row .content > .elem .desc > p {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 120%;
  font-weight: 500;
  color: #101010;
}
.schedule__box .schedule__plates > .row .content > .elem .desc > span {
  font-size: 12px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.schedule__box .schedule__plates > .row .content > .elem > span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 250px;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  font-weight: 600;
}
.schedule__box .schedule__plates > .row .content > .elem > span > img {
  margin-right: 8px;
}
.schedule__box .schedule__plates > .row:last-child .content {
  border-right: 0px;
}
.schedule__box .schedule__plates > .row .head {
  position: sticky;
  top: 0px;
  display: flex;
  height: 80px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #EDEDED;
  border-right: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-left: 16px;
  padding-right: 16px;
}
.schedule__box .schedule__plates > .row .head > p {
  margin: 0px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.002em;
  color: #767676;
}
.schedule__box .schedule__plates > .row .head > span {
  display: block;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
  margin-bottom: 8px;
}
.schedule__box > .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
.schedule__box > .head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.schedule__box > .head > h6 {
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 500;
  color: #4635B1;
}

.schedule__box > .head > a {
  transition: 0.3s ease all;
}
.schedule__box > .head > a:hover {
  opacity: 0.7;
}

/* Monthly Calendar Styles */
.schedule__box .schedule__plates.monthly-calendar {
  display: block;
  overflow: visible;
  border-top: 1px solid #DEDEDE;
}

.schedule__box .monthly-calendar .calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #DEDEDE;
  background-color: #EDEDED;
}

.schedule__box .monthly-calendar .calendar-day-header {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #101010;
  border-right: 1px solid #DEDEDE;
}

.schedule__box .monthly-calendar .calendar-day-header:last-child {
  border-right: 0;
}

.schedule__box .monthly-calendar .calendar-grid {
  display: block;
}

.schedule__box .monthly-calendar .calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #DEDEDE;
}

.schedule__box .monthly-calendar .calendar-week:last-child {
  border-bottom: 0;
}

.schedule__box .monthly-calendar .calendar-day {
  min-height: 120px;
  padding: 12px;
  border-right: 1px solid #DEDEDE;
  background-color: #FFFFFF;
  position: relative;
}

.schedule__box .monthly-calendar .calendar-week .calendar-day:last-child {
  border-right: 0;
}

.schedule__box .monthly-calendar .calendar-day.other-month {
  background-color: #F9F9F9;
  opacity: 0.6;
}

.schedule__box .monthly-calendar .calendar-day .day-number {
  font-size: 14px;
  font-weight: 600;
  color: #101010;
  margin-bottom: 8px;
}

.schedule__box .monthly-calendar .calendar-day.other-month .day-number {
  color: #767676;
}

.schedule__box .monthly-calendar .calendar-day .day-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule__box .monthly-calendar .calendar-slot {
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.3;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.schedule__box .monthly-calendar .calendar-slot:hover {
  opacity: 0.8;
}

.schedule__box .monthly-calendar .calendar-slot .slot-time {
  display: block;
  font-weight: 600;
  color: #101010;
  margin-bottom: 2px;
}

.schedule__box .monthly-calendar .calendar-slot .slot-name {
  display: block;
  color: #101010;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule__box--wrapper {
  width: 100%;
  margin-top: 48px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row {
  min-width: 100px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row:nth-child(1) .date__elem:last-child {
  border-bottom-left-radius: 16px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row:last-child .date__elem:last-child {
  border-bottom-right-radius: 16px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content {
  display: flex;
  flex-direction: column;
  padding: 0px;
  height: auto;
  align-items: flex-start;
  overflow: hidden;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  font-size: 16px;
  width: 100%;
  line-height: 120%;
  font-weight: 600;
  transition: 0.3s ease all;
  padding: 8px 16px;
  letter-spacing: -0.02em;
  color: #101010;
  text-decoration: none;
  border-bottom: 1px solid #DEDEDE;
  overflow: hidden;
  box-sizing: border-box;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem .time {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem .class-name {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem:last-child {
  border-bottom: 0px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.disabled {
  background-color: #DEDEDE;
  color: #767676;
  pointer-events: none;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.booked {
  background-color: #FFE4E4;
  color: #D32F2F;
  pointer-events: none;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  position: relative;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.booked .booked-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #D32F2F;
  margin-top: 2px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem:hover {
  background-color: #4635B1;
  color: #fff;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.booked:hover {
  background-color: #FFE4E4;
  color: #D32F2F;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.past {
  background-color: #E0E0E0;
  color: #9E9E9E;
  pointer-events: none;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  position: relative;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.past .past-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #9E9E9E;
  margin-top: 2px;
}
.schedule__box--wrapper .schedule__box .schedule__plates > .row .content > .date__elem.past:hover {
  background-color: #E0E0E0;
  color: #9E9E9E;
}
.schedule__box--wrapper .schedule__box .schedule__plates>.row .content>.active {
  background-color: #4635B1;
  color: #fff;
}
.schedule__box--wrapper .schedule__title {
  margin-bottom: 24px;
}
.schedule__box--wrapper .schedule__title > p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.schedule__box--wrapper .schedule__title > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 250px;
  background-color: #EDEDED;
  margin-right: 24px;
}

.time__info {
  margin-bottom: 48px;
}
.time__info .elems .elem > .inn {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.time__info .elems .elem > .inn:last-child {
  margin-bottom: 0px;
}
.time__info .elems .elem > .inn > span {
  display: inline-flex;
  min-width: 105px;
  max-width: 105px;
  margin-right: 32px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #101010;
}
.time__info .elems .elem > .inn .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.time__info .elems .elem > .inn .desc > p {
  margin-top: 0px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.time__info .elems .elem > .inn .desc > span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #101010;
}
.time__info > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  justify-content: flex-start;
}
.time__info > ul > li {
  margin-right: 24px;
}
.time__info > ul > li > a {
  text-decoration: none;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #767676;
  letter-spacing: -0.02em;
  position: relative;
  transition: 0.3s ease all;
}
.time__info > ul > li > a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 73px;
  height: 8px;
  background: url("../img/stripe.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: 0.3s ease all;
}
.time__info > ul > li > a:hover {
  color: #101010;
}
.time__info > ul > li > a:hover:before {
  opacity: 1;
}
.time__info > ul > li > a.current {
  color: #101010;
}
.time__info > ul > li > a.current:before {
  opacity: 1;
}
.time__info > ul > li:last-child {
  margin-right: 0px;
}

@media (max-width: 1740px) {
  .go__up {
    right: 15px;
    bottom: 15px;
  }
  .tutors__wrapper .outer__tutors .slider .slick-list {
    padding: 0px 10% 0 0;
  }
  .tutors__wrapper .slick-next {
    right: 7%;
  }
}
@media (max-width: 1440px) {
  .feedback__wrapper .outer__feedback .inner .slick-list {
    padding: 0px 5% 0px 0px;
  }
  .tutors__wrapper .slick-prev {
    left: 15px;
  }
  .our__classes .outer__classes .grid__classes > .elem {
    padding: 16px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left > .tag {
    padding: 6px 10px;
    margin-right: 10px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p {
    padding: 6px 10px;
    min-height: 34px;
    font-size: 14px;
    line-height: 20px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .heart > a {
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .heart > a svg {
    width: 20px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p span {
    margin-right: 5px;
  }
}
.our__classes .outer__classes .grid__classes > .elem .media .top__part {
  z-index: 2;
}

.our__classes .outer__classes .grid__classes > .elem .media {
  position: relative;
  display: block;
  padding-bottom: 10px;
}
.our__classes .outer__classes .grid__classes > .elem .media > img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .stats__wrapper .outer__stats .grid {
    max-width: 640px;
  }
}
@media (max-width: 1200px) {
  .detail__teacher .outer__teacher .teacher__side {
    min-width: 320px;
    max-width: 320px;
  }
  .detail__teacher .outer__teacher .teacher__main {
    width: calc(100% - 360px);
  }
  .schedule__box > .head > h6 {
    font-size: 18px;
  }
  .schedule__box > .head > a img {
    min-width: 32px;
    max-width: 32px;
  }
  .detail__class .outer__details .double {
    flex-direction: column;
  }
  .detail__class .outer__details .double .main__part {
    width: 100%;
  }
  .detail__class .outer__details .double .main__part > h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .detail__class .outer__details > .back {
    margin-bottom: 25px;
  }
  .detail__class .outer__details .double .main__part .image {
    margin-bottom: 25px;
  }
  .detail__class .outer__details .double .main__part .description {
    margin-bottom: 25px;
  }
  .detail__class .outer__details .double .side__box {
    min-width: 0px;
    max-width: 100%;
    width: 100%;
    margin-top: 35px;
  }
  .top__form .top__info > .left > h2 {
    font-size: 40px;
  }
  .form__fields .grid.four {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 15px;
  }
  .our__classes.list .outer__classes .grid__classes {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .cta__wrapper .outer__cta > .top > h2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 9px;
  }
  .cta__wrapper .outer__cta > .top {
    margin-bottom: 25px;
  }
  .cta__wrapper .outer__cta .after {
    margin-top: 25px;
  }
  .feedback__wrapper .outer__feedback > .top > h2 {
    font-size: 40px;
    line-height: 44px;
  }
  .feedback__wrapper .outer__feedback > .top {
    margin-bottom: 45px;
  }
  .feedback__wrapper {
    padding: 45px 0px;
  }
  .tutors__wrapper .outer__tutors .head {
    margin-bottom: 35px;
  }
  .tutors__wrapper {
    padding: 45px 0px;
  }
  .tutors__wrapper .outer__tutors .head > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .our__classes .outer__classes .grid__classes {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    grid-row-gap: 25px;
    margin-right: auto;
  }
  .our__classes .outer__classes > p {
    margin-bottom: 40px;
  }
  .our__classes {
    padding: 45px 0px;
  }
  .our__classes .outer__classes > h2 {
    font-size: 40px;
  }
  .our__classes .outer__classes .btn {
    margin-top: 40px;
  }
  .learn__wrapper .outer__learn > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .learn__wrapper .outer__learn .grid {
    margin-top: 35px;
  }
  .learn__wrapper .outer__learn > img {
    max-width: 240px;
    top: -80px;
    left: -50px;
  }
  .learn__wrapper .outer__learn > h2 > img {
    right: -40px;
  }
  .stats__wrapper .outer__stats .grid {
    max-width: 540px;
  }
  .stats__wrapper {
    padding: 40px 0px;
  }
  .stats__wrapper .outer__stats > h2 {
    font-size: 40px;
    line-height: 45px;
    max-width: 360px;
  }
  .stats__wrapper .outer__stats .grid > .elem > span {
    font-size: 32px;
    line-height: 40px;
  }
  .stats__wrapper .outer__stats .grid > .elem > p {
    font-size: 14px;
    line-height: 20px;
  }
  .hero__section .outer__hero .desc .btn__part > a {
    min-width: 175px;
    margin-right: 15px;
  }
  .hero__section .outer__hero .desc > h1 {
    font-size: 58px;
    line-height: 66px;
  }
  .hero__section .outer__hero .desc {
    max-width: 515px;
  }
  .hero__section .outer__hero .media > img {
    max-width: 440px;
  }
  .hero__section .outer__hero .media span.float img {
    max-width: 490px;
  }
  .profile__wrapper .outer__profile .profile__settings {
    grid-column-gap: 40px;
  }
  .profile__wrapper .outer__profile .profile__settings {
    padding: 25px;
  }
  .form__wrapper {
    padding: 50px 0px;
  }
}
@media (max-width: 991px) {
  .detail__teacher .outer__teacher {
    flex-direction: column;
  }
  .detail__teacher .outer__teacher .teacher__main {
    width: 100%;
    margin-bottom: 25px;
  }
  .detail__teacher .outer__teacher .teacher__side {
    min-width: 0px;
    max-width: 100%;
    width: 100%;
  }
  .detail__class {
    padding-bottom: 20px;
  }
  .detail__class .outer__details .double .main__part .description > h6 {
    margin-bottom: 12px;
  }
  .curriculum__wrapper > h6 {
    margin-bottom: 16px;
  }
  .curriculum__wrapper .list > .elem {
    padding: 16px;
  }
  .curriculum__wrapper .list > .elem .content {
    margin-top: 16px;
  }
  .curriculum__wrapper .list > .elem .content > p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem .left > span {
    margin-right: 10px;
  }
  .form__fields .grid.triple {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .hero__section .outer__hero .desc > h1 span.colored img.smaller {
    max-width: 90%;
    bottom: -12px;
  }
  .pagination {
    margin-top: 25px;
  }
  .pagination ul {
    margin: 0px 15px;
  }
  .top__form .top__info > .left > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .top__form .top__info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .top__form .top__info form {
    max-width: 100%;
    margin-top: 15px;
  }
  .hero__section.middle {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .hero__section .outer__hero .desc > p {
    text-align: center;
    font-size: 16px;
  }
  .hero__section .outer__hero .desc > h1.nospace {
    margin-bottom: 15px;
  }
  .hero__section .outer__hero .desc > h1 .slash__orange {
    display: none;
  }
  .cta__wrapper .outer__cta > .top > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .cta__wrapper .outer__cta {
    padding: 25px 20px;
  }
  .feedback__wrapper .outer__feedback > .top > h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .feedback__wrapper .outer__feedback > .top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .tutors__wrapper .outer__tutors .head > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .tutors__wrapper .outer__tutors .slider .slick-list {
    padding: 0px 7% 0 0;
  }
  .our__classes .outer__classes > p {
    font-size: 14px;
  }
  .our__classes .outer__classes > p {
    margin-bottom: 25px;
  }
  .our__classes .outer__classes > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .learn__wrapper .outer__learn .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn__wrapper .outer__learn .grid > .elem .content > p {
    font-size: 25px;
  }
  .learn__wrapper .outer__learn .grid > .elem > .top {
    margin-bottom: 30px;
  }
  .learn__wrapper .outer__learn > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .learn__wrapper {
    padding: 45px 0px;
  }
  .stats__wrapper .outer__stats {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stats__wrapper .outer__stats > h2 {
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .stats__wrapper {
    padding: 30px 0px;
  }
  header.white .outer__header > .main__header > ul > li > a {
    color: #101010;
  }
  .hero__section .outer__hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__section .outer__hero .media {
    margin-top: 40px;
  }
  .hero__section {
    padding-bottom: 45px;
    padding-top: 130px;
  }
  .hero__section .outer__hero .desc > h1 {
    text-align: center;
    font-size: 44px;
    line-height: 54px;
  }
  .hero__section .outer__hero .desc .btn__part {
    flex-direction: column;
  }
  .hero__section .outer__hero .desc .btn__part > a {
    min-width: 200px;
    margin-bottom: 15px;
  }
  .hero__section .outer__hero .desc .btn__part .review {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .hero__section .outer__hero .desc .btn__part .desc {
    align-items: center;
  }
  header.white .menu__btn > a > span {
    background-color: #fff;
  }
  .profiles__list .elem > .info > h6 {
    font-size: 20px;
    line-height: 28px;
  }
  .profiles__list .elem > .info > span {
    margin-right: 15px;
  }
  .profiles__list .elem > .info > span img {
    min-width: 54px;
    max-width: 54px;
    min-height: 54px;
    max-height: 54px;
  }
  .profile__wrapper .outer__profile .head > h2 {
    font-size: 40px;
  }
  .profile__wrapper .outer__profile .head {
    margin-bottom: 25px;
  }
  .profile__wrapper .outer__profile .head > p {
    margin-top: 10px;
  }
  .profile__wrapper .outer__profile .profile__settings {
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
  }
  .menu__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .menu__btn > a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu__btn > a > span {
    min-width: 28px;
    border-radius: 5px;
    margin-bottom: 6.2px;
    min-height: 3px;
    background-color: #000;
  }
  .menu__btn > a > span:last-child {
    margin-bottom: 0px;
  }
  .close__menu {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .close__menu img {
    min-width: 25px;
    max-width: 25px;
  }
  header .outer__header .main__header .btns .signup {
    margin-bottom: 0px;
  }
  header .outer__header .main__header .btns .login {
    margin-right: 0px;
  }
  header .outer__header .main__header {
    position: fixed;
    top: 0px;
    right: -330px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 290px;
    height: 100%;
    background-color: #fff;
    z-index: 3;
    flex-direction: column;
    padding: 20px 15px;
    transition: 0.45s ease all;
    padding-top: 35px;
  }
  header .outer__header .main__header > .btns {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header .outer__header .main__header > .btns > a {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }
  header .outer__header .main__header > ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  header .outer__header .main__header > ul > li {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  footer .outer__footer .top__footer {
    flex-direction: column;
  }
  footer .outer__footer .top__footer .menu__items {
    max-width: 100%;
    margin-top: 32px;
  }
  footer {
    padding: 45px 0px;
  }
  footer {
    padding-bottom: 60px;
  }
  footer .outer__footer .top__footer {
    padding-bottom: 45px;
  }
  footer .outer__footer .bottom__footer {
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .outer__footer .bottom__footer > p {
    order: 3;
  }
  footer .outer__footer .bottom__footer > .socials {
    order: 2;
    margin-bottom: 10px;
  }
  footer .outer__footer .bottom__footer > ul {
    position: static;
    order: 1;
    transform: none;
    margin-bottom: 10px;
  }
  .profile__wrapper {
    padding-bottom: 40px;
  }
  .hero__section .outer__hero .desc > img {
    right: 0px;
  }
  .top__form {
    margin-bottom: 25px;
  }
}
.float__info > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .schedule__box--wrapper {
    padding: 16px;
  }
  .schedule__box--wrapper .schedule__title > p span {
    margin-right: 15px;
  }
  .reviews__box .reviews__cont .elem .el > .desc > p {
    font-size: 14px;
  }
  .reviews__box .reviews__cont .elem .el > .desc {
    margin-top: 14px;
  }
  .reviews__box .head > p > span {
    margin-right: 15px;
  }
  .reviews__box .reviews__cont .elem .el {
    padding: 15px;
    padding-bottom: 60px;
  }
  .reviews__box .reviews__cont .elem .el > .desc ul {
    left: 15px;
  }
  .reviews__box .reviews__cont .elem .el .top .desc > p {
    font-size: 16px;
  }
  .reviews__box .reviews__cont .elem .el .top .desc > span {
    font-size: 14px;
  }
  .reviews__box .reviews__cont .elem .el .top .media {
    margin-right: 14px;
  }
  .reviews__box .reviews__cont .elem .el .top .media img {
    min-width: 54px;
    max-width: 54px;
    min-height: 54px;
    max-height: 54px;
  }
  .detail__class .outer__details .double .main__part .boxes .box {
    padding: 16px;
    flex-direction: column;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info {
    margin-right: 0px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .right {
    max-width: 100%;
    margin-top: 15px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .right > p {
    margin-bottom: 10px;
    text-align: center;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info > h2 {
    font-size: 21px;
  }
  .detail__class .outer__details .double .main__part .tutor__box .top__part {
    flex-direction: column;
  }
  .detail__class .outer__details .double .main__part .tutor__box .top__part .right {
    margin-top: 12px;
  }
  .reviews__box .reviews__cont .elem .grid {
    grid-template-columns: 1fr;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem {
    flex-direction: column;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem .left {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem .right {
    width: 100%;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem .right > a {
    width: 100%;
  }
  .curriculum__wrapper .list > .elem .content .files__list .elem .right .progress > .bar {
    width: 100%;
  }
  .form__fields .grid.four {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .our__classes.list .outer__classes .grid__classes {
    grid-template-columns: 1fr;
  }
  .cta__wrapper .outer__cta > .top > p {
    font-size: 14px;
  }
  .cta__wrapper .outer__cta > .top > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .cta__wrapper .outer__cta form .group__submit button {
    width: 170px;
  }
  .feedback__wrapper .outer__feedback .inner .elem {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
  .feedback__wrapper .outer__feedback .inner .slick-slide {
    height: initial !important;
  }
  .feedback__wrapper .outer__feedback .inner .elem .top .media {
    margin-right: 15px;
  }
  .feedback__wrapper .outer__feedback .inner .elem .top .desc > p {
    font-size: 17px;
  }
  .feedback__wrapper .outer__feedback .inner .elem .top .desc > span {
    font-size: 14px;
  }
  .feedback__wrapper .outer__feedback .inner .elem > .desc > p {
    font-size: 14px;
  }
  .feedback__wrapper .outer__feedback .inner .slick-track {
    display: block !important;
  }
  .tutors__wrapper .slick-next {
    right: 15px;
  }
  .tutors__wrapper .outer__tutors .head > h2 img {
    display: none;
  }
  .tutors__wrapper .outer__tutors .head > h2 {
    margin-bottom: 6px;
  }
  .tutors__wrapper .outer__tutors .head {
    margin-bottom: 25px;
  }
  .tutors__wrapper .outer__tutors .head {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .our__classes > img {
    max-width: 100px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc > p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 22px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .double > .el > p {
    font-size: 14px;
    line-height: 20px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .double > .el > span {
    font-size: 14px;
    line-height: 20px;
  }
  .learn__wrapper .outer__learn .grid > .elem .content > p {
    font-size: 20px;
  }
  .learn__wrapper .outer__learn > h2 > img {
    display: none;
  }
  .learn__wrapper .outer__learn > h2, .learn__wrapper .outer__learn > p {
    text-align: center;
  }
  .learn__wrapper .outer__learn > img {
    max-width: 180px;
  }
  .learn__wrapper .outer__learn .grid {
    grid-template-columns: 1fr;
  }
  .learn__wrapper .outer__learn .grid {
    margin-top: 20px;
  }
  .learn__wrapper .outer__learn .grid > .elem .content > p {
    margin-bottom: 22px;
    margin-bottom: 10px;
  }
  .learn__wrapper .outer__learn .grid > .elem {
    padding: 20px;
  }
  .hero__section .outer__hero .desc > h1 {
    margin-bottom: 45px;
  }
  .float__info > a {
    right: 15px;
  }
  .profiles__list .elem {
    flex-direction: column;
  }
  .profiles__list .elem > .info {
    width: 100%;
    margin-bottom: 15px;
  }
  .profiles__list .elem > .btns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
  }
  .profiles__list .elem > .btns > a {
    width: 100%;
  }
  .profiles__list .elem > .btns > a.delete {
    border: 1.5px solid #E13939;
    min-height: 40px;
    display: inline-flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
  }
  .profile__wrapper {
    padding: 25px 0px;
  }
  .profile__wrapper .outer__profile .head > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .form__wrapper .outer__form > .top {
    margin-bottom: 30px;
  }
  .form__wrapper .outer__form > .top > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .form__wrapper .outer__form > .top > p {
    font-size: 14px;
  }
  .form__wrapper .outer__form form .after > p {
    font-size: 14px;
  }
  footer .outer__footer .top__footer .menu__items {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .outer__footer .top__footer .logo {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }
  footer .outer__footer .top__footer .logo > a {
    margin-bottom: 15px;
  }
  footer .outer__footer .top__footer .menu__items .menu {
    margin-bottom: 25px;
  }
  footer .outer__footer .top__footer .menu__items .menu:last-child {
    margin-bottom: 0px;
  }
  footer .outer__footer .top__footer .menu__items .menu > p {
    margin-bottom: 8px;
  }
  footer .outer__footer .top__footer .menu__items .menu > ul > li a {
    padding: 4px 0px;
  }
  .detail__class .outer__details .double .main__part .tutor__box {
    padding: 16px;
  }
  .reviews__box {
    padding: 16px;
  }
  .detail__class .outer__details .double .side__box .side {
    padding: 16px;
  }
}
.our__classes .outer__classes > p {
  margin-top: 0px;
}

@media (max-width: 640px) {
  .tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > p, .tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .bottom .elem > span {
    font-size: 14px;
    line-height: 18px;
  }
  .tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top > p {
    font-size: 17px;
  }
  .tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top .right > span {
    font-size: 17px;
  }
  .tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top .right > p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 2px;
  }
}
@media (max-width: 480px) {
  .detail__teacher .outer__teacher .teacher__main .teacher__main__info .description .included > .el > span {
    margin-right: 12px;
  }
  .detail__class .outer__details .double .main__part .description .included > .el > span {
    margin-right: 12px;
  }
  .time__info > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .time__info > ul > li {
    margin-bottom: 18px;
  }
  .time__info > ul > li:last-child {
    margin-bottom: 0px;
  }
  .time__info .elems .elem > .inn {
    flex-direction: column;
  }
  .time__info .elems .elem > .inn .desc {
    margin-top: 10px;
  }
  .schedule__box > .head {
    padding: 15px;
  }
  .schedule__box > .head > a img {
    min-width: 24px;
    max-width: 24px;
  }
  .schedule__box > .head > h6 {
    font-size: 16px;
  }
  .reviews__box > ul > li > a {
    font-size: 14px;
  }
  .reviews__box > ul > li {
    margin-right: 15px;
  }
  .detail__class .outer__details .double .main__part .tutor__box .info .years {
    flex-direction: column;
  }
  .detail__class .outer__details .double .main__part .tutor__box .info .years > span {
    margin-bottom: 10px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info > ul {
    margin: 15px 0px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info .show__more > a {
    font-size: 14px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .right > p {
    font-size: 14px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info > ul > li > p {
    font-size: 14px;
  }
  .detail__class .outer__details .double .main__part .boxes .box .info > ul > li > span {
    font-size: 14px;
  }
  .detail__class .outer__details .double .main__part > h1 {
    font-size: 27px;
  }
  .hero__section .outer__hero .desc > h1 span.colored img.smaller {
    max-width: 80%;
    bottom: -8px;
  }
  .pagination ul li a {
    min-width: 26px;
  }
  .pagination ul li.dots {
    min-width: 26px;
  }
  .top__form .top__info > .left > h2 {
    font-size: 27px;
    line-height: 32px;
  }
  .cta__wrapper .outer__cta form {
    flex-direction: column;
    align-items: center;
  }
  .cta__wrapper .outer__cta form .group__input {
    margin-right: 0px;
    margin-bottom: 12px;
  }
  .cta__wrapper .outer__cta form .group__submit {
    width: 100%;
  }
  .cta__wrapper .outer__cta form .group__submit button {
    width: 100%;
  }
  .feedback__wrapper {
    padding: 25px 0px;
  }
  .feedback__wrapper .outer__feedback > .top > h2 {
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 5px;
  }
  .tutors__wrapper .outer__tutors .head > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .our__classes .outer__classes > h2 {
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .bottom {
    padding-top: 15px;
    margin-top: 15px;
    flex-direction: column;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .bottom > .price {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .bottom > a {
    width: 100%;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left > .tag {
    font-size: 12px;
    line-height: 15px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left > .tag span img {
    max-height: 16px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p {
    min-height: 28px;
    padding: 3px 10px;
    font-size: 12px;
    line-height: 16px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part .left .star > p span img {
    max-width: 12px;
  }
  .our__classes .outer__classes .grid__classes > .elem {
    padding: 12px;
  }
  .our__classes .outer__classes .grid__classes > .elem .media .top__part {
    left: 10px;
    width: calc(100% - 20px);
    top: 10px;
  }
  .our__classes .outer__classes .grid__classes > .elem .desc .double {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .learn__wrapper .outer__learn > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .stats__wrapper .outer__stats > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .stats__wrapper .outer__stats .grid > .elem > span {
    font-size: 27px;
    line-height: 34px;
  }
  .stats__wrapper .outer__stats .grid {
    flex-direction: column;
  }
  .stats__wrapper .outer__stats .grid > .elem {
    margin-bottom: 15px;
  }
  .stats__wrapper .outer__stats .grid > .elem:last-child {
    margin-bottom: 0px;
  }
  .hero__section .outer__hero .desc > h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .hero__section .outer__hero .media > img {
    width: 100%;
  }
  .hero__section .outer__hero .media span.float {
    width: 100%;
  }
  .hero__section .outer__hero .media span.float img {
    max-width: 100%;
  }
  .hero__section .outer__hero .media span.float {
    right: 0px;
  }
  .float__info > p {
    font-size: 13px;
    line-height: 16px;
  }
  .float__info > a {
    right: 5px;
  }
  .profiles__list .elem {
    padding: 15px;
  }
  .add__another {
    margin-top: 15px;
    flex-direction: column;
  }
  .add__another > .another-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .add__another .all__done {
    max-width: 100%;
  }
  .profile__wrapper .outer__profile .profile__settings {
    padding: 20px 15px;
  }
  .profile__wrapper .outer__profile .head > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .profile__wrapper .outer__profile .right__secondary .tags__picker > a {
    padding-left: 14px;
    padding-right: 14px;
    min-height: 40px;
  }
  .profile__wrapper .outer__profile .profile__settings .more__details .group__input .date {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .form__wrapper .outer__form > .top > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  footer .outer__footer .bottom__footer > ul {
    flex-direction: column;
    align-items: center;
  }
  footer .outer__footer .bottom__footer > ul > li {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  footer .outer__footer .bottom__footer > ul > li:last-child {
    margin-bottom: 0px;
  }
}
.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.block-sign-in {
  max-width: 600px;
  margin: 68px auto;
  background-color: #fff;
  border-radius: 7px;
}

.block-sign-in {
  padding: 30px;
}

.alert-blk {
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 9999;
  bottom: 0;
}

.alert-waitiner {
  width: 220px;
  height: 60px;
  background: #000;
  padding: 10px 0px 10px 0px;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 15px;
}

.alert-suciner {
  max-width: 350px;
  height: 60px;
  background: #55a500;
  padding: 10px 0px 10px 0px;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 15px;
}

.alert-erriner {
  max-width: 100%;
  height: 60px;
  background: #d40000;
  padding: 10px 0px 10px 0px;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 15px;
}

.group__input > label {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}

.group__input > input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #EDEDED;
  outline: none;
  border: 0px;
  outilne: none;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.group__input > select {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #EDEDED;
  outline: none;
  border: 0px;
  outilne: none;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.group__submit > button {
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  border: 0px;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 600;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background-color: #4635B1;
  cursor: pointer;
  text-align: center;
}
.group__submit > button:hover span {
  left: -5px;
}
.group__submit > button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0px;
  transition: 0.3s ease all;
}

.group__input > .date {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
}

.form-col-x2 {
  width: 50%;
}

.errormsg {
  color: #d40000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 0px;
}

.fields > .pass {
  margin-bottom: 20px;
}

/* Update Payment Method Modal Styles */
#update-payment-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

#update-payment-modal .modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#update-payment-modal .modal-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DEDEDE;
}

#update-payment-modal .modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #101010;
}

#update-payment-modal .close-modal {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.3s ease;
}

#update-payment-modal .close-modal:hover {
  color: #101010;
}

#update-payment-modal #card-element {
  padding: 15px;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fff;
}

#update-payment-modal #card-errors {
  color: #d40000;
  margin-bottom: 15px;
  font-size: 14px;
  min-height: 20px;
}

/* Booking Modal Styles */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.booking-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.booking-modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 0;
  border-radius: 16px;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10001;
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #DEDEDE;
}

.booking-modal-header h6 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #101010;
}

.booking-modal-header .close-booking-modal {
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-header .close-booking-modal:hover {
  opacity: 0.7;
}

.booking-modal-body {
  padding: 30px;
}

.booking-modal-body .group__dropdown {
  margin-bottom: 20px;
}

.booking-modal-body .price {
  margin-bottom: 20px;
}

.booking-modal-body .book__btn {
  margin-top: 20px;
}

#update-payment-modal .cancel-btn,
#update-payment-modal #submit-payment-update {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

#update-payment-modal .cancel-btn {
  background: #f5f5f5;
  color: #101010;
}

#update-payment-modal .cancel-btn:hover {
  background: #e5e5e5;
}

#update-payment-modal #submit-payment-update {
  background: #4635B1;
  color: white;
}

#update-payment-modal #submit-payment-update:hover:not(:disabled) {
  background: #3528a0;
}

#update-payment-modal #submit-payment-update:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#update-payment-modal .modal-body > form > div:last-child {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Remove arrow from dropdown-toggle ::after pseudo-element */
.dropdown-toggle::after {
  content: none !important;
  display: none !important;
}

/* Review Modal Styles */
#review-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

#review-modal .modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#review-modal .modal-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#review-modal .modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #101010;
}

#review-modal .close-review-modal {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.3s ease;
}

#review-modal .close-review-modal:hover {
  color: #101010;
}

#review-modal .form-group {
  margin-bottom: 20px;
}

#review-modal .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #101010;
  font-size: 16px;
}

#review-modal .rating-stars {
  display: flex;
  gap: 10px;
  align-items: center;
}

#review-modal .star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}

#review-modal .star-btn:hover {
  transform: scale(1.1);
}

#review-modal .star-icon {
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}

#review-modal #rating-display {
  margin-left: 10px;
  font-weight: 600;
  color: #4635B1;
  font-size: 16px;
}

#review-modal #review-text {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #C6C0E7;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}

#review-modal #review-text:focus {
  outline: none;
  border-color: #4635B1;
}

#review-modal #review-error {
  color: #d40000;
  margin-bottom: 15px;
  font-size: 14px;
  min-height: 20px;
}

#review-modal .cancel-review-btn,
#review-modal #submit-review-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

#review-modal .cancel-review-btn {
  background: #f5f5f5;
  color: #101010;
}

#review-modal .cancel-review-btn:hover {
  background: #e5e5e5;
}

#review-modal #submit-review-btn {
  background: #4635B1;
  color: white;
}

#review-modal #submit-review-btn:hover:not(:disabled) {
  background: #3528a0;
}

#review-modal #submit-review-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#review-modal .review-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/*# sourceMappingURL=style.css.map */
