html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  outline: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
li,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
body {
  color: #1f1f1f;
  font-family: Raleway, sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  min-width: 320px;
  margin: 0;
}
.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border: none;
  background: #002051;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  background: #e8b73f;
  color: #002051;
}
.next_btn {
  position: relative;
  width: 100%;
  max-width: 270px;
  cursor: pointer;
  text-align: center;
  z-index: 9;
}
.next_btn__text {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.next_btn__arrow {
  display: block;
  width: 100%;
  border-radius: 23px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.next_btn:hover .next_btn__arrow {
  opacity: 0.8;
}
.btn-white {
  background: #fff;
  color: #1f1f1f;
}
.btn-rotation {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-rotation svg text {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-rotation:hover svg text {
  fill: #e8b73f;
}
.btn-rotation img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.btn-rotation__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-rotation_svg {
  width: 190px;
  height: 190px;
  -webkit-animation: rotate-circle 10s infinite linear;
  animation: rotate-circle 10s infinite linear;
}
.title {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(24px, 5vw, 64px);
  line-height: 112%;
  font-weight: 600;
}
.title span {
  color: #e8b73f;
}
.slug-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 128%;
  padding: 4px 24px;
  border-radius: 32px;
  border: 1px solid #002051;
  margin-bottom: 16px;
}
@-webkit-keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
ul.list-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 12px;
}
ul.list-check li {
  position: relative;
  width: calc(50% - 6px);
  padding-left: 80px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 133%;
}
ul.list-check li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-image: url(../images/icons/check.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: #e8b73f;
  border-radius: 50%;
}
.container {
  width: 100%;
  max-width: 1660px;
  padding: 0 20px;
  margin: 0 auto;
}
.none {
  display: none;
}
.header {
  padding-top: 40px;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 32px;
  border-radius: 9px;
  background: #f2f2f2;
}
.logo {
  display: block;
  width: 200px;
}
.logo .logo-picture {
  display: block;
  width: 100%;
}
.burger-menu {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #002051;
}
.burger-menu__line {
  width: 20px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.burger-menu.active .burger-menu__line:nth-child(2) {
  width: 10px;
  margin-left: 10px;
}
.navigation {
  width: 100%;
  max-width: 600px;
}
.navigation .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navigation .menu-list__link {
  position: relative;
  display: block;
  padding: 40px 0;
  font-size: 18px;
  line-height: 133%;
}
.navigation .menu-list__link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #002051;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.navigation .menu-list__link:hover::after {
  opacity: 1;
}
.hero {
  padding-top: 110px;
  padding-bottom: 80px;
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.hero__content {
  position: relative;
  max-width: 936px;
}
.hero .programe-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.hero .programe-live__pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero .programe-live__pictures img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .programe-live__pictures img:not(:first-child) {
  margin-left: -10px;
}
.hero .programe-live__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 133%;
}
.hero .btn-rotation {
  position: absolute;
  right: 10px;
  bottom: -20px;
}
.hero__title {
  font-size: 6rem;
  font-weight: 600;
  line-height: 115%;
  text-wrap: balance;
  margin-bottom: 80px;
}
.hero__title span {
  text-transform: uppercase;
  color: #e8b73f;
}
.hero__description {
  margin-bottom: 24px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 133%;
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: fit-content;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-star;
  flex-direction: column;
}
.hero__tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 600px;
}
.hero__tiles-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.hero__tiles-line:nth-child(1) {
  height: calc(60% - 12px);
}
.hero__tiles-line:nth-child(1) .tiles-item:nth-child(1) {
  color: #fff;
  width: calc(60% - 12px);
  background-image: url(../images/tiles-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__tiles-line:nth-child(1) .tiles-item:nth-child(1) .tiles-item__title {
  font-size: 2rem;
  margin: 32px;
}
.hero__tiles-line:nth-child(1) .tiles-item:nth-child(2) {
  width: calc(40% - 12px);
}
.hero__tiles-line:nth-child(1) .tiles-item:nth-child(2) .tiles-item__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.hero__tiles-line:nth-child(1) .tiles-item:nth-child(2) .user-cards {
  margin-bottom: 22px;
}
.hero__tiles-line:nth-child(2) {
  min-height: 152px;
  height: calc(40% - 12px);
}
.hero__tiles-line:nth-child(2) .tiles-item:nth-child(1) {
  width: calc(50% - 12px);
}
.hero__tiles-line:nth-child(2) .tiles-item:nth-child(1) .tiles-item__title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero__tiles-line:nth-child(2)
  .tiles-item:nth-child(1)
  .tiles-item__description {
  font-size: 1.5rem;
  font-weight: 600;
}
.hero__tiles-line:nth-child(2) .tiles-item:nth-child(2) {
  color: #fff;
  width: calc(50% - 12px);
  background-image: url(../images/tiles-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__tiles-line:nth-child(2) .tiles-item:nth-child(2) .tiles-item__title {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero__tiles-line:nth-child(2)
  .tiles-item:nth-child(2)
  .tiles-item__description {
  font-size: 1.5rem;
  font-weight: 600;
}
.hero .tiles-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e8b73f;
  border-radius: 24px;
}
.hero .tiles-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.hero .tiles-item__title {
  font-weight: 600;
  line-height: normal;
}
.hero .user-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.hero .user-cards__img {
  display: block;
  width: 56px;
  border-radius: 50%;
}
.hero .user-cards__img:not(:first-child) {
  margin-left: -20px;
}
.ahero {
  padding-top: 110px;
  padding-bottom: 80px;
  background: #002051;
}
.ahero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.ahero__content {
  position: relative;
  max-width: 936px;
}
.ahero .programe-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.ahero .programe-live__pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ahero .programe-live__pictures img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ahero .programe-live__pictures img:not(:first-child) {
  margin-left: -10px;
}
.ahero .programe-live__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 133%;
}
.ahero .btn-rotation {
  position: absolute;
  right: 10px;
  bottom: -20px;
}
.ahero__title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 115%;
  text-wrap: balance;
  margin-bottom: 80px;
}
.ahero__title span {
  text-transform: uppercase;
  color: #e8b73f;
}
.ahero__description {
  margin-bottom: 24px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 133%;
}
.ahero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: fit-content;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-star;
  flex-direction: column;
}
.ahero__tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 600px;
}
.ahero__tiles-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.ahero__tiles-line:nth-child(1) {
  height: calc(60% - 12px);
}
.ahero__tiles-line:nth-child(1) .tiles-item:nth-child(1) {
  color: #fff;
  width: calc(60% - 12px);
  background: #002051;
  border: 1px solid #fff;
}
.ahero__tiles-line:nth-child(1) .tiles-item:nth-child(1) .tiles-item__title {
  font-size: 1.5rem;
  margin: 32px;
}
.ahero__tiles-line:nth-child(1) .tiles-item:nth-child(2) {
  width: calc(40% - 12px);
}
.ahero__tiles-line:nth-child(1) .tiles-item:nth-child(2) .tiles-item__title {
  font-size: 1.5rem;
  margin: 16px;
}
.ahero__tiles-line:nth-child(1) .tiles-item:nth-child(2) .user-cards {
  margin-bottom: 22px;
}
.ahero__tiles-line:nth-child(2) {
  min-height: 152px;
  height: calc(40% - 12px);
}
.ahero__tiles-line:nth-child(2) .tiles-item:nth-child(1) {
  width: calc(50% - 12px);
}
.ahero__tiles-line:nth-child(2) .tiles-item:nth-child(1) .tiles-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px;
}
.ahero__tiles-line:nth-child(2)
  .tiles-item:nth-child(1)
  .tiles-item__description {
  font-size: 1.5rem;
  font-weight: 600;
}
.ahero__tiles-line:nth-child(2) .tiles-item:nth-child(2) {
  color: #fff;
  width: calc(50% - 12px);
  background: #002051;
  border: 1px solid #fff;
}
.ahero__tiles-line:nth-child(2) .tiles-item:nth-child(2) .tiles-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px;
}
.ahero__tiles-line:nth-child(2)
  .tiles-item:nth-child(2)
  .tiles-item__description {
  font-size: 1.5rem;
  font-weight: 600;
}
.ahero .tiles-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 24px;
}
.ahero .tiles-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.ahero .tiles-item__title {
  font-weight: 600;
  line-height: normal;
}
.ahero .user-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.ahero .user-cards__img {
  display: block;
  width: 56px;
  border-radius: 50%;
}
.ahero .user-cards__img:not(:first-child) {
  margin-left: -20px;
}
.section-teachers {
  padding-bottom: 75px;
  color: #fff;
}
.section-teachers .navigation-slider {
  padding-top: 22px;
}
.section-teachers__wrapper {
  position: relative;
  padding: 64px 106px 0;
  border-radius: 24px;
  background: #002051;
  margin-bottom: 80px;
  overflow: hidden;
  height: 990px;
}
.section-teachers__wrapper .next_btn {
  position: absolute;
  right: 3.5%;
  bottom: 45px;
}
.section-teachers__title {
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 64px;
}
.section-teachers__text {
  margin-bottom: 40px;
  text-wrap: balance;
  text-align: center;
  font-size: 1.5rem;
  line-height: 133%;
}
.section-teachers .btn {
  margin: 40px auto 66px;
}
.section-contact .sp-form .sp-lg .sp-field .sp-form-control {
  font-size: 17px;
  padding-left: 20px;
  padding-right: 20px;
  height: 55px;
}
.section-teachers .teachers-slider .teacher-item {
  position: relative;
  display: none;
  /* -webkit-box-pack: start;
  -ms-flex-pack: start; */
  justify-content: space-between;
}
.section-teachers .teachers-slider .teacher-item__img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 680px;
  z-index: 5;
  max-height: 680px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: auto;
}
.section-teachers .teachers-slider .cteacher-item__img {
  width: calc(100% - 2em);
  padding: 30px 0 0;
}
.section-teachers .teachers-slider .teacher-item__name {
  position: absolute;
  left: 35%;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  padding: 4px 24px;
  border: 1px solid #fff;
  border-radius: 30px;
  z-index: 3;
}
.section-teachers .teachers-slider .teacher-item__name::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 145px;
  height: 127px;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  background-image: url(../images/icons/teacher_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.section-teachers .teachers-slider .teacher-item__about {
  position: absolute;
  top: 0;
  left: 0;
  background: #e8b73f;
  padding: 20px 26px;
  max-width: 536px;
  border-radius: 24px;
  color: #1f1f1f;
}
.section-teachers .teachers-slider .teacher-item__about-text {
  margin-bottom: 12px;
  font-weight: 600;
}
.section-teachers .teachers-slider .teacher-item__about-missing h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 24px;
  border: 1px solid #1f1f1f;
  border-radius: 32px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
.section-teachers .teachers-slider .teacher-item__about-missing p {
  font-size: 0.875rem;
}
.section-teachers .teachers-slider .teacher-item__content {
  position: absolute;
  max-width: 500px;
  z-index: 4;
}
.section-teachers .teachers-slider .teacher-item__content-wrapper {
  background: #fff;
  padding: 24px 14px 30px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.section-teachers .teachers-slider .teacher-item__content-number {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-teachers .teachers-slider .teacher-item__content-number span {
  color: #002051;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
}
.section-teachers .teachers-slider .teacher-item__content-text {
  color: #1f1f1f;
  font-size: clamp(12px, 5vw, 20px);
  line-height: 133%;
  font-weight: 400;
}
.section-teachers .teachers-slider .teacher-item__content--1 {
  top: 10%;
  left: 5%;
}
.section-teachers .teachers-slider .teacher-item__content--2 {
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.section-teachers .teachers-slider .teacher-item__content--3 {
  bottom: 5%;
  left: 0;
}
.section-teachers .teachers-slider .teacher-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews-teacher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  width: 100%;
  height: 100%;
  padding-left: calc((100vw - 1660px) / 2);
}
.reviews-teacher__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-width: 500px;
  max-width: 527px;
  background: #e8b73f;
  padding: 40px 32px;
  border-radius: 24px;
}
.reviews-teacher__preview-slug {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 24px;
  border: 1px solid #fff;
  border-radius: 32px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 100%;
}
.reviews-teacher__preview-text {
  font-size: 2rem;
  line-height: 133%;
  font-weight: 600;
}
.reviews-teacher__preview-text span {
  text-transform: uppercase;
}
.reviews-teacher__wrapper {
  position: relative;
  overflow: hidden;
}
.reviews-teacher .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.reviews-teacher .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.reviews-teacher .swiper-slide {
  width: 100%;
  height: 100%;
}
.tamplete-slide {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 24px;
  background: #002051;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.tamplete-slide__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 50px 40px 32px;
}
.tamplete-slide::after {
  position: absolute;
  content: "";
  top: 10%;
  right: 2%;
  width: 200px;
  height: 190px;
  background-image: url(../images/shield.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.tamplete-slide__slug {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 24px;
  border: 1px solid #fff;
  border-radius: 32px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 100%;
}
.tamplete-slide__text {
  font-size: 1.5rem;
  line-height: 133%;
  font-weight: 600;
}
.section-offer {
  position: relative;
  padding-top: 75px;
  padding-bottom: 50px;
}
.section-offer .title {
  color: #1f1f1f;
  text-align: left;
  margin-bottom: 32px;
}
.section-offer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 50px;
}
.section-offer__title {
  position: relative;
  min-width: 450px;
  max-width: 450px;
}
.section-offer .next_btn {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.section-offer .next_btn__text {
  color: #1f1f1f;
}
.section-offer__img {
  display: block;
  width: 100%;
}
.section-offer__telegrame {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 300px;
  max-width: 400px;
}
.section-offer__phone {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.section-offer .massages {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 80%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-offer .massages .massages-item {
  padding: 4.909px 9.818px;
  border-radius: 6.545px 14.727px 14.727px 6.545px;
  background: #252033;
}
.section-offer .massages .massages-item__content {
  color: #fff;
  font-size: 14px;
  line-height: 135%;
}
.section-offer .massages .massages-item__date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #9c9ca3;
  margin-left: auto;
  margin-top: 7px;
  font-size: 14px;
}
.section-offer .massages .massages-item + .massages-item {
  margin-top: 3.2px;
}
.section-offer .avatar {
  position: absolute;
  top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-offer .avatar__left {
  width: 32px;
}
.section-offer .avatar__name {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.section-offer .avatar__img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.section-offer__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 520px;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-offer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-offer__subtitle {
  color: #1f1f1f;
  font-size: 2rem;
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 24px;
}
.section-offer__text {
  font-size: 1.5rem;
  line-height: 133%;
  font-weight: 500;
  text-wrap: balance;
}
.section-offer__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  min-width: 460px;
}
.section-offer__card {
  width: calc(50% - 5px);
  padding: 47px 20px;
  border-radius: 24px;
  background: #e8b73f;
  text-align: center;
  font-size: 1.2rem;
  line-height: 155%;
  font-weight: 600;
  text-wrap: balance;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-offer__card:nth-child(2) {
  background-image: url(../images/tiles-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.section-offer__content,
.section-offer__phone {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.section-offer__content.active,
.section-offer__phone.active {
  opacity: 1;
  left: 0;
  pointer-events: all;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  position: sticky;
}
.section-graduates {
  padding-top: 104px;
  padding-bottom: 80px;
}
.section-graduates__title {
  text-align: left;
  margin-bottom: 40px;
}
.section-graduates .graduates-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 222px;
  color: #fff;
}
.section-graduates .graduates-slider__text {
  position: absolute;
  padding: 24px;
  height: 100px;
  overflow: hidden;
  border-radius: 24px;
  font-size: 1rem;
  line-height: 133%;
  margin-bottom: 0;
  z-index: 5;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.section-graduates .graduates-slider__container {
  height: 100%;
  min-height: inherit;
}
.section-graduates .graduates-slider__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 20%;
  padding-bottom: 16px;
}
.section-graduates .graduates-slider__user {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
  bottom: 0;
  left: 5px;
  overflow: hidden;
  border-radius: 50%;
}
.section-graduates .graduates-slider__user-photo {
  display: block;
  width: 100%;
  height: 100%;
}
.section-graduates .graduates-slider__name {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 128%;
}
.section-graduates .graduates-slider__star {
  display: block;
  width: 50%;
}
.section-graduates .graduates-slider__wrapper {
  height: 100%;
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #002051;
  padding: 24px 14px 0;
  border-radius: 24px;
  -webkit-clip-path: polygon(
    5.66% 0.099%,
    93.953% 0.017%,
    93.953% 0.017%,
    94.859% 0.211%,
    95.73% 0.623%,
    96.552% 1.236%,
    97.315% 2.037%,
    98.007% 3.007%,
    98.616% 4.132%,
    99.13% 5.396%,
    99.539% 6.782%,
    99.829% 8.276%,
    99.99% 9.861%,
    99.99% 90.143%,
    99.99% 90.143%,
    99.856% 91.641%,
    99.607% 93.069%,
    99.251% 94.408%,
    98.798% 95.644%,
    98.257% 96.76%,
    97.636% 97.74%,
    96.944% 98.569%,
    96.191% 99.23%,
    95.385% 99.706%,
    94.534% 99.983%,
    20.676% 99.854%,
    20.676% 99.854%,
    20.24% 99.469%,
    19.83% 99.003%,
    19.445% 98.463%,
    19.086% 97.861%,
    18.752% 97.207%,
    18.443% 96.51%,
    18.159% 95.781%,
    17.9% 95.029%,
    17.665% 94.265%,
    17.454% 93.499%,
    17.454% 93.499%,
    16.995% 91.393%,
    16.693% 89.349%,
    16.492% 87.362%,
    16.336% 85.423%,
    16.168% 83.526%,
    15.932% 81.664%,
    15.571% 79.829%,
    15.03% 78.015%,
    14.253% 76.214%,
    13.182% 74.42%,
    13.182% 74.42%,
    12.266% 73.254%,
    11.373% 72.412%,
    10.498% 71.83%,
    9.632% 71.444%,
    8.768% 71.191%,
    7.9% 71.007%,
    7.02% 70.827%,
    6.121% 70.589%,
    5.197% 70.228%,
    4.239% 69.68%,
    4.239% 69.68%,
    3.738% 69.311%,
    3.215% 68.866%,
    2.686% 68.348%,
    2.167% 67.76%,
    1.671% 67.104%,
    1.215% 66.385%,
    0.813% 65.604%,
    0.48% 64.765%,
    0.231% 63.871%,
    0.081% 62.924%,
    0.01% 11.391%,
    0.01% 11.391%,
    0.102% 9.681%,
    0.314% 8.05%,
    0.639% 6.516%,
    1.074% 5.099%,
    1.611% 3.817%,
    2.247% 2.689%,
    2.975% 1.734%,
    3.79% 0.971%,
    4.686% 0.42%,
    5.66% 0.099%
  );
  clip-path: polygon(
    5.66% 0.099%,
    93.953% 0.017%,
    93.953% 0.017%,
    94.859% 0.211%,
    95.73% 0.623%,
    96.552% 1.236%,
    97.315% 2.037%,
    98.007% 3.007%,
    98.616% 4.132%,
    99.13% 5.396%,
    99.539% 6.782%,
    99.829% 8.276%,
    99.99% 9.861%,
    99.99% 90.143%,
    99.99% 90.143%,
    99.856% 91.641%,
    99.607% 93.069%,
    99.251% 94.408%,
    98.798% 95.644%,
    98.257% 96.76%,
    97.636% 97.74%,
    96.944% 98.569%,
    96.191% 99.23%,
    95.385% 99.706%,
    94.534% 99.983%,
    20.676% 99.854%,
    20.676% 99.854%,
    20.24% 99.469%,
    19.83% 99.003%,
    19.445% 98.463%,
    19.086% 97.861%,
    18.752% 97.207%,
    18.443% 96.51%,
    18.159% 95.781%,
    17.9% 95.029%,
    17.665% 94.265%,
    17.454% 93.499%,
    17.454% 93.499%,
    16.995% 91.393%,
    16.693% 89.349%,
    16.492% 87.362%,
    16.336% 85.423%,
    16.168% 83.526%,
    15.932% 81.664%,
    15.571% 79.829%,
    15.03% 78.015%,
    14.253% 76.214%,
    13.182% 74.42%,
    13.182% 74.42%,
    12.266% 73.254%,
    11.373% 72.412%,
    10.498% 71.83%,
    9.632% 71.444%,
    8.768% 71.191%,
    7.9% 71.007%,
    7.02% 70.827%,
    6.121% 70.589%,
    5.197% 70.228%,
    4.239% 69.68%,
    4.239% 69.68%,
    3.738% 69.311%,
    3.215% 68.866%,
    2.686% 68.348%,
    2.167% 67.76%,
    1.671% 67.104%,
    1.215% 66.385%,
    0.813% 65.604%,
    0.48% 64.765%,
    0.231% 63.871%,
    0.081% 62.924%,
    0.01% 11.391%,
    0.01% 11.391%,
    0.102% 9.681%,
    0.314% 8.05%,
    0.639% 6.516%,
    1.074% 5.099%,
    1.611% 3.817%,
    2.247% 2.689%,
    2.975% 1.734%,
    3.79% 0.971%,
    4.686% 0.42%,
    5.66% 0.099%
  );
}
.section-graduates .graduates-slider:hover .graduates-slider__wrapper {
  background: #e8b73f;
}
.section-graduates .navigation-slider {
  margin-top: 24px;
}
.section-modules {
  padding-top: 120px;
  padding-bottom: 144px;
}
.section-modules__title {
  text-align: center;
  font-size: 7rem;
  font-weight: 600;
  color: #002051;
  line-height: 133%;
  margin-bottom: 56px;
  text-transform: uppercase;
}
.section-modules__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-modules .slug-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.section-modules .navigation-module {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.section-modules .navigation-module__item {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 133%;
  cursor: pointer;
  color: #807e80;
}
.section-modules .navigation-module__item strong {
  color: #807e80;
  font-weight: 600;
}
.section-modules .navigation-module__item:hover strong {
  color: #e8b73f;
}
.section-modules .navigation-module .navigation-module__item.active {
  color: #002051;
  font-weight: 600;
  text-decoration: underline;
}
.section-modules .navigation-module .navigation-module__item.active strong {
  color: #002051;
  font-weight: 800;
}
.section-modules .content-module {
  width: 70%;
}
.section-modules .content-module .module-item {
  display: none;
}
.section-modules .content-module .module-item__title {
  font-size: 2.5rem;
  line-height: 120%;
  text-wrap: balance;
  margin-bottom: 30px;
}
.section-modules .content-module .module-item.active {
  display: block;
}
.section-modules .content-module__text {
  max-width: 1040px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 133%;
  margin-bottom: 56px;
}
.section-modules .content-module__list + .content-module__list {
  margin-top: 56px;
}
.section-modules .content-module__list ul li::before {
  background-color: #002051;
}
.section-modules .content-module__list--yellow ul li::before {
  background-color: #e8b73f;
}
.section-proposal {
  color: #fff;
  padding: 72px 0 170px;
  background: #002051;
}
.section-proposal__title {
  margin-bottom: 60px;
}
.section-proposal__box {
  background: #e8b73f;
  min-width: 500px;
  height: auto;
}
.section-proposal__box::after {
  background-image: url(../images/shield-w.svg);
}
.section-proposal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 100px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-left: calc((100vw - 1660px) / 2);
}
.section-proposal .slider {
  position: relative;
  overflow: hidden;
}
.section-proposal .slider .swiper {
  height: 100%;
}
.section-proposal .slider .tamplete-slide {
  background: #fff;
  color: #1f1f1f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-proposal .slider .tamplete-slide__slug {
  border-color: #1f1f1f;
}
.section-proposal .slug-title {
  border-color: #fff;
  margin: 0 auto 15px;
}
.section-proposal__list ul li {
  width: calc(50% - 20px);
}
.section-packages {
  padding: 100px 0 200px;
}
.section-packages__title {
  margin-bottom: 20px;
}
.section-packages__text {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 133%;
}
.section-packages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.section-packages .package-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: calc(33.3333% - 10px);
  padding: 36px 40px 57px;
  color: #fff;
  background: #002051;
  border-radius: 22px;
}
.section-packages .package-item__btn {
  background: #fff;
  margin: auto 0 0;
  color: #1f1f1f;
  cursor: pointer;
}
.section-packages .package-item .slug-title {
  border-color: #fff;
  margin: 0 auto 35px;
}
.section-packages .package-item__price {
  text-align: center;
  font-size: 58px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 15px;
}
.section-packages .package-item__price span {
  font-size: 32px;
}
.section-packages .package-item__description {
  min-height: 80px;
}
.section-packages .package-item__description,
.section-packages .package-item__gift {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 30px;
}
.section-packages .package-item__gift {
  margin-bottom: 80px;
}
.section-packages .package-item--white {
  background: #fff;
  border: 1px solid #002051;
  color: #1f1f1f;
}
.section-packages .package-item--white .slug-title {
  border-color: #002051;
}
.section-packages .package-item--white .package-item__btn {
  background: #002051;
  color: #fff;
  width: 100%;
  padding: 25px 0;
  font-size: 1.2rem;
}
.section-packages .package-item__list {
  margin-bottom: 20px;
}
.section-packages .package-item__list li {
  position: relative;
  padding-left: 50px;
  font-size: 22px;
  font-weight: 500;
  line-height: 133%;
}
.section-packages .package-item__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/check.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: #e8b73f;
  border-radius: 50%;
}
.section-packages .package-item__list li + li {
  margin-top: 22px;
}
.section-packages .package-item__list ul {
  padding-left: 25px;
  margin-top: 22px;
}
.section-packages .package-item__list ul li {
  padding-left: 0;
  font-size: 16px;
  line-height: 133%;
  font-weight: 400;
  list-style: disc;
}
.section-packages .package-item__list ul li::before {
  display: none;
}
.section-video {
  padding-top: 60px;
  padding-bottom: 130px;
}
.section-video .slug-title {
  margin: 0 auto 22px;
}
.section-video__title {
  margin-bottom: 15px;
}
.section-video__text {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 133%;
  max-width: 750px;
  margin: 0 auto 30px;
}
.section-video__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.section-video .main-video {
  position: relative;
  width: calc(75% - 10px);
  overflow: hidden;
  border-radius: 22px;
}
.section-video .main-video .play-button {
  position: absolute;
  top: 50%;
  display: none;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-image: url(../images/icons/play.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.section-video .main-video img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-video .main-video iframe {
  width: 100%;
  height: 100%;
}
.section-video .video-list {
  position: relative;
  width: calc(25% - 10px);
  max-height: 690px;
  overflow-y: auto;
  overflow-x: hidden;
}
.section-video .video-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.section-video .video-item {
  position: relative;
  cursor: pointer;
}
.section-video .video-item:hover .play-button {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.section-video .video-item:hover .video-item__wrapper::after {
  opacity: 0;
}
.section-video .video-item__wrapper {
  border-radius: 22px;
  -webkit-clip-path: polygon(
    94.881% 0.088%,
    5.559% 0.016%,
    5.559% 0.016%,
    4.803% 0.294%,
    4.085% 0.718%,
    3.408% 1.277%,
    2.778% 1.96%,
    2.201% 2.756%,
    1.679% 3.655%,
    1.219% 4.646%,
    0.825% 5.719%,
    0.502% 6.863%,
    0.254% 8.067%,
    0.254% 8.067%,
    0.133% 16.186%,
    0.058% 24.312%,
    0.019% 32.444%,
    0.009% 40.58%,
    0.019% 48.72%,
    0.038% 56.861%,
    0.059% 65.003%,
    0.072% 73.143%,
    0.068% 81.28%,
    0.038% 89.413%,
    0.038% 89.413%,
    0.169% 91.013%,
    0.411% 92.542%,
    0.761% 93.981%,
    1.214% 95.311%,
    1.766% 96.513%,
    2.412% 97.569%,
    3.147% 98.46%,
    3.968% 99.166%,
    4.87% 99.669%,
    5.848% 99.95%,
    5.848% 99.95%,
    13.181% 99.982%,
    20.512% 99.981%,
    27.842% 99.955%,
    35.171% 99.911%,
    42.5% 99.858%,
    49.828% 99.802%,
    57.157% 99.753%,
    64.486% 99.717%,
    71.816% 99.702%,
    79.147% 99.716%,
    79.147% 99.716%,
    79.762% 99.452%,
    80.344% 98.891%,
    80.888% 98.086%,
    81.391% 97.092%,
    81.848% 95.965%,
    82.255% 94.759%,
    82.609% 93.528%,
    82.904% 92.327%,
    83.136% 91.212%,
    83.301% 90.237%,
    83.301% 90.237%,
    83.463% 88.997%,
    83.59% 87.763%,
    83.697% 86.536%,
    83.796% 85.315%,
    83.903% 84.101%,
    84.03% 82.895%,
    84.192% 81.697%,
    84.401% 80.507%,
    84.672% 79.327%,
    85.018% 78.155%,
    85.018% 78.155%,
    86.262% 75.317%,
    87.71% 73.39%,
    89.307% 72.146%,
    90.998% 71.355%,
    92.726% 70.788%,
    94.435% 70.217%,
    96.071% 69.411%,
    97.576% 68.144%,
    98.896% 66.185%,
    99.973% 63.305%,
    99.99% 9.41%,
    99.99% 9.41%,
    99.805% 8.081%,
    99.541% 6.801%,
    99.201% 5.587%,
    98.787% 4.451%,
    98.301% 3.409%,
    97.746% 2.473%,
    97.124% 1.66%,
    96.437% 0.982%,
    95.689% 0.455%,
    94.881% 0.091%
  );
  clip-path: polygon(
    94.881% 0.088%,
    5.559% 0.016%,
    5.559% 0.016%,
    4.803% 0.294%,
    4.085% 0.718%,
    3.408% 1.277%,
    2.778% 1.96%,
    2.201% 2.756%,
    1.679% 3.655%,
    1.219% 4.646%,
    0.825% 5.719%,
    0.502% 6.863%,
    0.254% 8.067%,
    0.254% 8.067%,
    0.133% 16.186%,
    0.058% 24.312%,
    0.019% 32.444%,
    0.009% 40.58%,
    0.019% 48.72%,
    0.038% 56.861%,
    0.059% 65.003%,
    0.072% 73.143%,
    0.068% 81.28%,
    0.038% 89.413%,
    0.038% 89.413%,
    0.169% 91.013%,
    0.411% 92.542%,
    0.761% 93.981%,
    1.214% 95.311%,
    1.766% 96.513%,
    2.412% 97.569%,
    3.147% 98.46%,
    3.968% 99.166%,
    4.87% 99.669%,
    5.848% 99.95%,
    5.848% 99.95%,
    13.181% 99.982%,
    20.512% 99.981%,
    27.842% 99.955%,
    35.171% 99.911%,
    42.5% 99.858%,
    49.828% 99.802%,
    57.157% 99.753%,
    64.486% 99.717%,
    71.816% 99.702%,
    79.147% 99.716%,
    79.147% 99.716%,
    79.762% 99.452%,
    80.344% 98.891%,
    80.888% 98.086%,
    81.391% 97.092%,
    81.848% 95.965%,
    82.255% 94.759%,
    82.609% 93.528%,
    82.904% 92.327%,
    83.136% 91.212%,
    83.301% 90.237%,
    83.301% 90.237%,
    83.463% 88.997%,
    83.59% 87.763%,
    83.697% 86.536%,
    83.796% 85.315%,
    83.903% 84.101%,
    84.03% 82.895%,
    84.192% 81.697%,
    84.401% 80.507%,
    84.672% 79.327%,
    85.018% 78.155%,
    85.018% 78.155%,
    86.262% 75.317%,
    87.71% 73.39%,
    89.307% 72.146%,
    90.998% 71.355%,
    92.726% 70.788%,
    94.435% 70.217%,
    96.071% 69.411%,
    97.576% 68.144%,
    98.896% 66.185%,
    99.973% 63.305%,
    99.99% 9.41%,
    99.99% 9.41%,
    99.805% 8.081%,
    99.541% 6.801%,
    99.201% 5.587%,
    98.787% 4.451%,
    98.301% 3.409%,
    97.746% 2.473%,
    97.124% 1.66%,
    96.437% 0.982%,
    95.689% 0.455%,
    94.881% 0.091%
  );
}
.section-video .video-item__wrapper::after {
  position: absolute;
  content: "";
  inset: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 58, 166, 0.9)),
    to(rgba(0, 58, 166, 0.9))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 58, 166, 0.9) 0,
    rgba(0, 58, 166, 0.9) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 58, 166, 0.9) 0,
    rgba(0, 58, 166, 0.9) 100%
  );
  opacity: 0.9;
  -webkit-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.section-video .video-item:hover::after {
  opacity: 0;
}
.section-video img {
  display: block;
  width: 100%;
}
.section-video .play-button {
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #e8b73f;
  background-image: url(../images/icons/play.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  border-radius: 50%;
}
.section-qutions {
  padding-bottom: 130px;
}
.section-qutions__title {
  margin-bottom: 15px;
}
.section-qutions__text {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 133%;
  margin-bottom: 65px;
}
.section-qutions__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.section-qutions .qution-item {
  padding: 28.8px 36px;
  border-radius: 21.6px;
  background: #f2f2f2;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}
.section-qutions .qution-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-qutions .qution-item__head-text {
  font-size: 29px;
  font-weight: 600;
  line-height: 100%;
}
.section-qutions .qution-item__head-arrow {
  background: #e8b73f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url(../images/icons/drop.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-qutions .qution-item ul {
  padding-left: 25px;
  margin-top: 22px;
}
.section-qutions .qution-item ul li {
  padding-left: 0;
  font-size: 16px;
  line-height: 133%;
  font-weight: 400;
  list-style: disc;
}
.section-qutions .qution-item ul li::before {
  display: none;
}
.section-qutions .qution-item__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.section-qutions .qution-item__content-wrapper {
  padding-top: 35px;
}
.section-qutions .qution-item__content-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 133%;
}
.section-qutions .qution-item.active {
  background: #002051;
  color: #fff;
}
.section-qutions .qution-item.active .qution-item__head-arrow {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.section-qutions .qution-item + .qution-item {
  margin-top: 24px;
}
.footer {
  padding-bottom: 130px;
}
.footer__wrapper {
  color: #fff;
  padding: 58px 58px 20px;
  border-radius: 21.6px;
  background: #002051;
}
.footer .title {
  text-align: left;
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: 182px;
  margin-bottom: 12px;
}
.footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 128px;
}
.footer .footer-top__title {
  margin-bottom: 15px;
}
.footer .footer-top__text {
  max-width: 650px;
  font-size: 22px;
  font-weight: 500;
  line-height: 133%;
}
.footer .footer-top__arrow {
  width: 108px;
  height: 108px;
  background: #e8b73f;
  border-radius: 50%;
  background-image: url(../images/icons/arrow-up.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 46px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.footer .footer-top__arrow:hover {
  -webkit-transform: rotate(-45deg) scale(1.05);
  -ms-transform: rotate(-45deg) scale(1.05);
  transform: rotate(-45deg) scale(1.05);
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 90px;
}
.footer .footer-content__about {
  max-width: 320px;
}
.footer .footer-content__text {
  margin-bottom: 60px;
}
.footer .footer-content .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.footer .footer-content .social__icon {
  display: block;
}
.footer .footer-content .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.footer .footer-content .footer-nav__title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
  line-height: 115%;
}
.footer .footer-content .footer-nav__item-text {
  margin-bottom: 8px;
}
.footer .footer-content .footer-nav__item + .footer-nav__item {
  margin-top: 30px;
}
.footer .footer-content .footer-nav__list li a:hover {
  text-decoration: underline;
}
.footer .footer-content .footer-nav__list li + li {
  margin-top: 15px;
}
.navigation-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navigation-slider .dots .swiper-pagination-bullet {
  width: 24px;
  height: 12px;
  background-color: #ededed;
  opacity: 1;
  border-radius: 16px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.navigation-slider .dots .swiper-pagination-bullet-active {
  width: 64px;
  background-color: #002051;
}
.navigation-slider__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.navigation-slider .arrow-slider {
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 10;
}
.navigation-slider .arrow-slider.arrow-left {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.module {
  position: fixed;
  inset: 0;
  background: rgba(56, 56, 56, 0.4784313725);
  z-index: 9999;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module__content {
  position: relative;
  width: 100%;
  max-height: 60vh;
  overflow-y: auto;
  max-width: 666px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}
.module__title {
  margin-bottom: 14px;
}
.module__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.module__close:hover {
  background: #002051;
}
.module__close:hover::after,
.module__close:hover::before {
  background: #fff;
}
.module__close::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background: #002051;
  width: 60%;
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.module__close::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background: #002051;
  width: 60%;
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.module__text {
  text-align: center;
}
.module.module-content .module__content {
  padding: 34px;
  max-width: 800px;
}
.module.module-content .module__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.module.module-content .module__text {
  text-align: left;
}
.module.module-content .module__text + .module__text {
  margin-top: 10px;
}
.module.module-content .list-check {
  margin: 10px 0 20px;
  gap: 10px;
}
.module.module-content .list-check li {
  width: 100%;
  font-size: 16px;
  padding-left: 40px;
}
.module.module-content .list-check li::before {
  width: 26px;
  height: 26px;
}
.module.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}
.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 90vh;
}
.thanks__content {
  max-width: 666px;
  margin: 0 auto;
}
.thanks__subtitle {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 90px auto 20px;
}
.thanks p + p {
  margin-top: 20px;
}
.thanks .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}
.thanks .social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #002051;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.thanks .social__link:hover {
  background: #e8b73f;
}
.thanks .social__icon {
  display: block;
}
.wrapper-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper-inputs .sp-field {
  width: 50%;
}
.certificate {
  padding: 60px 80px 0 80px;
  width: -webkit-fill-available;
}

@media screen and (max-width: 1580px) {
  .certificate {
    padding: 60px 60px 0 60px;
  }

  ul.list-check {
    gap: 30px 12px;
  }
  ul.list-check li {
    font-size: 1.2rem;
    padding-left: 60px;
  }
  ul.list-check li::before {
    width: 40px;
    height: 40px;
  }
  .hero .btn-rotation {
    bottom: 0;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
  }
  .hero__title {
    margin-bottom: 60px;
  }
  .hero__description {
    font-size: 1.2em;
    max-width: 540px;
  }
  .ahero .btn-rotation {
    bottom: 0;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
  }
  .ahero__title {
    margin-bottom: 60px;
  }
  .ahero__description {
    font-size: 1.2em;
    max-width: 540px;
  }
  .reviews-teacher__preview {
    min-width: 420px;
  }
  .reviews-teacher__preview-text {
    font-size: 1.5rem;
  }
  .tamplete-slide__wrapper {
    padding: 40px 40px 40px 22px;
    gap: 20px;
  }
  .tamplete-slide::after {
    width: 150px;
    height: 120px;
  }
  .tamplete-slide__text {
    font-size: 1.2rem;
  }
  .section-offer__wrapper {
    gap: 30px;
  }
  .section-offer__phone {
    max-width: 300px;
  }
  .section-offer .massages {
    bottom: 12%;
  }
  .section-offer .massages .massages-item__content {
    font-size: 12px;
  }
  .section-offer .massages .massages-item__date {
    font-size: 10px;
  }
  .section-offer__cards {
    min-width: 320px;
  }
  .section-offer__card {
    padding: 47px 10px;
  }
  .section-modules .content-module__list + .content-module__list {
    margin-top: 36px;
  }
  .section-proposal__box {
    min-width: 460px;
  }
  .footer {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 540px) {
  .certificate {
    padding: 0px 0px 0 0px;
  }
}
@media screen and (max-width: 1568px) {
  .header {
    padding-top: 20px;
  }
  .header__wrapper {
    padding: 0 26px;
  }
  .navigation .menu-list {
    gap: 20px;
  }
  .hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .ahero {
    padding-top: 60px;
    padding-bottom: 40px;
    background: #002051;
  }
  .section-offer .avatar {
    top: 40px;
    padding: 0 30px;
  }
  .section-offer .avatar__name {
    font-size: 10px;
  }
  .section-modules .content-module__text {
    font-size: 1.5rem;
  }
  .module.module-content .module__content {
    overflow-y: auto;
    max-height: 70vh;
  }
  .module.module-content .module__close {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1524px) {
  .section-teachers__wrapper {
    padding: 64px 44px 0;
  }
}
@media screen and (max-width: 1440px) {
  .reviews-teacher {
    padding-left: 20px;
  }
  .section-proposal__box {
    max-width: 500px;
  }
  .section-proposal__wrapper {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .hero__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__tiles {
    min-width: 500px;
  }
  .ahero__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .ahero__title {
    font-size: 3rem;
  }
  .ahero__tiles {
    min-width: 500px;
  }
  .section-teachers .teachers-slider .teacher-item__content--1 {
    top: 30%;
    left: 0;
  }
  .section-offer__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section-offer__title {
    max-width: 100%;
  }
  .section-offer .next_btn {
    top: 50%;
    left: auto;
    right: 0;
    bottom: auto;
  }
  .section-video .play-button {
    width: 36px;
    height: 36px;
    background-size: 20px;
  }
}
@media screen and (max-width: 1268px) {
  .header__wrapper {
    padding: 0 20px;
  }
  .logo {
    width: 160px;
  }
  .navigation .menu-list {
    gap: 15px;
  }
  .navigation .menu-list__link {
    font-size: 16px;
    padding: 30px 0;
  }
}
@media screen and (max-width: 1200px) {
  .footer {
    padding-bottom: 32px;
  }
  .footer__wrapper {
    padding: 58px 28px 20px;
  }
  .footer .footer-content__about {
    max-width: 260px;
  }
  .footer .footer-content .footer-nav {
    gap: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .header__wrapper {
    padding: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-shadow: 0 31px 12px -18px rgba(4, 14, 29, 0.25);
    box-shadow: 0 31px 12px -18px rgba(4, 14, 29, 0.25);
  }
  .header__btn {
    display: none;
  }
  .header .logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .header .navigation {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }
  .header__actions {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .logo {
    width: 200px;
  }
  .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .navigation {
    position: relative;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .navigation .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .navigation .menu-list__link {
    padding: 20px 0;
  }
  .hero {
    padding-top: 160px;
  }
  .ahero {
    padding-top: 60px;
    background: #002051;
  }
}
@media screen and (max-width: 992px) {
  .section-teachers .teachers-slider .teacher-item__name {
    left: 45%;
  }
  .next_btn {
    max-width: 220px;
  }
  .next_btn__text {
    font-size: 20px;
  }
  .next_btn__text {
    font-size: 16px;
    margin-bottom: 10px;
  }
  ul.list-check li {
    width: 100%;
    font-size: 1rem;
  }
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .hero .btn-rotation {
    bottom: auto;
    top: 0;
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  .hero__title {
    font-size: 3rem;
  }
  .ahero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ahero .btn-rotation {
    bottom: auto;
    top: 0;
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  .ahero__title {
    padding-right: 150px;
  }
  .section-teachers__wrapper .next_btn {
    bottom: 20px;
    right: 2.5%;
  }
  .section-teachers__wrapper .next_btn {
    bottom: 10px;
  }

  .section-teachers .teachers-slider .teacher-item__about {
    top: 5%;
    max-width: 436px;
  }

  .section-teachers .teachers-slider .teacher-item__content-wrapper {
    padding: 24px 14px 36px;
    min-height: 80px;
  }
  .section-teachers .teachers-slider .teacher-item__content-number {
    -webkit-transform: translateY(30%);
    -ms-transform: translateY(30%);
    transform: translateY(30%);
    width: 40px;
    height: 40px;
  }
  .section-teachers .teachers-slider .teacher-item__content-number span {
    font-size: 1rem;
  }
  /* .section-teachers .teachers-slider .teacher-item__content-text {
    font-size: 16px;
  } */
  .section-teachers .teachers-slider .teacher-item__content--1 {
    top: -6%;
    left: 0;
  }
  .section-teachers .teachers-slider .teacher-item__content--2 {
    top: 0;
  }
  .section-teachers .teachers-slider .teacher-item__content--3 {
    bottom: auto;
    top: 20%;
  }
  .reviews-teacher {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
  }
  .tamplete-slide__text {
    font-size: 1rem;
  }
  .section-offer {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-offer .next_btn {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
  .section-graduates {
    padding-bottom: 40px;
  }
  .section-modules {
    padding-top: 20px;
    padding-bottom: 104px;
  }
  .section-modules__title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .section-modules__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 56px;
  }
  .section-modules .slug-title {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .section-modules .navigation-module {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section-modules .navigation-module__item {
    font-size: 1rem;
  }
  .section-modules .content-module {
    width: 100%;
  }
  .section-modules .content-module__text {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  .section-proposal {
    padding: 45px 0 56px;
  }
  .section-proposal__title {
    margin-bottom: 40px;
  }
  .section-proposal__wrapper {
    padding-right: 20px;
  }
  .section-proposal__wrapper {
    margin-bottom: 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-proposal__list ul li {
    width: 100%;
  }
  .section-packages {
    padding: 80px 0 0;
  }
  .section-packages .package-item {
    padding: 26px 30px 57px;
  }
  .section-packages .package-item .slug-title {
    margin: 0 auto 25px;
  }
  .section-packages .package-item__price {
    font-size: 32px;
  }
  .section-packages .package-item__description,
  .section-packages .package-item__gift {
    font-size: 20px;
  }
  .section-packages .package-item__gift {
    margin-bottom: 40px;
  }
  .section-video {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .section-video__text {
    font-size: 16px;
    margin: 0 auto 40px;
  }
  .section-video__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-video .main-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
  }
  .section-video .video-list {
    width: 100%;
  }
  .section-video .video-list__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .section-video .video-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    max-width: 50%;
  }
  .section-video .video-item {
    border-radius: 12px;
  }
  .footer .footer-top {
    margin-bottom: 40px;
  }
  .footer .footer-top__text {
    font-size: 18px;
  }
  .footer .footer-top__arrow {
    width: 65px;
    min-width: 65px;
    height: 65px;
    background-size: 26px;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .footer .footer-content .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 837px) {
  .section-teachers .teachers-slider .teacher-item__name {
    left: 55%;
    width: 100%;
    max-width: max-content;
    transform: translateY(-30%);
  }
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }
  .btn-rotation_svg {
    width: 120px;
    height: 120px;
  }
  .hero__title {
    font-size: 3rem;
    padding-top: 10px;
    margin-bottom: 32px;
    padding-right: 0;
  }
  .hero__description {
    font-size: 1em;
  }
  .hero__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero__actions a {
    width: 100%;
    text-align: center;
  }
  .hero__actions button {
    width: 100%;
    text-align: center;
  }

  .hero__tiles {
    gap: 16px;
    min-width: 100%;
  }
  .hero__tiles-line {
    gap: 16px;
  }
  .hero__tiles-line:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero__tiles-line:nth-child(1) .tiles-item:nth-child(1) .tiles-item__title {
    font-size: 1.5rem;
    max-width: 100%;
    margin-bottom: 16px;
    transform: translateY(-8px);
  }
  .hero__tiles-line:nth-child(1) .tiles-item:nth-child(1) {
    width: 100%;
  }
  .hero__tiles-line:nth-child(1) .tiles-item:nth-child(2) {
    width: 100%;
  }
  .hero__tiles-line:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .hero__tiles-line:nth-child(2) .tiles-item:nth-child(1) {
    width: calc(50% - 8px);
  }
  .hero__tiles-line:nth-child(2) .tiles-item:nth-child(1) .tiles-item__title {
    font-size: 2.5rem;
    line-height: 110%;
  }
  .hero__tiles-line:nth-child(2)
    .tiles-item:nth-child(1)
    .tiles-item__description {
    font-size: 1.2rem;
  }
  .hero__tiles-line:nth-child(2) .tiles-item:nth-child(2) {
    width: calc(50% - 8px);
  }
  .hero__tiles-line:nth-child(2) .tiles-item:nth-child(2) .tiles-item__title {
    font-size: 2.5rem;
    line-height: 110%;
  }
  .hero__tiles-line:nth-child(2)
    .tiles-item:nth-child(2)
    .tiles-item__description {
    font-size: 1.2rem;
  }
  .ahero__title {
    font-size: 2rem;
    padding-top: 60px;
    margin-bottom: 32px;
    padding-right: 0;
  }
  .ahero__description {
    font-size: 1em;
  }
  .ahero__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 12px;
  }
  .ahero__tiles {
    gap: 16px;
    min-width: 100%;
  }
  .ahero__tiles-line {
    gap: 16px;
  }
  .ahero__tiles-line:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ahero__tiles-line:nth-child(1) .tiles-item:nth-child(1) .tiles-item__title {
    font-size: 1.5rem;
    max-width: 100%;
    margin: 16px;
  }
  .ahero__tiles-line:nth-child(1) .tiles-item:nth-child(1) {
    width: 100%;
  }
  .ahero__tiles-line:nth-child(1) .tiles-item:nth-child(2) {
    width: 100%;
  }
  .ahero__tiles-line:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column-reverse;
  }
  .ahero__tiles-line:nth-child(2) .tiles-item:nth-child(1) {
    width: 100%;
  }
  .ahero__tiles-line:nth-child(2) .tiles-item:nth-child(1) .tiles-item__title {
    font-size: 1.5rem;
    margin: 16px;
    line-height: 110%;
  }
  .ahero__tiles-line:nth-child(2)
    .tiles-item:nth-child(1)
    .tiles-item__description {
    font-size: 1.2rem;
  }
  .ahero__tiles-line:nth-child(2) .tiles-item:nth-child(2) {
    width: 100%;
  }
  .ahero__tiles-line:nth-child(2) .tiles-item:nth-child(2) .tiles-item__title {
    font-size: 1.5rem;
    margin: 16px;
    line-height: 110%;
  }
  .ahero__tiles-line:nth-child(2)
    .tiles-item:nth-child(2)
    .tiles-item__description {
    font-size: 1.2rem;
  }
  .section-teachers__wrapper {
    padding: 44px 32px 0;
  }
  .section-teachers__text {
    font-size: 1rem;
  }
  .section-teachers .teachers-slider .teacher-item__content--3 {
    top: 35%;
  }
  .section-offer__title {
    min-width: 100%;
  }
  .section-offer__telegrame {
    min-width: 100%;
  }
  .section-offer__phone {
    margin: 0 auto;
  }
  .section-offer .avatar {
    top: 50px;
  }
  .section-offer__subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-size: 1rem;
  }
  .section-offer__text {
    font-size: 1rem;
  }
  .section-offer__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-offer__card {
    width: 100%;
    font-size: 20px;
    padding: 26px 24px;
  }
  .section-proposal__box {
    min-width: 100%;
  }
  .section-packages__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-packages .package-item {
    max-width: 100%;
    padding: 26px 20px 47px;
  }
  .section-packages .package-item__btn {
    margin: 20px auto 0;
  }
  .section-video .play-button {
    width: 20px;
    bottom: -2px;
    height: 20px;
    background-size: 10px;
  }
  .section-qutions {
    padding-bottom: 104px;
    padding-top: 90px;
  }
  .section-qutions__text {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .section-qutions .qution-item__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .section-qutions .qution-item__head-text {
    font-size: 24px;
  }
  .section-qutions .qution-item__content-text {
    font-size: 16px;
  }
  .module__content {
    padding: 20px 10px 0;
    max-width: 380px;
  }
  .thanks__subtitle {
    margin: 20px auto 20px;
    line-height: 120%;
    text-wrap: balance;
  }
  .wrapper-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrapper-inputs .sp-field {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .reviews-teacher__preview {
    min-width: 100%;
  }
  .section-teachers__title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 568px) {
  .next_btn {
    max-width: 180px;
  }
  .section-teachers__wrapper {
    padding: 40px 18px 0;
  }
  .section-teachers .btn {
    margin: 20px auto 50px;
  }

  .section-teachers .teachers-slider .teacher-item__name::after {
    width: 57px;
    height: 50px;
    -webkit-transform: translateY(150%);
    -ms-transform: translateY(150%);
    transform: translateY(150%);
  }
  .section-teachers .teachers-slider .teacher-item__about {
    padding: 14px 16px;
    top: 0;
    font-size: 14px;
    max-width: 100%;
  }
  .section-teachers .teachers-slider .teacher-item__content {
    width: 100%;
  }
  .section-teachers .teachers-slider .teacher-item__content-wrapper {
    padding: 12px 12px 24px;
    border-radius: 12px;
  }
  .section-teachers .teachers-slider .teacher-item__content-number {
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    width: 25px;
    height: 25px;
  }
  .section-teachers .teachers-slider .teacher-item__content-number span {
    font-size: 12px;
  }
  .section-teachers .teachers-slider .teacher-item__content-text {
    font-size: 12px;
  }
  .section-teachers .teachers-slider .teacher-item__content--2 {
    top: 0;
  }
  .section-offer .avatar {
    top: 45px;
  }
  .section-offer .avatar__img {
    width: 26px;
    height: 26px;
  }
  .module.module-content .module__content {
    max-height: 80vh;
    padding: 20px;
  }
  .module.module-content .module__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 548px) {
  .section-packages .package-item__list li {
    font-size: 18px;
  }
}

.footer-bottom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.teacher-item__img-wrapper {
  max-width: 680px;
  max-height: 680px;
  width: 100%;
  height: 100%;
}

.section-teachers .teachers-slider .teacher-item.active {
  justify-items: start;
}

.teacher-item__img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.section-teachers .teachers-slider .teacher-item__img {
  max-width: 680px;
  max-height: 680px;
  margin-top: auto;
}

.teacher-item__img-wrapper {
  max-width: 680px;
  max-height: 680px;
  width: 100%;
  height: 100%;
  transform: translateY(92px);
  z-index: 10;
}

.teacher-item__certificate {
  position: absolute;
  right: 0;
  top: 295px;
  max-width: 500px;
  max-height: 230px;
  width: 100%;
  height: 100%;
}

.teacher-item__certificate.third {
  top: 270px;
}

.teacher-item__certificate-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 266px;
  border-radius: 24px;
}

@media screen and (max-width: 1360px) {
  .teacher-item__img-wrapper {
    transform: translate(-20%, 92px);
  }
  .section-teachers .teachers-slider .teacher-item__name {
    left: 29%;
  }
}

@media screen and (max-width: 1265px) {
  .section-teachers .teachers-slider .teacher-item__img {
    max-width: 600px;
    max-height: 600px;
  }

  .teacher-item__img-wrapper {
    max-width: 600px;
    max-height: 600px;
    transform: translate(-20%, 31%);
  }
  .section-teachers .teachers-slider .teacher-item__name {
    left: 22%;
    transform: scale(0.8);
    z-index: 0;
  }
}
@media screen and (max-width: 1130px) {
  .section-teachers .teachers-slider .teacher-item__content {
    max-width: 430px;
  }
  .teacher-item__certificate {
    max-width: 430px;
    max-height: 230px;
    top: 330px;
  }
  .teacher-item__certificate.third {
    top: 290px;
  }
}

@media screen and (max-width: 1023px) {
  .teacher-item__img-wrapper {
    transform: translate(-30%, 40%);
  }
  .section-teachers__wrapper {
    height: 1100px;
  }
  .section-teachers .teachers-slider .teacher-item__name {
    left: 50%;
    top: 80%;
    font-size: 3rem;
    max-width: max-content;
    width: 100%;
  }
  .section-teachers .teachers-slider .teacher-item__content {
    max-width: 900px;
  }
  .teacher-item__certificate {
    max-width: 570px;
    max-height: 230px;
    top: 200px;
  }
  .teacher-item__certificate.third {
    top: 200px;
  }
}

@media screen and (max-width: 870px) {
  .section-teachers .teachers-slider .teacher-item__content-text {
    font-size: 16px;
  }
  .teacher-item__certificate.second {
    top: 180px;
  }
  .teacher-item__certificate.third {
    top: 180px;
  }
  .teacher-item__certificate-img {
    max-width: 445px;
    max-width: 268px;
  }
  .teacher-item__certificate {
    max-width: 570px;
    max-height: 184px;
  }
  .section-teachers .teachers-slider .teacher-item__name {
    transform: scale(0.7);
  }
}

@media screen and (max-width: 767px) {
  .teacher-item__img-wrapper {
    transform: translate(-30%, 36%);
  }

  .teacher-item__certificate {
    max-width: 354px;
  }
  .section-teachers .teachers-slider .teacher-item__name {
    left: 45%;
    top: 80%;
  }
}

@media screen and (max-width: 695px) {
  .teacher-item__certificate.second {
    top: 200px;
  }
  .section-teachers .teachers-slider .teacher-item__name {
    left: 37%;
    top: 100%;
    font-size: 2rem;
  }
  .teacher-item__img-wrapper {
    transform: translate(-30%, 40%);
  }

  .section-teachers .teachers-slider .teacher-item__name.first {
    left: 50%;
    top: 87%;
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    left: 52%;
    top: 83%;
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    left: 49%;
    top: 79%;
  }
}
@media screen and (max-width: 651px) {
  .section-teachers .teachers-slider .teacher-item__img {
    max-width: 480px;
    max-height: 480px;
  }

  .teacher-item__img-wrapper {
    max-width: 480px;
    max-height: 480px;
    transform: translate(-30%, 60%);
  }

  .teacher-item__certificate {
    top: 220px;
  }
  .section-teachers .teachers-slider .teacher-item__name.first {
    left: 55%;
    top: 104%;
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    left: 52%;
    top: 104%;
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    left: 52%;
    top: 104%;
  }
}

@media screen and (max-width: 644px) {
  .section-teachers .teachers-slider .teacher-item__name.first {
    top: 100%;
    left: 49%;
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    top: 100%;
    left: 49%;
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    top: 100%;
    left: 49%;
  }
}
@media screen and (max-width: 585px) {
  .section-teachers .teachers-slider .teacher-item__name.first {
    transform: scale(0.6);
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    transform: scale(0.6);
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    transform: scale(0.6);
  }
}

@media screen and (max-width: 580px) {
  .section-teachers__wrapper {
    height: 800px;
  }
  .teacher-item__certificate {
    max-width: 350px;
  }
  .teacher-item__certificate.third {
    top: 200px;
  }
  .section-teachers .teachers-slider .teacher-item__name.first {
    top: 0;
    right: -7%;
    left: auto;
    transform: scale(0.7);
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    top: 0;
    right: -8%;
    left: auto;
    transform: scale(0.7);
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    top: 0;
    right: -8%;
    left: auto;
    transform: scale(0.7);
  }
  .section-teachers .teachers-slider .teacher-item__name::after {
    display: none;
  }
  .section-teachers .teachers-slider .teacher-item__content-wrapper {
    margin-top: 50px;
  }
  .teacher-item__certificate {
    margin-top: 50px;
  }
  .section-teachers .teachers-slider .teacher-item__img {
    max-width: 380px;
    max-height: 380px;
  }
  .teacher-item__img-wrapper {
    max-width: 380px;
    max-height: 380px;
    transform: translate(-30%, 70%);
  }
}

@media screen and (max-width: 510px) {
  .section-teachers__wrapper .next_btn {
    z-index: 1000;
  }

  .section-teachers .teachers-slider .teacher-item__name.first {
    right: -8%;
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    right: -10%;
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    right: -10%;
  }
}

@media screen and (max-width: 465px) {
  .teacher-item__certificate {
    margin-top: 80px;
    max-width: 203px;
    max-height: 223px;
  }
  .certificates {
    gap: 15px;
  }

  .teacher-item__img-wrapper {
    transform: translate(-30%, 77%);
  }
}

@media screen and (max-width: 448px) {
  .teacher-item__certificate.second {
    margin-top: 80px;
  }
}
@media screen and (max-width: 443px) {
  .teacher-item__certificate.third {
    margin-top: 80px;
  }
  .teacher-item__certificate {
    margin-top: 100px;
  }
}

@media screen and (max-width: 428px) {
  .teacher-item__img-wrapper {
    max-width: 380px;
    max-height: 380px;
  }
  .section-teachers .teachers-slider .teacher-item__name.first {
    right: -9%;
  }
  .section-teachers .teachers-slider .teacher-item__name.second {
    right: -12%;
  }
  .section-teachers .teachers-slider .teacher-item__name.third {
    right: -12%;
  }
}
@media screen and (max-width: 443px) {
  .teacher-item__certificate.third {
    margin-top: 100px;
  }
  .section-teachers__wrapper {
    height: 850px;
  }
  .teacher-item__img-wrapper {
    transform: translate(-35%, 90%);
  }
}
@media screen and (max-width: 419px) {
  .teacher-item__img-wrapper {
    transform: translate(-35%, 100%);
  }
}
@media screen and (max-width: 401px) {
  .teacher-item__certificate.second {
    margin-top: 100px;
  }
}

@media screen and (max-width: 393px) {
  .teacher-item__certificate {
    margin-top: 120px;
  }
  .section-teachers__wrapper {
    height: 900px;
  }
  .teacher-item__img-wrapper {
    transform: translate(-30%, 120%);
  }
}

@media screen and (max-width: 387px) {
  .teacher-item__img-wrapper {
    transform: translate(-35%, 130%);
  }
}

@media screen and (max-width: 381px) {
  .teacher-item__certificate {
    margin-top: 140px;
  }
}
@media screen and (max-width: 373px) {
  .teacher-item__img-wrapper {
    transform: translate(-35%, 140%);
  }
}

@media screen and (max-width: 366px) {
  .teacher-item__certificate {
    margin-top: 160px;
  }
  .teacher-item__certificate.second {
    margin-top: 120px;
  }
  .teacher-item__certificate.third {
    margin-top: 120px;
  }
  .section-teachers__wrapper {
    height: 940px;
  }
  .teacher-item__img-wrapper {
    transform: translate(-35%, 150%);
  }
}

.reviews {
  margin-bottom: 100px;
}
.review img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.review .swiper-slide {
  border-radius: 24px;
}

.reviews-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.reviews-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  max-width: 300px;
  margin-bottom: 20px;
}

.reviews-btn__wrapper {
  padding: 20px;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 14px;
  justify-content: center;
  background-color: #e8b73f;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  max-width: 285px;
}
.reviews-btn__wrapper h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: white;
}

.reviews-btn {
  background-color: white;
  padding: 10px;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
  text-align: center;
  transition: none;
}

.reviews-btn:hover {
  background-color: transparent;
}

.reviews-slider {
  flex: 2;
  margin-left: 305px;
}
.reviews-slider__wrapper {
  position: relative;
  margin-top: 45px;
}

.review {
  height: 500px;
}
.teacher-item__certificate .swiper {
  width: 100%;
  overflow: hidden;
}

.teacher-item__certificate-img {
  width: auto;
  flex-shrink: 0;
}
.reviews-btn__wrapper-bottom {
  display: none;
}

@media screen and (max-width: 992px) {
  .reviews {
    padding-top: 100px;
  }
}

@media screen and (max-width: 930px) {
  .reviews-btn__wrapper {
    display: none;
  }

  .reviews-btn__wrapper-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
    align-items: center;
    width: 100%;
    background-color: #e8b73f;
    padding: 20px;
    border-radius: 14px;
    background-color: #e8b73f;
  }
  .reviews-btn__wrapper-bottom h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: white;
  }
  .reviews-slider {
    margin-left: auto;
  }
  .reviews-btn {
    max-width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .reviews {
    margin-bottom: auto;
  }
}

@media screen and (max-width: 540px) {
  .review {
    height: 500px;
  }
}
