@charset "UTF-8";
:root {
  --main-font: "Mont", sans-serif;
  --font-size: 16px;
  --line-height: 26px;
  --transition: 0.3s ease-in;
  --black: #2c2e36;
  --purple: #9453ff;
  --orange: #ffa001;
  --blue: #5383ff;
  --red: #fc2a2a;
  --green: #70C704;
  --gray: #aaaaaa;
  --light-gray: #e5e5e5;
  --gradient-main: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
  --gradient-orange: linear-gradient(344deg, #ffa001 11.05%, rgba(255, 160, 1, 0) 88.95%);
  --gradient-purple: linear-gradient(348deg, #9453ff 8.8%, rgba(174, 124, 255, 0) 91.2%);
  --gradient-blue: linear-gradient(327deg, #5383ff 19.72%, rgba(126, 162, 255, 0) 80.28%);
  --plyr-color-main: var(--orange);
  --plyr-control-spacing: 10px;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
}

h2,
.h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: normal;
}

h3,
.h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

h4,
.h4 {
  font-size: 36px;
  font-weight: 600;
}

.t1 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

.tac {
  text-align: center;
}

.ttu {
  text-transform: uppercase;
}

.mt30 {
  margin-top: 30px !important;
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
}
*:before {
  box-sizing: border-box;
}
*:after {
  box-sizing: border-box;
}

.page,
.page__body {
  scrollbar-gutter: stable;
}

.page {
  scroll-behavior: smooth;
}

.page-main {
  padding-top: 128px;
}

.page__body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--black);
}

.page-footer {
  margin-top: auto;
}

img, video {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

img,
svg,
iframe,
video {
  vertical-align: top;
}

::-moz-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

.breadcrumbs {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 30px;
  font-weight: 600;
  font-size: 14px;
}
.breadcrumbs ul {
  display: flex;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--gray);
  transition: var(--transition);
}
.breadcrumbs a:hover {
  color: var(--orange);
}
.breadcrumbs li {
  color: var(--purple);
}
.breadcrumbs li:not(:last-child) {
  margin-right: 30px;
  position: relative;
}
.breadcrumbs li:not(:last-child)::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../../img/arrow.svg);
  width: 7px;
  height: 11px;
  right: -20px;
}

.quote--1 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.quote__wrap {
  padding: 20px 30px;
  border-radius: 20px;
  border: 3px solid var(--blue);
  background-color: #fff;
}
.quote__wrap h2 {
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}
.quote__wrap p,
.quote__wrap ul {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
}

.list {
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}
.list--white {
  color: #fff;
}
.list li {
  padding-left: 20px;
  position: relative;
}
.list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  -webkit-mask-image: url(../../img/star.svg);
          mask-image: url(../../img/star.svg);
  background-color: var(--purple);
}

.video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.video-wrap .video-btn {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  color: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../img/play-icon.svg);
  cursor: pointer;
  transition: var(--transition);
}
.video-wrap .video-btn.playing {
  visibility: hidden;
  opacity: 0;
}

.modal .video-wrap video {
  max-height: 260px;
  width: 100%;
  background-color: #000;
}

.d-flex {
  display: flex !important;
  gap: 15px;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.btn-reset {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  color: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.link-reset {
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-reset {
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  --gap: 20px;
  width: 100%;
  padding-right: var(--gap);
  padding-left: var(--gap);
  margin-right: auto;
  margin-left: auto;
}

.btn {
  padding-left: 25px;
  padding-right: 25px;
  height: 47px;
  font-weight: 800;
  line-height: 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn--icon {
  width: 100%;
}
.btn--icon svg {
  margin-right: 10px;
  transition: var(--transition);
}
.btn--icon.active svg {
  transform: scaleY(-1);
}
.btn--solid {
  color: #fff;
}
.btn--solid.purple {
  background-color: var(--purple);
  border: 3px solid var(--purple);
}
.btn--solid.purple:hover {
  background-color: transparent;
  color: var(--purple);
  background-color: #fff;
}
.btn--solid.red {
  background-color: var(--red);
  border: 3px solid var(--red);
}
.btn--solid.red:hover {
  background-color: transparent;
  color: var(--red);
  background-color: #fff;
}
.btn--solid.blue {
  background-color: var(--blue);
  border: 3px solid var(--blue);
}
.btn--solid.blue:hover {
  background-color: transparent;
  color: var(--blue);
  background-color: #fff;
}
.btn--solid.green {
  background-color: var(--green);
  border: 3px solid var(--green);
}
.btn--solid.green:hover {
  background-color: transparent;
  color: var(--green);
  background-color: #fff;
}
.btn--solid.orange {
  background-color: var(--orange);
  border: 3px solid var(--orange);
}
.btn--solid.orange path {
  transition: var(--transition);
}
.btn--solid.orange:hover {
  background-color: transparent;
  color: var(--orange);
  background-color: #fff;
}
.btn--solid.orange:hover path {
  fill: var(--orange);
}
.btn--transparent {
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  width: calc(100% - 20px);
}
.btn--transparent:hover {
  background-color: rgba(255, 255, 255, 0.45);
}
.btn--white {
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  color: #fff;
}
.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-arrow {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--purple);
}
.btn-arrow:hover svg {
  transform: translateX(10px);
}
.btn-arrow svg {
  margin-left: 10px;
  transition: var(--transition);
}

.modal {
  --overlay-color: rgba(0, 0, 0, 0.5);
  --crossHeight: 40px;
  --max-width: 500px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  z-index: 100;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  animation: fadeOut 0.25s both ease;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
}
.modal--open {
  animation: fadeIn 0.25s both ease;
  display: flex;
}
.modal__body {
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal--form {
  padding: 20px;
}
.modal--form .modal__content {
  margin: auto;
}
.modal--form .container {
  padding: 0;
  margin: 0;
}
.modal--form .form {
  position: relative;
}
.modal--form .form__content > p {
  max-width: 100%;
}
.modal--teacher {
  --max-width: 520px;
}
.modal--teacher .modal__close {
  right: -40px;
  top: -40px;
}
.modal--teacher .modal__teacher {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.modal--teacher .modal__teacher strong,
.modal--teacher .modal__teacher b {
  font-size: 20px;
  font-weight: 800;
  line-height: 34px;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
}
.modal--teacher .modal__teacher .list li:not(:last-child) {
  margin-bottom: 10px;
}
.modal--teacher .modal__teacher .list li::before {
  background-color: var(--color);
}
.modal--teacher .modal__teacher video {
  height: 260px;
}
.modal--teacher .modal__teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.modal--teacher .modal__teacher-grid img {
  border-radius: 12px;
  max-height: 90px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.modal__content {
  width: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-15%);
  transition: 0.25s ease;
  cursor: default;
  max-width: var(--max-width);
  margin: auto;
}
.modal__content--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.modal__close {
  border: 0;
  padding: 0;
  background: 0;
  font-size: var(--crossHeight);
  font-weight: bold;
  width: var(--crossHeight);
  height: var(--crossHeight);
  line-height: var(--crossHeight);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
}

.accordion-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 30px;
}
.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion-item.active path:last-child {
  transform: scaleY(0);
}
.accordion-item svg {
  flex-shrink: 0;
}
.accordion-item path {
  transform-origin: center;
  transition: var(--transition);
}
.accordion-content {
  overflow: hidden;
  transition: height 0.3s ease-out;
  height: 0;
}
.accordion-content p {
  padding-bottom: 30px;
}
.accordion-content.active {
  height: auto;
}

.header {
  padding-top: 25px;
  padding-bottom: 25px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: var(--transition);
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 0 0 1px var(--light-gray);
}
.header__messangers {
  display: flex;
  gap: 14px;
  margin-right: 14px;
}
.header__messangers a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__wrap {
  display: flex;
  align-items: center;
}
.header .logo {
  margin-right: 15px;
  flex-shrink: 0;
  z-index: 11;
  position: relative;
}
.header__left {
  width: 100%;
}
.header__top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header blockquote {
  font-size: 14px;
  margin: 0;
  line-height: normal;
}
.header .burger {
  display: none;
  margin-left: 10px;
}
.header .burger svg {
  width: 45px;
  height: 45px;
}
.header .burger__close {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.header .burger.active .burger__close {
  visibility: visible;
  opacity: 1;
}
.header__phone {
  margin-right: 20px;
  flex-shrink: 0;
}
.header__info {
  display: flex;
  align-items: center;
}
.header__btns {
  display: flex;
}
.header__btns .btn:not(:last-of-type) {
  margin-right: 10px;
}
.header__nav-btns {
  display: none;
}
.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav li:not(:last-child) {
  margin-right: 20px;
}
.header__nav a:not(.btn) {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  transition: 0.3s;
}
.header__nav a:not(.btn):hover {
  color: var(--orange);
}

.phone {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
}
.phone:hover {
  text-decoration: underline;
}
.phone svg {
  margin-right: 8px;
}

.hero-index {
  color: white;
  overflow: hidden;
  background: url(../../img/letters-white.svg), linear-gradient(315deg, #9453ff 0%, #ae7cff 100%);
}
.hero-index__content {
  padding-bottom: 88px;
  padding-top: 65px;
}
.hero-index .container {
  position: relative;
  z-index: 1;
}
.hero-index__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-index h1 {
  margin-bottom: 4px;
}
.hero-index strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 25px;
}
.hero-index p {
  margin-bottom: 25px;
}
.hero-index__row {
  display: flex;
}
.hero-index__price {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.hero-index__price b {
  display: block;
  text-align: right;
  margin-top: -24px;
  margin-right: -46px;
}
.hero-index__badge {
  position: relative;
}
.hero-index__badge span {
  position: absolute;
  font-weight: 900;
  font-size: 32px;
  line-height: 94%;
  color: #fff;
  transform: rotate(-10deg);
  left: 79px;
  top: 36px;
}
.hero-index__badge img {
  rotate: -25deg;
}

.pluses-index {
  padding-top: 125px;
  padding-bottom: 80px;
}
.pluses-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pluses-index .plus-index {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  padding-top: 154px;
  text-align: center;
}
.pluses-index .plus-index img {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.pluses-index .plus-index h2 {
  margin-bottom: 20px;
}
.pluses-index .plus-index:nth-child(1) {
  background: linear-gradient(180deg, rgba(252, 42, 42, 0) 0%, rgba(252, 42, 42, 0.15) 100%);
}
.pluses-index .plus-index:nth-child(1) h2 {
  color: var(--red);
}
.pluses-index .plus-index:nth-child(2) {
  background: linear-gradient(180deg, rgba(83, 131, 255, 0) 0%, rgba(83, 131, 255, 0.15) 100%);
}
.pluses-index .plus-index:nth-child(2) h2 {
  color: var(--blue);
}
.pluses-index .plus-index:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 160, 1, 0) 0%, rgba(255, 160, 1, 0.15) 100%);
}
.pluses-index .plus-index:nth-child(3) h2 {
  color: var(--orange);
}

.courses-index {
  padding-bottom: 80px;
}
.courses-index h2 {
  font-weight: 600;
  margin-bottom: 35px;
}
.courses-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.courses-index__btn {
  display: none;
}
.courses-index .course-index {
  border: 1px solid var(--light-gray);
  padding: 30px 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.courses-index .course-index img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.courses-index .course-index h2 {
  margin-bottom: 20px;
}
.courses-index .course-index p {
  max-width: 371px;
  margin-bottom: 30px;
}
.courses-index .course-index__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.courses-index .course-index__btns a {
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.courses-index .course-index__btns a:hover {
  border-color: var(--blue);
}

.trial-index .trial {
  padding-bottom: 80px;
}

.faq {
  padding-top: 80px;
}
.faq h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.fee {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.fee .swiper {
  overflow: visible;
}
.fee h2 {
  font-weight: 600;
}
.fee-item {
  color: var(--color);
  border: 4px solid var(--color);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fee-item path {
  fill: var(--color);
}
.fee-item__top, .fee-item__mid {
  position: relative;
  z-index: 1;
}
.fee-item__top::before, .fee-item__mid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  -webkit-mask: url(../../img/stars.svg) no-repeat;
          mask: url(../../img/stars.svg) no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  pointer-events: none;
  z-index: -1;
}
.fee-item__top {
  padding: 20px;
  padding-top: 35px;
  padding-bottom: 30px;
}
.fee-item__top::before {
  background-color: var(--color);
}
.fee-item__top ul {
  text-align: center;
  color: var(--black);
  margin-top: 30px;
  line-height: 20px;
  min-height: 160px;
}
.fee-item__top ul li:not(:last-child) {
  margin-bottom: 20px;
}
.fee-item__top > span {
  font-size: 18px;
  background: var(--color);
  color: #fff;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding-inline: 16px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 18px;
}
.fee-item__top strong {
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.fee-item__top strong::after, .fee-item__top strong::before {
  content: "";
  -webkit-mask-image: url(../../img/star.svg);
          mask-image: url(../../img/star.svg);
  background-color: var(--color);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fee-item__mid {
  background: var(--gradient);
  padding: 18px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fee-item__mid::before {
  background-color: #fff;
}
.fee-item__mid path {
  fill: #fff;
}
.fee-item__mid ul {
  color: #fff;
  font-weight: 600;
}
.fee-item__mid ul li:not(:last-child) {
  margin-bottom: 3px;
}
.fee-item__mid span {
  color: rgba(255, 255, 255, 0.75);
}
.fee-item__mid strong {
  font-weight: 700;
}
.fee-item__bot {
  padding: 30px;
  padding-top: 40px;
  color: var(--black);
}
.fee-item__bot span {
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}
.fee-item__bot .btn {
  width: 100%;
}
.fee-item__bot strong {
  color: var(--color);
  font-weight: 900;
}
.fee-item h3 {
  color: var(--black);
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
}
.fee-item--orange {
  --color: var(--orange);
  --gradient: linear-gradient(
    90deg,
    rgba(255, 160, 1, 0.75) 0%,
    #ffa001 19.5%,
    #ffa001 78.5%,
    rgba(255, 160, 1, 0.75) 100%
  );
}
.fee-item--blue {
  --color: var(--blue);
  --gradient: linear-gradient(
    90deg,
    rgba(83, 131, 255, 0.75) 0%,
    #5383ff 19.5%,
    #5383ff 78.5%,
    rgba(83, 131, 255, 0.75) 100%
  );
}
.fee-item--purple {
  --color: var(--purple);
  --gradient: linear-gradient(
    90deg,
    rgba(148, 83, 255, 0.75) 0%,
    #9453ff 19.5%,
    #9453ff 78.5%,
    rgba(148, 83, 255, 0.75) 100%
  );
}
.fee-item--red {
  --color: var(--red);
  --gradient: linear-gradient(
    90deg,
    rgba(252, 42, 42, 0.75) 0%,
    #fc2a2a 19.5%,
    #fc2a2a 78.5%,
    rgba(252, 42, 42, 0.75) 100%
  );
}
.fee-item--green {
  --color: var(--green);
  --gradient: linear-gradient(
    90deg,
    rgba(112, 199, 4, 0.75) 0%,
    #70c704 19.5%,
    #70c704 78.5%,
    rgba(112, 199, 4, 0.75) 100%
  );
}

.reviews-index {
  overflow: hidden;
  padding-top: 80px;
}
.reviews-index h2 {
  margin-bottom: 20px;
  font-weight: 600;
}
.reviews-index__text {
  margin: 0;
  margin-bottom: 40px;
}
.reviews-index__text span {
  color: var(--orange);
}
.reviews-index__rating {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 50px;
}
.reviews-index__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-rows: 500px;
}
.reviews-index__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  grid-auto-rows: 440px;
}
.reviews-index-video {
  border-radius: 20px;
  overflow: hidden;
}
.reviews-index-video .video-wrap {
	height: 100%;
}
.reviews-index-video .video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.courses {
  padding-bottom: 100px;
}
.courses__title {
  margin-bottom: 55px;
}
.courses__title span {
  color: var(--orange);
  font-weight: 900;
}
.courses__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
}

.course-item {
  border: 3px solid var(--color);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.course-item__content {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
}
.course-item__image {
  position: absolute;
  right: -3px;
  bottom: -3px;
}
.course-item__title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  max-width: 640px;
}
.course-item__title h2 {
  font-weight: 600;
}
.course-item__title span {
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  height: 36px;
  font-size: 14px;
  font-weight: 800;
  background-image: var(--gradient-main);
  color: #fff;
  margin-left: 7px;
  flex-shrink: 0;
}
.course-item__text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 0;
  max-width: 540px;
}
.course-item__btns {
  display: flex;
}
.course-item__btns .btn:not(:last-child) {
  margin-right: 10px;
}
.course-item__bottom {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 215px;
  margin-top: 50px;
}
.course-item__bottom p {
  margin: 0;
  margin-bottom: 15px;
}
.course-item__price {
  position: absolute;
  bottom: -3px;
  left: -3px;
}
.course-item__price strong {
  transform: rotate(15deg) translateY(-50%);
  position: absolute;
  font-weight: 900;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  left: 76px;
  top: 50%;
  text-shadow: 0px 0px 50px #fff;
  line-height: 1;
  max-width: 145px;
}
.course-item__price span {
  font-size: 25px;
}
.course-item__token {
  fill: var(--color);
}
.course-item .btn {
  border: 3px solid var(--color);
}
.course-item .btn--outline {
  color: var(--color);
}
.course-item .btn--outline:hover {
  color: #fff;
  background-color: var(--color);
  border-color: transparent;
}
.course-item .btn--solid {
  background-color: var(--color);
  color: #fff;
}
.course-item .btn--solid:hover {
  color: var(--color);
  background-color: transparent;
}
.course-item--orange {
  --color: var(--orange);
}
.course-item--purple {
  --color: var(--purple);
}
.course-item--blue {
  --color: var(--blue);
}
.course-item--red {
  --color: var(--red);
}

.about-hero {
  background: url(../../img/about-hero-bg.svg), linear-gradient(313.13deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
  color: #fff;
  padding-top: 90px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  margin-bottom: 35px;
}
.about-hero p {
  max-width: 660px;
  margin-bottom: 50px;
}
.about-hero img {
  position: absolute;
  right: 0;
  bottom: -10px;
}

.choise {
  padding-top: 80px;
  padding-bottom: 80px;
}
.choise .container {
  position: relative;
}
.choise .container > img {
  position: absolute;
  right: 50px;
  top: -10px;
}
.choise h2 {
  font-weight: 600;
  margin-bottom: 40px;
}
.choise h2 span {
  color: var(--orange);
}
.choise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.choise-item {
  background: linear-gradient(292.44deg, #9453ff 0%, #ae7cff 100%);
  border-radius: 20px;
  padding: 30px;
  padding-bottom: 35px;
  color: #fff;
}
.choise-item__top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.choise-item p {
  margin: 0;
  line-height: 28px;
}
.choise-item strong {
  font-weight: 700;
}
.choise-item__icon {
  background: linear-gradient(313.13deg, #ffa001 0%, #ffb63b 100%);
  border-radius: 16px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
}
.choise-item__icon img {
  filter: drop-shadow(0px 0px 20px #ffffff);
}

.person {
  background: var(--img), var(--bg);
  background-position: center;
  padding-top: 70px;
  padding-bottom: 50px;
  color: var(--color);
  position: relative;
  overflow: hidden;
}
.person--1 {
  --img: url(../../img/person1-bg.svg);
  --bg: radial-gradient(50% 50% at 50% 50%, #648fff 0%, #5383ff 100%);
  --shadow: #81a4ff;
  --size: 400px;
  --line: var(--orange);
  --color: #fff;
}
.person--1 .person__shape2 {
  right: -3%;
}
.person--2 {
  --img: url(../../img/person2-bg.svg);
  --line: var(--blue);
  --size: 375px;
  --color: var(--black);
  --shadow: #d4e0ff;
  --bg: #fff;
}
.person--2 .person__shape {
  top: 11px;
}
.person--2 .person__block span {
  color: var(--blue);
}
.person--2 .person__block .list li::before {
  background-color: var(--black);
}
.person--2 .person__img {
  margin-left: 7px;
}
.person--3 {
  --img: url(../../img/person3-bg.svg);
  --line: var(--blue);
  --size: 375px;
  --color: #fff;
  --shadow: #ffbe4e;
  --bg: radial-gradient(50% 50% at 50% 50%, #ffae26 0%, #ffa201 100%);
}
.person--3 .person__shape {
  top: -32px;
}
.person--3 .person__block span {
  color: #fff;
}
.person--3 .person__block .list li::before {
  background-color: #fff;
}
.person--3 .person__img {
  margin-left: 7px;
}
.person__row {
  display: grid;
  grid-template-columns: var(--size) 356px;
  justify-content: space-between;
  position: relative;
}
.person__shape {
  position: absolute;
  left: -8%;
  top: -40px;
}
.person-shape__mob {
  display: none;
}
.person__shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  right: -6%;
}
.person__top {
  margin-bottom: 30px;
  white-space: nowrap;
}
.person__top h2 {
  font-weight: 600;
  margin-bottom: 5px;
}
.person__top strong {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 30px;
}
.person__top strong img {
  margin-right: 10px;
}
.person__line {
  -webkit-mask-image: url("/img/person-line.png");
          mask-image: url("/img/person-line.png");
  background-color: var(--line);
  display: inline-block;
  width: 188px;
  height: 26px;
}
.person__img {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 15px;
}
.person__img-mob {
  display: none;
}
.person__text {
  line-height: 30px;
}
.person__block:not(:last-child) {
  margin-bottom: 50px;
}
.person__block-text {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.person__block strong {
  -webkit-text-stroke: 12px var(--shadow); /* Толщина и цвет обводки */
  text-stroke: 12px var(--shadow);
  font-size: 40px;
  font-weight: 700;
}
.person__block span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
}
.person__block .list {
  font-size: 20px;
  line-height: 30px;
  color: var(--color);
}
.person__block .list li:not(:last-child) {
  margin-bottom: 8px;
}
.person__block .list li::before {
  background-color: #fff;
  top: 7px;
}

.geography {
  padding-bottom: 90px;
  padding-top: 90px;
  overflow: hidden;
}
.geography h2 {
  font-weight: 600;
  margin-bottom: 40px;
}
.geography p {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 400;
}
.geography p span {
  color: var(--orange);
}
.geography .list {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 40px;
}
.geography .list li:not(:last-child) {
  margin-bottom: 10px;
}
.geography .list li:before {
  top: 7px;
  background-color: var(--blue);
}
.geography__scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: auto;
  padding-inline: 20px;
  scroll-behavior: smooth;
}
.geography__scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.geography__scroll img {
  max-width: initial;
  display: block;
  margin-inline: auto;
}

.about-socials {
  padding-bottom: 100px;
}
.about-socials h2 {
  font-weight: 600;
  margin-bottom: 40px;
}
.about-socials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-socials a {
  display: flex;
  justify-content: center;
  border-radius: 20px;
}
.about-socials a:nth-child(1) {
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 1.5%, #bbdbff 100%);
}
.about-socials a:nth-child(2) {
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, #dbe3ff 100%);
}
.about-socials a:nth-child(3) {
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, #ffd2d2 100%);
}
.about-socials a img {
  margin-top: -20px;
}

.hero {
  background: url(../../img/letters-gray.svg);
  padding-bottom: 84px;
  padding-top: 14px;
  overflow: hidden;
}
.hero .container {
  position: relative;
}
.hero__row {
  display: flex;
}
.hero__row img {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 1;
}
.hero .breadcrumbs {
  margin-top: 0;
}
.hero__title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-top: -15px;
}
.hero__title h1 {
  font-weight: 600;
  line-height: 64px;
}
.hero__title span {
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  height: 36px;
  font-size: 14px;
  font-weight: 800;
  background-image: var(--gradient-main);
  color: #fff;
  margin-left: 10px;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.hero__text {
  margin-bottom: 50px;
}

.pluses {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.pluses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pluses .plus {
  border-radius: 16px;
  padding: 25px;
  background: var(--image) no-repeat var(--blue);
  display: flex;
  flex-direction: column;
  background-position: right bottom;
}
.pluses .plus img {
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 30px #fff);
  align-self: flex-start;
}
.pluses .plus p {
  margin: 0;
  color: #fff;
  font-weight: 800;
  margin-top: auto;
}

.learning {
  background: url(../../img/letters-white.svg), linear-gradient(313deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
  padding-top: 38px;
  padding-bottom: 50px;
  color: #fff;
  overflow: hidden;
}
.learning__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.learning__col {
  display: grid;
}
.learning__scroll {
  margin-top: auto;
}
.learning__row {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 40px;
}
.learning__row .learning__program--big {
  justify-content: flex-end;
}
.learning__row .list {
  margin-top: 12px;
}
.learning__subgrid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 15px;
  margin-top: auto;
}
.learning .list-button {
  display: none;
}
.learning .list li {
  font-size: 20px;
  line-height: 26px;
}
.learning .list li::before {
  top: 5px;
}
.learning .list li:not(:last-child) {
  margin-bottom: 10px;
}
.learning h2 {
  font-weight: 600;
  margin-bottom: 22px;
}
.learning h3 {
  margin-bottom: 16px;
}
.learning p {
  margin-bottom: 35px;
}
.learning__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 108px);
  gap: 20px;
  margin-top: auto;
}
.learning__program {
  background-color: var(--purple);
  border-radius: 20px;
  background-image: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
  grid-row: 1 span;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.learning__program--second p {
  display: flex;
}
.learning__program strong {
  font-weight: 600;
}
.learning__program p {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  font-style: italic;
  display: flex;
}
.learning__program p b {
  display: flex;
  align-items: flex-end;
}
.learning__program p svg {
  margin-right: 4px;
  margin-left: 4px;
}
.learning__program p span {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  display: block;
  font-style: normal;
  margin-left: 9px;
}
.learning__program--big {
  grid-row: 2 span;
  padding: 0;
}
.learning__themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learning .theme {
  border-radius: 16px;
  background: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
  height: 65px;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.learning .theme::before {
  content: attr(data-title);
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
  position: absolute;
  transform: rotate(-5deg);
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}
.learning .theme span {
  transform: rotate(-5deg);
  text-align: center;
  line-height: 20px;
}
.learning--second .learning__grid {
  grid-template-columns: 518px 1fr;
  gap: 40px;
}
.learning--second .learning__numbers {
  grid-template-columns: 224px 1fr;
}

.teachers h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
.teachers p {
  margin: 0;
  margin-bottom: 45px;
  font-size: 24px;
  line-height: 30px;
  max-width: 750px;
  font-weight: 600;
}
.teachers-box {
  padding-top: 20px;
}
.teachers-box h1 {
  margin-bottom: 45px;
}
.teachers-box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.teachers-box .btn-mob {
  display: none;
}
.teachers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.teachers__btns {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.teachers__all {
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  padding: 30px;
  background: url(../../img/letters-gray.svg);
  position: relative;
}
.teachers__all img {
  position: absolute;
}
.teachers__all img:nth-child(1) {
  top: 104px;
  left: 46px;
}
.teachers__all img:nth-child(2) {
  bottom: 50px;
  left: 107px;
}
.teachers__all img:nth-child(3) {
  top: 101px;
  left: 206px;
}
.teachers__all img:nth-child(4) {
  right: 126px;
  bottom: 37px;
}
.teachers__all:not(.teachers__all--2) picture > img {
  top: 124px !important;
  right: 44px !important;
  bottom: auto !important;
  left: auto !important;
}
.teachers__all strong {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.teachers-info {
  background: url(../../img/icons-bg.svg) no-repeat, radial-gradient(67.88% 67.88% at 50% 50%, rgb(174, 124, 255) 0%, rgb(148, 83, 255) 100%);
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.teachers-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.teachers-info__item {
  text-align: center;
  color: #fff;
}
.teachers-info__item strong {
  display: block;
  font-weight: 800;
  font-size: 128px;
  line-height: 110px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.25) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.teachers-info__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 100px;
  padding-inline: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.teachers-info__item p {
  margin: 0 !important;
}
.teachers--2 p {
  max-width: 100%;
}
.teachers--2 .teachers__all {
  display: flex;
  flex-direction: column;
}
.teachers--2 .teachers__all picture:nth-child(1) img {
  top: 136px;
  left: 46px;
}
.teachers--2 .teachers__all picture:nth-child(2) img {
  top: 133px;
  left: 36%;
}
.teachers--2 .teachers__all picture:nth-child(3) img {
  left: auto;
  right: 44px;
  top: 156px;
}

.teacher {
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  padding: 20px;
  color: var(--color);
  display: flex;
}
.teacher--orange {
  --color: var(--orange);
  --bg: linear-gradient(313deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
  --gradient: var(--gradient-orange);
}
.teacher--purple {
  --color: var(--purple);
  --bg: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
  --gradient: var(--gradient-purple);
}
.teacher--blue {
  --color: var(--blue);
  --bg: linear-gradient(278deg, #5383ff 0%, #7ea2ff 100%);
  --gradient: var(--gradient-blue);
}
.teacher__image {
  border-radius: 14px;
  background-image: var(--bg);
  height: 375px;
  width: 260px;
  position: relative;
  flex-shrink: 0;
}
.teacher__image img {
  position: absolute;
  bottom: 0;
  border-radius: inherit;
}
.teacher__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  border-radius: inherit;
  background-image: var(--gradient);
}
.teacher__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}
.teacher__rating {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 4px;
  color: var(--orange);
}
.teacher__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  transition: var(--transition);
}
.teacher__btn:hover {
  opacity: 0.9;
}
.teacher .btn:not(.btn-mob) {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 4;
}
.teacher .btn-mob {
  display: none;
}
.teacher__content {
  padding-left: 20px;
}
.teacher__content strong {
  font-size: 20px;
  line-height: 34px;
  font-weight: 800;
  display: block;
}
.teacher__content .list li::before {
  background-color: var(--color);
}
.teacher__content .list li:not(:last-child) {
  margin-bottom: 22px;
}

.certificates {
  padding-top: 75px;
}
.certificates h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.certificates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.certificates__grid a {
  max-height: 170px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  display: block;
}
.certificates__grid img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.students__text {
  margin-bottom: 150px;
}
.students__text h1 {
  margin-bottom: 25px;
}
.students__text h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.students__text p {
  margin: 0;
}
.students__grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 130px;
}

.price {
  padding-top: 75px;
  padding-bottom: 75px;
}
.price h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.price__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-item {
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  background-color: #fff;
}
.price-item__top {
  padding: 20px 40px;
  padding-top: 35px;
}
.price-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.price-item__row span {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}
.price-item__row span strong {
  font-size: 36px;
  font-weight: 900;
}
.price-item__bot {
  padding: 20px 35px;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  position: relative;
  bottom: -1px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  border-radius: 0px 0px 20px 20px;
  font-size: 18px;
}
.price-item__bot br {
  display: none;
}
.price-item__bot strong {
  font-size: 20px;
}
.price-item__bot svg {
  margin-right: 10px;
  flex-shrink: 0;
}
.price-item__bot span {
  display: block;
  margin-top: 2px;
}
.price-item h4 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  margin-bottom: 30px;
}
.price-item .list li {
  font-size: 16px;
  line-height: 20px;
}
.price-item .list li:not(:last-child) {
  margin-bottom: 18px;
}
.price-item:nth-child(1) .price-item__row span strong {
  color: var(--orange);
}
.price-item:nth-child(1) .price-item__bot {
  color: var(--orange);
  background-color: #fff5e3;
}
.price-item:nth-child(1) .list li::before {
  background-color: var(--orange);
}
.price-item:nth-child(1) .btn {
  background-color: var(--orange);
  border: 3px solid var(--orange);
}
.price-item:nth-child(1) .btn:hover {
  background-color: transparent;
  color: var(--orange);
  background-color: #fff;
}
.price-item:nth-child(1) svg {
  fill: var(--orange);
}
.price-item:nth-child(2) .price-item__row span strong {
  color: var(--purple);
}
.price-item:nth-child(2) .price-item__bot {
  color: var(--purple);
  background-color: #eee3ff;
}
.price-item:nth-child(2) .list li::before {
  background-color: var(--purple);
}
.price-item:nth-child(2) .btn {
  background-color: var(--purple);
  border: 3px solid var(--purple);
}
.price-item:nth-child(2) .btn:hover {
  background-color: transparent;
  color: var(--purple);
  background-color: #fff;
}
.price-item:nth-child(2) svg {
  fill: var(--purple);
}

.reviews {
  padding-bottom: 40px;
}
.reviews h2 {
  font-weight: 600;
}
.reviews__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.reviews__buttons {
  display: none;
}
.reviews .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.reviews__wrap {
  position: relative;
}
.reviews-box {
  padding-bottom: 30px;
}
.reviews-box .btn-mob {
  display: none;
}
.reviews-box h1 {
  margin-bottom: 45px;
}
.reviews-box__grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.reviews-box__grid .review {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 20px;
}

.review {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  height: auto;
  margin-bottom: 1px;
}
.review__img {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  flex-shrink: 0;
  margin-right: 8px;
}
.review__img img {
  width: 52px;
  height: 52px;
}
.review__row {
  display: flex;
}
.review__rating {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
}
.review__rating svg {
  margin-right: 4px;
}
.review__top {
  display: flex;
  align-items: center;
}
.review__top span {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  display: block;
}
.review__top strong {
  font-weight: 700;
  color: var(--blue);
}
.review__top time {
  color: var(--gray);
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
}
.review__text {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
  margin-top: 10px;
}
.review--sm {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.review--sm .review__img {
  width: 50px;
  height: 50px;
}
.review--sm .review__img img {
  width: 44px;
  height: 44px;
}
.review--sm .review__top {
  margin-bottom: 16px;
}
.review--sm .review__top span {
  font-size: 16px;
}
.review--sm .review__text {
  font-size: 14px;
  line-height: 20px;
}
.review--sm .btn {
  margin-top: auto;
}
.review--mob {
  display: none;
}

.review-video {
  -moz-column-span: all;
       column-span: all;
  margin: 50px 0;
  padding-inline: 40px;
  padding-top: 30px;
  padding-bottom: 36px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  display: block;
  background: url(../../img/review-video.svg) no-repeat top -20px left, linear-gradient(313.13deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
}
.review-video img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.review-video__content {
  max-width: 475px;
}
.review-video__content h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 12px;
}
.review-video__content p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.case {
  padding-top: 80px;
}
.case h2 {
  font-weight: 600;
}
.case__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
.case__wrap {
  position: relative;
}
.case__items {
  position: relative;
}
.case__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.case__arrow {
  position: absolute;
  top: -60px;
  right: -55px;
}
.case-item {
  padding: 25px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-item__point {
  position: absolute;
  top: -100px;
  z-index: 2;
}
.case-item .video-wrap {
  background-color: #000;
  display: flex;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
.case-item video {
  height: 260px;
}
.case-item:nth-child(odd) {
  background: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
}
.case-item:nth-child(odd) .case-item__point {
  right: 40px;
}
.case-item:nth-child(odd) .case-item__top {
  background: url(../../img/letters-white.svg);
  margin: -25px;
  margin-bottom: 0;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.case-item:nth-child(even) {
  background: linear-gradient(313deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
}
.case-item:nth-child(even) .case-item__point {
  left: 40px;
}
.case-item strong {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 0 5px;
  font-weight: 500;
}
.case-item b {
  font-weight: 700;
}
.case-item span {
  font-size: 20px;
  line-height: 26px;
  padding: 0 5px;
  display: block;
  margin-top: auto;
}

.platform {
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}
.platform h2 {
  font-weight: 600;
  margin-bottom: 15px;
}
.platform strong {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
  display: block;
}
.platform p {
  margin: 0;
  font-size: 20px;
}
.platform img {
  margin-top: -20px;
  margin-left: 15px;
}

.trial {
  padding-bottom: 110px;
}
.trial__title {
  font-weight: 600;
  margin-bottom: 30px;
}
.trial__grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
}
.trial__list {
  counter-reset: list;
  position: relative;
  z-index: 1;
}
.trial__list::after {
  content: "";
  position: absolute;
  height: calc(100% - 25px);
  width: 6px;
  background-color: var(--purple);
  left: 38px;
  top: 11px;
  z-index: 1;
}
.trial__list p {
  margin: 0;
}
.trial__list li {
  padding: 9px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  border: 1px solid var(--light-gray);
}
.trial__list li p {
  font-size: 20px;
}
.trial__list li:not(:last-child) {
  margin-bottom: 10px;
}
.trial__list li::before {
  content: counter(list);
  counter-increment: list;
  text-shadow: 0px 0px 20px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: var(--purple);
  width: 60px;
  height: 60px;
  font-size: 40px;
  font-style: italic;
  font-weight: 800;
  line-height: 40px;
  color: #fff;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.trial__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.form {
  padding: 30px;
  padding-top: 40px;
  background-image: linear-gradient(292deg, #9453ff 0%, #ae7cff 100%);
  border-radius: 20px;
  color: #fff;
  position: relative;
}
.form__image {
  position: absolute;
}
.form__image--big {
  right: 30px;
  top: -74px;
}
.form__image--small {
  bottom: 0;
  right: 50px;
}
.form--medium {
  margin-top: 20px;
  margin-bottom: 100px;
}
.form--medium .form__image {
  bottom: 0;
  right: 0;
}
.form--medium .form__content > p {
  max-width: 100%;
}
.form--0 {
  margin: 0 !important;
}
.form h4 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 28px;
}
.form > p {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 30px;
}
.form__content {
  max-width: 645px;
}
.form__content > p {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 500;
  max-width: 470px;
  font-size: 20px;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
}
.form__input input {
  width: 100%;
  height: 48px;
  padding: 0 25px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: #fff;
}
.form__input input::-moz-placeholder {
  color: #fff;
}
.form__input input::placeholder {
  color: #fff;
}
.form__input input:focus {
  outline: none;
}
.form__confirm {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
}
.form__confirm a {
  color: inherit;
}
.form__confirm p {
  margin: 0;
  line-height: 16px;
}

.checkbox {
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
.checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: -1px;
  left: -1px;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox input:checked + span svg {
  visibility: visible;
  opacity: 1;
}
.checkbox span {
  display: flex;
  width: 28px;
  height: 28px;
  background-color: var(--orange);
  border-radius: 6px;
  position: relative;
}
.checkbox svg {
  position: absolute;
  right: -2px;
  top: -1px;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}
.checkbox--red span {
  background-color: var(--red);
}

.groups--1 {
  margin-bottom: 45px;
}
.groups--2 {
  margin-bottom: 80px;
}
.groups h1 {
  font-weight: 600;
  margin-bottom: 15px;
}
.groups-title {
  font-weight: 600;
  margin-bottom: 110px;
}
.groups-title span {
  color: var(--blue);
}
.groups-title--red span {
  color: var(--red);
}
.groups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.group {
  color: #fff;
  border-radius: 20px;
  position: relative;
  padding: 8px;
  background: var(--gradient);
}
.group__wrap {
  padding-top: 138px;
  padding-inline: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding-bottom: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.group--orange {
  --gradient: linear-gradient(180deg, rgba(255, 160, 1, 0.75) 0%, #ffa001 100%);
  --bg: var(--orange);
  --top: #ffb841;
}
.group--blue {
  --gradient: linear-gradient(180deg, rgba(83, 131, 255, 0.75) 0%, #5383ff 100%);
  --bg: var(--blue);
  --top: #7ea2ff;
}
.group--purple {
  --gradient: linear-gradient(180deg, rgba(148, 83, 255, 0.75) 0%, #9453ff 100%);
  --bg: var(--purple);
  --top: #af7eff;
}
.group--red {
  --gradient: linear-gradient(180deg, rgba(252, 42, 42, 0.75) 9.74%, #fc2a2a 98.98%);
  --bg: var(--red);
  --top: #fd5f5f;
}
.group__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
  background: var(--top);
  border-radius: 50%;
  width: 212px;
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.group__title {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}
.group__years {
  font-size: 20px;
  color: var(--bg);
  height: 34px;
  background-color: #fff;
  border-radius: 100px;
  padding-inline: 14px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-inline: auto;
}
.group__years::after {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  bottom: -4px;
  right: -4px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 100px;
}
.group__list {
  text-align: center;
  margin-top: 34px;
  margin-bottom: auto;
}
.group__list li {
  font-size: 18px;
  font-weight: 400;
}
.group__list li:not(:last-child) {
  margin-bottom: 15px;
}
.group__price {
  text-align: center;
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-top: 36px;
  margin-bottom: 10px;
}
.group__price strong {
  font-size: 30px;
}
.group__price-second {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}
.group__price-second del {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.group .btn {
  width: 100%;
  max-width: 300px;
  color: var(--bg);
  margin-inline: auto;
}
.group__prices {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 14px;
}
.group__prices li:not(:last-child) {
  margin-bottom: 14px;
}
.group__prices strong {
  display: block;
}

.class {
  margin-bottom: 100px;
}
.class-title {
  margin-bottom: 25px;
}
.class__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.class-item {
  background: var(--bg);
  border-radius: 20px;
  padding: 8px;
  color: #fff;
}
.class-item--orange {
  --bg: url(../../img/a.svg) no-repeat center, linear-gradient(180deg, rgba(255, 160, 1, 0.75) 0%, #ffa001 100%);
  --color: var(--orange);
}
.class-item--blue {
  --bg: url(../../img/b.svg) no-repeat center, linear-gradient(180deg, rgba(83, 131, 255, 0.75) 0%, #5383ff 100%);
  --color: var(--blue);
}
.class-item--purple {
  --bg: url(../../img/c.svg) no-repeat center, linear-gradient(180deg, rgba(148, 83, 255, 0.75) 0%, #9453ff 100%);
  --color: var(--purple);
}
.class-item__wrap {
  padding: 22px;
  padding-top: 33px;
  border: 2px dashed rgba(255, 255, 255, 0.75);
  border-radius: 14px;
}
.class-item .btn {
  color: var(--color);
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  display: flex;
}
.class-item__list {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
.class-item__list li:not(:last-child) {
  margin-bottom: 18px;
}
.class-item__price {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.class-item__text {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.club {
  margin-bottom: 45px;
}
.club img {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.club__wrap {
  border-radius: 20px;
  background: linear-gradient(313.13deg, #70c704 0%, rgba(112, 199, 4, 0.75) 100%);
  padding: 8px;
  color: #fff;
  position: relative;
}
.club__border {
  padding-bottom: 32px;
  padding-top: 24px;
  padding-inline: 36px;
  border: 2px dashed #fff;
  border-radius: 14px;
}
.club h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.club .list {
  font-size: 18px;
}
.club .list li {
  padding-left: 25px;
}
.club .list li::before {
  background-color: #fff;
}
.club .list li:not(:last-child) {
  margin-bottom: 18px;
}
.club__bot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.club__bot strong {
  font-weight: 800;
  font-size: 36px;
  line-height: 30px;
}
.club .btn {
  color: #70c704;
  max-width: 320px;
  width: 100%;
}

.contacts {
  padding-top: 75px;
  padding-bottom: 100px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.contacts--2 {
  padding-top: 0;
  padding-bottom: 0;
}
.contacts--2 .contacts__col {
  border: 2px solid var(--orange);
  background-color: #fff5e3;
}
.contacts h1 {
  margin-bottom: 40px;
}
.contacts h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contacts__col {
  padding: 30px;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  background-color: #fff;
}
.contacts__col strong {
  font-weight: 800;
  display: block;
  margin-bottom: 25px;
}
.contacts__link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-weight: 400;
  transition: var(--transition);
}
.contacts__link:hover {
  color: var(--purple);
}
.contacts__link:not(:last-of-type) {
  margin-bottom: 16px;
}
.contacts__link svg {
  margin-right: 10px;
}

.error404 {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 25px;
}
.error404 h1,
.error404 h2 {
  font-weight: 600;
}
.error404 h1 img,
.error404 h2 img {
  margin: 0;
  vertical-align: middle;
}
.error404 img {
  margin-block: 30px;
}
.error404 a {
  margin-top: 50px;
}

.sitemap {
  padding-bottom: 30px;
}
.sitemap h1 {
  margin-bottom: 50px;
}
.sitemap h2 {
  margin-bottom: 25px;
}
.sitemap .list a {
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
  transition: var(--transition);
}
.sitemap .list a:hover {
  color: var(--blue);
}
.sitemap .list li::before {
  background-color: var(--blue);
  top: 7px;
}
.sitemap .list + * {
  margin-top: 20px;
}
.sitemap__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sitemap__block {
  scroll-margin-top: 120px;
}
.sitemap__block p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.sitemap__row {
  display: grid;
  grid-template-columns: 1fr 175px;
  gap: 80px;
}
.sitemap__navigation {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: flex-start;
  position: sticky;
  top: 120px;
  padding-left: 25px;
}
.sitemap__navigation a {
  font-size: 14px;
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
  font-weight: 600;
}
.sitemap__navigation li.active a {
  color: var(--purple);
}
.sitemap__navigation li.active:nth-child(2) ~ .sitemap__line::before {
  transform: translateY(45px);
}
.sitemap__navigation li.active:nth-child(3) ~ .sitemap__line::before {
  transform: translateY(90px);
}
.sitemap__line {
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 50px;
}
.sitemap__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: var(--purple);
  border-radius: 50px;
  transition: var(--transition);
}

.sales {
  overflow: hidden;
}
.sales h1 {
  margin-bottom: 45px;
}
.sales__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.sales h2 {
  font-weight: 600;
}
.sales__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;
}

.sale {
  border-radius: 20px;
  padding: 30px;
  background: var(--gradient);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sale--blue {
  --gradient: linear-gradient(278.47deg, #5383ff 0%, #7ea2ff 100%);
  --color: var(--blue);
}
.sale--purple {
  --gradient: linear-gradient(292.44deg, #9453ff 0%, #ae7cff 100%);
  --color: var(--purple);
}
.sale--yellow {
  --gradient: linear-gradient(313.13deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
  --color: var(--orange);
}
.sale--lg {
  grid-column: span 2;
}
.sale--lg img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sale .list {
  font-size: 20px;
  line-height: 32px;
  max-width: 678px;
  margin-bottom: 20px;
}
.sale .list li::before {
  background-color: #fff;
  top: 6px;
}
.sale--sm {
  padding-top: 220px;
}
.sale--sm.second img {
  top: -35px;
}
.sale--sm img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.sale--sm .sale-img {
  overflow: hidden;
}
.sale h2 {
  margin-bottom: 15px;
  max-width: 700px;
  margin-top: auto;
}
.sale p {
  margin-bottom: 20px;
  margin-top: 0;
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.sale .btn--first {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color);
}
.sale .btn--first:hover {
  background-color: transparent;
  color: #fff;
}
.sale .btn--second {
  border: 2px solid #fff;
  color: #fff;
}
.sale .btn--second:hover {
  background-color: #fff;
  color: var(--color);
}
.sale__btns {
  display: flex;
  gap: 20px;
}

.banners {
  padding-block: 100px;
  overflow: hidden;
}
.banners__grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 128px;
}

.banner {
  padding: 30px;
  border-radius: 20px;
  max-width: 705px;
  color: white;
  position: relative;
}
.banner img {
  position: absolute;
  right: -120px;
  top: -50px;
}
.banner h2 {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 40px;
}
.banner > p {
  margin-bottom: 30px;
  margin-top: 0;
}
.banner--purple {
  background: linear-gradient(292.44deg, #9453ff 0%, #ae7cff 100%);
}
.banner--yellow {
  background: linear-gradient(313.13deg, #FFA001 0%, rgba(255, 160, 1, 0.75) 100%);
}
.banner--yellow img {
  top: auto;
  bottom: 0;
  right: -80px;
}
.banner--secondary img {
  top: auto;
  bottom: 0;
  right: -80px;
}
.banner--additionaly img {
  top: auto;
  bottom: 0;
  right: -105px;
}
.banner__grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 20px 10px;
  max-width: 504px;
}
.banner .form__confirm {
  grid-column: span 2;
}

.footer {
  border-top: 1px solid var(--light-gray);
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left {
  display: flex;
  align-items: center;
}
.footer blockquote {
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  margin: 0;
  margin-left: 13px;
}
.footer__btns {
  display: flex;
}
.footer__btns .btn:not(:last-child) {
  margin-right: 10px;
}
.footer__bottom {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
}
.footer .header__messangers {
  display: flex;
}
.footer__menu {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__menu:not(:first-child) {
  margin-left: 60px;
}
.footer__menu strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: var(--blue);
  display: block;
  margin-bottom: 30px;
}
.footer__menu li:not(:last-child) {
  margin-bottom: 18px;
}
.footer__menu a {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
  font-weight: 600;
}
.footer__menu a:hover {
  color: var(--blue);
}
.footer__info {
  padding-left: 60px;
  margin-left: auto;
  font-weight: 600;
  color: var(--gray);
  min-width: 400px;
}
.footer__info-row {
  display: flex;
  align-items: center;
}
.footer__info-row.mobile {
  display: none;
}
.footer__links {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 26px;
  gap: 22px;
  margin-top: 40px;
}
.footer__links a {
  color: var(--black);
}
.footer__copy {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--gray);
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}
.footer__copy br {
  display: none;
}
.footer__copy p {
  margin: 0;
}
.footer__copy a {
  color: var(--orange);
}
.footer__copy a:hover {
  text-decoration: none;
}
.footer__copy-payment {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  line-height: 26px;
}
@media screen and (min-width: 576px) {
  .modal--form {
    --max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .modal--form {
    --max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .modal--form {
    --max-width: 960px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .pluses-index .plus-index {
    padding: 20px;
    padding-top: 100px;
  }
  .pluses-index .plus-index h2 {
    font-size: 20px;
  }
  .pluses-index .plus-index p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .modal--form {
    --max-width: 1200px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    --gap: 130px;
  }
  .container--header {
    --gap: 30px;
  }
  .modal--form {
    --max-width: 1180px;
  }
}
@media screen and (max-width: 1439px) {
  .breadcrumbs {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header__nav a {
    font-size: 14px;
  }
  .about-hero p {
    max-width: 550px;
  }
  .hero__text {
    max-width: 525px;
  }
  .price-item__top {
    padding-left: 35px;
    padding-right: 35px;
  }
  .trial__list li p {
    font-size: 19px;
  }
  .trial__list li::before {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1369px) {
  .person__shape {
    display: none;
  }
  .person__shape2 {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: normal;
  }
  .page-main {
    padding-top: 124px;
  }
  .breadcrumbs {
    padding-top: 0;
  }
  .quote--1 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .quote__wrap {
    padding: 20px;
  }
  .quote h2 {
    font-size: 28px;
  }
  .quote p,
  .quote ul {
    font-size: 16px;
    line-height: 20px;
  }
  .header {
    padding-bottom: 36px;
    padding-bottom: 36px;
  }
  .header blockquote {
    display: none;
  }
  .header__nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 90px;
    bottom: 0;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 60px;
    overflow-y: auto;
    max-height: 100%;
    border-bottom: 1px solid var(--gray);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
  }
  .header__nav.active {
    visibility: visible;
    opacity: 1;
  }
  .header__nav ul {
    display: block;
  }
  .header__nav li {
    text-align: center;
  }
  .header__nav li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .header__nav a {
    font-size: 16px;
    font-weight: 800;
    line-height: normal;
  }
  .header__top {
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .header .logo img {
    height: 70px;
    width: auto;
  }
  .header .burger {
    display: flex;
  }
  .hero-index__img {
    max-width: 480px;
  }
  .courses-index .course-index {
    min-height: 290px;
    padding: 20px;
  }
  .courses-index .course-index p {
    font-size: 16px;
    line-height: 24px;
    max-width: 280px;
  }
  .courses-index .course-index__btns {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 15px;
  }
  .reviews-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-index__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-item {
    display: flex;
    flex-direction: column-reverse;
  }
  .course-item__title h2 {
    font-size: 28px;
  }
  .course-item__image {
    position: static;
    margin: 0 auto;
  }
  .course-item__price {
    width: 220px;
    left: -22px;
  }
  .course-item__price strong {
    font-size: 26px;
    left: 66px;
    max-width: 125px;
  }
  .course-item__price strong span {
    font-size: 18px;
  }
  .course-item__price svg {
    max-width: 100%;
    height: auto;
  }
  .course-item__bottom {
    padding-left: 148px;
    margin-top: 30px;
  }
  .about-hero img {
    max-width: 590px;
  }
  .choise .container > img {
    display: none;
  }
  .choise__grid {
    grid-template-columns: 100%;
  }
  .person__line {
    order: -1;
    margin-bottom: 20px;
  }
  .person__row {
    grid-template-columns: 100%;
  }
  .person__left {
    text-align: center;
  }
  .person__top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .person__top strong {
    justify-content: center;
  }
  .person__img {
    display: none;
  }
  .person__img-mob {
    display: block;
    margin-inline: auto;
  }
  .person__text {
    max-width: 360px;
    text-align: left;
    margin-inline: auto;
  }
  .person__right {
    max-width: 360px;
    margin-inline: auto;
  }
  .person-shape__mob {
    display: block;
    margin: 30px auto;
  }
  .person__block-text {
    text-align: center;
    margin-inline: auto;
  }
  .person .person__top strong img {
    display: none;
  }
  .person .list {
    text-align: center;
  }
  .person .list li {
    padding-left: 0;
  }
  .person .list li:before {
    position: static;
    display: inline-block;
    margin-right: 8px;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 55px;
  }
  .hero__row img {
    top: auto;
    bottom: -65px;
    right: -120px;
    max-width: 535px;
  }
  .hero__text {
    margin-bottom: 40px;
  }
  .pluses .plus br {
    display: none;
  }
  .learning__grid {
    grid-template-columns: 100%;
  }
  .learning__numbers {
    grid-template-rows: auto;
  }
  .learning__program--big {
    display: none;
  }
  .learning--second .learning__grid {
    grid-template-columns: 100%;
  }
  .learning--second .learning__numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .learning--second .learning__subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learning__row .learning__program--big {
    display: flex;
  }
  .teachers-info__item p {
    font-size: 16px;
    line-height: 24px;
  }
  .teachers-info__item span {
    height: 34px;
    font-size: 20px;
  }
  .teachers-info__item strong {
    font-size: 96px;
    line-height: 96px;
  }
  .teachers__grid {
    gap: 10px;
    grid-template-columns: 100%;
    grid-auto-rows: 417px;
    margin: 0 auto;
  }
  .teachers-box__grid {
    grid-template-columns: 100%;
  }
  .teachers-box .btn-mob {
    display: flex;
    width: 100%;
  }
  .teachers__all > div:first-child {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 580px;
    height: 100%;
    width: 100%;
  }
  .certificates__grid {
    gap: 10px;
  }
  .certificates__grid a {
    border-radius: 16px;
  }
  .price-item__top {
    padding: 30px 20px;
    padding-top: 25px;
  }
  .price-item__bot {
    padding: 20px;
  }
  .price-item__bot span {
    max-width: 300px;
  }
  .price-item__row {
    display: block;
  }
  .price-item__row span {
    display: block;
  }
  .price-item__row .btn {
    margin-top: 20px;
    width: 100%;
  }
  .reviews .btn-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .reviews__buttons {
    display: grid;
    grid-template-columns: repeat(2, 34px);
    gap: 16px;
    transition: var(--transition);
  }
  .reviews__buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .reviews__buttons button svg {
    margin-top: -1px;
  }
  .reviews__buttons button:hover {
    opacity: 0.8;
  }
  .reviews__wrap {
    padding-bottom: 55px;
  }
  .reviews-box {
    padding-bottom: 0;
  }
  .reviews-box h1 {
    margin-bottom: 25px;
  }
  .reviews-box__grid {
    display: flex;
    flex-direction: column;
  }
  .reviews-box__grid:not(.active) .review:nth-child(n+4) {
    display: none;
  }
  .reviews-box__grid .review {
    order: -1;
  }
  .reviews-box__grid .btn-mob {
    order: 2;
    display: flex;
  }
  .reviews-box__grid .review-video {
    order: 3;
  }
  .review-video {
    margin-bottom: 0;
  }
  .review-video img {
    width: 460px;
  }
  .trial__grid {
    grid-template-columns: 100%;
  }
  .trial__list li {
    padding-right: 20px;
  }
  .trial__list li p {
    font-size: 20px;
  }
  .trial__list br {
    display: none;
  }
  .trial__img {
    display: none;
  }
  .form__image--big {
    right: 0;
    top: -49px;
    width: 300px;
  }
  .form__image--small {
    width: 280px;
    right: 0;
  }
  .form--medium .form__image {
    width: 270px;
  }
  .form__content {
    max-width: 615px;
  }
  .groups__grid {
    grid-template-columns: 100%;
    gap: 105px;
  }
  .class {
    margin-bottom: 30px;
  }
  .class__grid {
    grid-template-columns: 100%;
  }
  .class-item__text {
    font-size: 16px;
  }
  .club {
    margin-bottom: 35px;
  }
  .club img {
    width: 300px;
  }
  .sale .list,
  .sale > p {
    max-width: 600px;
  }
  .sale .list br,
  .sale > p br {
    display: none;
  }
  .sale--lg img {
    width: 35%;
  }
  .sale--sm .sale__btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__menu {
    width: 50%;
  }
  .footer__menu:not(:first-child) {
    margin-left: 0;
  }
  .footer__menu:nth-child(3) {
    margin-top: 50px;
  }
  .footer__info {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
  .footer__copy {
    margin-top: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 36px;
    line-height: normal;
  }
  h2,
  .h2 {
    font-size: 28px;
    font-weight: 600;
  }
  h4,
  .h4 {
    font-size: 26px;
  }
  .page-main {
    padding-top: 100px;
  }
  .modal .form__image {
    display: none;
  }
  .modal .form {
    padding-bottom: 30px;
  }
  .accordion-btn {
    padding-block: 22px;
    font-size: 20px;
    line-height: 24px;
  }
  .accordion-btn span {
    max-width: 280px;
  }
  .accordion-btn svg {
    width: 24px;
    height: 24px;
  }
  .accordion-content p {
    padding-bottom: 20px;
  }
  .header__btns .btn {
    display: none;
  }
  .header .burger svg {
    width: 34px;
    height: 34px;
  }
  .header .logo {
    margin-right: 0;
  }
  .header .logo img {
    height: 48px;
  }
  .header__phone {
    margin-right: 14px;
  }
  .header__nav {
    top: 59px;
  }
  .header__nav-btns {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .header__nav-btns .btn:not(:last-child) {
    margin-bottom: 10px;
  }
  .header .container--header {
    --gap: 15px;
  }
  .hero-index__content {
    padding-top: 40px;
    padding-bottom: 350px;
  }
  .hero-index__img {
    max-width: 380px;
    left: 0;
    margin-inline: auto;
  }
  .hero-index__badge img {
    width: 200px;
  }
  .hero-index__badge span {
    font-size: 24px;
    left: 67px;
    top: 29px;
  }
  .hero-index__price b {
    font-size: 16px;
    margin-right: -28px;
  }
  .pluses-index {
    padding-top: 85px;
    padding-bottom: 40px;
  }
  .pluses-index__grid {
    grid-template-columns: 100%;
    gap: 65px;
  }
  .pluses-index .plus-index {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .trial-index .trial {
    padding-bottom: 60px;
  }
  .faq {
    padding-top: 50px;
  }
  .faq h2 {
    margin-bottom: 0;
  }
  .fee {
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .fee__wrap {
    padding-right: 20px;
  }
  .fee-item h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .fee-item__top {
    padding: 30px 14px;
    padding-bottom: 14px;
  }
  .fee-item__top strong {
    min-height: 52px;
    max-width: 232px;
    margin-inline: auto;
  }
  .fee-item__top ul {
    min-height: 180px;
    margin-top: 15px;
  }
  .fee-item__mid {
    padding: 12px;
    font-size: 14px;
  }
  .fee-item__bot {
    padding: 14px;
    padding-top: 35px;
  }
  .fee-item__bot strong {
    font-size: 36px;
  }
  .about-hero {
    padding-top: 50px;
    padding-bottom: 220px;
  }
  .about-hero h1 {
    margin-bottom: 15px;
  }
  .about-hero img {
    max-width: 500px;
  }
  .choise {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .choise h2 {
    margin-bottom: 20px;
  }
  .person {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .person__top h2 {
    font-size: 28px;
  }
  .person__top strong {
    font-size: 20px;
  }
  .person .person__block:not(:last-child) {
    margin-bottom: 25px;
  }
  .geography {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .geography h2 {
    margin-bottom: 20px;
  }
  .geography p {
    font-size: 20px;
  }
  .geography .list {
    font-size: 20px;
  }
  .about-socials {
    padding-bottom: 80px;
  }
  .about-socials h2 {
    margin-bottom: 30px;
  }
  .about-socials__grid {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .hero__title h1 {
    line-height: 32px;
  }
  .hero__text {
    max-width: 385px;
  }
  .hero__row img {
    max-width: 500px;
  }
  .pluses__grid {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .pluses .plus {
    padding: 25px 22px;
  }
  .teachers-info {
    background: url(../../img/icons-bg-mob.svg) no-repeat, radial-gradient(67.88% 67.88% at 50% 50%, rgb(174, 124, 255) 0%, rgb(148, 83, 255) 100%);
    background-size: cover;
    padding: 20px;
  }
  .teachers-info__grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .teachers-info__item strong {
    margin-bottom: 0;
  }
  .teachers-info__item span {
    margin-bottom: 12px;
  }
  .teachers-info__item br {
    display: none;
  }
  .teachers p {
    margin-bottom: 20px;
  }
  .teachers-box__grid:not(.active) .teacher:nth-child(n+4) {
    display: none;
  }
  .certificates {
    display: none;
  }
  .students__text {
    margin-bottom: 90px;
  }
  .students__grid {
    gap: 70px;
  }
  .price-item h4 {
    font-size: 20px;
  }
  .review-video {
    padding-top: 174px;
    background: url(../../img/review-video-sm.svg) no-repeat top -20px center, linear-gradient(313.13deg, #ffa001 0%, rgba(255, 160, 1, 0.75) 100%);
    padding-inline: 24px;
    padding-bottom: 24px;
  }
  .review-video__content h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .review-video img {
    width: auto;
    right: auto;
    bottom: auto;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
  }
  .case {
    padding-top: 50px;
  }
  .case .btn-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .case__wrap {
    padding-bottom: 45px;
  }
  .case__row {
    margin-bottom: 20px;
  }
  .case__arrow {
    max-width: 100%;
    height: auto;
    width: 66px;
    top: -48px;
  }
  .case-item {
    padding: 20px;
    flex: 0 0 300px;
    scroll-snap-align: start;
    scroll-margin: 20px;
  }
  .case-item__point {
    max-width: 100%;
    height: auto;
    width: 60px;
    top: -35px;
  }
  .case-item video {
    height: 140px;
  }
  .case-item strong {
    font-size: 20px;
    line-height: 32px;
    padding: 0;
  }
  .case-item span {
    font-size: 18px;
    line-height: 24px;
  }
  .case-item:nth-child(1) .case-item__top {
    min-height: 160px;
    margin: -20px;
    margin-bottom: 0;
  }
  .platform {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .form {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }
  .form--big {
    padding-bottom: 380px;
    padding-top: 25px;
  }
  .form--small {
    padding-bottom: 280px;
  }
  .form h4 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .form__content {
    max-width: 100%;
  }
  .form__image--big {
    right: 0;
    top: auto;
    bottom: 0;
    width: 360px;
  }
  .form--medium {
    padding-bottom: 220px;
  }
  .groups--1 {
    margin-bottom: 35px;
  }
  .groups--2 {
    margin-bottom: 0;
  }
  .club img {
    width: 260px;
  }
  .contacts {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .contacts--2 {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .contacts__grid {
    grid-template-columns: 100%;
  }
  .contacts__link {
    font-size: 16px;
  }
  .contacts h1 {
    margin-bottom: 25px;
  }
  .sitemap__navigation {
    top: 80px;
  }
  .sales__top {
    margin-bottom: 30px;
  }
  .sale {
    padding: 18px;
  }
  .sale--sm {
    grid-column: span 2;
    margin-top: 30px;
    padding-top: 220px;
  }
  .sale--lg {
    padding-bottom: 0;
  }
  .sale--lg img {
    width: 100%;
    position: static;
    margin-top: 30px;
    margin-left: -30px;
    margin-right: -30px;
    min-width: 340px;
  }
  .sale__btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .sale h2 {
    font-size: 26px;
  }
  .banner--secondary img {
    right: -110px;
  }
  .banner--additionaly img {
    right: -135px;
  }
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__left {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  h2,
  .h2 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  .page-main {
    padding-top: 60px;
  }
  .breadcrumbs {
    font-size: 12px;
    padding-top: 20px;
    margin-top: 0;
  }
  .breadcrumbs li:not(:last-child) {
    margin-right: 19px;
  }
  .breadcrumbs li:not(:last-child)::after {
    right: -14px;
  }
  .modal--teacher .modal__body {
    padding: 20px;
    padding-top: 50px;
  }
  .modal--teacher .modal__close {
    right: -10px;
  }
  .modal--teacher .modal__teacher {
    padding: 15px;
  }
  .modal--teacher .modal__teacher video {
    height: 180px;
  }
  .header {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .header.is-scrolled {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .phone {
    font-size: 14px;
    letter-spacing: -0.5px;
  }
  .phone svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
  .hero-index h1 {
    line-height: 46px;
  }
  .hero-index__price {
    margin-left: -35px;
  }
  .hero-index strong {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .hero-index__img {
    max-width: 100%;
  }
  .courses-index {
    padding-bottom: 40px;
  }
  .courses-index__grid {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .courses-index__grid:not(.active) .course-index:nth-child(n+4) {
    display: none;
  }
  .courses-index__btn {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }
  .reviews-index {
    padding-top: 50px;
  }
  .reviews-index__text {
    margin-bottom: 20px;
  }
  .reviews-index__grid {
    gap: 10px;
  }
  .reviews-index__grid .review {
    display: none;
  }
  .reviews-index .reviews-index-video {
    scroll-margin: 0 20px;
    flex: 0 0 300px;
    scroll-snap-align: start;
    min-height: 535px;
  }
  .reviews-index__rating {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .reviews-index__rating img {
    width: 181px;
  }
  .reviews-index__scroll, .reviews-index__row {
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: calc(-1 * var(--gap));
    padding-inline: var(--gap);
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    gap: 10px;
  }
  .reviews-index__scroll::-webkit-scrollbar, .reviews-index__row::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .reviews-index__scroll > *, .reviews-index__row > * {
    scroll-margin: 0 20px;
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
  .reviews-index__grid {
    display: contents;
  }
  .reviews-index__row {
    margin-top: 10px;
  }
  .courses {
    padding-bottom: 60px;
  }
  .courses__title {
    margin-bottom: 35px;
    margin-top: 25px;
  }
  .courses__title br {
    display: none;
  }
  .courses__list {
    gap: 10px;
  }
  .course-item__content {
    padding: 18px;
    padding-top: 12px;
  }
  .course-item__title {
    align-items: flex-end;
    margin-bottom: 40px;
    display: block;
  }
  .course-item__title h2 {
    font-size: 25px;
    display: inline;
  }
  .course-item__title span {
    position: relative;
    top: -4px;
  }
  .course-item__text {
    display: none;
  }
  .course-item__bottom {
    padding-left: 0;
    width: 100%;
    position: relative;
  }
  .course-item__bottom p {
    line-height: 22px;
    margin-bottom: 30px;
    padding-left: 139px;
    max-width: 300px;
  }
  .course-item__bottom p br {
    display: none;
  }
  .course-item__btns {
    flex-direction: column;
    width: 100%;
  }
  .course-item__btns .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .course-item__image {
    max-height: 320px;
  }
  .course-item__price {
    width: 163px;
    top: -35px;
    bottom: auto;
  }
  .course-item__price strong {
    font-size: 18px;
    left: 48px;
    margin-top: 0;
    max-width: 90px;
  }
  .course-item__price strong span {
    font-size: 14px;
  }
  .about-hero {
    padding-bottom: 260px;
  }
  .about-hero img {
    max-width: 360px;
  }
  .about-hero .btn {
    display: none;
  }
  .about-hero p {
    margin-bottom: 0;
  }
  .choise__grid {
    gap: 10px;
  }
  .choise-item {
    padding: 20px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero__row {
    flex-direction: column;
    align-items: unset;
  }
  .hero__content {
    display: contents;
  }
  .hero__content .breadcrumbs {
    order: -1;
    padding-bottom: 10px;
    padding-top: 0;
  }
  .hero__row img {
    position: static;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .hero__title {
    margin-bottom: 25px;
    margin-top: 15px;
  }
  .hero__title h1 {
    font-size: 31px;
  }
  .hero__title span {
    margin-bottom: 0;
  }
  .hero__text {
    margin-bottom: 25px;
  }
  .hero .btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .learning {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .learning__grid {
    gap: 30px;
  }
  .learning__numbers {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .learning__col > h3,
  .learning__col > p {
    display: none;
  }
  .learning__themes {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .learning__themes .theme:last-child {
    grid-column: 2 span;
  }
  .learning__subgrid {
    grid-template-columns: 100%;
    gap: 25px;
  }
  .learning .list-button {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: 20px;
    line-height: 26px;
    transition: var(--transition);
  }
  .learning .list-button svg {
    margin-right: 6px;
  }
  .learning .list li:nth-child(n+4) {
    display: none;
  }
  .learning .list.is-active .list-button svg {
    transform: scaleY(-1);
  }
  .learning .list.is-active li {
    display: block;
  }
  .learning--second .learning__grid {
    grid-template-columns: 100%;
  }
  .learning--second .learning__numbers {
    grid-template-columns: 100%;
  }
  .learning--second .learning__subgrid {
    grid-template-columns: 100%;
  }
  .learning__row {
    grid-template-columns: 100%;
    gap: 25px;
  }
  .learning__row .learning__program--big {
    height: 236px;
  }
  .learning__row .list {
    margin-top: 0;
  }
  .learning__row .list li {
    display: block !important;
  }
  .teachers-info {
    margin-bottom: 40px;
    border-radius: 0;
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * var(--gap));
  }
  .teachers__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -20px;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    gap: 10px;
  }
  .teachers__scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .teachers__grid {
    display: contents;
  }
  .teachers p {
    font-size: 20px;
    line-height: 30px;
  }
  .teachers__btns {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .teachers__all {
    scroll-margin: 0 20px;
    padding: 20px;
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
  .teachers__all > div:first-child {
    height: 100%;
  }
  .teachers__all img:nth-child(1) {
    top: auto;
    left: 22px;
    bottom: 105px;
  }
  .teachers__all img:nth-child(2) {
    top: auto;
    left: auto;
    bottom: 20px;
    right: 23px;
  }
  .teachers__all img:nth-child(3) {
    left: 30px;
    top: 123px;
  }
  .teachers__all img:nth-child(4) {
    right: 34px;
    bottom: 142px;
  }
  .teachers__all:not(.teachers__all--2) picture > img {
    bottom: auto !important;
    right: 33px !important;
    top: 114px !important;
  }
  .teachers--2 strong br {
    display: none;
  }
  .teachers--2 .teachers__all picture:nth-child(1) img {
    left: 30px;
    top: 202px;
    bottom: auto;
  }
  .teachers--2 .teachers__all picture:nth-child(2) img {
    right: 30px;
    bottom: 164px;
    top: auto;
    left: auto;
  }
  .teachers--2 .teachers__all picture:nth-child(3) img {
    right: 30px;
    top: 114px;
    bottom: auto;
  }
  .teachers-box h1 {
    margin-bottom: 25px;
  }
  .teacher {
    display: block;
    padding: 10px;
    padding-bottom: 20px;
    scroll-margin: 0 20px;
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
  .teacher strong {
    text-align: center;
  }
  .teacher__top {
    margin-bottom: 8px;
    margin-top: 12px;
  }
  .teacher__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }
  .teacher__image::after {
    content: none;
  }
  .teacher__image img {
    bottom: auto;
    top: 0;
  }
  .teacher__content {
    padding-left: 0;
  }
  .teacher__content .list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .teacher .btn:not(.btn-mob) {
    display: none;
  }
  .teacher .btn-mob {
    display: flex;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    background-color: var(--color);
    border: 2px solid var(--color);
  }
  .teacher .btn-mob:hover {
    background-color: transparent;
    color: var(--color);
    border-color: var(--color);
  }
  .students__grid {
    gap: 0;
  }
  .students__grid .case__grid {
    padding-top: 85px;
  }
  .students__text {
    margin-bottom: -30px;
  }
  .price {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .price h2 {
    margin-bottom: 20px;
  }
  .price__grid {
    grid-template-columns: 100%;
  }
  .price-item__bot br {
    display: block;
  }
  .reviews__row {
    margin-bottom: 20px;
  }
  .reviews__wrap {
    padding-bottom: 50px;
  }
  .review--mob {
    display: flex;
  }
  .case__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -20px;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    gap: 10px;
    padding-top: 100px;
  }
  .case__grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .case__row {
    margin-bottom: -80px;
  }
  .platform img {
    margin-left: -35px;
    margin-right: -20px;
    margin-top: 20px;
    display: block;
    max-width: 390px;
  }
  .trial {
    padding-bottom: 40px;
  }
  .trial__list::after {
    height: 90%;
    left: 30px;
  }
  .trial__list li {
    align-items: flex-start;
  }
  .trial__list li p {
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .trial__list li::before {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
  .form--big {
    padding-bottom: 345px;
  }
  .form__grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .groups-title {
    font-size: 20px;
    max-width: 265px;
  }
  .group--mini .group__list {
    display: none;
  }
  .club img {
    width: auto;
  }
  .club__border {
    padding: 22px;
    padding-top: 32px;
    padding-bottom: 280px;
  }
  .club__bot {
    flex-direction: column;
    align-items: flex-start;
  }
  .club__bot strong {
    margin-left: 30px;
  }
  .sitemap {
    padding-bottom: 0;
  }
  .sitemap__row {
    grid-template-columns: 100%;
  }
  .sitemap__navigation {
    display: none;
  }
  .sitemap h1 {
    margin-bottom: 30px;
  }
  .sitemap h2 {
    margin-bottom: 20px;
  }
  .sitemap .list a {
    font-size: 16px;
  }
  .sales__grid {
    gap: 20px;
  }
  .sales .container {
    --gap: 10px;
  }
  .sale--sm.second {
    padding-top: 130px;
  }
  .sale--sm img {
    max-width: inherit;
  }
  .banner {
    padding: 20px;
  }
  .banner img {
    right: -30px;
  }
  .banner h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    max-width: 545px;
  }
  .banner > p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
    max-width: 530px;
  }
  .banner__grid {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .banner__grid .form__input {
    order: 1;
  }
  .banner__grid .form__confirm {
    order: 2;
  }
  .banner__grid .btn {
    margin-top: 10px;
    order: 3;
  }
  .banner br {
    display: none;
  }
  .banner img {
    position: static;
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    margin-bottom: 20px;
    display: block;
  }
  .footer {
    padding-bottom: 40px;
  }
  .footer__info-row {
    display: none;
  }
  .footer__info-row.mobile {
    display: flex;
    margin: 0 auto;
    margin-top: 30px;
  }
  .footer__left {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .footer__btns {
    margin: 0 auto;
    flex-direction: column;
    width: 100%;
  }
  .footer__btns .btn {
    width: 100%;
  }
  .footer__btns .btn:not(:last-child) {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .footer__bottom {
    margin-top: 40px;
  }
  .footer__menu {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  .footer__menu ul {
    width: 100%;
  }
  .footer__menu strong {
    margin-bottom: 24px;
    width: 100%;
  }
  .footer__menu li:not(:last-child) {
    margin-bottom: 16px;
  }
  .footer__menu:nth-child(1) ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__menu:nth-child(1) li {
    width: 50%;
  }
  .footer__menu:nth-child(3) {
    margin-top: 0;
  }
  .footer__info {
    width: 100%;
    margin-top: 0;
    text-align: center;
    margin-top: -10px;
    min-width: auto;
  }
  .footer__copy {
    margin-top: 15px;
    flex-direction: column-reverse;
    width: 100%;
    gap: 0;
  }
  .footer__copy br {
    display: block;
  }
  .footer__copy-payment {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer__copy p {
    text-align: center;
    margin-top: 30px;
  }
  .footer__links {
    margin-top: 25px;
  }
}
@media screen and (max-width: 576px) {
  .learning__scroll {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .learning__scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .learning__themes {
    grid-template-columns: repeat(4, 150px) 330px;
    grid-template-rows: repeat(2, 65px);
    width: 970px;
  }
  .learning .theme:last-child {
    grid-column: 5/6;
    grid-row: 1/3;
    height: 100%;
    margin-right: 20px;
  }
  .learning .theme:last-child::before {
    white-space: unset;
    line-height: 54px;
    text-align: center;
  }
  .learning .theme:last-child::after {
    content: "";
    width: 20px;
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .header__messangers {
    gap: 7px;
    margin-right: 10px;
  }
  .header__messangers svg {
    width: 20px;
    height: 20px;
  }
  .header .container--header {
    --gap: 10px;
  }
  .header .header__phone {
    margin-right: 0;
  }
  .courses__title {
    max-width: 287px;
  }
  .person__row {
    max-width: 320px;
    margin-inline: auto;
  }
  .person--1 .person__top strong {
    max-width: 200px;
    white-space: normal;
  }
  .trial__list::after {
    height: calc(100% - 168px);
  }
  .error404 h1 {
    max-width: 275px;
    margin-inline: auto;
  }
}