:root {
  --color-black: #000;
  --color-white: #fff;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  font-family: "Nunito";
}

body {
  background: #FFFFFF;
}
body.scroll-hide {
  overflow: hidden;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.breadcrumbs {
  margin-bottom: 71px;
  position: relative;
  z-index: 5;
}
.breadcrumbs__list-item {
  display: inline-block;
  padding-right: 14px;
  position: relative;
}
.breadcrumbs__list-item a,
.breadcrumbs__list-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #FFFFFF;
  transition: all 0.3s;
}
.breadcrumbs__list-item a {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.breadcrumbs__list-item a:hover {
  text-shadow: 0 0 0.5px #FFFFFF;
}
.breadcrumbs__list-item:last-child::after {
  display: none;
}
.breadcrumbs__list-item::after {
  position: absolute;
  content: ">";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  top: 8px;
  right: -1px;
}

.button {
  background: #FF4825;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.button:hover {
  background: #FF5D3E;
}
.button:active {
  background: #E4310E;
}

.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: #221111;
}

.sec-marg-bottom {
  margin-bottom: 85px;
}

.sec-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.header {
  padding: 40px 0;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 211px;
  height: 69px;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #221111;
  transition: all 0.3s;
}
.nav__link:hover {
  color: #FF4825;
}

.tel-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #221111;
  position: relative;
  padding-right: 34px;
}
.tel-link::before {
  position: absolute;
  content: url("../img/tel-icon.svg");
  right: 0;
  top: -2px;
  transition: all 0.3s;
}
.tel-link:hover {
  color: #221111;
}
.tel-link:hover::before {
  transform: translateX(5px);
}

.burger {
  height: 16px;
  width: 30px;
  margin-left: 100px;
  justify-content: center;
  align-items: center;
  z-index: 350;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
  position: relative;
}
.burger span {
  position: absolute;
  background-color: #221111;
  height: 2px;
  width: 30px;
  display: block;
  transition: all 0.3s;
  border-radius: 5px;
}
.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger span:nth-child(3) {
  bottom: 16px;
}
.burger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  bottom: 7px;
  transform: rotate(-45deg);
}

.promo {
  padding: 160px 0;
  position: relative;
}

.promo__wrap {
  position: relative;
  z-index: 2;
}

.promo__title {
  font-weight: 800;
  font-size: 70px;
  line-height: 70px;
  color: #221111;
  max-width: 720px;
}

.promo__subtitle {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #221111;
  margin-top: 20px;
  max-width: 550px;
}

.promo__btn {
  margin-top: 65px;
  width: 350px;
  height: 60px;
}

.promo__letter {
  position: absolute;
  border-radius: 50%;
}
.promo__letter img {
  position: absolute;
  transform-origin: 0% 100% 0;
  animation: 6s linear 1s infinite reverse both running rotate-letter;
}

@-webkit-keyframes rotate-letter {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}

@keyframes rotate-letter {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@-webkit-keyframes rotate-letter-v2 {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate-letter-v2 {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.promo__letter-one {
  width: 145px;
  height: 145px;
  background: #3C445F;
  left: 49%;
  top: 30%;
}
.promo__letter-one img {
  top: -29px;
  right: -21px;
}

.promo__letter-two {
  width: 91px;
  height: 91px;
  background: #7583B6;
  left: 93%;
  top: -7%;
}
.promo__letter-two img {
  top: -32px;
  right: -21px;
}

.promo__letter-three {
  width: 46px;
  height: 46px;
  background: #FF4825;
  left: 63%;
  top: -25%;
}
.promo__letter-three img {
  top: -33px;
  right: 16px;
  transform-origin: 100% 100% 0;
  animation: 6s linear 1s infinite reverse both running rotate-letter-v2;
}

.lager-promo {
  padding: 140px 0;
  position: relative;
}

.lager-promo__text {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #221111;
  position: relative;
  z-index: 2;
  max-width: 505px;
}
.lager-promo__text span {
  font-weight: 400;
  display: block;
}

.about {
  margin-bottom: 85px;
}

.about__descd {
  margin-top: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
}
.about__descd span {
  font-weight: 700;
  display: block;
  margin: 20px auto 0 auto;
}

.advantages {
  margin-bottom: 85px;
}

.advantages__wrap {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}

.advantages__column {
  width: 31%;
}

.advantages__column--icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.advantages__column--icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.advantages__column--descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 25px;
}

.programm .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.programm .swiper {
  padding-bottom: 120px;
  padding: 0 0 120px 0;
  width: calc(100vw - (100vw - 1220px) / 2);
}
.programm .swiper.zindex {
  z-index: 11;
}
.programm .swiper-button-next,
.programm .swiper-button-prev {
  top: 85%;
}
.programm .swiper-button-next {
  left: 88px;
  right: 0;
}
.programm .swiper-button-next:after,
.programm .swiper-button-prev:after {
  font-size: 0;
}
.programm .swiper-button-prev:after {
  content: url("../img/arrow-left.svg");
}
.programm .swiper-button-next:after {
  content: url("../img/arrow-right.svg");
}

.programm-v2 {
  padding-top: 50px;
}

.programm__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 15px;
}

.programm__wrap {
  margin-top: 50px;
  position: relative;
}

.card-prod {
  background: #F8F8F8;
  border-radius: 20px;
  height: 420px;
  width: 380px;
  transition: all 0.3s;
  z-index: 20;
}
.card-prod:hover {
  z-index: 25;
}
.card-prod:hover .card-prod__info {
  height: 0;
  margin-bottom: auto;
}
.card-prod:hover .card-prod__btn-wrap {
  height: 137px;
}
.card-prod:hover .card-prod__title {
  color: #FFFFFF;
}
.card-prod:hover .card-prod__btn-wrap {
  height: 137px;
}
.card-prod:hover .card-prod__content {
  background: #3C445F;
  height: 310px;
}

.card-prod__img {
  height: 210px;
  width: 100%;
}
.card-prod__img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.card-prod__content {
  padding: 20px 35px 35px 35px;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 20px 20px;
}

.card-prod__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #221111;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.card-prod__title span {
  display: block;
  margin: 0 auto;
}

.card-prod__info {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 54px;
}
.card-prod__info div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-prod__info div span {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #221111;
  opacity: 0.5;
}

.card-prod__btn-wrap {
  height: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.card-prod__btn {
  width: 100%;
  height: 60px;
}

.card-prod__btn-one {
  margin-bottom: 17px;
}

.card-prod__btn-two {
  border: 1.5px solid #FFFFFF;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  transition: all 0.3s;
}
.card-prod__btn-two:hover {
  background: #9DCBFF;
  border: 1.5px solid #9DCBFF;
  color: #221111;
}
.card-prod__btn-two:active {
  background: #5C9EEA;
  border: 1.5px solid #5C9EEA;
  color: #FFFFFF;
}

.programm__link {
  position: absolute;
  right: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #221111;
  top: 83%;
  z-index: 10;
}

.programm__wrap-v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-top: 50px;
  padding-bottom: 40px;
}

.baner {
  padding: 90px 0;
  position: relative;
}

.baner__title {
  text-align: left;
  max-width: 577px;
}

.baner__wrapper {
  position: relative;
  z-index: 10;
}

.baner__descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-top: 28px;
  max-width: 750px;
}

.baner__btn {
  width: 350px;
  height: 60px;
  margin-top: 50px;
}

.fox-coin-baner {
  padding: 165px 0;
  position: relative;
}

.fox-coin-baner__title {
  position: relative;
  z-index: 2;
}

.fox-coin-baner__descr {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.fox-coin-baner__descr p {
  margin-bottom: 15px;
}
.fox-coin-baner__descr p:last-child {
  margin-bottom: 0;
}

.teachers .swiper {
  margin: 0 100px;
}
.teachers .swiper-button-next:after,
.teachers .swiper-button-prev:after {
  font-size: 0;
}
.teachers .swiper-button-prev:after {
  content: url("../img/arrow-left.svg");
}
.teachers .swiper-button-next:after {
  content: url("../img/arrow-right.svg");
}
.teachers .swiper-button-next,
.teachers .swiper-button-prev {
  top: 37%;
}

.teachers__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 15px;
}

.teachers__wrapper {
  margin-top: 50px;
  position: relative;
}

.teachers__slide {
  width: 300px;
  margin: 0 auto;
}

.teachers__slide--img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}
.teachers__slide--img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.teachers__slide--img img:hover {
  transform: scale(1.1) rotate(5deg);
}

.teachers__slide--name {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #221111;
  margin-top: 20px;
}

.teachers__slide--descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  opacity: 0.5;
  margin-top: 2px;
}

.teachers-v2 .teachers__subtitle {
  max-width: 650px;
  margin: 15px auto 0 auto;
}

.form-baner {
  background: #E3E6EE;
  border-radius: 20px;
  position: relative;
  padding: 60px 70px;
}
.form-baner .form-block__input {
  width: 100%;
  margin-bottom: 15px;
  height: 60px;
}
.form-baner .form-block {
  width: 350px;
  margin-top: 35px;
}
.form-baner .form-block__btn {
  width: 100%;
}
.form-baner .form-block__check input {
  border: 1.5px solid #221111;
}
.form-baner .form-block__check .checkbox:checked {
  background-color: #221111;
}
.form-baner .form-block__check .checkbox::before {
  content: url("../img/check-white.svg");
}
.form-baner .form-block__check label {
  color: #221111;
}
.form-baner .form-block__check label a {
  color: #221111;
}

.form-baner-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.form-baner__wrapper {
  margin-left: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

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

.form-baner__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #221111;
  margin-top: 6px;
}

.form-block__input input {
  border: 1.5px solid #221111;
  border-radius: 10px;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
}
.form-block__input input::-moz-placeholder {
  color: #22111134;
}
.form-block__input input:-ms-input-placeholder {
  color: #22111134;
}
.form-block__input input::placeholder {
  color: #22111134;
}

.form-block__btn {
  height: 60px;
}

.form-block__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: #221111;
  margin-top: 20px;
}
.form-block__text a {
  text-decoration: underline;
}

.price {
  padding-bottom: 100px;
}

.price__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 15px;
}

.price__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin-top: 50px;
}

.price__block-wrap {
  width: 31%;
  height: 262px;
  position: relative;
  z-index: 24;
}
.price__block-wrap:hover {
  z-index: 25;
}

.price__block {
  padding: 35px 35px 0 35px;
  background: #F8F8F8;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 20;
}
.price__block:hover {
  background: #3C445F;
  padding-bottom: 35px;
  z-index: 25;
}
.price__block:hover .price__block--title {
  color: #FFFFFF;
}
.price__block:hover .price__block--info {
  color: #FFFFFF;
}
.price__block:hover .price__block--suma {
  color: #FFFFFF;
}
.price__block:hover .price__block--btn {
  height: 60px;
  margin-top: 30px;
}

.price__block--title {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #221111;
  transition: all 0.3s ease-in-out;
}

.price__block--info {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #221111;
  opacity: 0.5;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

.price__block--suma {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #221111;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.price__block--btn {
  width: 100%;
  height: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 30px;
}

.price__block--info-icon {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 54px;
  margin-top: 20px;
}
.price__block--info-icon div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price__block--info-icon div span {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #221111;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.price-v2 .price__block--title {
  font-size: 18px;
  line-height: 25px;
}
.price-v2 .price__block--title span {
  font-size: 30px;
  line-height: 41px;
  display: block;
}
.price-v2 .price__block--suma {
  height: 33px;
}
.price-v2 .price__block--info-icon div svg {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  stroke: #221111;
  transition: all 0.3s ease-in-out;
}
.price-v2 .price__block:hover .price__block--info-icon div svg {
  stroke: rgba(255, 255, 255, 0.466);
}
.price-v2 .price__block:hover .price__block--info-icon div span {
  color: rgba(255, 255, 255, 0.466);
}

.gallery {
  background: #9DCBFF;
  padding: 100px 0;
}

.gallery-v2 {
  background-color: transparent;
  padding: 0;
  margin-top: 100px;
  padding: 0 !important;
}

.gallery__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery__link-more {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #221111;
}

.gallery__wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 55px;
}
.gallery__wrapper a {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.gallery__wrapper a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s ease-in-out;
}
.gallery__wrapper a img:hover {
  transform: scale(1.05);
}
.gallery__wrapper .big-img {
  width: 65%;
}
.gallery__wrapper .small-img {
  width: 30%;
}

.textbooks__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.textbooks__text {
  max-width: 570px;
  margin-right: 50px;
}
.textbooks__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 15px;
}
.textbooks__text p:last-child {
  margin-bottom: 0;
}
.textbooks__text p span {
  font-weight: 700;
}
.textbooks__text p a {
  color: #FF755B;
  text-decoration: underline;
}

.textbooks__title {
  text-align: left;
  margin-bottom: 18px;
}

.textbooks__img {
  max-width: 590px;
  width: 100%;
  height: 407px;
}
.textbooks__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.contact {
  background: #3C445F;
  padding: 85px 0;
}

.contact-v2 {
  background-color: transparent;
  padding: 50px 0;
}
.contact-v2 .contact__title {
  color: #221111;
}
.contact-v2 .contact__phone a {
  color: #221111;
}
.contact-v2 .contact__quest {
  color: #221111;
}
.contact-v2 .contact__quest a {
  color: #221111;
}
.contact-v2 .contact__mail {
  color: #221111;
}
.contact-v2 .contact__mail a {
  color: #221111;
}
.contact-v2 .contact__map-text {
  color: #221111;
}

.contact__title {
  text-align: left;
  color: #FFFFFF;
}

.contact__phone {
  margin-top: 20px;
}
.contact__phone a {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  display: block;
  padding-top: 3px;
}

.contact__quest {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.contact__quest a {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  display: block;
  padding-top: 3px;
}

.contact__mail {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.contact__mail a {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  display: block;
  padding-top: 3px;
}

.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  margin-top: -300px;
}

.contact__map {
  width: 31%;
}

.contact__map-img {
  width: 100%;
  height: 290px;
}
.contact__map-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.contact__map-text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.contact__map-text span {
  font-weight: 700;
  padding-bottom: 3px;
  display: block;
}

.footer {
  background: #3C445F;
  padding: 60px 0 50px 0;
  margin-top: auto;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  width: 211px;
  height: 69px;
  order: 1;
  display: block;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  row-gap: 10px;
  max-width: 28%;
  width: 100%;
  order: 2;
}

.footer__menu-item {
  width: auto;
}
.footer__menu-item a {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.footer__menu-item a:hover {
  color: #FF4825;
}

.footer__info {
  margin-top: auto;
  order: 3;
}
.footer__info a,
.footer__info span {
  display: block;
}
.footer__info a {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
}
.footer__info a:last-child {
  margin-bottom: 0;
}
.footer__info a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-38%);
  transition: all 0.3s ease-in-out;
}
.footer__info a:hover::before {
  transform: translateX(-5px) translateY(-38%);
}
.footer__info span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  opacity: 0.5;
}

.footer__info-phone::before {
  content: url("../img/footer__info-phone.svg");
}

.footer__info-inst::before {
  content: url("../img/footer__info-inst.svg");
}

.btn-top {
  background: #FF4825;
  border: 1.5px solid #FFFFFF;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  transition: all 0.3s ease-in-out;
  order: 4;
  /* right: 63px;
  bottom: 105px;
  position: fixed; */
}
.btn-top:hover {
  background: #c43012;
}

.footer__bottom div {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff75;
  margin: 40px auto 0 auto;
  text-align: center;
}

.program-page__wrapper {
  display: flex;
  position: relative;
}

.program-page__text {
  width: 50%;
  padding: 50px 0;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 595px;
}
.program-page__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  padding-bottom: 15px;
}
.program-page__text p:last-child {
  padding-bottom: 0;
}

.program-page__title-mob {
  display: none;
}

.program-page__title span {
  color: #221111;
  display: block;
}
.program-page__title span:first-child {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: -10px;
}
.program-page__title span:last-child {
  font-weight: 800;
  font-size: 100px;
  line-height: 136px;
}

.program-page__img {
  margin-right: -50%;
  min-height: 100%;
  width: 57%;
  border-radius: 20px;
  overflow: hidden;
}
.program-page__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.program-page__bottom {
  margin-top: 85px;
}
.program-page__bottom p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
}
.program-page__bottom p:last-child {
  margin-bottom: 0;
}

.game-sec .program-page__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #221111;
  max-width: 386px;
}
.game-sec .program-page__bottom--title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #221111;
  margin-bottom: 15px;
}
.game-sec .program-page__bottom p span {
  font-weight: 700;
}

.program-info {
  position: relative;
}

.program-info__wrapper {
  display: flex;
  justify-content: space-between;
}

.program-info__text {
  margin-left: auto;
  width: 52%;
}
.program-info__text p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  font-weight: 400;
}
.program-info__text p:last-child {
  margin-bottom: 0;
}
.program-info__text p span {
  font-weight: 700;
}

.program-info__icon-wrap {
  background: #5C9EEA;
  border-radius: 0px 20px 20px 0px;
  padding: 80px 150px 80px 15px;
  width: 44vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.program-info__icon-wrap > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 315px;
  row-gap: 40px;
  margin-left: auto;
}

.program-info__icon-item {
  display: flex;
  align-items: center;
}
.program-info__icon-item span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  padding-left: 10px;
}

.what-lager__title {
  text-align: left;
  margin-bottom: 10px;
}

.what-lager__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 15px;
}
.what-lager__text p:last-child {
  margin-bottom: 0;
}
.what-lager__text span {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 10px;
  display: block;
}
.what-lager__text li {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  position: relative;
}
.what-lager__text li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: -13px;
  top: 10px;
  background-color: #221111;
}

.what-lager__bottom {
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.what-lager__img {
  width: 68%;
  min-height: 370px;
  overflow: hidden;
  border-radius: 20px;
}
.what-lager__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.what-lager__num {
  color: #FFFFFF;
  font-weight: normal;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #FFFFFF;
  padding: 60px 30px;
  background: #3C445F;
  border-radius: 20px;
  width: 32%;
}
.what-lager__num span {
  font-weight: 700;
  font-size: 100px;
  line-height: 136px;
  text-align: center;
  display: block;
}

.prog-lager__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 15px;
}

.prog-lager__wrapper {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 50px;
}

.prog-lager__item {
  display: flex;
}

.prog-lager__item--icon {
  min-width: 100px;
  min-height: 100px;
  width: 100px;
  height: 100px;
  background: #5C9EEA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 28px;
  transition: all 0.3s ease-in-out;
}
.prog-lager__item--icon:hover {
  background: #3C445F;
}
.prog-lager__item--icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.prog-lager__item--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 5px;
}

.prog-lager__item--list {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #221111;
  opacity: 0.5;
}
.prog-lager__item--list li {
  position: relative;
}
.prog-lager__item--list li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: -12px;
  top: 8px;
  background-color: #221111;
}

.prog-lager__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  padding: 25px 50px;
  background: #737EA7;
  border-radius: 10px;
  grid-column-start: 2;
  grid-column-end: 4;
}

.reviews .swiper {
  margin: 0 100px 0 100px;
  padding-bottom: 35px;
}
.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
  font-size: 0;
}
.reviews .swiper-button-prev:after {
  content: url("../img/arrow-left.svg");
}
.reviews .swiper-button-next:after {
  content: url("../img/arrow-right.svg");
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  top: 45%;
}
.reviews .swiper-pagination {
  bottom: 0;
}
.reviews .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #221111;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.reviews .swiper-pagination-bullet-active {
  background: #221111;
}
.reviews .swiper-slide {
  min-height: 100%;
  height: auto;
}

.reviews__wrapper {
  margin-top: 25px;
  position: relative;
}

.reviews__block {
  background: #F8F8F8;
  border-radius: 10px;
  min-height: 280px;
  padding: 30px;
  height: 100%;
}
.reviews__block span {
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  display: block;
}
.reviews__block span:first-child {
  font-weight: 700;
}
.reviews__block span:last-child {
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
}
.reviews__block p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-top: 15px;
}

.form-sec {
  background: #737EA7;
  padding: 38px 0;
}
.form-sec .form-sec__title {
  color: #FFFFFF;
}
.form-sec .form-sec__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 15px;
}
.form-sec .form-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 28px;
}
.form-sec .form-block__input {
  width: 31.5%;
}
.form-sec .form-block__input input {
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
}
.form-sec .form-block__input input::-moz-placeholder {
  color: #FFFFFF;
  opacity: 0.2;
}
.form-sec .form-block__input input:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.2;
}
.form-sec .form-block__input input::placeholder {
  color: #FFFFFF;
  opacity: 0.2;
}
.form-sec .form-block__btn {
  width: 32%;
}
.form-sec .form-block__text {
  width: 100%;
  margin-top: 25px;
  text-align: center;
  color: #FFFFFF;
}
.form-sec .form-block__text a {
  color: #FFFFFF;
}

.discount {
  padding: 60px 0;
  background: #9DCBFF;
}

.discount__title {
  text-align: left;
}

.accordion {
  margin-top: 25px;
}

.accordion__item {
  background: #FFFFFF;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  /* &:first-child {
      &.open {
          .accordion__item--descr {
              max-height: fit-content;
          }
      }
  } */
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item.open {
  padding-bottom: 17px;
}
.accordion__item.open .accordion__item--title {
  padding-bottom: 3px;
}
.accordion__item.open .accordion__item--title::before {
  transform: rotateX(180deg);
  opacity: 0.5;
}

.accordion__item--title {
  padding: 17px 184px 17px 35px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.accordion__item--title::before {
  position: absolute;
  content: url("../img/accordion-arrow.svg");
  right: 40px;
  transition: all 0.3s ease-in-out;
  height: 25px;
}

.accordion__item--descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  opacity: 0.5;
  padding: 0 184px 0 35px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.what-happen__wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}

.what-happen__column {
  max-width: 260px;
}

.what-happen__column--icon {
  width: 150px;
  height: 150px;
  background: #3C445F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin: 0 auto;
}
.what-happen__column--icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.what-happen__column--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 12px;
}

.what-happen__column--descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #221111;
  margin-top: 2px;
}

.nutrition__wrapper {
  display: flex;
  align-items: center;
}

.nutrition__text {
  max-width: 575px;
  margin-right: 50px;
}

.nutrition__title {
  text-align: left;
  margin-bottom: 18px;
}

.nutrition__dsecr p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 15px;
}

.nutrition__menu p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 15px;
}
.nutrition__menu p span {
  font-weight: 700;
}

.nutrition__text-bottom {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #221111;
}

.nutrition__img {
  max-width: 590px;
  width: 100%;
  height: 700px;
  border-radius: 20px;
}
.nutrition__img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.test {
  padding-top: 20px;
}

.test__wrapper {
  margin-top: 20px;
}

.test__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-bottom: 15px;
}
.test__text p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 19px;
}
.test__text p:last-child a {
  color: #221111;
  text-decoration: underline;
}
.test__text p span {
  font-weight: 700;
}

.test__form {
  margin-top: 70px;
}

.form-block__input {
  height: 60px;
  width: 100%;
  margin-bottom: 20px;
}
.form-block__input input {
  border: 1.5px solid #2211117a;
  color: #221111;
}
.form-block__input input::-moz-placeholder {
  color: #221111;
  opacity: 0.3;
}
.form-block__input input:-ms-input-placeholder {
  color: #221111;
  opacity: 0.3;
}
.form-block__input input::placeholder {
  color: #221111;
  opacity: 0.3;
}

.form-block__btn {
  height: 60px;
  width: 100%;
}

.fox-coin-sec__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  color: #221111;
}

.fox-coin-sec__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 315px;
  justify-content: space-between;
  margin-top: 30px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 25px;
}

.fox-coin-sec__item--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
}

.fox-coin-sec__item--descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #221111;
  margin-top: 5px;
}

.fox-coin-sec__block {
  background: #737EA7;
  border-radius: 20px;
  padding: 30px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}

.modal-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.432);
  z-index: 400;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.modal-bg.active {
  opacity: 1;
  z-index: 400;
}

.modal-back-call .modal {
  background: #737EA7;
}

.modal-thank .modal {
  background: #FF4825;
}

.modal {
  position: fixed;
  z-index: 450;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 80px 50px;
  width: 550px;
  min-width: 550px;
}
.modal .modal__form {
  margin-top: 40px;
}
.modal .form-block {
  max-width: 350px;
  margin: 0 auto;
}
.modal .form-block__input {
  width: 100%;
}
.modal .form-block__input input {
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
}
.modal .form-block__input input::-moz-placeholder {
  color: #ffffff77;
}
.modal .form-block__input input:-ms-input-placeholder {
  color: #ffffff77;
}
.modal .form-block__input input::placeholder {
  color: #ffffff77;
}
.modal .form-block__text {
  font-size: 10px;
  line-height: 14px;
  margin-top: 40px;
  color: #FFFFFF;
  text-align: center;
}
.modal .form-block__text a {
  color: #FFFFFF;
}

.modal__closed {
  position: absolute;
  right: 50px;
  top: 50px;
}

.modal__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: #FFFFFF;
  max-width: 370px;
  margin: 0 auto;
}

.modal__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 10px;
}

.form-block__check {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.form-block__check .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.form-block__check .checkbox::before {
  content: url("../img/check.svg");
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  opacity: 0;
  transition: 0.1s ease-in;
}
.form-block__check .checkbox:checked {
  background-color: #fff;
}
.form-block__check .checkbox:checked::before {
  opacity: 1;
}
.form-block__check label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  margin-left: 6px;
}
.form-block__check label a {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #FFFFFF;
}

.btn-disabled {
  background: #BBB8B8;
  border-radius: 10px;
  cursor: auto;
}
.btn-disabled:hover {
  background: #BBB8B8;
  border-radius: 10px;
}

@media (max-width: 1370px) {
  .promo__letter-one {
    left: 51%;
    top: 76%;
  }

  .promo__letter-two {
    left: 82%;
    top: 54%;
  }

  .promo__letter-three {
    left: 64%;
    top: -28%;
  }
}
@media (max-width: 1280px) {
  .what-lager__text li {
    margin-left: 20px;
  }
}
@media (max-width: 1180px) {
  .nav__item {
    padding: 0 10px;
  }

  .logo {
    width: 170px;
    height: 56px;
  }

  .header {
    padding: 20px 0;
  }

  .teachers .swiper {
    margin: 0 30px;
  }

  .teachers .swiper-button-prev:after {
    content: url("../img/arrow-left-mini.svg");
  }

  .teachers .swiper-button-next:after {
    content: url("../img/arrow-right-mini.svg");
  }

  .teachers__slide--img {
    height: 190px;
  }

  .teachers__slide {
    width: 190px;
  }

  .form-baner .form-block__input input {
    background-color: #fff;
  }

  .form-baner__subtitle {
    max-width: 380px;
  }

  .form-baner__title {
    max-width: 380px;
  }

  .form-baner .form-block {
    width: 294px;
  }
}
@media (max-width: 1070px) {
  .btn-top {
    order: 3;
  }

  .footer__bottom div {
    order: 2;
    text-align: left;
  }
  .footer__bottom div span {
    display: block;
  }

  .footer__bottom {
    display: flex;
    margin-top: 50px;
  }

  .footer__menu {
    width: 50%;
    max-width: 100%;
  }

  .program-page__title span:last-child {
    font-size: 70px;
    line-height: 105px;
  }

  .program-page__title span:first-child {
    font-size: 34px;
    line-height: 50px;
  }

  .program-page__text p {
    font-size: 16px;
    line-height: 24px;
  }

  .program-page__bottom-text {
    order: 2;
  }

  .gallery-v2 {
    order: 1;
    margin: 0 0 15px 0;
  }
  .gallery-v2 .container {
    padding: 0;
  }

  .program-page__bottom {
    display: flex;
    flex-direction: column;
  }

  .what-lager__num {
    font-size: 18px;
    line-height: 25px;
    padding: 40px 20px;
    min-height: 250px;
  }
  .what-lager__num span {
    font-size: 40px;
    line-height: 55px;
  }

  .what-lager__img {
    min-height: 250px;
    height: 250px;
  }

  .what-lager__img img {
    width: 100%;
  }

  .what-lager__bottom {
    margin-top: 30px;
  }

  .what-lager__bottom {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .prog-lager__item--icon {
    min-width: 70px;
    min-height: 70px;
    width: 70px;
    height: 70px;
    padding: 15px;
  }

  .prog-lager__text {
    padding: 30px 20px;
  }

  .fox-coin-sec__wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .fox-coin-sec__block {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 6;
  }
}
@media (max-width: 1030px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #9DCBFF;
    height: 100%;
    transform: translateY(-100%);
    z-index: 300;
    transition: all 0.3s;
  }
  .nav.active {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .nav__item {
    padding: 5px 0;
  }

  .nav__link {
    font-size: 18px;
  }

  .header .tel-link {
    margin-left: auto;
  }

  .burger {
    display: block;
  }

  .advantages__column--icon {
    width: 80px;
    height: 80px;
  }

  .teachers__slide--descr {
    font-size: 16px;
    line-height: 22px;
  }

  .teachers__slide--name {
    font-size: 24px;
    line-height: 33px;
    margin-top: 10px;
  }

  .price__block {
    padding: 30px 15px 0 15px;
  }

  .price__block--title {
    font-size: 24px;
    line-height: 33px;
  }

  .price__block--info {
    font-size: 14px;
    line-height: 19px;
  }

  .price__block--suma {
    font-size: 24px;
    line-height: 33px;
    margin-top: 25px;
  }

  .price__block:hover {
    padding-bottom: 20px;
  }

  .price__block-wrap {
    height: 235px;
  }

  .gallery__wrapper {
    row-gap: 20px;
  }

  .gallery__wrapper .big-img {
    width: 66%;
  }

  .gallery__wrapper .small-img {
    width: 31%;
  }

  .promo {
    padding: 135px 0 335px 0;
  }

  .promo__letter-one {
    left: 36%;
    top: 134%;
  }

  .promo__letter-two {
    left: 52%;
    top: -31%;
    transform: scale(0.6);
  }

  .promo__letter-three {
    left: 5%;
    top: 126%;
    width: 65px;
    height: 65px;
  }

  .promo__btn {
    margin-top: 40px;
  }

  .promo__title {
    max-width: 430px;
  }
}
@media (max-width: 1000px) {
  .contact__map {
    width: 48%;
  }

  .program-info {
    flex-direction: column-reverse;
    display: flex;
  }
  .program-info .container {
    width: 100%;
  }

  .program-info__icon-wrap {
    position: static;
    transform: translateY(0);
    width: inherit;
    max-width: 100%;
    margin: 0 15px;
    border-radius: 20px;
    padding: 25px;
  }
  .program-info__icon-wrap > div {
    width: 100%;
    justify-content: space-around;
  }

  .program-info__text {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .program-info__wrapper {
    width: 100%;
  }

  .prog-lager__item--icon {
    margin-right: 24px;
  }

  .prog-lager__item--title {
    font-size: 16px;
    line-height: 22px;
  }

  .prog-lager__wrapper {
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }

  .prog-lager__text {
    font-size: 16px;
    line-height: 22px;
  }

  .reviews .swiper {
    margin: 0 70px;
    padding-bottom: 35px;
  }

  .price-v2 .price__block-wrap {
    width: 30%;
  }

  .price-v2 .price__block--title span {
    font-size: 24px;
    line-height: 33px;
  }

  .price__block--info-icon {
    flex-wrap: wrap;
    row-gap: 10px;
    height: inherit;
  }

  .price__block--info-icon div {
    width: 48%;
    flex-direction: row;
  }

  .price__block--info-icon div span {
    margin: 0 0 0 10px;
  }

  .what-happen__wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 970px) {
  .nutrition__text {
    max-width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
  }
  .nutrition__text .nutrition__title {
    order: 1;
  }
  .nutrition__text .nutrition__dsecr {
    order: 2;
  }
  .nutrition__text .nutrition__img {
    order: 3;
  }
  .nutrition__text .nutrition__menu {
    order: 4;
  }
  .nutrition__text .nutrition__text-bottom {
    order: 5;
  }

  .nutrition__img {
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 15px;
    max-height: 500px;
    height: inherit;
    overflow: hidden;
  }
  .nutrition__img img {
    width: 100%;
  }
}
@media (max-width: 880px) {
  .prog-lager__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .prog-lager__text {
    grid-column-end: 3;
  }

  .price-v2 {
    margin-bottom: 85px !important;
  }

  .what-happen__column--icon {
    width: 105px;
    height: 105px;
  }

  .what-happen__column {
    max-width: 210px;
  }

  .what-happen__column--descr {
    font-size: 16px;
    line-height: 22px;
  }

  .what-happen__wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 830px) {
  .title {
    font-size: 30px;
    line-height: 41px;
  }

  .sec-marg-bottom {
    margin-bottom: 40px;
  }

  .advantages__column {
    width: 28%;
  }

  .advantages__column--descr {
    font-size: 16px;
    line-height: 22px;
    margin-top: 15px;
  }

  .programm .swiper-button-next,
.programm .swiper-button-prev {
    display: none;
  }

  .programm__link {
    right: inherit;
    left: 0;
  }

  .card-prod {
    width: 324px;
  }

  .card-prod__title {
    font-size: 24px;
    line-height: 33px;
  }

  .card-prod__content {
    padding: 20px 15px 30px 15px;
  }

  .card-prod:hover .card-prod__content {
    height: 275px;
  }

  .programm__wrap {
    margin-top: 30px;
  }

  .baner {
    padding: 50px 0;
  }

  .baner__descr {
    margin-top: 10px;
    max-width: 360px;
  }

  .baner__title {
    max-width: 443px;
  }

  .teachers__wrapper {
    margin-top: 40px;
  }

  .form-baner {
    padding: 35px;
  }

  .gallery {
    padding: 40px 0;
  }

  .gallery__wrapper {
    margin-top: 20px;
  }

  .textbooks__text {
    max-width: 300px;
  }

  .contact__map-text {
    text-align: center;
  }

  .contact__map-img {
    height: 200px;
  }

  .contact__wrapper {
    margin-top: -230px;
  }

  .contact__title {
    text-align: center;
    margin-bottom: 25px;
  }

  .contact {
    padding: 35px 0;
  }

  .programm__wrap-v2 {
    margin-top: 30px;
  }

  .programm-v2 {
    padding-top: 30px;
  }

  .program-page__title span:last-child {
    font-size: 50px;
    line-height: 68px;
  }

  .program-page__title span:first-child {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: -5px;
  }

  .program-page__bottom {
    margin-top: 70px;
  }

  .lager-promo {
    padding: 120px 0;
  }

  .lager-promo__text {
    font-size: 30px;
    line-height: 41px;
    max-width: 387px;
  }

  .reviews .swiper-button-next,
.reviews .swiper-button-prev {
    display: none;
  }

  .reviews .swiper-pagination {
    display: none;
  }

  .reviews .swiper {
    margin: 0;
    padding: 0;
    margin-right: -15px;
  }

  .reviews__block p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }

  .reviews__block span:last-child {
    margin-top: 30px;
  }

  .reviews__block {
    padding: 30px 20px;
    min-height: inherit;
  }

  .form-sec .form-block__input {
    width: 100%;
    height: 60px;
  }
  .form-sec .form-block__btn {
    width: 100%;
  }
  .form-sec .form-block {
    row-gap: 10px;
  }

  .form-block__text {
    margin-top: 5px;
  }

  .price__wrapper {
    margin-top: 30px;
  }

  .price-v2 .price__block--suma {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  .price-v2 .price__block-wrap {
    height: 255px;
    margin-bottom: 0;
  }
  .price-v2 .price__block:hover .price__block--suma {
    height: 0;
    margin: 0;
  }
  .price-v2 .price__block--info-icon div span {
    font-size: 14px;
    line-height: 19px;
    white-space: nowrap;
  }

  .discount__title {
    text-align: center;
  }

  .discount {
    padding: 45px 0;
  }

  .game-sec .program-page__bottom--title {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }

  .game-sec .program-page__bottom p {
    text-align: center;
  }

  .game-sec .program-page__title {
    font-size: 30px;
    line-height: 41px;
  }

  .program-page__text p {
    max-width: 265px;
    margin-top: 7px;
  }

  .program-page__bottom {
    margin-top: 60px;
  }

  .fox-coin-sec__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #221111;
  }

  .fox-coin-sec__wrapper {
    margin-top: 25px;
  }

  .fox-coin-baner {
    padding: 100px 0;
  }

  .form-sec .form-block__check {
    order: 3;
  }

  .form-sec .form-block__btn {
    order: 4;
  }
}
@media (max-width: 760px) {
  .teachers .swiper-button-next,
.teachers .swiper-button-prev {
    display: none;
  }

  .teachers .swiper {
    margin: 0;
  }

  .footer__logo {
    width: 100%;
  }

  .footer__bottom {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__bottom div {
    margin: 30px 0 0 0;
  }

  .what-happen__wrapper {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .what-happen__column {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .card-prod {
    width: 100% !important;
  }

  .card-prod__img img {
    width: 100%;
  }

  .what-lager__bottom {
    flex-direction: column;
  }

  .what-lager__img {
    width: 100%;
    margin-bottom: 15px;
    min-height: inherit;
    height: inherit;
  }

  .what-lager__num {
    width: 100%;
    min-height: inherit;
    padding: 20px;
  }

  .price-v2 .price__block-wrap {
    width: 47%;
  }

  .accordion__item--title {
    padding: 8px 57px 8px 13px;
    font-size: 16px;
    line-height: 22px;
  }

  .accordion__item--descr {
    font-size: 14px;
    line-height: 19px;
    padding: 0 57px 0 13px;
  }

  .accordion__item--title::before {
    transform: scale(0.7);
    right: 24px;
  }

  .accordion__item.open .accordion__item--title::before {
    transform: rotateX(180deg) scale(0.7);
  }

  .discount {
    padding: 35px 0;
  }

  .accordion {
    margin-top: 15px;
  }

  .accordion__item.open .accordion__item--title {
    padding-bottom: 7px;
  }

  .accordion__item.open {
    padding-bottom: 15px;
  }

  .what-happen__wrapper {
    margin-top: 20px;
  }
}
@media (max-width: 670px) {
  .advantages__column {
    width: 46%;
  }

  .teachers__wrapper {
    margin-top: 20px;
  }

  .teachers .swiper {
    margin-right: -15px;
  }

  .form-baner-bg {
    display: none;
  }

  .form-baner {
    background: #5C9EEA;
  }
  .form-baner .form-baner__title {
    color: #fff;
    text-align: center;
  }
  .form-baner .form-baner__subtitle {
    color: #fff;
    text-align: center;
  }
  .form-baner .form-baner__wrapper {
    align-items: center;
  }
  .form-baner .form-block__text {
    text-align: center;
    color: #fff;
  }
  .form-baner .form-block__text a {
    color: #fff;
  }

  .price__block-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  .price__block-wrap:last-child {
    margin-bottom: 0;
  }

  .gallery__wrapper .big-img {
    width: 100%;
  }

  .gallery__wrapper .small-img {
    width: 48%;
  }

  .gallery__link-more {
    position: absolute;
    bottom: 35px;
  }

  .gallery {
    position: relative;
    padding: 35px 0;
    padding-bottom: 75px;
  }

  .gallery__top {
    justify-content: center;
  }

  .textbooks__wrapper {
    flex-direction: column-reverse;
  }

  .textbooks__img {
    height: inherit;
  }
  .textbooks__img img {
    width: 100%;
  }

  .textbooks__text {
    max-width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 20px;
  }

  .textbooks__title {
    position: absolute;
    text-align: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .textbooks {
    position: relative;
    padding-top: 80px;
  }

  .contact__wrapper {
    margin-top: 30px;
  }
  .contact__wrapper .contact__map:first-child {
    display: none;
  }

  .contact__phone {
    text-align: center;
  }

  .contact__quest {
    text-align: center;
  }

  .contact__mail {
    text-align: center;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__info {
    margin-top: 30px;
  }

  .footer__menu {
    width: auto;
    max-width: 350px;
  }

  .program-info__icon-item {
    width: 50%;
    display: flex;
    justify-content: center;
  }

  .program-info__icon-wrap {
    padding: 25px 15px;
  }

  .fox-coin-sec__wrapper {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 20px;
  }

  .fox-coin-sec__block {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 7;
    grid-row-end: 10;
    padding: 30px 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .fox-coin-sec__title {
    font-size: 18px;
    line-height: 25px;
  }

  .fox-coin-sec__item--title {
    font-size: 16px;
    line-height: 22px;
  }

  .fox-coin-sec__item--descr {
    font-size: 16px;
    line-height: 22px;
  }

  .fox-coin-baner__descr {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }

  .fox-coin-baner {
    padding: 60px 0;
  }

  .modal {
    padding: 70px 20px 50px 20px;
    width: 290px;
    min-width: 290px;
  }
  .modal .form-block__input {
    height: 40px;
  }
  .modal .form-block__input input {
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
  }
  .modal .form-block__input input::-moz-placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .modal .form-block__input input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .modal .form-block__input input::placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .modal .form-block__btn {
    height: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .modal__title {
    font-size: 24px;
    line-height: 33px;
    max-width: 220px;
  }

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

  .modal .form-block__text {
    margin-top: 10px;
  }

  .modal__closed {
    right: 30px;
    top: 30px;
  }

  .form-baner .form-block__input input {
    border: none;
  }

  .form-block__check label {
    font-size: 10px;
  }

  .form-baner .form-block__check input {
    border: 1.5px solid #fff;
  }
  .form-baner .form-block__check .checkbox:checked {
    background-color: #fff;
  }
  .form-baner .form-block__check .checkbox::before {
    content: url("../img/check.svg");
  }
  .form-baner .form-block__check label {
    color: #fff;
  }
  .form-baner .form-block__check label a {
    color: #fff;
  }
}
@media (max-width: 630px) {
  .program-page__wrapper {
    flex-direction: column-reverse;
  }

  .program-page__img {
    width: 100%;
    margin-right: 0;
    min-height: inherit;
    border-radius: 0;
  }
  .program-page__img img {
    border-radius: 0;
  }

  .program-page__title-mob {
    font-size: 34px;
    text-align: center;
    line-height: 33px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
  }

  .program-page {
    padding-top: 30px;
  }

  .program-page__title {
    display: none;
  }

  .program-page__text {
    width: 100%;
    margin-right: 0;
    padding: 15px 0;
  }

  .program-page__bottom p {
    font-size: 16px;
    line-height: 22px;
  }

  .program-page__bottom {
    margin-top: 15px;
  }

  .lager-promo {
    padding: 20px 0 290px 0;
  }

  .game-sec .program-page__bottom--title {
    font-size: 18px;
    line-height: 25px;
  }

  .game-sec .program-page__bottom p {
    font-size: 16px;
    line-height: 22px;
  }

  .game-sec .program-page__title-mob {
    font-size: 24px;
    line-height: 33px;
  }
  .game-sec .program-page__text p {
    max-width: 100%;
    text-align: center;
  }

  .promo__letter-one {
    transform: scale(0.6);
  }

  .promo__letter-three {
    transform: scale(0.6);
  }

  .promo__letter-two {
    transform: scale(0.5);
  }

  .promo__title {
    font-size: 28px;
    line-height: 32px;
    max-width: 290px;
  }

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

  .promo__btn {
    width: 200px;
    height: 40px;
    font-size: 16px;
    margin-top: 30px;
  }
  .promo__btn span {
    display: none;
  }

  .promo {
    padding: 105px 0 175px 0;
  }

  .promo__letter-one {
    left: 33%;
    top: 112%;
    transform: scale(0.4);
  }

  .promo__letter-three {
    transform: scale(0.5);
    left: 1%;
    top: 111%;
  }

  .promo__letter-two {
    transform: scale(0.35);
    left: 31%;
    top: -38%;
  }
}
@media (max-width: 580px) {
  .burger {
    margin-left: 20px;
  }

  .logo {
    width: 148px;
    height: 36px;
  }

  .header {
    padding: 12px 0;
  }

  .header .tel-link span {
    display: none;
  }
  .header .tel-link::before {
    top: -11px;
  }

  .title {
    font-size: 24px;
    line-height: 33px;
  }

  .about__descd {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }
  .about__descd span {
    margin-top: 0;
  }

  .card-prod {
    width: 240px;
    height: 340px;
  }

  .card-prod__title {
    font-size: 20px;
    line-height: 27px;
  }

  .card-prod__content {
    padding: 20px;
  }

  .card-prod:hover .card-prod__content {
    height: 215px;
  }

  .card-prod__info div span {
    font-size: 12px;
    line-height: 16px;
  }

  .programm .swiper {
    padding-bottom: 30px;
  }

  .card-prod__img {
    height: 150px;
  }

  .card-prod__btn {
    height: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .programm__link {
    top: 95%;
  }

  .programm__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }

  .programm__wrap {
    margin-top: 20px;
  }

  .teachers__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }

  .price__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }

  .price__wrapper {
    margin-top: 30px;
  }

  .contact__wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .contact__map {
    min-width: 70vw;
    margin-right: 10px;
  }

  .contact__map-text {
    text-align: left;
    margin-top: 5px;
    font-size: 12px;
    line-height: 16px;
  }

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

  .contact__phone a {
    font-size: 16px;
    line-height: 22px;
  }

  .contact__mail {
    font-size: 16px;
    line-height: 22px;
  }
  .contact__mail a {
    font-size: 16px;
    line-height: 22px;
  }

  .footer__bottom div {
    max-width: 200px;
  }
  .footer__bottom div span {
    padding-top: 14px;
  }

  .footer {
    padding: 30px 0;
  }

  .what-lager__text li {
    font-size: 16px;
    line-height: 22px;
  }

  .what-lager__text p {
    font-size: 16px;
    line-height: 22px;
  }

  .prog-lager__item--icon {
    min-width: 65px;
    min-height: 65px;
    width: 65px;
    height: 65px;
    padding: 15px;
  }

  .prog-lager__item--list {
    font-size: 12px;
    line-height: 16px;
  }

  .prog-lager__wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .prog-lager__text {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .prog-lager__text {
    font-size: 14px;
    line-height: 19px;
    padding: 20px;
  }

  .reviews__block p {
    font-size: 14px;
    line-height: 19px;
  }

  .reviews__block span {
    font-size: 16px;
    line-height: 22px;
  }

  .reviews__block {
    padding: 30px 20px;
    min-height: inherit;
  }

  .form-sec__subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .form-block__input {
    height: 40px;
  }
  .form-block__input input {
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
  }
  .form-block__input input::-moz-placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .form-block__input input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .form-block__input input::placeholder {
    font-size: 16px;
    line-height: 22px;
  }

  .form-block__btn {
    height: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .form-sec__subtitle {
    margin-top: 10px;
  }

  .price-v2 .price__block-wrap {
    width: 100%;
  }

  .price-v2 .price__wrapper {
    row-gap: 15px;
  }

  .price__block--info-icon {
    max-width: 225px;
    margin: 20px auto 0 auto;
  }

  .nutrition__dsecr p {
    font-size: 16px;
    line-height: 22px;
  }

  .nutrition__menu p {
    font-size: 16px;
    line-height: 22px;
  }

  .nutrition__img {
    margin: 0 0 15px 0;
  }

  .test__wrapper {
    margin-top: 10px;
  }

  .test__text p {
    font-size: 16px;
    line-height: 22px;
  }

  .test__form {
    margin-top: 40px;
  }

  .promo__title {
    width: 50%;
  }

  .promo__subtitle {
    width: 45%;
  }

  .contact-v2 .contact__wrapper {
    flex-wrap: wrap;
    overflow: visible;
  }
  .contact-v2 .contact__map {
    width: 100%;
    min-width: inherit;
    margin-right: 0;
  }
}
@media (max-width: 530px) {
  .teachers__slide {
    width: 123px;
  }

  .teachers__slide--img {
    height: 123px;
  }

  .teachers__slide--name {
    font-size: 18px;
    line-height: 25px;
    margin-top: 5px;
  }

  .teachers__slide--descr {
    font-size: 14px;
    line-height: 19px;
  }

  .lager-promo__text {
    font-size: 22px;
    line-height: 30px;
    max-width: 290px;
  }
}
@media (max-width: 480px) {
  .advantages__column {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .advantages__column--descr {
    font-size: 12px;
    line-height: 16px;
    margin-top: 0;
    margin-left: 15px;
    text-align: left;
  }

  .advantages__column--icon {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
  }

  .advantages__wrap {
    row-gap: 15px;
    margin-top: 15px;
  }

  .baner {
    padding: 60px 0 30px 0;
  }

  .baner__title {
    text-align: center;
  }

  .baner__descr {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    max-width: inherit;
    margin: 14px auto 0 auto;
  }

  .baner__btn {
    width: 200px;
    height: 40px;
    font-size: 16px;
    line-height: 22px;
    margin: 70px auto 0 auto;
  }

  .form-baner .form-block__input {
    width: 200px;
    height: 40px;
    margin-bottom: 10px;
  }

  .form-baner .form-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .form-baner .form-block__btn {
    width: 200px;
    height: 40px;
    font-size: 16px;
  }

  .form-baner .form-baner__subtitle {
    font-size: 14px;
    line-height: 19px;
  }

  .form-baner {
    padding: 30px 20px;
  }

  .form-baner .form-block__text {
    margin-top: 10px;
  }

  .form-block__input input {
    font-size: 14px;
    line-height: 19px;
    padding: 0 10px;
  }

  .price__block--title br {
    display: none;
  }

  .price__block--suma {
    margin-top: 15px;
  }

  .price__block {
    padding: 20px 20px 0 20px;
  }

  .price__block:hover .price__block--btn {
    height: 40px;
    margin-top: 10px;
  }

  .price__block:hover {
    padding-bottom: 25px;
  }

  .price__block-wrap {
    height: 170px;
  }

  .contact__map-img {
    height: 150px;
  }

  .price-v2 .price__block-wrap {
    height: 235px;
  }

  .price__wrapper {
    margin-top: 15px;
  }

  .form-baner .form-block__check {
    width: 200px;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .form-baner .form-block__check label a {
    display: block;
  }

  .form-block__input {
    margin-bottom: 10px;
  }

  .form-sec .form-block__input {
    height: 40px;
  }
}




