/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  }

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  }

ul[class],
ol[class] {
  list-style: none;
  }

a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
  }

a {
  color: #ED484A;
  text-decoration: none;
  transition: color .3s linear;
  }

a:hover { 
  color: #ec2f32;
  }

a:focus,
a:hover,
a:active { 
  outline: none !important;
  }

p { 
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 24px;
  }

b, strong { 
  font-weight: 700;
  }

button { 
  margin: 0;
  padding: 0;
  vertical-align: top;
  border: 0;
  background: none;
  border-radius: 0;
  }

button:focus,
button:hover,
button:active { 
  outline: none !important;
  }

img {
  max-width: 100%;
  display: block;
  }

article > * + * {
  margin-top: 1em;
  }

fieldset { 
  margin: 0;
  padding: 0;
  border: 0;
  }

input,
button,
textarea,
select {
  font: inherit;
  }

input:focus,
input:hover,
input:active,
textarea:focus,
textarea:hover,
textarea:active { 
  outline: none !important;
  }

iframe { vertical-align: top; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    }
  }

[class*=__container] {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1600px;
  }

/* label */
label {
  display: block;
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 400;
  font-family: 'Circe', sans-serif;
  line-height: 26px;
  }

/* input */
input[type='tel'],   
input[type='text'],
input[type='email'],
input[type='password'] {
  margin: 0;
  padding: 0 20px;
  vertical-align: top;
  width: 100%;
  height: 80px;
  color: #000;
  font-size: 16px;
  font-family: 'Circe', sans-serif;
  font-weight: 300;
  border: 0;
  background: #fff;
  border-radius: 12px;
  transition: .3s border-color;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  }

input[type='tel']:focus,   
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus {
  border-color: rgba(0, 0, 0, 0.2);
  }

input[type='tel']::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder {
  color: #282835;
  opacity: 1;
  outline: none;
  }

input[type='tel']::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder {
  color: #282835;
  opacity: 1;
  outline: none;
  }

/* textarea */
textarea {
  margin: 0;
  padding: 37px 41px;
  vertical-align: top;
  width: 100%;
  height: 202px;
  color: #000;
  font-size: 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 26px;
  border: 1px solid #ebeced;
  background: #f9fafb;
  border-radius: 8px;
  overflow: auto;
  resize: none;
  transition: .3s border-color;
  }

textarea:focus {
  border-color: #dbdcdc;
  }

textarea::-moz-placeholder {
  color: #000;
  opacity: 1;
  outline: none;
  }

textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  outline: none;
  }

/* field-input */
.field-input {
  position: relative;
  }

.field-input_gray-arrow:after {
  position: absolute;
  display: block;
  width: 16px;
  height: 10px;
  top: 36px;
  right: 30px;
  background: url(../img/bg/gray-arrow.svg) center no-repeat;
  background-size: 100%;
  z-index: 5;
  content: "";
  }

.field-input label {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0 25px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #282835;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  }

.field-input label span {
  color: #EB484A;
  }

.field-input label.active {
  display: none;
  }

.field-input input[type='tel'],   
.field-input input[type='text'],
.field-input input[type='email'],
.field-input input[type='password'],
.field-input input[type='date'] {
  margin: 0;
  padding: 0 25px;
  vertical-align: top;
  width: 100%;
  height: 80px;
  color: #282835;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  border: 0;
  background: #F5F5F5;
  border-radius: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  }

.field-input_gray-bg input[type='tel'],   
.field-input_gray-bg input[type='text'],
.field-input_gray-bg input[type='email'],
.field-input_gray-bg input[type='password'],
.field-input_gray-bg input[type='date'] {
  background: #eaeaec;
  }

.field-input_l-gray-bg input[type='tel'],   
.field-input_l-gray-bg input[type='text'],
.field-input_l-gray-bg input[type='email'],
.field-input_l-gray-bg input[type='password'],
.field-input_l-gray-bg input[type='date'] {
  background: #F5F5F5;
  }

.field-input_white-bg input[type='tel'],
.field-input_white-bg input[type='text'],
.field-input_white-bg input[type='email'],
.field-input_white-bg input[type='password'],
.field-input_white-bg input[type='date'] {
  border: 1px solid #D2D2D2;
  background: #fff;
  }

.field-textarea {
  position: relative;
  }

.field-textarea textarea {
  margin: 0;
  padding: 20px 25px;
  vertical-align: top;
  width: 100%;
  height: 180px;
  color: #282835;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  border: 0;
  background: #F5F5F5;
  border-radius: 13px;
  overflow: auto;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  }

.field-textarea label {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0 25px;
  top: 20px;
  left: 0;
  color: #282835;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  }

.field-textarea label span {
  color: #EB484A;
  }

.field-textarea label.active {
  display: none;
  }

/* file-input */
.file-input {
  position: relative;
  padding: 14px 16px;
  background: #F5F5F5;
  border-radius: 13px;
  }

.file-input label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 72px 0 0;
  cursor: pointer;
  }

.file-input__icon {
  display: block;
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 32px;
  cursor: pointer;
  }

.file-input__icon img {
  width: 100%;
  }

.file-input__text {
  display: block;
  width: 275px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
  overflow: hidden;
  cursor: pointer;
  }

.file-input input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  vertical-align: top;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
  }

.file-input__delete {
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 0;
  background: url(../img/bg/close-icon.svg) center no-repeat #ED484A;
  background-size: 14px;
  border-radius: 100%;
  z-index: 7;
  cursor: pointer;
  transition: .3s background-color;
  }

.file-input__delete:hover {
  background-color: #f45e60;
  }

/* checkbox */
.checkbox { 
  display: flex;
  }

.checkbox input { 
  position: relative;
  flex-shrink: 0;
  display: block;
  margin: 0 11px 0 0;
  width: 26px;
  height: 26px;
  border: 0;
  background: #ED484A;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  }

.checkbox input:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/checkbox-check-white.svg) center no-repeat;
  content: "";
  opacity: 0;
  transition: .3s opacity;
  }

.checkbox input:checked:before { opacity: 1; }

.checkbox_white-color input {
  background: #fff;
  } 

.checkbox_white-color input:before {
  background: url(../img/bg/checkbox-check.svg) center no-repeat;
  }

.checkbox label { 
  margin: 0;
  font-size: 14px;
  line-height: 19px;
  cursor: text;
  }

.checkbox label a { 
  position: relative;
  font-weight: 700;
  text-decoration: underline;
  }

/* form-text */
.form-text {
  display: block;
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  }

/* text */
.text-center {
  text-align: center;
  }

.text-right {
  text-align: right;
  }

/* mov-btn */
.mov-btn {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  font-size: 0;
  background: rgb(255,169,47);
  background: linear-gradient(180deg, rgba(255,169,47,1) 0%, rgba(204,100,0,1) 100%);
  border-radius: 100%;
  box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.42) inset;
  cursor: pointer;
  transition: .3s opacity;
  }

.mov-btn:hover {
  opacity: 0.95;
  }

.mov-btn:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/play-icon.svg) center no-repeat;
  content: "";
  }

.mov-btn_big-size {
  width: 110px;
  height: 110px;
  }

.mov-btn_big-size:before {
  background: url(../img/bg/play-icon-big.svg) center no-repeat;
  }

/* body */
body { 
  min-width: 320px;
  color: #282835;
  font-size: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  }

/* header */
.header {
  background: #fff;
  }

/* header__col */
.header__col {
  display: flex;
  align-items: center;
  gap: 0 90px;
  }

/* header__content */
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #DADAE1;
  }

/* city-time */
.city-time {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0 32px;
  font-size: 16px;
  line-height: 22px;
  }

.city-time:before {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/bg/time-icon.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

/* profile */
.profile {
  position: relative;
  }

/* profile__name */
.profile__name {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 41px 0 0;
  cursor: pointer;
  }

.profile__name:before {
  position: absolute;
  display: block;
  width: 22px;
  height: 14px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/bg/down-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.profile__name.show:before {
  opacity: 0;
  }

.profile__name:after {
  position: absolute;
  display: block;
  width: 22px;
  height: 14px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/bg/up-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  opacity: 0;
  }

.profile__name.show:after {
  opacity: 1;
  }

.profile__photo {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin: 0 8px 0 0;
  width: 60px;
  height: 60px;
  background: #FFA92F;
  border-radius: 100%;
  }

.profile__photo span {
  display: block;
  color: #fff;
  font-size: 34px;
  text-align: center;
  line-height: 46px;
  }

.profile__text {
  display: block;
  font-size: 21px;
  line-height: 28px;
  }

/* profile__dropdown */
.profile__dropdown {
  position: absolute;
  padding: 8px;
  min-width: 210px;
  top: 74px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 60px 0 rgba(0, 0, 0, 0.10);
  transition: .4s;
  z-index: 40;
  }

.profile__dropdown.show {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  }

.profile__list li {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  }

.profile__list li:last-child {
  margin: 0;
  }

.profile__icon {
  flex-shrink: 0;
  margin: 0 8px 0 0;
  width: 24px;
  }

.profile__icon img {
  width: 100%;
  }

.profile__text {
  font-size: 16px;
  line-height: 21px;
  }

.profile__text strong {
  font-weight: 600;
  }

.profile__text a {
  color: #282835;
  }

.profile__text a:hover {
  color: #ED484A;
  }

/* header__bottom-panel */
.header__bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 0 0;
  }

/* logo */
.logo {
  width: 159px;
  }

.logo img {
  width: 100%;
  }

/* header__mobile-btn */
.header__mobile-btn {
  display: none;
  }

/* main-navi */
.main-navi ul {
  display: flex;
  gap: 0 58px;
  list-style: none;
  }

.main-navi li {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 22px;
  }

.main-navi__action a {
  position: relative;
  display: block;
  padding: 0 0 0 22px;
  }

.main-navi__action a:before {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
  background: url(../img/bg/action-icon.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.main-navi a {
  color: #282835;
  }

.main-navi a:hover {
  color: #ED484A;
  }

/* user-panel */
.user-panel {
  display: flex;
  align-items: center;
  gap: 0 48px;
  }

.user-panel__item {
  display: flex;
  align-items: center;
  color: #282835;
  }

.user-panel__item:hover {
  color: #ED484A;
  }

.user-panel__icon {
  display: block;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  width: 40px;
  }

.user-panel__icon img {
  width: 100%;
  }

.user-panel__text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 0.5px;
  }

/* communication__panel */
.communication__panel {
  display: flex;
  align-items: center;
  gap: 0 83px;
  }

/* mail-link */
.mail-link {
  display: flex;
  align-items: center;
  color: #282835;
  }

.mail-link:hover {
  color: #ED484A;
  }

.mail-link__icon {
  display: block;
  flex-shrink: 0;
  margin: 0 9px 0 0;
  width: 40px;
  }

.mail-link__icon img {
  width: 100%;
  }

.mail-link__text {
  font-size: 16px;
  line-height: 24px;
  }

/* wechat-link */
.wechat-link {
  display: flex;
  align-items: center;
  color: #282835;
  }

.wechat-link:hover {
  color: #ED484A;
  }

.wechat-link__icon {
  display: block;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  width: 50px;
  }

.wechat-link__text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 26px;
  }

/* main-section */
.main-section {
  position: relative;
  }

.main-section:before {
  position: absolute;
  display: block;
  width: 1639px;
  height: 935px;
  top: 30px;
  left: 50%;
  background: url(../img/bg/main-section-bg.png) center no-repeat;
  background-size: 100%;
  transform: translateX(-50%);
  content: "";
  }

.main-section__in {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 267px 112px 10px 97px;
  z-index: 5;
  }

/* main-section__left-col */
.main-section__left-col {
  max-width: 242px;
  width: 100%;
  }

/* main-section__small-title */
.main-section__small-title {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  line-height: 28px;
  }

/* info-catalog */
.info-catalog {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  }

.info-catalog__item {
  padding: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.08);
  }

.info-catalog__icon {
  margin: 0 0 12px;
  }

.info-catalog__title {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  }

/* main-section__mid-col */
.main-section__mid-col {
  padding: 18px 0 0;
  max-width: 680px;
  width: 100%;
  transform: translateX(-7px);
  }

/* main-section__info-widget */
.main-section__info-widget {
  margin: 0 auto 14px;
  padding: 11px 25px 12px;
  max-width: 630px;
  background: #FFC445;
  border-radius: 16px;
  box-shadow: 0 15px 40px 0 rgba(3, 3, 20, 0.06);
  }

.main-section__big-title {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  }

/* news-catalog */
.news-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 13px;
  }

.news-catalog__item {
  padding: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.08);
  }

.news-catalog__date {
  display: block;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.4;
  }

.news-catalog__title {
  margin: 0 0 9px;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  }

.news-catalog__title a {
  color: #282835;
  }

.news-catalog__title a:hover {
  color: #D63A3A;
  }

.news-catalog__item p {
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 19px;
  }

.news-catalog__more {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  text-decoration: underline;
  line-height: 19px;
  }

/* main-section__right */
.main-section__right {
  padding: 34px 0 0;
  max-width: 220px;
  width: 100%;
  }

.main-section__right .gl-btn {
  margin: 0 0 17px;
  width: 100%;
  }

/* main-section__mov-title */
.main-section__mov-title {
  margin: 0 0 30px;
  color: #D63A3A;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  letter-spacing: 0.4px;
  }

/* mov-catalog */
.mov-catalog {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
  }

.mov-catalog__item a {
  position: relative;
  display: block;
  }

.mov-catalog__item a:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(7, 7, 10, 0.50);
  border-radius: 16px;
  content: "";
  }

.mov-catalog__item img {
  width: 100%;
  border-radius: 16px;
  }

.mov-catalog__item .mov-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  }

/* free-lesson-section */
.free-lesson-section {
  padding: 40px 0;
  background: url(../img/bg/free-lesson-bg.jpg) center no-repeat;
  background-size: cover;
  }

/* free-lesson-section__title */
.free-lesson-section__title {
  margin: 0 0 32px;
  color: #fff;
  font-size: 32px;
  line-height: 44px;
  }

.free-lesson-section__title span {
  color: #ED484A;
  }

/* free-lesson-section__form */
.free-lesson-section__form form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 282px;
  gap: 0 37px;
  }

.free-lesson-section .field-input label { 
  color: #fff;
  }

.free-lesson-section .field-input input[type='tel'],   
.free-lesson-section .field-input input[type='text'],
.free-lesson-section .field-input input[type='email'],
.free-lesson-section .field-input input[type='password'] {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  }

/* section */
.section {
  position: relative;
  padding: 130px 0;
  background: #f6f6f8;
  }

.section_border-bottom:after {
  position: absolute;
  display: block;
  width: 1570px;
  height: 1px;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
  background: #DADAE1;
  content: "";
  }

/* title */
.title {
  margin: 0 0 40px;
  font-size: 64px;
  font-weight: 400;
  line-height: 88px;
  }

.title span {
  color: #ED484A;
  }

/* direction-tabs */
.direction-tabs {
  margin: 0 0 80px;
  }

.direction-tabs__nav {
  margin: 0 0 48px;
  }

.direction-tabs__nav ul {
  display: flex;
  align-items: center;
  gap: 0 30px;
  list-style: none;
  }

.direction-tabs__nav li {
  position: relative;
  min-width: 170px;
  color: #ED484A;
  font-size: 16px;
  text-align: center;
  line-height: 19px;
  border: 1px solid #ED484A;
  cursor: pointer;
  border-radius: 12px;
  transition: .3s all;
  }

.direction-tabs__nav li:hover {
  color: #000;
  }

.direction-tabs__nav li:before {
  position: absolute;
  display: block;
  margin: -2px 0 0;
  height: 67px;
  top: 50%;
  left: -1px;
  right: -1px;
  transform: translateY(-50%);
  background: url(../img/bg/tabs-bg.svg) center no-repeat;
  background-size: cover;
  z-index: 3;
  content: "";
  opacity: 0;
  transition: .3s opacity;
  }

.direction-tabs__nav .active:before {
  opacity: 1;
  }

.direction-tabs__nav .active {
  border-color: #000;
  }

.direction-tabs__nav .active span {
  color: #000;
  }

.direction-tabs__nav span {
  position: relative;
  display: block;
  padding: 10px;
  z-index: 5;
  }

.direction-tabs__nav span:before {
  position: absolute;
  display: block;
  width: 56px;
  height: 24px;
  top: 30px;
  left: 0;
  background: url(../img/bg/tabs-l-dec.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.direction-tabs__nav span:after {
  position: absolute;
  display: block;
  width: 68px;
  height: 50px;
  top: 5px;
  right: 3px;
  background: url(../img/bg/tabs-r-dec.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.direction-tabs__nav strong {
  font-weight: 600;
  }

.direction-tabs__item {
  display: none;
  }

.direction-tabs__item.active {
  display: block;
  }

/* direction-catalog */
.direction-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  }

.direction-catalog__item {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.06);
  }

/* direction-catalog__description */
.direction-catalog__description {
  padding: 30px 22px 30px 32px;
  }

.direction-catalog__course {
  display: block;
  margin: 0 0 9px;
  color: #282835;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  }

.direction-catalog__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.direction-catalog__list {
  margin: 0 0 16px;
  }

.direction-catalog__list li {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  }

.direction-catalog__list li:before {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0;
  background: #ED484A;
  border-radius: 100%;
  content: "";
  }

.direction-catalog__list li:last-child {
  margin: 0;
  }

.direction-catalog__more {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 24px;
  font-size: 16px;
  text-decoration: underline;
  line-height: 21px;
  }

.direction-catalog__price {
  display: flex;
  align-items: flex-start;
  gap: 0 5px;
  margin: 0 0 27px;
  }

.direction-catalog__price dt {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  }

.direction-catalog__price dd {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  }

.direction-catalog__btn {
  position: relative;
  display: block;
  padding: 9px 15px;
  font-size: 16px;
  text-align: center;
  line-height: 21px;
  }

.direction-catalog__btn:before {
  position: absolute;
  display: block;
  width: 317px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/bg/btn-bg-transparet-2.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.direction-catalog__btn span {
  position: relative;
  display: block;
  z-index: 5;
  }

/* direction-catalog__photo */
.direction-catalog__photo {
  flex-shrink: 0;
  width: 400px;
  }

.direction-catalog__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
  }

/* btns-panel */
.btns-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  }

/* action-section */
.action-section {
  background: url(../img/bg/action-section-bg.jpg) center no-repeat #f8f8fa;
  }

/* action-catalog */
.action-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 80px;
  }

.action-catalog__item {
  padding: 48px 34px 0;
  background: rgb(214,58,58);
  color: #fff;
  background: url(../img/bg/action-catalog-bg.svg) center no-repeat;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 11px 60px 0 rgba(0, 0, 0, 0.3);
  }

.action-catalog__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 44px;
  }

.action-catalog__item p {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 35px;
  }

.action-catalog__more {
  position: relative;
  display: block;
  padding: 13px 20px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  }

.action-catalog__more:hover {
  color: #fff;
  }

.action-catalog__more:before {
  position: absolute;
  display: block;
  width: 402px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/bg/action-catalog-btn-bg.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.action-catalog__more span {
  display: block;
  z-index: 5;
  }

.action-catalog__img {
  margin: 0 auto;
  max-width: 332px;
  }

.action-catalog__img img {
  width: 100%;
  }

/* training */
.training {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  }

/* training-steps */
.training-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  }

.training-steps__item {
  position: relative;
  }

.training-steps__item.active {
  z-index: 30;
  }

.training-steps__content {
  position: relative;
  padding: 32px;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 11px 60px 0 rgba(3, 3, 20, 0.04);
  }

.training-steps__item.active .training-steps__content {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  box-shadow: 0 11px 60px 0 rgba(3, 3, 20, 0.1);
  z-index: 5;
  }

.training__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  }

.training__info p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 24px;
  }

.training-steps__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 32px;
  }

.training-steps__icon {
  display: flex;
  align-items: center;
  height: 51px;
  }

.training-steps__number {
  position: relative;
  display: block;
  padding: 0 0 0 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.training-steps__number:before {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ED484A;
  content: "";
  }

.training-steps__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  }

.training-steps__title span {
  color: #ED484A;
  }

.training-steps__text {
  display: none;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 23px;
  }

.training-steps__text.show {
  display: block;
  }

.training-steps__more-btn {
  position: absolute;
  display: block;
  margin: 0 0 0 -16px;
  width: 32px;
  height: 32px;
  left: 50%;
  bottom: -16px;
  font-size: 0;
  background: url(../img/bg/more-btn.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: .3s transform;
  z-index: 10;
  }

.training-steps__item.active .training-steps__more-btn {
  transform: rotate(45deg);
  }

/* training__info */
.training__info {
  margin: 0 0 25px;
  padding: 46px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 11px 60px 0 rgba(3, 3, 20, 0.04);
  }

/* uniqueness-section */
.uniqueness-section {
  background: url(../img/bg/uniqueness-section-bg.jpg) center no-repeat #f8f8fa;
  }

/* uniqueness */
.uniqueness {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  }

/* uniqueness__title */
.uniqueness__title {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  }

.uniqueness__title strong {
  font-weight: 600;
  }

.uniqueness__title span {
  color: #ED484A;
  }

/* uniqueness__list */
.uniqueness__list li {
  position: relative;
  margin: 0 0 30px;
  padding: 16px 32px 16px 80px;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  background: #ED484A;
  border-radius: 12px;
  }

.uniqueness__list li:before {
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  background: url(../img/bg/uniqueness-check.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.uniqueness__list li:last-child {
  margin: 0;
  }

.uniqueness__list_white-color li {
  color: #282835;
  background: #fff;
  }

.uniqueness__list_white-color li:before {
  background: url(../img/bg/uniqueness-minus.svg) center no-repeat;
  background-size: 100%;
  }

/* gl-arrow */
.gl-arrow-prev.swiper-button-prev,
.gl-arrow-next.swiper-button-next {
  position: absolute;
  margin: 0;
  width: 72px;
  height: 72px;
  top: 0;
  opacity: 1;
  }

.gl-arrow-prev.swiper-button-prev {
  left: -111px;
  }

.gl-arrow-next.swiper-button-next {
  right: -111px;
  }

.gl-arrow-prev.swiper-button-prev:before,
.gl-arrow-next.swiper-button-next:before {
  position: absolute;
  display: block;
  width: 72px;
  height: 72px;
  top: 0;
  left: 0;
  transition: .3s opacity;
  content: "";
  }

.gl-arrow-prev.swiper-button-prev:hover:before,
.gl-arrow-next.swiper-button-next:hover:before {
  opacity: 0;
  }

.gl-arrow-prev.swiper-button-prev:before {
  background: url(../img/bg/gl-arrow-left.svg) center no-repeat;
  background-size: 100%;
  }

.gl-arrow-next.swiper-button-next:before {
  background: url(../img/bg/gl-arrow-right.svg) center no-repeat;
  background-size: 100%;
  }

.gl-arrow-prev.swiper-button-prev:after,
.gl-arrow-next.swiper-button-next:after {
  position: absolute;
  display: block;
  width: 72px;
  height: 72px;
  top: 0;
  left: 0;
  opacity: 0;
  content: "";
  transition: .3s opacity;
  }

.gl-arrow-prev.swiper-button-prev:hover:after,
.gl-arrow-next.swiper-button-next:hover:after {
  opacity: 1;
  }

.gl-arrow-prev.swiper-button-prev:after {
  background: url(../img/bg/gl-arrow-left-h.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-arrow-next.swiper-button-next:after {
  background: url(../img/bg/gl-arrow-right-h.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-arrow-prev.swiper-button-prev.swiper-button-disabled,
.gl-arrow-next.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  }

/* gl-pagination */
.gl-pagination.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  padding: 64px 0 2px;
  }

.gl-pagination .swiper-pagination-bullet {
  display: block;
  margin: 0 !important;
  width: 15px;
  height: 15px;
  background: #dddde0;
  border-radius: 100%;
  opacity: 1;
  cursor: pointer;
  }

.gl-pagination .swiper-pagination-bullet-active {
  background: #ED484A;
  cursor: default;
  }

/* gallery-slider */
.gallery-slider {
  position: relative;
  }

.gallery-slider .gl-arrow-prev.swiper-button-prev, 
.gallery-slider .gl-arrow-next.swiper-button-next {
  top: 113px;
  }

.gallery-slider__item img {
  width: 100%;
  border-radius: 30px;
  }

/* application */
.application {
  background: #f6f6f8;
  }

.application__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px;
  color: #fff;
  background: url(../img/bg/application-bg.jpg) center no-repeat;
  background-size: cover;
  border-radius: 30px;
  }

/* application__description */
.application__description {
  max-width: 600px;
  }

.application__title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
  }

.application__text {
  margin: 0 0 75px;
  font-size: 32px;
  line-height: 44px;
  }

.application__small-text {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  }

.application__small-text a {
  color: #fff;
  }

/* application__form */
.application__form form {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  max-width: 422px;
  }

.application input[type='tel'],   
.application input[type='text'],
.application input[type='email'],
.application input[type='password'] {
  background: #fff;
  }

.application__checkbox a {
  color: #fff;
  }

/* teachers-section */
.teachers-section {
  background: url(../img/bg/teachers-section-bg.jpg) center no-repeat #f8f8fa;
  }

/* teachers-slider */
.teachers-slider {
  position: relative;
  }

.teachers-slider .gl-arrow-prev.swiper-button-prev, 
.teachers-slider .gl-arrow-next.swiper-button-next {
  top: 356px;
  }

.teachers-slider__item {
  background: #fff;
  border-radius: 30px;
  }

.teachers-slider__photo img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  }

.teachers-slider__description {
  padding: 32px;
  }

.teachers-slider__title {
  margin: 0 0 8px;
  font-size: 31px;
  font-weight: 600;
  line-height: 42px;
  }

.teachers-slider__title span {
  color: #ED484A;
  }

.teachers-slider__description p {
  margin: 0 0 16px;
  padding: 0 0 15px;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid #DADAE1;
  }

.specifications {
  margin: 0 0 32px;
  }

.specifications li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px;
  }

.specifications li:last-child {
  margin: 0;
  }

.specifications__icon {
  flex-shrink: 0;
  margin: 5px 10px 0 0;
  width: 22px;
  }

.specifications__text {
  display: block;
  font-size: 14px;
  line-height: 20px;
  }

/* reviews-top-panel */
.reviews-top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
  }

/* reviews-nav */
.reviews-nav ul {
  display: flex;
  align-items: center;
  gap: 0 12px;
  list-style: none;
  }

.reviews-nav li {
  position: relative;
  min-width: 170px;
  color: #ED484A;
  font-size: 16px;
  text-align: center;
  line-height: 19px;
  border: 1px solid #ED484A;
  cursor: pointer;
  border-radius: 12px;
  transition: .3s all;
  }

.reviews-nav li:hover {
  color: #000;
  }

.reviews-nav li:before {
  position: absolute;
  display: block;
  margin: -2px 0 0;
  height: 67px;
  top: 50%;
  left: -1px;
  right: -1px;
  transform: translateY(-50%);
  background: url(../img/bg/tabs-bg.svg) center no-repeat;
  background-size: cover;
  z-index: 3;
  opacity: 0;
  transition: .3s opacity;
  content: "";
  }

.reviews-nav .active:before {
  opacity: 1;
  }

.reviews-nav .active {
  border-color: #000;
  }

.reviews-nav .active span {
  color: #000;
  }

.reviews-nav span {
  position: relative;
  display: block;
  padding: 10px;
  z-index: 5;
  }

.reviews-nav span:before {
  position: absolute;
  display: block;
  width: 56px;
  height: 24px;
  top: 30px;
  left: 0;
  background: url(../img/bg/tabs-l-dec.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.reviews-nav span:after {
  position: absolute;
  display: block;
  width: 68px;
  height: 50px;
  top: 5px;
  right: 3px;
  background: url(../img/bg/tabs-r-dec.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.reviews-nav strong {
  font-weight: 600;
  }

.reviews-content__item {
  display: none;
  }

.reviews-content__item.active {
  display: block;
  }

.text-reviews-btn.hidden {
  display: none;
  }

.video-reviews-btn.hidden {
  display: none;
  }

/* reviews-slider */
.reviews-slider {
  position: relative;
  }

.reviews-slider .gl-arrow-prev.swiper-button-prev, 
.reviews-slider .gl-arrow-next.swiper-button-next {
  top: 230px;
  }

.reviews-slider__item {
  padding: 32px;
  background: #fff;
  border-radius: 30px;
  }

.reviews-slider__user-panel {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  }

.reviews-slider__img {
  flex-shrink: 0;
  margin: 0 16px 0 0;
  width: 90px;
  }

.reviews-slider__img img {
  width: 100%;
  border-radius: 100%;
  }

.reviews-slider__name {
  display: block;
  margin: 0 0 2px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.reviews-slider__date {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 22px;
  opacity: 0.4;
  }

.rate-panel {
  display: flex;
  align-items: center;
  gap: 0 8px;
  }

.rate-panel__item {
  width: 24px;
  }

.rate-panel__item img {
  width: 100%;
  }

.reviews-slider__item p {
  margin: 0;
  font-size: 21px;
  line-height: 28px;
  }

/* video-reviews-slider */
.video-reviews-slider {
  position: relative;
  }

.video-reviews-slider .gl-arrow-prev,
.video-reviews-slider .gl-arrow-next {
  margin: -81px 0 0;
  top: 50%;
  transform: translateY(-50%);
  }

.video-reviews-slider__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 543px;
  }

.video-reviews-slider__item a:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #07070A;
  border-radius: 30px;
  content: "";
  opacity: 0.5;
  z-index: 2;
  }

.video-reviews-slider__content {
  position: relative;
  z-index: 5;
  }

.video-reviews-slider__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 30px;
  }

.video-reviews-slider .mov-btn {
  margin: 0 auto 16px;
  width: 175px;
  height: 175px;
  }

.video-reviews-slider .mov-btn:before {
  background: url(../img/bg/play-icon-v-big.svg) center no-repeat;
  }

.video-reviews-slider__text {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 32px;
  }

/* mob-btn-panel */
.mob-btn-panel {
  display: none;
  }

/* questions-section */
.questions-section {
  background: url(../img/bg/questions-section-bg.jpg) center no-repeat #f6f6f8;
  }

/* questions-accordion */
.questions-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  }

.questions-accordion__item {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  } 

.questions-accordion__top-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

.questions-accordion__title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  cursor: pointer;
  }

.questions-accordion__arrow {
  position: relative;
  flex-shrink: 0;
  margin: 0 0 0 15px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  }

.questions-accordion__arrow:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-down-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  transition: .2s opacity;
  }

.questions-accordion__top-panel.show .questions-accordion__arrow:before {
  opacity: 0;  
  }

.questions-accordion__arrow:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-top-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  opacity: 0;
  transition: .2s opacity;
  }

.questions-accordion__top-panel.show .questions-accordion__arrow:after {
  opacity: 1;
  }

.questions-accordion__content {
  display: none;
  padding: 0 68px 0 0;
  }

.questions-accordion__content p {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 28px;
  }

.questions-accordion__link {
  display: inline-block;
  vertical-align: top;
  font-size: 21px;
  font-weight: 700;
  text-decoration: underline;
  line-height: 35px;
  }

/* ask-questions */
.ask-questions {
  background: #f6f6f8;
  }

.ask-questions__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px;
  color: #fff;
  background: #ED484A;
  border-radius: 20px;
  }

.ask-questions__dec-text {
  position: absolute;
  display: block;
  left: 70px;
  bottom: 0;
  font-size: 164px;
  line-height: 224px;
  opacity: 0.14;
  }

.ask-questions__descriprion {
  position: relative;
  z-index: 5;
  }

.ask-questions__title {
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 700;
  line-height: 87px;
  }

.ask-questions__descriprion p {
  margin: 0;
  font-size: 34px;
  line-height: 44px;
  }

.ask-questions__form {
  flex-shrink: 0;
  margin: 0 0 0 60px;
  width: 422px;
  }

.ask-questions__form form {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  }

.ask-questions input[type='tel'],   
.ask-questions input[type='text'],
.ask-questions input[type='email'],
.ask-questions input[type='password'] {
  background: #fff;
  }

.ask-questions__btn {
  width: 100%;
  color: #fff;
  }

.ask-questions__btn:hover {
  color: #fff;
  }

.ask-questions__btn:before {
  width: 422px;
  height: 80px;
  background: url(../img/bg/btn-white-bg.svg) center no-repeat;
  background-size: 100%;
  }

.ask-questions__checkbox input:before {
  background: url(../img/bg/checkbox-check-black.svg) center no-repeat;
  }

.ask-questions__checkbox label {
  color: #fff;
  }

.ask-questions__checkbox label a {
  color: #fff;
  }

/* news-section */
.news-section {
  background: url(../img/bg/news-section-bg.jpg) center no-repeat #f6f6f8;
  }

/* news-slider */
.news-slider {
  position: relative;
  }

.news-slider .gl-arrow-prev.swiper-button-prev, 
.news-slider .gl-arrow-next.swiper-button-next {
  top: 310px;
  }

.news-slider__item {
  background: #fff;
  border-radius: 30px;
  }

.news-slider__photo img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  }

.news-slider__description {
  padding: 30px;
  }

.news-slider__title {
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.news-slider__title span {
  color: #ED484A;
  }

.news-slider__date {
  display: block;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  opacity: 0.4;
  }

.news-slider__description p {
  margin: 0 0 48px;
  font-size: 21px;
  line-height: 28px;
  }

.news-slider__btn {
  width: 100%;
  }

.news-slider__btn:before {
  width: 440px;
  height: 80px;
  background: url(../img/bg/btn-bg-transparet-4.svg) center no-repeat;
  background-size: 100%;
  } 

/* main-content */
.one-page .main-content {
  position: relative;
  padding: 0;
  background: #f7f7f9;
  }

.one-page .main-content__container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 15px;
  min-height: 100vh;
  z-index: 10;
  }

/* error-404__title */
.error-404 {
  max-width: 670px;
  }

.error-404__title {
  margin: 0 0 40px;
  font-size: 64px;
  font-weight: 300;
  line-height: 88px;
  }

.error-404__title span {
  font-weight: 400;
  }

.error-404 p {
  margin: 0;
  font-size: 32px;
  line-height: 44px;
  }

.error-404 p a {
  font-weight: 700;
  text-decoration: underline;
  }

/* mail-small-link */
.mail-small-link {
  position: absolute;
  display: flex;
  align-items: center;
  left: 15px;
  bottom: 58px;
  }

.mail-small-link__icon {
  flex-shrink: 0;
  display: block;
  margin: 6px 10px 0 0;
  }

.mail-small-link__text {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.mail-small-link__text a {
  color: #282835;
  }

.mail-small-link__text a:hover {
  color: #ED484A;
  }

.main-content__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  }

.main-content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

/* gl-form */
.gl-form {
  max-width: 470px;
  width: 100%;
  }

.gl-form_big-size {
  max-width: 870px;
  }

.gl-form__title {
  margin: 0 0 30px;
  font-size: 48px;
  line-height: 66px;
  }

.gl-form__title span {
  color: #ED484A;
  }

.gl-form__text {
  font-size: 16px;
  line-height: 22px;
  }

.gl-form__text a {
  font-weight: 700;
  text-decoration: underline;
  }

.gl-form fieldset {
  margin: 0 0 30px;
  }

.gl-form fieldset:last-child {
  margin: 0;
  }

.gl-form fieldset .gl-form__text {
  margin: 0;
  padding: 24px 0 0;
  }

.gl-form__line-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  }

/* gl-btn */
.gl-btn {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  min-width: 282px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 26px;
  cursor: pointer;
  transition: .2s color;
  }

.gl-btn:hover {
  color: #fff;
  }

.gl-btn:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 89px;
  top: -6px;
  left: 0;
  background: url(../img/bg/gl-btn-bg.png) center no-repeat;
  background-size: cover;
  border-radius: 40px;
  content: "";
  }

.gl-btn:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 72px;
  border: 2px solid #000;
  content: "";
  z-index: 3;
  }

.gl-btn__in {
  position: relative;
  display: block;
  z-index: 5;
  }

.gl-btn__in:before {
  position: absolute;
  display: block;
  width: 152px;
  height: 37px;
  left: 29px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-left-dec.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn__in:after {
  position: absolute;
  display: block;
  width: 185px;
  height: 38px;
  right: 8px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-dec.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn__text {
  position: relative;
  padding: 13px 40px 15px;
  display: block;
  z-index: 6;
  }

.gl-btn_full-size {
  width: 100%;
  }

.gl-btn_sm-size {
  min-width: 220px;
  }

.gl-btn_md-size {
  min-width: 184px;
  line-height: 21px;
  }

.gl-btn_md-size:before {
  height: 66px;
  top: -4px;
  border-radius: 28px;
  }

.gl-btn_md-size .gl-btn__text {
  padding: 9px 25px;
  }

.gl-btn_text-underline {
  text-decoration: underline;
  }

.gl-btn_hidden {
  display: none;
  }

.gl-btn:disabled {
  color: #fff;
  border: 0;
  background: #DADAE1;
  border-radius: 40px;
  cursor: default;
  }

.gl-btn:disabled:before {
  display: none;
  }

.gl-btn:disabled:after {
  display: none;
  }

.gl-btn_bg-2:before {
  background: url(../img/bg/gl-btn-bg-2.png) center no-repeat;
  background-size: cover;
  }

.gl-btn_bg-3:before {
  background: url(../img/bg/gl-btn-bg-3.png) center no-repeat;
  background-size: cover;
  }

.gl-btn_style-2 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 73px;
  height: 49px;
  left: 10px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-left-dec-style-2.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-2 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 89px;
  height: 48px;
  right: 7px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-2.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-3 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 84px;
  height: 60px;
  left: 5px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-left-dec-style-3.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-3 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 71px;
  height: 60px;
  right: 5px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-3.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-4 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 43px;
  height: 49px;
  left: 5px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-left-dec-style-4.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-4 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 49px;
  height: 49px;
  right: 0;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-4.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-5 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 91px;
  height: 49px;
  left: 15px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-left-dec-style-5.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-5 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 103px;
  height: 49px;
  right: 7px;
  bottom: 6px;
  background: url(../img/bg/gl-btn-right-style-5.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-6 {
  min-width: 280px;
  }

.gl-btn_style-6 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 84px;
  height: 45px;
  left: 5px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-left-dec-style-6.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-6 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 71px;
  height: 45px;
  right: 5px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-6.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-7 {
  min-width: 195px;
  }

.gl-btn_style-7 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 46px;
  height: 38px;
  left: 7px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-left-dec-style-7.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-7 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 75px;
  height: 28px;
  right: 4px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-right-style-7.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-8 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 132px;
  height: 44px;
  top: 12px;
  left: 17px;
  background: url(../img/bg/gl-btn-left-dec-style-8.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-8 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 158px;
  height: 64px;
  right: 8px;
  bottom: 9px;
  background: url(../img/bg/gl-btn-right-style-8.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-9 {
  min-width: 195px;
  }

.gl-btn_style-9 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 59px;
  height: 45px;
  left: 2px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-left-dec-style-9.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-9 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 49px;
  height: 45px;
  right: 5px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-9.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-10 {
  min-width: 195px;
  }

.gl-btn_style-10 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 46px;
  height: 37px;
  left: 7px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-left-dec-style-10.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-10 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 75px;
  height: 27px;
  right: 4px;
  bottom: 3px;
  background: url(../img/bg/gl-btn-right-style-10.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-11 {
  min-width: 304px;
  }

.gl-btn_style-11 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 99px;
  height: 44px;
  top: 12px;
  left: 12px;
  background: url(../img/bg/gl-btn-left-dec-style-11.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-11 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 119px;
  height: 64px;
  right: 6px;
  bottom: 9px;
  background: url(../img/bg/gl-btn-right-style-11.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-12 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 75px;
  height: 62px;
  left: 13px;
  bottom: 4px;
  background: url(../img/bg/gl-btn-left-dec-style-12.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-12 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 87px;
  height: 66px;
  right: 3px;
  bottom: 5px;
  background: url(../img/bg/gl-btn-right-style-12.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-13 {
  min-width: 202px;
  font-size: 14px;
  line-height: 19px;
  }

.gl-btn_style-13 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 54px;
  height: 29px;
  top: 14px;
  left: 7px;
  background: url(../img/bg/gl-btn-left-dec-style-13.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-13 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 79px;
  height: 43px;
  right: 4px;
  bottom: 6px;
  background: url(../img/bg/gl-btn-right-style-13.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-13 .gl-btn__text {
  padding: 8px 36px 7px;
  }

.gl-btn_style-14 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 71px;
  height: 49px;
  top: 8px;
  left: 9px;
  background: url(../img/bg/gl-btn-left-dec-style-14.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-14 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 87px;
  height: 71px;
  top: 4px;
  right: 4px;
  bottom: auto;
  background: url(../img/bg/gl-btn-right-style-14.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-15 .gl-btn__text {
  padding: 9px 25px;
  line-height: 21px;
  }

.gl-btn_style-15 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 103px;
  height: 34px;
  top: 9px;
  left: 13px;
  background: url(../img/bg/gl-btn-left-dec-style-15.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-15 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 125px;
  height: 48px;
  top: 7px;
  right: 6px;
  background: url(../img/bg/gl-btn-right-style-15.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_transparent-bg.gl-btn_style-16:after {
  border: 1px solid #fff;
  }

.gl-btn_transparent-bg.gl-btn_style-16 .gl-btn__text {
  color: #fff;
  transition: .2s color;
  }

.gl-btn_transparent-bg.gl-btn_style-16:hover .gl-btn__text {
  color: #000;
  }

.gl-btn_style-16 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 131px;
  height: 45px;
  top: 12px;
  left: 16px;
  background: url(../img/bg/gl-btn-left-dec-style-16.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-16 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 158px;
  height: 64px;
  top: 9px;
  right: 8px;
  background: url(../img/bg/gl-btn-right-style-16.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-17 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 99px;
  height: 44px;
  top: 12px;
  left: 13px;
  background: url(../img/bg/gl-btn-left-dec-style-17.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-17 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 118px;
  height: 64px;
  top: 9px;
  right: 6px;
  background: url(../img/bg/gl-btn-right-style-17.png) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn.gl-btn_style-18:after {
  border: 1px solid #fff;
  }

.gl-btn.gl-btn_style-18 .gl-btn__text {
  color: #fff;
  transition: .3s color;
  }

.gl-btn.gl-btn_style-18 .gl-btn__text:hover {
  color: #000;
  }

.gl-btn_style-18 .gl-btn__in:before {
  position: absolute;
  display: block;
  width: 92px;
  height: 68px;
  top: 9px;
  left: 19px;
  background: url(../img/bg/gl-btn-left-dec-style-18.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.gl-btn_style-18 .gl-btn__in:after {
  position: absolute;
  display: block;
  width: 166px;
  height: 64px;
  top: 9px;
  right: 8px;
  background: url(../img/bg/gl-btn-right-style-18.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

/* gl-btn_transparent-bg */
.gl-btn_transparent-bg {
  color: #EB484A;
  }

.gl-btn_transparent-bg:after {
  border: 1px solid #EB484A;
  }

.gl-btn_transparent-bg:hover {
  color: #000;
  }

.gl-btn_transparent-bg:before {
  display: none;
  }

/* main-content */
.main-content {
  padding: 65px 0;
  background: url(../img/bg/main-content-bg.jpg) top center no-repeat #f6f6f8;
  }

/* personal-account */
.personal-account {
  background: #fff;
  border-radius: 20px;
  }

/* personal-account__nav */
.personal-account__nav {
  margin: 0 0 40px;
  }

.personal-account__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  list-style: none;
  border-bottom: 1px solid #DADAE1;
  }

.personal-account__nav li {
  position: relative;
  display: block;
  padding: 16px 0;
  font-size: 24px;
  line-height: 32px;
  z-index: 5;
  }

.personal-account__nav li:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: #ED484A;
  content: "";
  opacity: 0;
  transition: .3s opacity;
  }

.personal-account__nav li:hover:after,
.personal-account__nav .active:after {
  opacity: 1;
  }

.personal-account__nav a {
  color: #a9a9ae;
  }

.personal-account__nav a:hover {
  color: #282835;
  }

/* personal-account__content */
.personal-account__content {
  padding: 0 64px 64px;
  }

/* md-title */
.md-title {
  margin: 0 0 18px;
  font-size: 48px;
  font-weight: 700;
  line-height: 66px;
  }

.md-title span {
  color: #ED484A;
  font-weight: 400;
  }

/* account-tabs__nav */
.account-tabs__nav {
  margin: 0 0 40px;
  }

.account-tabs__nav ul {
  display: flex;
  align-items: center;
  gap: 0 50px;
  border-bottom: 1px solid #DADAE1;
  list-style: none;
  }

.account-tabs__nav li {
  position: relative;
  padding: 0 0 9px;
  color: #a9a9ae;
  font-size: 24px;
  line-height: 32px;
  cursor: pointer;
  transition: .3s color;
  }

.account-tabs__nav .active,
.account-tabs__nav li:hover {
  color: #282835;
  }

.account-tabs__nav li:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: #ED484A;
  content: "";
  opacity: 0;
  transition: .3s opacity;
  }

.account-tabs__nav .active:after,
.account-tabs__nav li:hover:after {
  opacity: 1;
  }

.account-tabs__item {
  display: none;
  }

.account-tabs__item.active {
  display: block;
  }

/* account-tabs__top-panel */
.account-tabs__top-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: 'first first second';
  gap: 0 27px;
  margin: 0 0 40px;
  }

/* search-form */
.search-form {
  position: relative;
  }

.account-tabs__top-panel .search-form {
  grid-area: first;
  }

.search-form__btn {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  width: 33px;
  height: 80px;
  top: 0;
  left: 21px;
  border: 0;
  font-size: 0;
  background: url(../img/bg/search-icon.svg) center no-repeat;
  background-size: 100%;
  content: "";
  cursor: pointer;
  z-index: 5;
  }

.search-form label {
  padding: 0 30px 0 70px;
  }

.search-form input[type="text"] {
  padding: 0 30px 0 70px;
  background: #fff;
  border: 1px solid #D2D2D2;
  }

/* info-select */
.info-select {
  position: relative;
  }

/* info-select__top-panel */
.info-select__top-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px 0 25px;
  height: 80px;
  background: #fff;
  border: 1px solid #D2D2D2;
  border-radius: 60px;
  cursor: pointer;
  }

.info-select__arrow {
  position: absolute;
  display: block;
  margin: -5px 0 0;
  width: 19px;
  height: 10px;
  top: 50%;
  right: 25px;
  background: url(../img/bg/down-sm-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  cursor: pointer;
  transition: .3s transform;
  }

.info-select__arrow.open {
  transform: rotate(180deg);
  }

.info-select__text {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  }

/* info-select__dropdown */
.info-select__dropdown {
  position: absolute;
  width: 100%;
  top: 90px;
  left: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 60px 0 rgba(0, 0, 0, 0.10);
  z-index: 40;
  }

.info-select__item {
  display: flex;
  align-items: center;
  margin: 0 0 1px;
  padding: 20px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: .3s background;
  }

.info-select__flag-icon {
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 36px;
  }

.info-select__item:hover {
  background: rgba(40, 40, 53, 0.11);
  }

.info-select__item.selected {
  background: rgba(40, 40, 53, 0.11);
  }

.info-select__item:first-child {
  border-radius: 20px 20px 0 0;
  }

.info-select__item:last-child {
  margin: 0;
  border-radius: 0 0 20px 20px;
  }

/* lessons */
.lessons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px 27px;
  }

.lesson {
  position: relative;
  height: 390px;
  }

.lesson a {
  position: relative;
  display: block;
  height: 390px;
  }

.lesson a:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(7, 7, 10, 0.50);
  border-radius: 30px;
  content: "";
  }

.lesson img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  }

.lesson__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  }

.lesson__title {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 32px;
  }

/* lesson-materials */
.lesson-materials {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
  }

.lesson-materials__item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 27px;
  }

.lesson-materials__file {
  height: 390px;
  }

.lesson-materials__file a {
  display: block;
  height: 390px;
  }

.lesson-materials__file img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  }

/* books */
.books {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px 34px;
  }

.books__item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 11px 60px 0 rgba(3, 3, 20, 0.10);
  }

.books__img {
  position: relative;
  }

.books__name {
  position: absolute;
  display: block;
  padding: 30px;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 44px;
  z-index: 5;
  }

.books__img img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  }

.books__description {
  padding: 24px 32px 32px;
  }

.books__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  }

.account-tabs__btn-panel {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
  }

/* courses */
.courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 28px;
  }

/* course */
.course {
  background: #fff;
  border-radius: 10px 10px 30px 30px;
  box-shadow: 0 15px 40px 0 rgba(3, 3, 20, 0.06);
  }

.courses-catalog .course {
  display: none;
  }

/* course__photo */
.course__photo {
  position: relative;
  }

.course__photo img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  }

.save-btn {
  position: relative;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  vertical-align: top;
  border: 0;
  background: url(../img/bg/heart.svg) center no-repeat #fff;
  border-radius: 100%;
  cursor: pointer;
  z-index: 7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 10;
  }

.save-btn:before {
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  background: url(../img/bg/heart-active.svg) center no-repeat;
  opacity: 0;
  content: "";
  }

.save-btn:checked:before { opacity: 1; }

.course__photo .save-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  }

/* course__info-panel */
.course__info-panel {
  padding: 12px 20px 7px 24px;
  background: url(../img/bg/courses-bg.jpg) center no-repeat;
  background-size: cover;
  }

/* course__info-panel */
.course__info-panel {
  display: flex;
  align-items: center;
  gap: 0 16px;
  }

.course__info {
  font-size: 16px;
  line-height: 20px;
  }

.course__icon {
  flex-shrink: 0;
  margin: 0 8px 0 0;
  }

.course__status {
  flex-shrink: 0;
  margin: 6px 8px 0 0;
  width: 8px;
  height: 8px;
  background: #ED484A;
  border-radius: 100%;
  }

.course__status_not-started {
  background: #FFC445;
  } 

.course__status_completed {
  background: #25D366;
  }

.course__info dt {
  font-weight: 700;
  }

.course__info dd {
  font-weight: 300;
  }

/* course__info */
.course__info {
  display: flex;
  align-items: flex-start;
  color: #fff;
  }

/* course__description */
.course__description {
  padding: 32px;
  }

.course__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  }

.course__title span {
  color: #ED484A;
  font-weight: 700;
  }

.course__list {
  margin: 0 0 30px;
  }

.course__list_indent-bt-none {
  margin: 0;
  }

.course__list li {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  }

.course__list li:before {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0;
  background: #ED484A;
  border-radius: 100%;
  content: "";
  }

.course__list li:last-child {
  margin: 0;
  }

.course__price {
  display: flex;
  align-items: flex-start;
  margin: 0 0 30px;
  gap: 0 10px;
  font-size: 24px;
  line-height: 32px;
  }

.course__price dt {
  font-weight: 400;
  }

.course__price dd {
  font-weight: 300;
  }

.course__btns-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  }

/* making-order */
.making-order {
  padding: 50px 50px 32px;
  background: #fff;
  border-radius: 20px;
  }

.making-order__top-col {
  margin: 0 0 32px;
  padding: 0 0 32px;
  border-bottom: 1px solid #DADAE1;
  }

.making-order__top-col p {
  margin: 0 0 55px;
  font-size: 24px;
  line-height: 32px;
  }

/* order-info */
.order-info {
  padding: 32px;
  background: #F6F6F8;
  border-radius: 10px;
  }

.order-info__in {
  padding: 32px;
  background: #fff;
  border-radius: 10px;
  }

/* order-info__top-panel */
.order-info__top-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 86px 0 0;
  }

/* order-number */
.order-number {
  display: flex;
  align-items: center;
  }

.order-number__img {
  flex-shrink: 0;
  margin: 0 16px 0 0;
  width: 74px;
  }

.order-number__img img {
  width: 100%;
  border-radius: 10px;
  }

.order-number__text {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  }

.order-number__text span {
  color: #ED484A;
  }

/* order-info__price */
.order-info__price {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 22px;
  }

.order-info__price dt {
  margin: 0 5px 0 0;
  }

/* order-info__arrow */
.order-info__arrow {
  position: absolute;
  flex-shrink: 0;
  margin: 0 0 0 15px;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  cursor: pointer;
  }

.order-info__arrow:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-down-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  transition: .2s opacity;
  }

.order-info__top-panel.show .order-info__arrow:before {
  opacity: 0;  
  }

.order-info__arrow:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-top-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  opacity: 0;
  transition: .2s opacity;
  }

.order-info__top-panel.show .order-info__arrow:after {
  opacity: 1;
  }

/* order-info__content */
.order-info__content {
  display: none;
  padding: 20px 0 0;
  }

.order-info__col {
  padding: 16px 0 0;
  border-top: 1px solid #F6F6F8;
  }

.order-info__content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  }

/* order-info__bottom-panel */
.order-info__bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0 0;
  border-top: 1px solid #F6F6F8;
  }

/* info-panel */
.info-panel {
  display: flex;
  align-items: flex-start;
  gap: 0 55px;
  }

.info-panel__item {
  display: flex;
  align-items: flex-start;
  }

.info-panel__icon {
  flex-shrink: 0;
  margin: 3px 8px 0 0;
  }

.info-panel__text {
  display: block;
  font-size: 16px;
  line-height: 20px;
  }

.info-panel__text_red-color {
  color: #ED484A;
  }

.info-panel__text_red-color span {
  color: #282835;
  }

/* order */
.order__in {
  display: flex;
  align-items: flex-start;
  }

/* order__content */
.order__content {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  gap: 30px 0;
  width: 100%;
  }

.order__item {
  padding: 48px 64px;
  background: #fff;
  border-radius: 25px;
  }

/* order__top-panel */
.order__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 30px;
  }

.order__top-panel .small-title {
  margin: 0;
  }

/* small-title */
.small-title {
  margin: 0 0 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
  }

.small-title span {
  color: #ED484A;
  }

/* order-list */
.order-list__item {
  display: flex;
  justify-content: space-between;
  }

.order-list__right-col {
  display: flex;
  align-items: center;
  gap: 0 30px;
  }

.order__price {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 22px;
  }

.order__price dt {
  margin: 0 5px 0 0;
  font-weight: 700;
  }

.order__delete-btn {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background: url(../img/bg/close-icon.svg) center no-repeat #ED484A;
  border-radius: 100%;
  transition: .3s background-color;
  }

.order__delete-btn:hover {
  background-color: #f45557;
  }

/* field-panel */
.field-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  }

/* payment-methods */
.payment-methods {
  display: flex;
  align-items: flex-start;
  gap: 0 40px;
  padding: 24px 24px 27px;
  background: #F6F6F8;
  border-radius: 10px;
  }

.payment-methods__item:nth-child(1) {
  width: 50%;
  }

.payment-methods__item:nth-child(2) {
  width: 25%;
  }

.payment-methods__item:nth-child(3) {
  width: 25%;
  }

.payment-methods__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 13px;
  }

.payment-methods__text {
  display: flex;
  align-items: flex-start;
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  }

.payment-methods__top-panel .payment-methods__text {
  margin: 0;
  }

.payment-methods__text img {
  margin: 5px 10px 0 0;
  flex-shrink: 0;
  width: 24px;
  }

.payment-methods .field-input input {
  background: #fff;
  }

.payment-methods__panel {
  display: flex;
  align-items: center;
  gap: 0 13px;
  }

.payment-methods__text.text-right {
  justify-content: flex-end;
  }

/* result-widget */
.result-widget {
  position: sticky;
  flex-shrink: 0;
  margin: 0 0 0 30px;
  width: 470px;
  top: 0;
  background: #fff;
  border-radius: 25px;
  }

/* result-widget__price */
.result-widget__price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 30px 16px;
  font-size: 32px;
  line-height: 44px;
  border-bottom: 1px solid #DADAE1;
  }

.result-widget__price dt {
  font-weight: 700;
  }

.result-widget__price dd {
  text-align: right;
  }

/* language-info */
.language-info {
  margin: 0 0 32px;
  padding: 16px 30px;
  border-bottom: 1px solid #DADAE1;
  }

.language-info__top-panel {
  position: relative;
  padding: 0 110px 0 0;
  }

.language-info__text {
  display: block;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  }

.language-info__btn {
  position: absolute;
  flex-shrink: 0;
  margin: 0 0 0 15px;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  cursor: pointer;
  }

.language-info__btn:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-down-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  transition: .2s opacity;
  }

.language-info__top-panel.show .language-info__btn:before {
  opacity: 0;  
  }

.language-info__btn:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/accordion-top-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  opacity: 0;
  transition: .2s opacity;
  }

.language-info__top-panel.show .language-info__btn:after {
  opacity: 1;
  }

.language-info__content {
  display: none;
  margin: 16px 0 0;
  padding: 15px 0;
  border-top: 1px solid #DADAE1;
  }

.language-info__content p {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 24px;
  }

.language-info .info-panel {
  flex-direction: column;
  padding: 32px 0 0;
  gap: 24px 0;
  border-top: 1px solid #DADAE1;
  } 

.result-widget__bottom-panel {
  padding: 0 30px 40px;
  }

.result-widget .gl-btn {
  margin: 0 0 25px;
  }

/* bread-crumbs */
.bread-crumbs {
  margin: 0 0 30px;
  }

.bread-crumbs ul {
  display: flex;
  align-items: flex-start;
  gap: 0 18px;
  list-style: none;
  }

.bread-crumbs li {
  position: relative;
  padding: 0 30px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  }

.bread-crumbs li:after {
  position: absolute;
  display: block;
  width: 12px;
  height: 9px;
  top: 6px;
  right: 0;
  background: url(../img/bg/bread-crumbs-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  }

.bread-crumbs li:last-child {
  padding-right: 0;
  }

.bread-crumbs li:last-child:after {
  display: none;
  }

.bread-crumbs a {
  color: #282835;
  }

.bread-crumbs .active {
  font-weight: 400;
  }

/* teachers */
.teachers {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  }

.teachers__item {
  display: flex;
  border-radius: 30px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
  }

.teachers__photo {
  flex-shrink: 0;
  margin: 0 0 0 40px;
  width: 664px;
  }

.teachers__photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0 30px 30px 0;
  }

.teachers__description {
  padding: 32px 0 32px 32px;
  width: 100%;
  }

.teachers__small-text {
  display: block;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 21px;
  }

.teachers .small-title {
  margin: 0 0 16px;
  }

.teachers .info-panel {
  margin: 0 0 24px;
  gap: 0 30px;
  }

.teachers .info-panel__text {
  font-size: 14px;
  }

.teachers__description p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 21px;
  }

.teachers__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  }

.teachers__list {
  margin: 0 0 30px;
  }

.teachers__list li {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 16px;
  font-size: 16px;
  line-height: 28px;
  }

.teachers__list li:before {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 10px;
  left: 0;
  background: #ED484A;
  border-radius: 100%;
  content: "";
  }

.teachers__list li:last-child {
  margin: 0;
  }

/* course-info */
.course-info {
  display: flex;
  margin: 0 0 65px;
  padding: 0 0 65px;
  border-bottom: 1px solid #DADAE1;
  }

.course-info__photo {
  flex-shrink: 0;
  margin: 0 64px 0 0;
  width: 615px;
  }

.course-info__photo img {
  width: 100%;
  border-radius: 30px;
  }

.course-info .info-panel {
  margin: 0 0 25px;
  }

.course-info__description .small-title {
  margin: 0 0 24px;
  }

.course-info__description p {
  margin: 0 0 16px;
  padding: 0 0 16px;
  font-size: 16px;
  line-height: 21px;
  border-bottom: 1px solid #DADAE1;
  }

.course-info__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  }

.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 22px;
  margin: 0 0 40px;
  }

.schedule__item {
  padding: 8px 16px;
  background: #F6F6F8;
  border-radius: 17px;
  }

.schedule__item span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  }

.course-info__price {
  display: flex;
  margin: 0 0 30px;
  gap: 0 5px;
  font-size: 24px;
  line-height: 32px;
  }

.course-info__price dt {
  font-weight: 400;
  }

.course-info__price dd {
  font-weight: 300;
  }

.course-info__btn-panel {
  display: flex;
  justify-content: space-between;
  }

/* top-panel */
.top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 60px;
  }

.top-panel .small-title {
  margin: 0;
  }

/* gl-arrows */
.gl-arrows {
  display: flex;
  align-items: center;
  gap: 0 32px;
  }

.gl-arrows .gl-arrow-prev.swiper-button-prev, 
.gl-arrows .gl-arrow-next.swiper-button-next {
  position: relative;
  top: 0;
  }

.gl-arrows .gl-arrow-prev.swiper-button-prev {
  left: 0;
  }

.gl-arrows .gl-arrow-next.swiper-button-next {
  right: 0;
  }

/* courses-slider */
.courses-slider {
  margin: 0 0 64px;
  padding: 0 0 64px;
  border-bottom: 1px solid #DADAE1;
  }

.courses-slider .swiper {
  margin: 0 -14px;
  padding: 0 14px;
  }

.courses-slider .course {
  box-shadow: 0 5px 15px 0 rgba(3, 3, 20, 0.06);
  }

/* profile-settings */
.profile-settings {
  display: flex;
  }

.profile-settings__img-col {
  flex-shrink: 0;
  margin: 0 100px 0 0;
  }

.profile-settings__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 32px;
  width: 330px;
  height: 330px;
  overflow: hidden;
  background: #FFA92F;
  border-radius: 100%;
  }

.profile-settings__photo span {
  display: block;
  color: #fff;
  font-size: 64px;
  line-height: 88px;
  }

.profile-settings__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
  object-fit: cover;
  }

/* profile-settings__form-col */
.profile-settings__form-col {
  width: 100%;
  }

/* profile-settings__list */
.profile-settings__list li {
  margin: 0 0 30px;
  }

.profile-settings__list li:last-child {
  margin: 0;
  }

.profile-settings__list dl {
  display: flex;
  align-items: center;
  }

.profile-settings__list dt {
  flex-shrink: 0;
  margin: 0 30px 0 0;
  width: 170px;
  font-size: 24px;
  line-height: 32px;
  }

.profile-settings__list dd {
  width: 100%;
  }

/* password-panel */
.password-panel {
  display: flex;
  align-items: center;
  gap: 0 30px;
  }

.password-panel .field-input {
  width: 100%;
  }

.password-panel .gl-btn {
  flex-shrink: 0;
  width: 306px;
  }

/* birth-date */
.birth-date {
  display: flex;
  align-items: center;
  gap: 0 30px;
  }

.birth-date__text {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  }

.birth-date .field-input {
  width: 100%;
  }

.birth-date .info-select {
  flex-shrink: 0;
  width: 297px;
  }

/* drop-down */
.drop-down {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  min-width: 200px;
  z-index: 5;
  }

.drop-down__header {
  display: flex;
  flex-direction: row;
  height: 2rem;
  justify-content: center;
  align-items: center;
  padding: .2rem .5rem;
  border-radius: 10px;
  cursor: pointer;
  }

.drop-down__header .filter_selected {
  width: 100%;
  }

.drop-down__header i {
  font-size: .8rem;
  color: var(--main-color);
  transition: transform .5s;
  }

.drop-down__header i.opened {
  transform: rotate(180deg);
  transition: transform .5s;
  }

.drop-down .filters {
  position: absolute;
  top: 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  justify-content: center;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  }

.drop-down .filters .filter {
  padding: .5rem;
  }

.drop-down .filters .filter:hover {
  background-color: var(--main-color);
  color: white;
  }

.drop-down .filters .filter.selected {
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
  }

/* schedule-info__top-panel */
.schedule-info__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
  }

/* schedule-calendar */
.schedule-calendar {
  position: relative;
  padding: 0 36px;
  width: 336px;
  border: 1px solid #DADAE1;
  border-radius: 9px;
  }

.schedule-calendar__left-arrow,
.schedule-calendar__right-arrow {
  position: absolute;
  width: 36px;
  height: 58px;
  top: 0;
  cursor: pointer;
  transition: .3s opacity;
  z-index: 5;
  }

.schedule-calendar__left-arrow.swiper-button-disabled,
.schedule-calendar__right-arrow.swiper-button-disabled {
  opacity: 0.4;
  }

.schedule-calendar__left-arrow {
  left: 0;
  background: url(../img/bg/schedule-calendar-left-arrow.svg) center no-repeat;
  }

.schedule-calendar__right-arrow {
  right: 0;
  background: url(../img/bg/schedule-calendar-right-arrow.svg) center no-repeat;
  }

.schedule-calendar__info {
  display: block;
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  border-left: 1px solid #DADAE1;
  border-right: 1px solid #DADAE1;
  }

/* schedule-filters */
.schedule-filters {
  position: relative;
  }

.schedule-filters .gl-btn.active:before {
  display: block;
  }

.schedule-filters .gl-btn.active:after {
  border: 2px solid #000;
  }

.schedule-filters .gl-btn.active .gl-btn__text {
  color: #fff;
  }

.schedule-filters__dropdown {
  position: absolute;
  padding: 15px;
  width: 210px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 60px 0 rgba(0, 0, 0, 0.10);
  transition: .4s;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  }

.schedule-filters__dropdown.show {
  opacity: 1;
  visibility: visible;
  }

.schedule-filters__dropdown ul {
  list-style: none;
  }

.schedule-filters__dropdown li {
  position: relative;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 21px;
  }

.schedule-filters__dropdown li:after {
  position: absolute;
  display: block;
  width: 13px;
  height: 9px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/bg/check.svg) center no-repeat;
  content: "";
  opacity: 0;
  transition: .3s opacity;
  }

.schedule-filters__dropdown li:hover:after,
.schedule-filters__dropdown .active:after {
  opacity: 1;
  }

.schedule-filters__dropdown li:last-child {
  margin: 0;
  }

.schedule-filters__dropdown li a {
  color: #282835;
  }

/* schedule-table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  }

.schedule-table th {
  padding: 8px 0;
  color: #282835;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 23px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

.schedule-table th:last-child {
  border-right: 0;
  }

.schedule-table td {
  padding: 12px 0;
  color: #282835;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 23px;
  border-top: 1px solid #DADAE1;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

.schedule-table td:first-child {
  color: rgba(0, 0, 0, 0.2);
  }

.schedule-table td:last-child {
  border-right: 0;
  }

.schedule-table__item_sm {
  width: 10%;
  }

.schedule-table__item_md {
  width: 20%;
  }

.schedule-table__item_big {
  width: 25%;
  }

.schedule-table .schedule-table__item_indent-none {
  padding: 0;
  }

/* lesson-widget */
.lesson-widget {
  position: relative;
  }

.lesson-widget__top-panel {
  position: relative;
  padding: 18px;
  color: #fff;
  text-align: center;
  background: #ED484A;
  }

.lesson-widget__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 17px;
  }

.lesson-widget__title strong {
  font-weight: 700;
  }

.lesson-widget__btn {
  position: absolute;
  display: block;
  margin: 0 0 0 -16px;
  width: 32px;
  height: 32px;
  left: 50%;
  bottom: -16px;
  font-size: 0;
  background: url(../img/bg/more-btn.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: .3s transform;
  z-index: 2;
  }

.lesson-widget.active .lesson-widget__btn {
  transform: rotate(45deg);
  z-index: 6;
  }

.lesson-widget__description {
  position: absolute;
  display: none;
  padding: 25px;
  top: 100%;
  left: 0;
  right: 0;
  font-weight: 400;
  text-align: left;
  background: #fff;
  box-shadow: 0 5px 60px 0 rgba(40, 40, 53, 0.1);
  z-index: 5;
  }

.lesson-widget__time {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  }

.lesson-widget__text {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  }

.lesson-widget__text strong {
  font-weight: 700;
  }

.lesson-widget__description a {
  font-size: 14px;
  text-decoration: underline;
  line-height: 21px;
  }

.lesson-widget__description a:hover {
  text-decoration: none;
  }

/* site-map */
.site-map__title {
  margin: 0 0 30px;
  padding: 0 0 20px;
  font-size: 36px;
  line-height: 46px;
  border-bottom: 1px solid #DADAE1;
  }

.site-map__small-title {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 40px;
  }

.site-map__list {
  margin: 0 0 30px;
  }

.site-map__list li {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 24px;
  }

.site-map__list li:before {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  top: 9px;
  left: 0;
  background: #ED484A;
  border-radius: 100%;
  content: "";
  }

.site-map__list li:last-child {
  margin: 0;
  }

.site-map__list a {
  text-decoration: underline;
  }

.site-map__list a:hover {
  text-decoration: none;
  }

/* footer */
.footer {
  color: #fff;
  background: #1D1D1B;
  }

/* footer__top-panel */
.footer__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 55px 0 49px;
  }

/* footer__logo */
.footer__logo {
  display: block;
  margin: 0 0 40px;
  width: 156px;
  }

.footer__logo img {
  width: 100%;
  }

/* footer__mail */
.footer__mail {
  display: flex;
  align-items: center;
  color: #fff;
  }

.footer__mail img {
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 20px;
  }

.footer__mail span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  }

/* footer__title */
.footer__title {
  margin: 0 0 24px;
  color: #61615F;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 40px;
  }

.footer__title strong {
  color: #ED484A;
  border-bottom: 1px solid #ED484A;
  }

.footer__nav ul {
  display: flex;
  align-items: center;
  gap: 0 32px;
  list-style: none;
  }

.footer__nav li {
  font-size: 14px;
  line-height: 24px;
  }

.footer__nav a {
  color: #fff;
  text-decoration: underline;
  }

.footer__nav a:hover {
  color: #ec2f32;
  }

/* footer__bottom-panel */
.footer__bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 31px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

/* footer__link */
.footer__link {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  line-height: 24px;
  }

.footer__text {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  }

.footer__text strong {
  text-decoration: underline;
  }

/* footer__link-panel */
.footer__link-panel {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background: #fff;
  }

.footer__link-panel .footer__link {
  color: #ED484A;
  }

/* chat-panel */
.chat-panel {
  position: fixed;
  right: 65px;
  bottom: 50px;
  z-index: 40;
  }

.chat-panel__icon {
  width: 90px;
  height: 90px;
  background: url(../img/bg/chat.png) center no-repeat #fff;
  background-size: 100%;
  border-radius: 100%;
  box-shadow: 0 15px 60px 0 rgba(196, 0, 5, 0.2);
  cursor: pointer;
  }

.chat-panel__dropdown {
  position: absolute;
  display: flex;
  align-items: center;
  right: 100px;
  top: 0;
  height: 92px;
  opacity: 0;
  visibility: hidden;
  transition: .3s all;
  }

.chat-panel__dropdown.show {
  opacity: 1;
  visibility: visible;
  }

.chat-panel__close-btn {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: -27px;
  right: 0;
  font-size: 0;
  background: url(../img/bg/close-b-icon.svg) center no-repeat #ED484A;
  border-radius: 100%;
  cursor: pointer;
  transition: .3s background-color;
  }

.chat-panel__close-btn:hover {
  background-color: #f75f61;
  }

.chat-panel__text {
  display: block;
  padding: 10px 15px;
  width: 180px;
  font-size: 16px;
  line-height: 21px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  }

.chat-panel__text strong {
  font-weight: 600;
  }

/* hystmodal__shadow */
.hystmodal__shadow {
  background: #282835 !important;
  }

.hystmodal__shadow--show {
  opacity: 0.69 !important;
  }

/* hystmodal__wrap */
.hystmodal__wrap { 
  padding: 50px 15px;
  }

/* hystmodal__window */
.hystmodal .hystmodal__window { 
  padding: 48px 24px 38px;
  max-width: 470px;
  width: 100%;
  border-radius: 25px;
  }

/* hystmodal__close */
.hystmodal .hystmodal__close { 
  width: 36px;
  height: 36px;
  top: 20px;
  right: 20px;
  background: url(../img/bg/modal-close.svg) center no-repeat #ED484A;
  background-size: 14px;
  border-radius: 100%;
  box-shadow: 0 15px 60px 0 rgba(40, 40, 53, 0.32);
  transition: .3s background-color;
  }

.hystmodal .hystmodal__close:hover {
  background-color: #f45e60;
  }

/* hystmodal__title */
.hystmodal__title {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 44px;
  }

.hystmodal__title span {
  color: #EB484A;
  }

/* hystmodal__text */
.hystmodal__text {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  }

.hystmodal__text span {
  color: #EB484A;
  }

/* hystmodal__form */
.hystmodal__form fieldset {
  margin: 0 0 20px;
  }

.hystmodal__form fieldset:last-child {
  margin: 0;
  padding: 10px 0 0;
  }

.hystmodal__form .checkbox {
  padding: 15px 0 0;
  }

/* hystmodal_changed */
.hystmodal_changed .hystmodal__window {
  padding: 0;
  max-width: 970px;
  border-radius: 30px;
  }

.course-modal__photo {
  margin: 0 0 32px;
  }

.course-modal__photo img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  }

.course-modal__description {
  padding: 0 30px 30px;
  }

.course-modal__panel {
  display: flex;
  align-items: flex-start;
  gap: 0 30px;
  margin: 0 0 15px;
  }

.course-modal__info {
  display: flex;
  align-items: flex-start;
  }

.course-modal__icon {
  flex-shrink: 0;
  margin: 0 8px 0 0;
  }

.course-modal__info dl {
  display: flex;
  align-items: flex-start;
  gap: 0 5px;
  font-size: 16px;
  line-height: 20px;
  }

.course-modal__info strong {
  font-weight: 700;
  }

.course-modal__title {
  margin: 0 0 15px;
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  }

.course-modal p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 24px;
  }

.course-modal__list {
  margin: 0 0 55px;
  }

.course-modal__list li {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  list-style: none;
  }

.course-modal__list li:last-child {
  margin: 0;
  }

.course-modal__list li:before {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0;
  background: #ED484A;
  border-radius: 100%;
  content: "";
  }

.course-modal__bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

.course-modal__price {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  }

.course-modal__price dt strong {
  font-weight: 700;
  }

/* hystmodal_big-size */
.hystmodal_big-size .hystmodal__window {
  max-width: 1570px;
  padding: 64px;
  }

.privacy-policy__title {
  margin: 0 0 30px;
  font-size: 48px;
  font-weight: 700;
  line-height: 66px;
  }

.privacy-policy__title span {
  color: #ED484A;
  }

.privacy-policy p {
  font-size: 24px;
  line-height: 40px;
  }

/* news-modal */
.news-modal__photo {
  margin: 0 0 30px;
  }

.news-modal__photo img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  }

.news-modal__description {
  padding: 0 30px 30px;
  }

.news-modal__title {
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  }

.news-modal__title span {
  color: #ED484A;
  }

.news-modal__date {
  display: block;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  opacity: 0.4;
  }

.news-modal__description p {
  margin: 0 0 2.93vw;
  font-size: 1.28vw;
  line-height: 1.71vw;
  }

/* hystmodal_teacher */
.hystmodal_teacher .hystmodal__window {
  padding: 0;
  max-width: 1570px;
  border-radius: 30px;
  }

.hystmodal_teacher .teachers__photo {
  width: 770px;
  }

.teachers__scroll {
  width: 100%;
  height: 768px;
  }

.teachers__scroll .swiper-slide { 
  padding: 0 15px 0 0;
  height: auto;
  }

.teachers__scroll .swiper-scrollbar.swiper-scrollbar-vertical,
.teachers__scroll .swiper-vertical > .swiper-scrollbar {
  height: 100%;
  right: 0;
  top: 0;
  }

.teachers__scroll .swiper-scrollbar { 
  background: rgba(40, 40, 53, 0.12);
  border-radius: 4px;
  }

.teachers__scroll .swiper-scrollbar-drag { 
  background: #ED484A;
  border-radius: 4px;
  }

/* rating */
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  margin: 0 0 25px;
  }

.rating__star {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
  cursor: pointer;
  }

.rating__star:before {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background: url(../img/bg/rate-star-active.svg) center no-repeat;
  background-size: 100%;
  opacity: 0;
  transition: .3s opacity;
  content: "";
  cursor: pointer;
  }

.rating__star:after {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background: url(../img/bg/rate-star.svg) center no-repeat;
  background-size: 100%;
  transition: .3s opacity;
  content: "";
  cursor: pointer;
  }

.rating__star.active:before,
.rating__star.selected:before {
  opacity: 1;
  }

.rating__star.active:after,
.rating__star.selected:after {
  opacity: 0;
  }

.rating__star.no-selected:before,
.rating__star.no-selected:before {
  opacity: 0;
  }

.rating__star.no-selected:after,
.rating__star.no-selected:after {
  opacity: 1;
  }

/* hystmodal_textbook */
.hystmodal_textbook .hystmodal__window {
  padding: 0;
  max-width: 1570px;
  border-radius: 30px;
  }

.textbook-modal {
  display: flex;
  }

.textbook-modal__img {
  position: relative;
  flex-shrink: 0;
  width: 655px;
  }

.textbook-modal__name {
  position: absolute;
  display: block;
  padding: 48px 58px;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 300;
  line-height: 87px;
  z-index: 5;
  }

.textbook-modal__img img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0 0 30px;
  object-fit: cover;
  }

.textbook-modal__description {
  padding: 65px;
  }

.textbook-modal__title {
  margin: 0 0 25px;
  font-size: 32px;
  line-height: 44px;
  }

.textbook-modal__title span {
  color: #ED484A;
  }

.textbook-modal__description p {
  margin: 0 0 50px;
  font-size: 21px;
  line-height: 28px;
  }