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

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

@font-face {
  font-family: "Clash";
  src: url("../fonts/ClashGrotesk-Variable.ttf") format("truetype");
}
@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;
}

.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);
}

header .profile__header {
  display: flex;
  align-items: center;
  padding: 30px 0px;
  justify-content: space-between;
}
header .profile__header .main__area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: 32px;
  margin-left: 48px;
}
header .profile__header .main__area > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
header .profile__header .main__area > ul > li > a {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101010;
  transition: 0.3s ease all;
}
header .profile__header .main__area > ul > li > a:hover {
  color: #4635B1;
}
header .profile__header .main__area .controls__header ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .profile__header .main__area .controls__header ul > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
}
header .profile__header .main__area .controls__header ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .profile__header .main__area .controls__header ul > li > a svg path {
  transition: 0.3s ease all;
}

header.white .profile__header .main__area .controls__header ul>li>a svg path {
  transition: 0.3s ease all;
  stroke: #FFFFFF;
}
header.white .profile__header .main__area .controls__header ul>li>a:hover svg path {
  stroke: #ffffff;
}

header .profile__header .main__area .controls__header ul > li > a:hover svg.fill path {
  fill: #4635B1;
  stroke: none !important;
}
header .profile__header .main__area .controls__header ul > li > a:hover svg path {
  stroke: #4635B1;
}
header .profile__header .main__area .controls__header ul > li:last-child {
  margin-right: 0px;
}
header .profile__header .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .profile__header .logo > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .profile__header .profile {
  position: relative;
}
header .profile__header .profile .dropdown {
  position: absolute;
  right: 0px;
  top: 58px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  min-width: 205px;
  z-index: 999;
}
header .profile__header .profile .dropdown ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
header .profile__header .profile .dropdown ul > li {
  margin-bottom: 20px;
}
header .profile__header .profile .dropdown ul > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101010;
  text-decoration: none;
  transition: 0.3s ease all;
}
header .profile__header .profile .dropdown ul > li > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
header .profile__header .profile .dropdown ul > li > a span svg path {
  transition: 0.3s ease all;
}
header .profile__header .profile .dropdown ul > li > a:hover {
  color: #4635B1;
}
header .profile__header .profile .dropdown ul > li > a:hover span svg path {
  stroke: #4635B1;
}
header .profile__header .profile .dropdown ul > li > a:hover span svg path.no__stroke {
  stroke: none;
}
header .profile__header .profile .dropdown ul > li:last-child {
  margin-bottom: 0px;
}
header .profile__header .profile > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: #101010;
}

header.white .profile__header .profile>a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

header .profile__header .profile > a.opened > img {
  transform: rotate(180deg);
}
header .profile__header .profile > a > img {
  transition: 0.3s ease all;
  margin-left: 15px;
}
header .profile__header .profile > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
header .profile__header .profile > a > span img {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 250px;
  object-fit: cover;
}

.subtitle {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url("../img/subback.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #4635B1;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.subtitle .outer__sub > h2 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  font-weight: 600;
}
.subtitle .outer__sub > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}

.payment__method {
  padding-top: 80px;
  padding-bottom: 45px;
}
.payment__method .method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background-color: #EDEDED;
  border-radius: 16px;
}
.payment__method .method .btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 56px;
  background-color: #4635B1;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 600;
}
.payment__method .method .btn > a span {
  display: inline-flex;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.payment__method .method .btn > a:hover span {
  left: -4px;
}
.payment__method .method > p {
  margin: 0px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.payment__method .method > p span {
  color: #101010;
}
.payment__method .method > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.payment__method .method > ul > li {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #101010;
  margin-right: 16px;
}
.payment__method .method > ul > li:last-child {
  margin-right: 0px;
}
.payment__method .method > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 44px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 4px 12px;
}
.payment__method .method > span img {
  max-width: 100%;
  max-height: 36px;
}
.payment__method .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DEDEDE;
}
.payment__method .head > h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #101010;
}
.payment__method .head > p {
  margin: 0px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  line-height: 120%;
  color: #767676;
}

.transaction__history {
  padding-bottom: 80px;
}
.transaction__history .outer__transaction .history__table {
  width: 100%;
  margin-top: 24px;
}
.transaction__history .outer__transaction .history__table table {
  border-collapse: collapse;
  width: 100%;
}
.transaction__history .outer__transaction .history__table table tr td {
  padding: 24px 24px;
  border-bottom: 1px solid #DEDEDE;
}
.transaction__history .outer__transaction .history__table table tr td:last-child {
  width: 110px;
  text-align: center;
}
.transaction__history .outer__transaction .history__table table tr td > p {
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  color: #101010;
  font-weight: 500;
}
.transaction__history .outer__transaction .history__table table tr th {
  font-size: 20px;
  font-weight: 500;
  color: #101010;
  text-align: left;
  padding: 24px 24px;
  background-color: #EDEDED;
}
.transaction__history .outer__transaction .history__table table tr th:last-child {
  width: 110px;
  text-align: center;
}
.transaction__history .outer__transaction .history__table table tr th:nth-child(1) {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.transaction__history .outer__transaction .history__table table tr th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.transaction__history .outer__transaction > h6 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 40px;
  color: #101010;
  font-weight: 600;
}
.transaction__history .outer__transaction .box {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
  padding: 24px;
}
.transaction__history .outer__transaction .box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.transaction__history .outer__transaction .box .head .drops {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.transaction__history .outer__transaction .box .head .drops .group__dropdown {
  margin-right: 24px;
}
.transaction__history .outer__transaction .box .head .drops .group__dropdown .dropdown {
  top: 52px;
}
.transaction__history .outer__transaction .box .head .drops .group__dropdown:last-child {
  margin-right: 0px;
}
.transaction__history .outer__transaction .box .head .drops .group__dropdown > a {
  min-width: 130px;
  max-width: 130px;
  min-height: 48px;
  height: 48px;
}
.transaction__history .outer__transaction .box .head > p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.transaction__history .outer__transaction .box .head > p > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

.group__dropdown {
  position: relative;
}
.group__dropdown .dropdown {
  position: absolute;
  right: 0px;
  top: 59px;
  width: auto;
  min-width: 100%;
  border: 1.5px solid #C6C0E7;
  border-radius: 12px;
  background-color: #fff;
  max-height: 240px;
  z-index: 2;
  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;
  white-space: nowrap;
  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;
}

.change__password {
  padding-top: 80px;
  padding-bottom: 80px;
}
.change__password .outer__change .step.final {
  padding: 40px 0px;
  text-align: center;
}
.change__password .outer__change .step.final > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.change__password .outer__change .step.final > h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 56px;
  color: #101010;
  font-weight: 600;
}
.change__password .outer__change .step.final > p {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 120%;
  color: #767676;
  font-weight: 500;
}
.change__password .outer__change .step.final .btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
}
.change__password .outer__change .step.final .btn > a {
  min-width: 240px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #4635B1;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: 0.3s ease all;
}
.change__password .outer__change .step.final .btn > a:hover {
  background-color: #5746c0;
}
.change__password .outer__change .step .content > a {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-width: 240px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #4635B1;
  border-radius: 12px;
  text-decoration: none;
  padding-left: 24px;
  padding-right: 24px;
  transition: 0.3s ease all;
  gap: 8px;
}
.change__password .outer__change .step .content > a span {
  display: inline-flex;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.change__password .outer__change .step .content > a:hover {
  background-color: #5746c0;
}
.change__password .outer__change .step .content > a:hover span {
  left: -5px;
}
.change__password .outer__change .step .content .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
}
.change__password .outer__change .step .content .fields .pass {
  position: relative;
}
.change__password .outer__change .step .content .fields .pass > input {
  padding-right: 50px !important;
}
.change__password .outer__change .step .content .fields .pass > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  bottom: 20px;
}
.change__password .outer__change .step .content .fields .pass > a.active svg path {
  fill: #4635B1;
}
.change__password .outer__change .step .content .fields .pass > a svg path {
  transition: 0.3s ease all;
}
.change__password .outer__change .step .content .fields .verification__code {
  max-width: 330px;
  width: 100%;
}
.change__password .outer__change .step .content .fields .verification__code .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.change__password .outer__change .step .content .fields .verification__code .bottom > span {
  display: inline-flex;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.change__password .outer__change .step .content .fields .verification__code .bottom > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  transition: 0.3s ease all;
  color: #4635B1;
}
.change__password .outer__change .step .content .fields .verification__code .bottom > a:hover {
  opacity: 0.7;
}
.change__password .outer__change .step .content .fields .verification__code > p {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.change__password .outer__change .step .content .fields .verification__code .groups {
  display: flex;
  justify-content: space-between;
}
.change__password .outer__change .step .content .fields .verification__code .groups > input {
  text-align: center;
  width: 56px;
  height: 56px;
  background-color: #EDEDED;
  border-radius: 12px;
  font-size: 24px;
  color: #000;
  outline: none;
  border: 0px;
  outline: none;
}
.change__password .outer__change .step .content .fields > .group__input > p {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
}
.change__password .outer__change .step .content .fields > .group__input > input {
  width: 100%;
  height: 56px;
  padding-left: 16px;
  padding-right: 16px;
  outline: none;
  border: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  background-color: #EDEDED;
  border-radius: 12px;
}
.change__password .outer__change .step > .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DEDEDE;
}
.change__password .outer__change .step > .head > h2 {
  font-size: 48px;
  line-height: 100%;
  color: #101010;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0px;
}
.change__password .outer__change .step > .head > p {
  margin: 0px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
  letter-spacing: -0.02em;
}
.change__password .outer__change .step > .head > p span {
  color: #101010;
}

.schedule__wrapper {
  padding-top: 80px;
  padding-bottom: 60px;
}
.schedule__wrapper .outer__schedule > .top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DEDEDE;
  justify-content: space-between;
}
.schedule__wrapper .outer__schedule > .top ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  padding: 8px;
  background-color: #EDEBF7;
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
.schedule__wrapper .outer__schedule > .top ul > li {
  margin-right: 4px;
}
.schedule__wrapper .outer__schedule > .top ul > li:last-child {
  margin-right: 0px;
}
.schedule__wrapper .outer__schedule > .top ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.005em;
  color: #101010;
  transition: 0.3s ease all;
}
.schedule__wrapper .outer__schedule > .top ul > li > a:hover {
  background-color: #4635B1;
  color: #fff;
}
.schedule__wrapper .outer__schedule > .top ul > li > a.current {
  font-weight: 500;
  background-color: #4635B1;
  color: #fff;
}
.schedule__wrapper .outer__schedule > .top > h2 {
  margin-top: 0px;
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
  margin-bottom: 0px;
}

.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%;
}
.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;
}

.popup__schedule {
  position: absolute;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  padding: 20px;
  min-width: 185px;
  border-radius: 12px;
  max-width: 185px;
  z-index: 3;
}
.popup__schedule .btn {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #DEDEDE;
}
.popup__schedule .btn > a {
  display: inline-flex;
  width: 100%;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #4635B1;
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #FFFFFF;
  transition: 0.3s ease all;
}
.popup__schedule .btn > a:hover {
  background-color: #5746c0;
}
.popup__schedule .list ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
.popup__schedule .list ul li {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.popup__schedule .list ul li > span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 100%;
  font-weight: 500;
  color: #767676;
}
.popup__schedule .list ul li > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.002em;
  color: #4635B1;
  text-decoration: none;
  font-weight: 600;
}
.popup__schedule .list ul li > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.popup__schedule .list ul li > p {
  margin: 0px;
  font-size: 14px;
  line-height: 20px;
  color: #101010;
  font-weight: 600;
}
.popup__schedule .list ul li:last-child {
  margin-bottom: 0px;
}
.popup__schedule .desc {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DEDEDE;
}
.popup__schedule .desc > p {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  color: #101010;
}
.popup__schedule .desc > span {
  font-size: 12px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.popup__schedule > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 250px;
  margin-bottom: 24px;
}
.popup__schedule > span img {
  margin-right: 6px;
}

.resources__wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
.resources__wrapper .resources__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resources__wrapper .resources__head .group__dropdown > a > span {
  font-weight: 400;
}
.resources__wrapper .resources__head .double {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.resources__wrapper .resources__head .double .group__dropdown {
  width: 200px;
  margin-right: 20px;
}
.resources__wrapper .resources__head .double .group__dropdown:last-child {
  margin-right: 0px;
}
.resources__wrapper .resources__head > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  border-radius: 12px;
  background-color: #EDEBF7;
}
.resources__wrapper .resources__head > ul li {
  margin-right: 4px;
}
.resources__wrapper .resources__head > ul li:last-child {
  margin-right: 0px;
}
.resources__wrapper .resources__head > ul li a {
  text-decoration: none;
  min-width: 108px;
  min-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  border-radius: 8px;
  transition: 0.3s ease all;
}
.resources__wrapper .resources__head > ul li a:hover {
  color: #FFFFFF;
  background-color: #4635B1;
}
.resources__wrapper .resources__head > ul li a.current {
  font-weight: 500;
  color: #FFFFFF;
  background-color: #4635B1;
}
.resources__wrapper .resources__head .group__dropdown {
  width: 100%;
  max-width: 200px;
}
.resources__wrapper .outer__resources .head {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DEDEDE;
  justify-content: space-between;
}
.resources__wrapper .outer__resources .head > .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.resources__wrapper .outer__resources .head > .left > h2 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 56px;
  color: #101010;
  font-weight: 600;
}
.resources__wrapper .outer__resources .head > .left > p {
  margin: 0px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}
.resources__wrapper .outer__resources .head form {
  width: 100%;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
}
.resources__wrapper .outer__resources .head form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  cursor: pointer;
  background-color: transparent;
  border: 0px;
}
.resources__wrapper .outer__resources .head form .group__input {
  width: 100%;
}
.resources__wrapper .outer__resources .head form .group__input > input {
  width: 100%;
  background-color: #EDEDED;
  border-radius: 12px;
  height: 56px;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  border: 0px;
  padding-left: 16px;
  padding-right: 50px;
}

.resources__main {
  margin-top: 40px;
}
.resources__main .elem__resources .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
}
.resources__main .elem__resources .grid .elem {
  padding: 24px;
  border-radius: 16px;
  background-color: #EDEDED;
}
.resources__main .elem__resources .grid .elem .content .score {
  padding: 24px;
  border-radius: 12px;
  background-color: #FFFFFF;
}
.resources__main .elem__resources .grid .elem .content .score .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resources__main .elem__resources .grid .elem .content .score .bottom .progress {
  width: 100%;
  position: relative;
  height: 6px;
  background-color: #E2E2E2;
  border-radius: 250px;
}
.resources__main .elem__resources .grid .elem .content .score .bottom .progress .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background-color: #4635B1;
}
.resources__main .elem__resources .grid .elem .content .score .bottom > p {
  margin: 0px;
  margin-left: 24px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.resources__main .elem__resources .grid .elem .content .score > p {
  margin-top: 0px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  width: 100%;
  border-bottom: 1px solid #DEDEDE;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #101010;
}
.resources__main .elem__resources .grid .elem .content .thumbnail {
  width: 100%;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 12px;
}
.resources__main .elem__resources .grid .elem .content .thumbnail > p {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #8B8B8B;
  font-weight: 500;
}
.resources__main .elem__resources .grid .elem .content .thumbnail ul {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-left: 17px;
  margin: 0px;
}
.resources__main .elem__resources .grid .elem .content .thumbnail ul li {
  font-size: 16px;
  line-height: 22px;
  color: #8B8B8B;
  font-weight: 500;
}
.resources__main .elem__resources .grid .elem .content .thumbnail:last-child {
  margin-bottom: 0px;
}
.resources__main .elem__resources .grid .elem > .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resources__main .elem__resources .grid .elem > .head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 6px;
  transition: 0.3s ease all;
}
.resources__main .elem__resources .grid .elem > .head > a.edit:hover {
  background-color: #4635B1;
}
.resources__main .elem__resources .grid .elem > .head > a.edit:hover svg path {
  stroke: #fff;
}
.resources__main .elem__resources .grid .elem > .head > a svg path {
  transition: 0.3s ease all;
}
.resources__main .elem__resources .grid .elem > .head > a:hover {
  background-color: #e52f2f;
}
.resources__main .elem__resources .grid .elem > .head > a:hover svg path {
  stroke: #fff;
}
.resources__main .elem__resources .grid .elem > .head > .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.resources__main .elem__resources .grid .elem > .head > .left > p {
  margin: 0px;
  margin-bottom: 3px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.resources__main .elem__resources .grid .elem > .head > .left > p span {
  padding: 4px 12px;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 99px;
  white-space: nowrap;
}
.resources__main .elem__resources .grid .elem > .head > .left > span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #626161;
  font-weight: 500;
}
.resources__main .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.resources__main .btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 56px;
  border-radius: 250px;
  border: 1.5px solid #4635B1;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: #4635B1;
  font-weight: 600;
  transition: 0.3s ease all;
}
.resources__main .btn > a:hover {
  background-color: #4635B1;
  color: #fff;
}

.resources__wrapper .outer__resources .head {
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.message__wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
.message__wrapper .outer__message > .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DEDEDE;
}
.message__wrapper .outer__message > .top > h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
  color: #101010;
}
.message__wrapper .outer__message > .top > p {
  margin: 0px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #767676;
}

.main__chat {
  width: 100%;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
.main__chat .chat__box {
  width: 100%;
}
.main__chat .chat__box .controls__chat {
  padding: 24px;
  border-top: 1px solid #DEDEDE;
}
.main__chat .chat__box .controls__chat form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main__chat .chat__box .controls__chat form .group__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.main__chat .chat__box .controls__chat form .group__submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-height: 56px;
  min-width: 56px;
  max-width: 56px;
  border-radius: 12px;
  background-color: #4635B1;
  cursor: pointer;
  outline: none;
  border: 0px;
  transition: 0.3s ease all;
}
.main__chat .chat__box .controls__chat form .group__submit button:hover {
  background-color: #4532be;
}
.main__chat .chat__box .controls__chat form .txt__area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 20px;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > a:last-child {
  margin-right: 0px;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > a:hover svg path {
  stroke: #4635B1;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > a svg path:nth-child(2) {
  stroke: none !important;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > a svg path {
  transition: 0.3s ease all;
}
.main__chat .chat__box .controls__chat form .txt__area .area__controls > img {
  margin-right: 20px;
}
.main__chat .chat__box .controls__chat form .txt__area > textarea {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
  outline: none;
  resize: none;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 14px 20px;
  padding-top: 16.5px;
  padding-right: 115px;
  padding-bottom: 12px;
}
.main__chat .chat__box .content {
  height: 450px;
  overflow-y: auto;
  padding: 32px 24px;
}
.main__chat .chat__box .content .bubble__wrap {
  margin-bottom: 24px;
}
.main__chat .chat__box .content .bubble__wrap:last-child {
  margin-bottom: 0px;
}
.main__chat .chat__box .content .bubble__wrap.you {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.main__chat .chat__box .content .bubble__wrap.you .bubble {
  padding: 12px;
  background-color: #8378CB;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.main__chat .chat__box .content .bubble__wrap.you .bubble .desc > p {
  margin: 0px;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
}
.main__chat .chat__box .content .bubble__wrap.you .bubble .top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 9px;
}
.main__chat .chat__box .content .bubble__wrap.you .bubble .top > p {
  margin: 0px;
  display: inline-flex;
  font-family: "Clash", sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  font-weight: 500;
}
.main__chat .chat__box .content .bubble__wrap.you .bubble .top > span {
  display: block;
  margin-right: 7px;
  font-family: "Clash", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  position: relative;
  top: 1px;
}
.main__chat .chat__box .content .bubble__wrap.chat {
  display: flex;
  text-align: left;
  justify-content: flex-start;
}
.main__chat .chat__box .content .bubble__wrap.chat .bubble {
  padding: 12px;
  background-color: #F9F9F9;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.main__chat .chat__box .content .bubble__wrap.chat .bubble .desc > p {
  margin: 0px;
  font-size: 14px;
  line-height: 120%;
  color: #313131;
}
.main__chat .chat__box .content .bubble__wrap.chat .bubble .top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 9px;
}
.main__chat .chat__box .content .bubble__wrap.chat .bubble .top > p {
  margin: 0px;
  display: inline-flex;
  font-family: "Clash", sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #313131;
  font-weight: 500;
  margin-right: 7px;
}
.main__chat .chat__box .content .bubble__wrap.chat .bubble .top > span {
  display: block;
  font-family: "Clash", sans-serif;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  top: 1px;
  color: #313131;
}
.main__chat .chat__box .content::-webkit-scrollbar {
  width: 4px;
}
.main__chat .chat__box .content::-webkit-scrollbar-thumb {
  background-color: rgba(70, 53, 177, 0.984);
}
.main__chat .chat__box .head {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #EDEDED;
  border-bottom: 1px solid #DEDEDE;
}
.main__chat .chat__box .head > p {
  margin: 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #101010;
}
.main__chat .chat__box .head > p span {
  font-size: 16px;
  line-height: 20px;
  color: #767676;
  font-weight: 500;
}
.main__chat .chat__box .head > span {
  display: inline-flex;
  align-items: center;
  margin-right: 24px;
  justify-content: center;
}
.main__chat .chat__box .head > span img {
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 250px;
  object-fit: cover;
}
.main__chat .side__chat {
  width: 100%;
  max-width: 375px;
  border-right: 1px solid #DEDEDE;
}
.main__chat .side__chat .list__search {
  height: 554px;
  overflow-y: auto;
}
.main__chat .side__chat .list__search::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.main__chat .side__chat .list__search::-webkit-scrollbar-thumb {
  background-color: rgba(70, 53, 177, 0.984);
}
.main__chat .side__chat .list__search > .elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  padding-left: 24px;
  padding-right: 24px;
  text-decoration: none;
  transition: 0.3s ease all;
  border-bottom: 1px solid #DEDEDE;
}
.main__chat .side__chat .list__search > .elem:hover {
  background-color: #fafafa;
}
.main__chat .side__chat .list__search > .elem.current {
  background-color: #EDEBF7;
}
.main__chat .side__chat .list__search > .elem .date {
  min-width: 70px;
  text-align: right;
}
.main__chat .side__chat .list__search > .elem .date > span {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #767676;
}
.main__chat .side__chat .list__search > .elem .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.main__chat .side__chat .list__search > .elem .desc > span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #626161;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 130px;
  white-space: nowrap;
}
.main__chat .side__chat .list__search > .elem .desc > p {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 160px;
  white-space: nowrap;
}
.main__chat .side__chat .list__search > .elem > .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
.main__chat .side__chat .list__search > .elem > .media img {
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  border-radius: 250px;
  object-fit: cover;
}
.main__chat .side__chat .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding-left: 24px;
  background-color: #EDEDED;
  border-bottom: 1px solid #DEDEDE;
  padding-right: 24px;
}
.main__chat .side__chat .search > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main__chat .side__chat .search > input {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  border: 0px;
  outline: none;
  color: #101010;
  background-color: transparent;
  margin-right: 12px;
}
.main__chat .side__chat .search > input::-webkit-input-placeholder {
  color: #101010;
}
.main__chat .side__chat .search > input::-moz-placeholder {
  color: #101010;
}
.main__chat .side__chat .search > input:-ms-input-placeholder {
  color: #101010;
}
.main__chat .side__chat .search > input:-moz-placeholder {
  color: #101010;
}

.classes {
  padding-top: 80px;
}
.classes .outer__classes {
  position: relative;
  z-index: 2;
}
.classes .outer__classes > .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.classes .outer__classes > .content .main__flow {
  width: calc(100% - 480px);
}
.classes .outer__classes > .content .main__flow .classes__switcher {
  margin-bottom: 48px;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li {
  margin-right: 24px;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a {
  text-decoration: none;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #767676;
  transition: 0.3s ease all;
  position: relative;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a:before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 8px;
  bottom: -12px;
  background: url("../img/stateactive.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: 0.3s ease all;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a:hover {
  color: #101010;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a:hover:before {
  opacity: 1;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a.current {
  color: #101010;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li > a.current:before {
  opacity: 1;
}
.classes .outer__classes > .content .main__flow .classes__switcher ul > li:last-child {
  margin-right: 0px;
}
.classes .outer__classes > .content .main__flow .guide__info {
  width: 100%;
  padding: 24px;
  margin-bottom: 48px;
  border-radius: 16px;
  background-color: #EDEDED;
}
.classes .outer__classes > .content .main__flow .guide__info > h2 {
  margin-top: 0px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
  margin-bottom: 24px;
}
.classes .outer__classes > .content .main__flow .guide__info .progress__guide {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #DEDEDE;
}
.classes .outer__classes > .content .main__flow .guide__info .progress__guide .progess {
  width: 100%;
  margin-top: 8px;
  display: flex;
  position: relative;
  height: 4px;
  background-color: #E2E2E2;
  border-radius: 250px;
}
.classes .outer__classes > .content .main__flow .guide__info .progress__guide .progess .active {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background-color: #4635B1;
  border-radius: 250px;
}
.classes .outer__classes > .content .main__flow .guide__info .progress__guide .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.classes .outer__classes > .content .main__flow .guide__info .progress__guide .top > span {
  display: inline-flex;
  font-size: 16px;
  line-height: 20px;
  color: #767676;
  font-weight: 500;
}
.classes .outer__classes > .content .main__flow .guide__info .rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
}
.classes .outer__classes > .content .main__flow .guide__info .rows > .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.classes .outer__classes > .content .main__flow .guide__info .rows > .row > span {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
  font-weight: 500;
}
.classes .outer__classes > .content .main__flow .guide__info .rows > .row > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
}
.classes .outer__classes > .content .side {
  position: sticky;
  top: 25px;
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.classes .outer__classes > .content .side .score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1.5px solid #4635B1;
}
.classes .outer__classes > .content .side .score:last-child {
  margin-bottom: 0px;
}
.classes .outer__classes > .content .side .score > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #B0ADAD;
  font-weight: 600;
}
.classes .outer__classes > .content .side .score > p span {
  color: #4635B1;
}
.classes .outer__classes > .content .side .score > span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #4635B1;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}
.classes .outer__classes > .content .side .rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 24px;
  grid-column-gap: 14px;
  margin-bottom: 40px;
}
.classes .outer__classes > .content .side .rows > .el {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.classes .outer__classes > .content .side .rows > .el > span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #767676;
  font-weight: 500;
}
.classes .outer__classes > .content .side .rows > .el > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.classes .outer__classes > .content .side > p {
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 25px;
  color: #101010;
  font-weight: 600;
}
.classes .outer__classes > .content .side__wrapper {
  min-width: 400px;
  max-width: 400px;
  margin-left: 80px;
}
.classes .outer__classes > .head {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  align-items: flex-start;
}
.classes .outer__classes > .head > h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 60px;
  color: #101010;
  font-weight: 600;
}
.classes .outer__classes > .head > span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #8B8B8B;
}

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;
}

.content__switcher .list__student {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
}
.content__switcher .list__student .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 24px;
}
.content__switcher .list__student .list > .elem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.content__switcher .list__student .list > .elem > .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content__switcher .list__student .list > .elem > .desc > p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
.content__switcher .list__student .list > .elem > .desc > span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #767676;
}
.content__switcher .list__student .list > .elem .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.content__switcher .list__student .list > .elem .media img {
  min-width: 64px;
  max-width: 64px;
  min-height: 64px;
  max-height: 64px;
  border-radius: 250px;
  object-fit: cover;
}
.content__switcher .list__student > .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 26px;
}
.content__switcher .list__student > .top > p {
  margin-top: 0px;
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 24px;
  color: #101010;
  font-weight: 600;
}
.content__switcher .list__student > .top > span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #8B8B8B;
  font-weight: 500;
}

.schedule__wrapper--box {
  padding: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
}
.schedule__wrapper--box .title {
  margin-bottom: 24px;
}
.schedule__wrapper--box .title > p {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.schedule__wrapper--box .title > p > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

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

.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 .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;
}

.ongoing__class {
  padding: 80px 0px;
}
.ongoing__class .outer__ongoing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ongoing__class .outer__ongoing .plate {
  width: 100%;
  max-width: 800px;
  padding: 24px;
  border-radius: 16px;
  background-color: #EDEDED;
}
.ongoing__class .outer__ongoing .plate > p {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
  color: #101010;
  font-weight: 600;
}
.ongoing__class .outer__ongoing .plate .progress__info {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #DEDEDE;
}
.ongoing__class .outer__ongoing .plate .progress__info .bar {
  position: relative;
  background-color: #E2E2E2;
  border-radius: 250px;
  height: 4px;
  margin-top: 8px;
}
.ongoing__class .outer__ongoing .plate .progress__info .bar .active {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  border-radius: 250px;
  background-color: #4635B1;
}
.ongoing__class .outer__ongoing .plate .progress__info > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ongoing__class .outer__ongoing .plate .progress__info > .top > span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
  font-weight: 500;
}
.ongoing__class .outer__ongoing .plate .double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
}
.ongoing__class .outer__ongoing .plate .double > .elem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ongoing__class .outer__ongoing .plate .double > .elem > span {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  color: #767676;
  font-weight: 500;
}
.ongoing__class .outer__ongoing .plate .double > .elem > p {
  margin: 0px;
  font-size: 16px;
  line-height: 22px;
  color: #101010;
  font-weight: 600;
}
.ongoing__class .outer__ongoing .desc {
  min-width: 400px;
  max-width: 400px;
  margin-right: 45px;
}
.ongoing__class .outer__ongoing .desc .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}
.ongoing__class .outer__ongoing .desc .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;
}
.ongoing__class .outer__ongoing .desc .btn > a:hover {
  background-color: #4635B1;
  color: #fff;
}
.ongoing__class .outer__ongoing .desc .btn > a:hover span svg path {
  fill: #fff;
}
.ongoing__class .outer__ongoing .desc .btn > a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.ongoing__class .outer__ongoing .desc .btn > a span svg path {
  transition: 0.3s ease all;
}
.ongoing__class .outer__ongoing .desc > h2 {
  margin: 0px;
  margin-bottom: 8px;
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
  color: #101010;
}
.ongoing__class .outer__ongoing .desc > p {
  margin: 0px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  color: #8B8B8B;
}

.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;
}
.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;
}
.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;
}

.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;
}

.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;
}

@media (max-width: 1740px) {
  .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: 73%;
}
.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: 1200px) {
  .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;
  }
  .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;
  }
  .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;
  }
  .ongoing__class .outer__ongoing .desc > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .ongoing__class .outer__ongoing .desc {
    min-width: 340px;
    max-width: 340px;
  }
  .content__switcher .list__student .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .classes .outer__classes > .content .main__flow {
    width: calc(100% - 435px);
  }
  .classes .outer__classes > .head > h2 {
    font-size: 40px;
  }
  .classes .outer__classes > .content .side__wrapper {
    margin-left: 35px;
  }
  .message__wrapper .outer__message > .top > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .message__wrapper {
    padding: 55px 0px;
  }
  .main__chat .side__chat .list__search > .elem {
    padding-left: 15px;
    padding-right: 15px;
  }
  .resources__wrapper .outer__resources .head > .left > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .resources__wrapper {
    padding: 55px 0px;
  }
  .resources__main .elem__resources .grid .elem {
    padding: 15px;
  }
  .resources__main .elem__resources .grid .elem > .head > .left > p {
    font-size: 18px;
  }
  .schedule__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .schedule__wrapper .outer__schedule > .top > h2 {
    font-size: 40px;
  }
  .schedule__wrapper .outer__schedule > .top {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .schedule__box > .head > h6 {
    font-size: 18px;
  }
  .schedule__box > .head > a img {
    min-width: 32px;
    max-width: 32px;
  }
  header .profile__header .main__area {
    margin-left: 24px;
    margin-right: 24px;
  }
  header .profile__header .main__area .controls__header ul > li {
    margin-right: 24px;
  }
}
@media (max-width: 991px) {
  .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;
  }
  .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;
  }
  .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;
  }
  .ongoing__class {
    padding: 45px 0px;
  }
  .ongoing__class .outer__ongoing {
    flex-direction: column;
  }
  .ongoing__class .outer__ongoing .desc {
    min-width: 0px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0px;
  }
  .ongoing__class .outer__ongoing .plate {
    max-width: 100%;
  }
  .ongoing__class .outer__ongoing .desc > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .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;
  }
  .content__switcher .list__student {
    padding: 16px;
  }
  .content__switcher .list__student .list {
    grid-row-gap: 15px;
  }
  .schedule__wrapper--box {
    padding: 16px;
  }
  .schedule__wrapper--box .title {
    margin-bottom: 16px;
  }
  .schedule__wrapper--box .title > p {
    font-size: 18px;
  }
  .schedule__wrapper--box .title > p > span {
    margin-right: 12px;
  }
  .schedule__wrapper--box .title > p > span img {
    min-width: 38px;
    max-width: 38px;
  }
  .classes .outer__classes > .content .main__flow {
    width: 100%;
  }
  .classes {
    padding-top: 45px;
  }
  .classes .outer__classes > .head {
    margin-bottom: 25px;
  }
  .classes .outer__classes > .content .main__flow .classes__switcher {
    margin-bottom: 24px;
  }
  .classes .outer__classes > .content .main__flow .guide__info {
    margin-bottom: 24px;
  }
  .classes .outer__classes > .content {
    flex-direction: column-reverse;
  }
  .classes .outer__classes > .content .side__wrapper {
    margin-left: 0px;
    min-width: 0px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 25px;
  }
  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 .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;
  }
  .main__chat .side__chat {
    max-width: 300px;
  }
  .main__chat .side__chat .list__search > .elem > .media {
    margin-right: 10px;
  }
  .main__chat .side__chat .list__search > .elem > .media img {
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
  }
  .main__chat .side__chat .list__search > .elem .desc > p {
    font-size: 14px;
    line-height: 20px;
  }
  .main__chat .side__chat .list__search > .elem .desc > span {
    font-size: 12px;
    line-height: 16px;
  }
  .main__chat .side__chat .list__search > .elem .desc > p {
    width: 135px;
  }
  .resources__wrapper .outer__resources .head form .group__input > input {
    font-size: 18px;
    height: 50px;
  }
  .resources__main .elem__resources .grid .elem .content .thumbnail, .resources__main .elem__resources .grid .elem .content .score {
    padding: 15px;
  }
  .message__wrapper .outer__message > .top > h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
  }
  .message__wrapper .outer__message > .top {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .resources__wrapper .outer__resources .head > .left > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .resources__wrapper .outer__resources .head > .left > p {
    font-size: 17px;
  }
  .resources__wrapper .outer__resources > .head {
    flex-direction: column;
  }
  .resources__wrapper .outer__resources .head {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .resources__wrapper .outer__resources > .head > .left {
    width: 100%;
    margin-bottom: 15px;
  }
  .resources__wrapper .outer__resources .head form {
    max-width: 100%;
  }
  .resources__main .elem__resources .grid {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
  .schedule__wrapper .outer__schedule > .top > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .change__password .outer__change .step.final {
    padding: 40px 0px;
  }
  .change__password {
    padding: 45px 0px;
  }
  .change__password .outer__change .step > .head > h2 {
    font-size: 40px;
  }
  .change__password .outer__change .step > .head > p {
    font-size: 18px;
  }
  .change__password .outer__change .step > .head {
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .change__password .outer__change .step.final > h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .change__password .outer__change .step.final > span {
    margin-bottom: 25px;
  }
  .transaction__history {
    padding-bottom: 50px;
  }
  .payment__method {
    padding-top: 45px;
  }
  .transaction__history .outer__transaction > h6 {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .transaction__history .outer__transaction .history__table table tr td {
    padding: 15px 24px;
  }
  .transaction__history .outer__transaction .history__table table tr td > p {
    font-size: 18px;
  }
  .transaction__history .outer__transaction .history__table table tr th {
    padding: 15px 24px;
    font-size: 18px;
  }
  .payment__method .head > h2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
  }
  .payment__method .head > p {
    font-size: 18px;
  }
  .payment__method .method {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment__method .method > span {
    margin-bottom: 15px;
  }
  .payment__method .method > ul {
    margin-bottom: 15px;
  }
  .payment__method .method > p {
    margin-bottom: 15px;
  }
  header .profile__header {
    padding: 20px 0px;
  }
  .subtitle .outer__sub > h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
  }
  header .profile__header .main__area {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    max-width: 290px;
    height: 100%;
    background-color: #fff;
    flex-direction: column-reverse;
    padding-top: 25px;
    align-items: center;
    margin-right: 0px;
    margin-left: 0px;
    z-index: 3;
    padding-left: 22px;
    padding-right: 22px;
    right: -290px;
    transition: 0.45s ease all;
    justify-content: flex-end;
  }
  header .profile__header .main__area > ul {
    width: 100%;
    margin-top: 25px;
  }
}
.chat__box .head > a {
  display: none;
}

.main__chat .chat__box .head > p span {
  display: block;
}

.main__chat .chat__box .head {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 767px) {
  .feedback__wrapper .outer__feedback .inner .elem {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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%;
  }
  .content__switcher .list__student .list > .elem .media {
    margin-right: 12px;
  }
  .content__switcher .list__student .list > .elem .media img {
    min-width: 58px;
    max-width: 58px;
    min-height: 58px;
    max-height: 58px;
  }
  .content__switcher .list__student .list > .elem > .desc > span {
    font-size: 14px;
    line-height: 20px;
  }
  .content__switcher .list__student .list > .elem > .desc > p {
    margin-bottom: 2px;
    font-size: 17px;
    line-height: 24px;
  }
  .content__switcher .list__student .list {
    grid-template-columns: 1fr;
  }
  .classes .outer__classes > .content .side > p {
    margin-bottom: 24px;
  }
  .classes .outer__classes > .content .side .score {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .classes .outer__classes > .content .side .score > span {
    margin-bottom: 5px;
  }
  .classes .outer__classes > .content .side .rows {
    grid-template-columns: 1fr;
    margin-bottom: 25px;
    grid-row-gap: 16px;
  }
  .classes .outer__classes > .content .main__flow .classes__switcher {
    overflow-x: auto;
    width: calc(100% + 15px);
  }
  .classes .outer__classes > .content .main__flow .classes__switcher ul > li:last-child {
    padding-right: 15px;
  }
  .classes .outer__classes > .content .main__flow .classes__switcher {
    height: 35px;
  }
  .classes .outer__classes > .content .main__flow .classes__switcher ul > li > a {
    white-space: nowrap;
  }
  .classes .outer__classes > .content .main__flow .guide__info .rows {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .main__chat .chat__box .head > p span {
    font-size: 12px;
    line-height: 16px;
  }
  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;
  }
  .message__wrapper {
    padding: 35px 0px;
  }
  .message__wrapper .outer__message > .top > p {
    font-size: 18px;
  }
  .message__wrapper .outer__message > .top > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .main__chat .chat__box .head > p {
    font-size: 17px;
    line-height: 23px;
  }
  .main__chat .chat__box .head > span {
    margin-right: 15px;
  }
  .main__chat .chat__box .head > span img {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }
  .chat__box .head > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-left: -5px;
  }
  .chat__box .head > a img {
    max-width: 22px;
    min-width: 22px;
  }
  .main__chat .chat__box .controls__chat form .txt__area .area__controls {
    display: none;
  }
  .main__chat .chat__box .controls__chat form .txt__area > textarea {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main__chat .side__chat {
    position: absolute;
    left: 0px;
    display: none;
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 3;
  }
  .main__chat .side__chat .list__search > .elem .desc {
    width: calc(100% - 150px);
  }
  .main__chat .side__chat .list__search > .elem .desc > span, .main__chat .side__chat .list__search > .elem .desc > p {
    width: 100%;
  }
  .main__chat {
    position: relative;
  }
  .resources__wrapper .resources__head .double {
    width: 100%;
    flex-direction: column;
  }
  .resources__wrapper .resources__head .double > .group__dropdown {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .resources__wrapper .resources__head .double > .group__dropdown:last-child {
    margin-bottom: 0px;
  }
  .resources__wrapper {
    padding: 35px 0px;
  }
  .resources__wrapper .resources__head {
    flex-direction: column;
  }
  .resources__wrapper .resources__head > ul {
    margin-right: auto;
    margin-bottom: 15px;
  }
  .resources__wrapper .resources__head .group__dropdown {
    max-width: 100%;
  }
  .resources__main {
    margin-top: 25px;
  }
  .schedule__wrapper .outer__schedule > .top {
    flex-direction: column;
    align-items: flex-start;
  }
  .schedule__wrapper .outer__schedule > .top > h2 {
    margin-bottom: 10px;
  }
  .change__password .outer__change .step .content .fields {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .payment__method .method > ul > li {
    font-size: 18px;
  }
  .payment__method .method > p {
    font-size: 18px;
  }
  .payment__method .head > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .payment__method {
    padding: 30px 0px;
  }
  .payment__method .head {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .transaction__history .outer__transaction > h6 {
    font-size: 22px;
  }
  .transaction__history .outer__transaction .history__table table tr th, .transaction__history .outer__transaction .history__table table tr td {
    white-space: nowrap;
  }
  .transaction__history .outer__transaction .box .head {
    flex-direction: column;
    align-items: flex-start;
  }
  .transaction__history .outer__transaction .box .head > p {
    margin-bottom: 15px;
  }
  .transaction__history .outer__transaction .history__table {
    overflow-x: auto;
  }
  .transaction__history .outer__transaction .box .head .drops {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
  .transaction__history .outer__transaction .box .head .drops .group__dropdown {
    margin-right: 0px;
    width: 100%;
  }
  .transaction__history .outer__transaction .box .head .drops .group__dropdown > a {
    min-width: 0px;
    width: 100%;
    max-width: 100%;
  }
  header .profile__header {
    padding: 15px 0px;
  }
  header .profile__header .logo a img {
    max-width: 125px;
  }
  header .profile__header .profile > a {
    font-size: 0px;
  }
  header .profile__header .profile > a > span {
    margin-right: 0px;
  }
  header .profile__header .profile > a > img {
    margin-left: 10px;
  }
  .change__password .outer__change .step .content > a {
    margin-top: 25px;
  }
  .classes .outer__classes > .content .main__flow .guide__info > h2 {
    margin-bottom: 15px;
  }
  .ongoing__class .outer__ongoing .plate > p {
    font-size: 18px;
  }
  .ongoing__class .outer__ongoing .plate {
    padding: 16px;
  }
  .ongoing__class .outer__ongoing .plate .progress__info {
    padding-top: 15px;
    margin-top: 15px;
  }
  .learn__wrapper .outer__learn .grid > .elem .content > p {
    margin-bottom: 22px;
    margin-bottom: 10px;
  }
  .learn__wrapper .outer__learn .grid > .elem {
    padding: 20px;
  }
  .tutors__wrapper .outer__tutors .head {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .feedback__wrapper .outer__feedback .inner .slick-slide {
    height: initial !important;
  }
}
.tutors__wrapper .outer__tutors .slider .slide__elem .inn .desc .top > p {
  margin-right: 7px;
}

@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;
  }
  .classes .outer__classes > .content .side {
    padding: 15px;
  }
  .transaction__history .outer__transaction .history__table table {
    min-width: 640px;
  }
  .transaction__history .outer__transaction .history__table {
    width: calc(100% + 24px);
  }
}
.our__classes .outer__classes > p {
  margin-top: 0px;
}

@media (max-width: 480px) {
  .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;
  }
  .learn__wrapper .outer__learn > 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;
  }
  .ongoing__class .outer__ongoing .desc > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .ongoing__class .outer__ongoing .desc .btn {
    margin-top: 15px;
  }
  .ongoing__class .outer__ongoing .desc .btn > a {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .ongoing__class {
    padding: 25px 0px;
  }
  .ongoing__class .outer__ongoing .plate .double {
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
  }
  .schedule__wrapper--box .schedule__box > .head > h6 {
    font-size: 14px;
    line-height: 18px;
  }
  .main__chat .chat__box .head {
    flex-direction: column;
    align-items: flex-start;
  }
  .main__chat .chat__box .head > span {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  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;
  }
  .main__chat .chat__box .controls__chat {
    padding: 15px;
  }
  .main__chat .chat__box .head {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main__chat .chat__box .content {
    padding: 24px 15px;
  }
  .main__chat .chat__box .controls__chat form .group__submit {
    margin-left: 10px;
  }
  .resources__wrapper .outer__resources .head > .left > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .schedule__box > .head {
    padding: 15px;
  }
  .schedule__box > .head > a img {
    min-width: 24px;
    max-width: 24px;
  }
  .schedule__box > .head > h6 {
    font-size: 16px;
  }
  .schedule__wrapper {
    padding: 30px 0px;
  }
  .change__password .outer__change .step .content .fields .verification__code .groups > input {
    width: 48px;
    height: 48px;
  }
  .change__password .outer__change .step .content .fields .verification__code {
    max-width: 285px;
  }
  .change__password .outer__change .step > .head > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .change__password .outer__change .step.final > h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .change__password .outer__change .step.final > span img {
    max-width: 210px;
  }
  .payment__method .method .btn > a {
    padding-left: 16px;
    padding-right: 16px;
    min-height: 48px;
  }
  .payment__method .head > h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .payment__method .head > p {
    font-size: 16px;
  }
  .payment__method .method {
    padding: 15px;
  }
  .transaction__history .outer__transaction .history__table {
    width: calc(100% + 15px);
  }
  .transaction__history .outer__transaction .box .head .drops {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .transaction__history .outer__transaction .box .head > p > span {
    margin-right: 15px;
  }
  .transaction__history .outer__transaction .box {
    padding: 15px;
  }
}

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