@font-face {
  font-family: "Roboto Regular";
  src: local("Roboto"), url("./assets/fonts/Roboto-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Medium";
  src: local("Roboto"), url("./assets/fonts/Roboto-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Bold";
  src: local("Roboto"), url("./assets/fonts/Roboto-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 90;
  -webkit-box-shadow: 0px -41px 55px 0px black;
  box-shadow: 0px -41px 55px 0px black;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: bold;
}

b {
  font-weight: bold;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 20px;
  z-index: 5;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__item {
  padding: 0 15px;
  list-style: none;
  position: relative;
}

.header__link {
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.header__link:hover {
  border-bottom: 1px solid #28a3dd;
  color: #28a3dd;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
}

.header__contacts {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  text-align: right;
}

.dropdown {
  position: absolute;
  top: 200%;
  left: 50%;
  height: 0;
  width: 100%;
  min-width: 120px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0px 18px 55px -27px #000000;
  box-shadow: 0px 18px 55px -27px #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
}

.dropdown__item {
  width: 100%;
  padding: 15px 10px;
  font-weight: 400;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.dropdown__item:hover {
  background-color: #e0dbdb;
}

.dropdown_active {
  height: 270px;
}

.dropdown-btn {
  position: relative;
}

.phone {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  text-decoration: none;
}

.header__contacts_mobile {
  display: none;
}

a[href^="tel:"]:hover {
  text-decoration: underline;
}

.burger {
  width: 30px;
  height: 20px;
  background: url("../assets/img/burger.svg") no-repeat center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.burger:hover {
  opacity: 0.5;
}

.title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.hide {
  top: -110px;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: -830px;
  width: 22%;
  height: 100%;
  border-right: 1px solid #dcd8d8;
  background-color: #fff;
  -webkit-box-shadow: -43px 0px 104px 0px rgba(0, 0, 0, 0.81);
  box-shadow: -43px 0px 104px 0px rgba(0, 0, 0, 0.81);
  z-index: 99;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.burger-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  padding-top: 120px;
}

.burger-menu__list {
  width: 50%;
}

.burger-menu__item {
  position: relative;
  padding-bottom: 25px;
}

.burger-menu__item .dropdown {
  top: 50%;
}

.burger-menu__link {
  font-size: 20px;
}

.burger-menu__link:hover {
  border-bottom: none;
}

.burger-menu__close {
  width: 30px;
  height: 30px;
  float: right;
  margin: 30px 30px 0 0;
  background: url("../assets/img/close.png") no-repeat center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.burger-menu_active {
  left: 0;
}

section {
  width: 100%;
}

.callback-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9;
}

.callback-form__label {
  padding-bottom: 10px;
  font-weight: 400;
}

.callback-form__area {
  padding: 10px;
  border-radius: 15px;
  resize: none;
}

.callback-form__input,
.callback-form__area {
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.callback-form__input {
  max-width: 410px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #000;
}

.callback-form__input::-webkit-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.callback-form__input:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.callback-form__input::-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.callback-form__input::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.main {
  width: 100%;
  padding-top: 85px;
  background: no-repeat center/cover url("../assets/img/2.png");
}

.main__title {
  padding-bottom: 70px;
  max-width: 445px;
  font-size: 80px;
  font-weight: 700;
  color: #ffffff;
}

.main__content {
  position: relative;
  padding-bottom: 150px;
}

.main-form {
  position: relative;
  font-family: "Roboto Medium", sans-serif;
  padding: 0;
  font-size: 14px;
  max-width: 355px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
}

.main-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px;
}

.main-form__title {
  padding-bottom: 30px;
  font-size: 16px;
  text-align: center;
  color: #000;
}

.main-form__input {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  outline: none;
}

.main-form__input::-webkit-input-placeholder {
  font-family: "Roboto Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.main-form__input:-ms-input-placeholder {
  font-family: "Roboto Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.main-form__input::-ms-input-placeholder {
  font-family: "Roboto Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.main-form__input::placeholder {
  font-family: "Roboto Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.main-form__btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-btn {
  padding: 15px 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 300px;
  width: 100%;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  background: linear-gradient(86.59deg, #ff8c22 6.64%, #ffd600 105.96%);
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9;
}

.main-btn:hover {
  -webkit-box-shadow: 0px 5px 19px -6px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 5px 19px -6px rgba(0, 0, 0, 0.6);
}

.main-btn_blue {
  background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
}

.main-btn_green {
  background: linear-gradient(86.59deg, #17db2a 6.64%, #60ff70 105.96%);
}

.filial-choice {
  position: relative;
  margin-bottom: 25px;
  cursor: pointer;
  color: #000;
}

.filial-choice:hover {
  text-decoration: underline;
}

.filial-choice img {
  vertical-align: middle;
  padding-left: 15px;
}

.agree {
  color: #000;
}

.speech-bubble {
  position: relative;
  width: 145px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #28a3dd;
  border-radius: 10px;
  font-size: 12px;
  line-height: 12px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transform-origin: 50% 51%;
  z-index: 1;
}

.speech-bubble:before,
.speech-bubble:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
}

.speech-bubble:before {
  right: 21px;
  bottom: -17px;
  border: 8px solid;
  border-color: #28a3dd transparent transparent #28a3dd;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.speech-bubble:after {
  right: 21px;
  bottom: -12px;
  border: 7px solid;
  border-color: #fff transparent transparent #fff;
}

.gift-wrapper {
  display: none;
  position: absolute;
  bottom: 20px;
  right: 0;
  cursor: pointer;
}

.gift-wrapper:nth-child(2) {
  left: -180px;
  bottom: 0;
  right: auto;
}

.gift-wrapper:nth-child(2) .speech-bubble {
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

.gift-wrapper:nth-child(2) .gift {
  margin-left: 15px;
}

.gift {
  position: relative;
  bottom: 10px;
  width: 80px;
  height: 80px;
  margin-left: 30px;
  border-radius: 50%;
  background: url("../assets/img/gift.png") no-repeat center #28a3dd;
  z-index: 2;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-animation: giftRotate 0.7s linear infinite alternate;
  animation: giftRotate 0.7s linear infinite alternate;
}

@-webkit-keyframes bubbleRotate {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes bubbleRotate {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@-webkit-keyframes giftRotate {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes giftRotate {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

.stemlab__messengers_telegram_animation {
	position: fixed;
	top: 90vh;
	left: 30px;
	width: 40px;
	z-index: 100;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}

.stemlab__messengers_telegram_animation img {
	width: 100%;
}

.stemlab__messengers_telegram_animation::before {
	content: "";
	border-radius: 90px;
	min-width: calc(50px + 5px);
	min-height: calc(50px + 5px);
	border: 4px solid #54b5ed;
	box-shadow: 0 0 60px rgb(0 95 255 / 64%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.3s ease-in-out 0s;
}

.stemlab__messengers_telegram_animation:hover,
.stemlab__messengers_telegram_animation:focus {
	color: #313133;
	transform: translateY(-6px);
}

.stemlab__messengers_telegram_animation:hover::before,
.stemlab__messengers_telegram_animation:focus::before {
	opacity: 1;
}

.stemlab__messengers_telegram_animation::after {
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 4px solid #54b5ed;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ring 1.5s infinite;
}

.stemlab__messengers_telegram_animation:hover::after,
.stemlab__messengers_telegram_animation:focus::after {
	animation: none;
	display: none;
}

@keyframes ring {
	0% {
		width: 30px;
		height: 30px;
		opacity: 1;
	}
	100% {
		width: 80px;
		height: 80px;
		opacity: 0;
	}
}

.courses {
  width: 100%;
  padding-top: 40px;
}

.courses__img {
  width: 100%;
}

.courses__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.courses__description_pic {
  margin-top: 40px;
}

.courses__description_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 18.75px;
  font-style: normal;
  margin: 40px 0 45px 0;
}

.courses__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
}

.courses__item-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 290px;
}

.courses__item_left-block {
  position: relative;
  -ms-flex-preferred-size: 37%;
  flex-basis: 37%;
}

.courses__item_right-block {
  position: relative;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-top: 100px;
}

.courses__item_right-block .main-btn {
  margin-top: 30px;
}

.courses__title {
  display: inline-block;
  max-width: 100%;
  padding: 8px 60px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c696dd;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
}

.courses__title_orange {
  border: 1px solid #22d7ff;
}

.courses__title_green {
  border: 1px solid #c91782;
}

/* .courses__title_blue {
  border: 1px solid #c91782;
} */

.courses__subtitle {
  display: inline-block;
  max-width: 210px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #c696dd;
}

.courses__subtitle_orange {
  color: #ff8c22;
}

.courses__subtitle_green {
  color: #c91782;
}

/* .courses__subtitle_blue {
  color: #28a3dd;
} */

.courses__descr {
  padding-bottom: 25px;
}

.courses__accordion {
  margin-bottom: 55px;
  max-width: 120px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.courses__accordion:hover {
  opacity: 0.5;
}

.courses__accordion > svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  padding-left: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.courses__accordion_active {
  color: #28a3dd;
}

.courses__accordion_active > svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.courses__accordion_active > svg > path {
  fill: #28a3dd;
}

.courses__full-description {
  max-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: #cbd3d7;
  -webkit-transition: max-height 0.6s ease-in-out;
  transition: max-height 0.6s ease-in-out;
  z-index: 9;
}

.courses__full-description-wrapper {
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.courses__full-description-title {
  padding-bottom: 40px;
}

.courses__full-description-item {
  margin-bottom: 30px;
  list-style: circle;
  vertical-align: top;
}

.courses__full-description-item::marker {
  font-size: 20px;
  color: #28a3dd;
  vertical-align: top;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.features {
  padding-top: 100px;
  padding-bottom: 200px;
  height: 100%;
  width: 100%;
  background: url("../assets/img/features-bg.png") no-repeat center top 450px;
  /* background-position: 0 200px 0 !important; */
  overflow-x: hidden;
}

.features__title {
  position: relative;
  display: block;
  width: 370px;
  height: 370px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 150px 76px;
  border-radius: 50%;
  text-align: right;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  background-color: #ffd600;
  z-index: 3;
}

.features__pseudo {
  position: relative;
  z-index: 1;
}

.features__pseudo._active::before {
  -webkit-animation: circle 3s ease-in-out infinite alternate;
  animation: circle 3s ease-in-out infinite alternate;
}

.features__pseudo._active::after {
  -webkit-animation: circle 3s ease-in-out infinite alternate;
  animation: circle 3s ease-in-out infinite alternate;
}

.features__pseudo::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 395px;
  height: 395px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 150px 76px;
  border-radius: 50%;
  background-color: #f8dc52;
  -webkit-transform-origin: 45% 50%;
  transform-origin: 45% 50%;
  z-index: 2;
}

.features__pseudo::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 415px;
  height: 415px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 150px 76px;
  border-radius: 50%;
  background-color: #fae166;
  z-index: 1;
  -webkit-transform-origin: 45% 50%;
  transform-origin: 45% 50%;
}

.features__img {
  max-width: 120px;
  padding: 30px;
}

.features__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.features__row_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 200px;
}

.features__row_title .plane {
  position: absolute;
  top: 40%;
  bottom: 0;
  right: 40%;
  width: 160px;
  height: 140px;
}

.features__text {
  max-width: 370px;
}

.features__list {
  padding-left: 80px;
}

.features__item:nth-child(2) {
  padding-left: 40px;
}

.features__item:nth-child(3) {
  padding-right: 40px;
  padding-bottom: 70px;
}

.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: -80px;
  padding-right: 200px;
}

.align-right.first-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  padding-right: 150px;
  /* padding-top: 50px; */
}

.features__item.last-item {
  margin-top: 200px;
}

.align-right .plane {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 130px;
  height: 105px;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin-top: 100px; */
}

.center .plane {
  position: absolute;
  bottom: -10px;
  right: -50%;
  width: 240px;
  height: 120px;
}

.center .gift-wrapper {
  position: absolute;
  bottom: -180px;
  left: 20%;
  right: auto;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.description {
  background-color: #c5a9dc;
}

.description > .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.description__video {
  position: relative;
  width: 800px;
  height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
}

.description__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  padding-bottom: 110px;
}

.description__content > .main-btn {
  position: absolute;
  bottom: -15px;
  right: 0;
}

.description__title {
  padding-top: 80px;
  padding-bottom: 35px;
  color: #fff;
}

.description__text {
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 30px;
}

.video__container {
  position: absolute;
  top: -15%;
  left: -25%;
}

.video__wrapper {
  border-radius: 50%;
  overflow: hidden;
}

#play-pause,
#full-screen,
.full-screen {
  position: absolute;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#play-pause:hover,
#full-screen:hover,
.full-screen:hover {
  background-color: #fff;
}

#play-pause {
  bottom: 18%;
  right: -30px;
  width: 150px;
  height: 150px;
  outline: none;
  border: 1px solid #17db2a;
  border-radius: 50%;
  background: url("../assets/img/play.png") no-repeat center
    rgba(255, 255, 255, 0.8);
}

#full-screen {
  top: 14%;
  right: 7%;
  width: 70px;
  height: 70px;
  border: 1px solid #17db2a;
}

#full-screen > svg path {
  fill: #17db2a;
}

.motivation {
  padding-top: 180px;
  margin-top: 250px;
}

.motivation__title {
  padding-bottom: 60px;
  text-align: center;
}

.motivation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  padding-bottom: 80px;
}

.world_explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 1000px;
  overflow: hidden;
  background: url("../assets/img/world_explore.png") no-repeat center/contain;
}

/* .iceberg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 1185px;
  overflow: hidden;
  background: url("../assets/img/iceberg.png") no-repeat center/contain;
} */

/* .iceberg__img {
  height: 100%;
  margin: 0 auto;
} */

.teachers {
  padding-bottom: 140px;
}

.teachers__title {
  text-align: center;
  color: #fff;
  z-index: 9;
  background-color: #ffd600;
}

.teachers__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 350px;
  width: 490px;
  background: url("../assets/img/teachers-title.png") no-repeat center;
}

.teachers > .container {
  position: relative;
  background: url("../assets/img/teachers-shape.png") no-repeat 73px -100px;
}

.teachers > .container .gift-wrapper {
  top: 0;
  bottom: auto;
  right: 100px;
}

.teachers__slider-wrapper {
  width: 50%;
}

.teachers__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 470px;
}

.teachers__slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #989797;
  position: absolute;
  bottom: -80px;
  right: 400px;
  z-index: 9;
}

.teachers__slider .glide__slides {
  height: 473px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: visible;
}

.teachers__slider .glide-controls {
  width: 35px;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.teachers__slider .glide-controls:first-child {
  background: url("../assets/img/slider-arrow-left.svg") no-repeat center;
}

.teachers__slider .glide-controls:last-child {
  background: url("../assets/img/slider-arrow-right.svg") no-repeat center;
}

.slide__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /* background-color: #ff8c22; */
}

.slide__item_active {
  width: 285px !important;
  background-color: #ffd600;
}

.slide__item_active img {
  width: 100%;
  background-color: #ffd600;
}

.slide__img {
  border-radius: 10px;
  width: 135px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #ff8c22;
}

.slide__content {
  display: none;
  width: 350px;
  padding-left: 120px;
}

.slide__title {
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.slide__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
}

.slide__text img {
  position: absolute;
  left: -60px;
  top: 0;
}

.slide__content_active {
  display: block;
}

/* .open-door {
  padding-top: 140px;
  padding-bottom: 300px;
}

.open-door__title {
  text-align: center;
  padding-bottom: 120px;
}

.open-door__content {
  max-width: 285px;
}

.open-door__text {
  padding-bottom: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.open-door .main-btn {
  display: block;
} */

.come_and_try {
  background: url("../assets/img/come_try_1.png") center center/contain no-repeat;
  height: 4350px;
}
.come_and_try.title {
  background: no-repeat top url("../assets/img/red_circules.png");
  height: 90px;
  text-align: center;
  padding-top: 100px;
}

.open-doors {
  margin-top: 200px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.open-doors__title {
  margin-left: 50px;
}

.open-doors__title_1 {
  font-weight: 700;
  font-size: 128px;
  line-height: 150px;
  text-align: start;
  text-transform: uppercase;
  color: #4B1D96;
}

.open-doors__title_2 {
  font-weight: 700;
  font-size: 90px;
  line-height: 105px;
  text-align: start;
  text-transform: uppercase;
  color: #4B1D96;
}

.open-doors__title_3 {
  font-weight: 700;
  font-size: 100px;
  line-height: 117px;
  text-align: start;
  text-transform: uppercase;
  color: #4B1D96;
}

.open-doors__subtitle {
  margin-top: 25px;
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  text-align: start;
  text-transform: lowercase;
  color: #961D57;
}

.open-doors__text {
  position: relative;
  width: 386px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  z-index: 20;
}

.open-doors__btn {
  position: relative;
  margin-top: 55px;
  z-index: 20;
}

.open-doors__bg {
  position: absolute;
  top: -108%;
  right: 0%;
  z-index: 1;
}

.open-doors__bg img {
  position: relative;
  z-index: 1;
}

.open-doors__bg_mob {
  display: none;
}

.open-doors__mob__title {
  display: none;
}

.tariff__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.tariff {
  width: 35%;
  height: 430px;
  width: 450px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid rgba(196, 196, 196, 0.7);
  opacity: 0.8;
  margin-right: 40px;
  padding: 20px 15px;
  position: relative;
}

.tariff.left {
  margin-top: 7%;
}

.tariff.right {
  margin-top: 25%;
}

.tariff_name {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 30px;
}

.tariff_picture {
  height: 187px;
  width: 286px;
  position: absolute;
  top: -80px;
  right: -150px;
}

.tariff__description {
  display: flex;
  padding: 15px 0;
  align-items: center;
}
.tariff__description_img {
  width: 15%;
}

.tariff__description_text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  width: 75%;
}

.tariff.left .main-btn {
  position: relative;
  bottom: -60px;
  right: -75px;
}

.tariff.right .main-btn {
  position: relative;
  bottom: -60px;
  right: -75px;
}

.moments {
  margin-top: 100px;
  padding-bottom: 180px;
}

.moments__title {
  padding-bottom: 75px;
}

.moments .gift-wrapper {
  left: 100px;
  bottom: -150px;
  right: auto;
  -webkit-transform: rotateZ(349deg);
  transform: rotateZ(349deg);
}

.grid-slide {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: (minmax(150px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid-slide__item {
  position: relative;
  padding: 0px 0px 85% 0px;
}

.grid-slide__item_big {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-slide__item_long {
  grid-row: span 2;
}

.grid-slide__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.grid-glide__slides {
  padding-bottom: 30px;
}

.grid-glide__arrow {
  width: 35px;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.grid-glide__arrow:first-child {
  background: url("../assets/img/slider-arrow-left.svg") no-repeat center;
}

.grid-glide__arrow:last-child {
  background: url("../assets/img/slider-arrow-right.svg") no-repeat center;
}

.grid-glide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #989797;
}

.price__title {
  width: 300px;
  margin: auto;
  padding: 17px 38px;
  margin-bottom: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: url("../assets/img/dashed-frame.png") no-repeat center/contain;
}

.price__wrapper {
  padding: 50px;
  border-radius: 10px;
  background-color: #ffd600;
}

.price__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: minmax(65px, auto) auto;
  -ms-grid-columns: 1fr;
  grid-template: minmax(65px, auto) auto/1fr;
  grid-template-areas: "header" "main";
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
}

.price__grid .main-btn {
  position: absolute;
  bottom: -70px;
  right: 0;
}

.price__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  grid-auto-flow: column;
  -ms-grid-columns: (25%) [1];
  grid-template-columns: repeat(1, 25%);
  text-align: center;
}

.price__header_mobile {
  display: none;
}

.price__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr;
  grid-template: 1fr / 1fr;
}

.price__full {
  padding: 0 0 15px 15px;
}

.price__full .dropdown-btn {
  width: 200px;
}

.price__row {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: (25%) [1];
  grid-template-columns: repeat(1, 25%);
  text-align: left;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.price__row:hover {
  border-bottom: 2px solid #000;
}

.price__row .week-price,
.price__row .weekend-price {
  text-align: center;
}

.price__img {
  position: absolute;
  left: -105px;
  top: -40px;
}

.price__fillial-btn {
  padding-bottom: 40px;
  cursor: pointer;
}

.price__fillial-btn img {
  padding-left: 10px;
  vertical-align: middle;
}

.faq {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding-top: 250px;
  background: url(../assets/img/faq-bg.png) no-repeat top 0px left / contain;
}

.faq__title {
  padding-bottom: 60px;
}

.faq__img {
  padding-right: 20px;
  vertical-align: middle;
}

.faq__wrapper {
  max-width: 50%;
  padding-bottom: 280px;
}

.faq__list {
  padding-left: 50px;
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  vertical-align: middle;
  padding-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}

.faq__item:hover {
  color: #fff;
}

.faq__item:hover::before {
  border: 1px solid #fff;
}

.faq__item:hover svg path {
  fill: #fff;
}

.faq__item svg {
  padding-left: 10px;
  vertical-align: middle;
}

.faq__item::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
}

.faq__item_active {
  color: #fff;
}

.faq__item_active::before {
  border: 1px solid #fff;
}

.faq__item_active svg path {
  fill: #fff;
}

.faq__description {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: -500px;
  top: 100%;
  max-width: 430px;
  max-height: 0;
  padding: 30px 35px;
  border-radius: 15px;
  background-color: #f1f1f1;
  color: #000;
  z-index: 9;
  -webkit-transition: max-height 0.4s linear;
  transition: max-height 0.4s linear;
  overflow: hidden;
}

.faq__description_active {
  max-height: 240px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: max-height 0.4s linear;
  transition: max-height 0.4s linear;
}

.faq .gift-wrapper {
  right: 220px;
  left: auto;
  bottom: 100px;
}

.questions {
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 35px;
  height: 420px;
  margin-bottom: 100px;
  background: url("../assets/img/questions-bg.png") no-repeat right
    bottom/contain;
}

.questions > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}

.questions__title {
  position: relative;
  padding-bottom: 70px;
}

.questions__title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -25%;
  height: 95px;
  width: 45px;
  background: url("../assets/img/dashed-arrow.png") no-repeat center;
}

.questions__subtitle {
  position: relative;
  padding-bottom: 70px;
  font-size: 28px;
  font-weight: 400;
}

.questions__subtitle::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -25%;
  height: 95px;
  width: 45px;
  background: url("../assets/img/dashed-arrow.png") no-repeat center;
}

.questions__button {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.questions__button:hover {
  text-decoration: underline;
}

.questions__button-arrow {
  display: none;
  position: absolute;
  right: -80px;
  bottom: 10px;
  width: 86px;
  height: 40px;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  background: url("../assets/img/dashed-arrow2.png") no-repeat center/cover;
}

.questions__form {
  position: absolute;
  right: -300%;
  display: none;
  width: 485px;
  background-color: #fff;
}

.questions__form_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.questions__form .main-btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.locations {
  padding-top: 50px;
  padding-bottom: 180px;
  overflow: hidden;
}

.locations__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 25%;
  height: 500px;
  padding-top: 180px;
}

.locations__wrapper_mobile {
  display: none;
}

.locations__address-item {
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
}

.locations__address-item span,
.locations__address-item a {
  display: block;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  text-decoration: none;
}

.locations__img {
  position: absolute;
  left: -35px;
  top: -20px;
}

.locations__phone:hover {
  text-decoration: underline;
}

.locations__map-wrapper {
  position: absolute;
  right: -30%;
  top: 0;
  width: 1220px;
  padding: 60px 0 0 80px;
  height: 730px;
  border-radius: 50%;
  border: 2px solid #000;
  -webkit-transform: rotate(345deg);
  transform: rotate(345deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
}

.locations__map {
  position: absolute;
  width: 1220px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid #d6d4d4;
  overflow: hidden;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 51% 51%;
}

.full-screen {
  bottom: 180px;
  left: 105px;
  width: 100px;
  height: 100px;
  outline: none;
  border-radius: 50%;
  border: 1px solid #ffd600;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.full-screen > svg path {
  fill: #ffd600;
}

.callback-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.callback-form__row .filial-choice {
  margin-bottom: 5px;
}

.contacts {
  padding-bottom: 50px;
  background: url("../assets/img/contacts-bg.jpg") no-repeat top/contain;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 80px;
}

.contacts__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 460px;
  border: none;
  background-color: #edfaff;
}

.contacts__form .callback-form__input {
  background: transparent;
}

.contacts__form .main-btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contacts__title {
  text-align: center;
  padding-bottom: 25px;
}

.contacts__content {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contacts__label {
  font-weight: 400;
}

.contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 35px;
}

.contacts-phone__title,
.contacts-phone__phone {
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
}

.contacts-phone__phone {
  font-size: 45px;
  text-decoration: none;
}

.contacts-shedule {
  max-width: 50%;
  padding-bottom: 45px;
}

.contacts-shedule span {
  display: block;
  line-height: 19px;
}

.contacts-shedule__title {
  padding-bottom: 15px;
}

.contacts-social__title {
  line-height: 40px;
}

.contacts-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-social__list a {
  text-decoration: none;
}

.contacts-social__item {
  padding-right: 10px;
}

.contacts-social__item:hover {
  opacity: 0.5;
}

footer {
  padding-top: 40px;
  padding-bottom: 55px;
}

.footer__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__link {
  text-decoration: none;
  font-weight: 400;
  line-height: 19px;
  color: #000;
  cursor: pointer;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer-shedule_mobile {
  display: none;
}

.arrow {
  position: fixed;
  right: 80px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: url("../assets/img/arrow-up.png") no-repeat center/contain;
  opacity: 0.7;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 90;
}

.arrow:hover {
  opacity: 1;
}

.scrollbar {
  display: none;
  position: fixed;
  left: 40px;
  top: calc(40% - 15vh);
  height: 70vh;
  width: 2px;
  border-radius: 2px;
  background: black;
}

.scrollball {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: -4px;
  top: 30%;
  position: absolute;
  background: black;
}

.scroll-text {
  position: absolute;
  left: -70px;
  top: -50px;
  width: 200px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.ymaps-2-1-79-copyrights-pane {
  width: 465px !important;
  left: 35% !important;
  bottom: 40px !important;
}

.ymaps-2-1-79-zoom {
  top: -50px;
}

.develop {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #989797;
}

.develop a {
  color: #989797;
  text-decoration: none;
}

@media screen and (min-width: 1920px) {
  .faq {
    background-position: top 0 left 0;
  }
  .questions {
    height: 500px;
    padding-bottom: 43px;
    background-size: 82%;
  }
}

@media screen and (max-width: 1440px) {
  .contacts {
    background-color: #fff;
  }
  .come_and_try{
    background: url("../assets/img/come_try_1.png") center center/cover no-repeat;
  }
  
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .motivation {
    padding-top: 150px;
    padding-bottom: 0;
  }
  .motivation__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 610px;
    margin: 0 auto;
  }
  .arrow {
    right: 20px;
  }
  .description__content {
    width: 100%;
    padding-bottom: 200px;
  }
  .description__video {
    width: 460px;
    height: 460px;
  }
  .video__container {
    top: auto;
    bottom: -260px;
    left: -10%;
  }
  .iceberg {
    height: 800px;
  }
  .slide__item_active {
    width: 285px !important;
  }
  .slide__item_active img {
    width: 100%;
  }
  .slide__img {
    width: 285px !important;
  }
  .teachers__slider-wrapper {
    width: 285px;
  }
  .teachers__slider-controls {
    right: 450px;
  }
  .price__img {
    left: 15px;
  }
  .faq__description {
    right: 0;
  }

  .tariff__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tariff {
    width: 35%;
    height: 400px;
    width: 450px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid rgba(196, 196, 196, 0.7);
    opacity: 0.8;
    margin-right: 40px;
    padding: 20px 15px;
    position: relative;
    margin: 10px 10px;
  }

  .tariff.right {
    margin-top: 15px;
  }

  .tariff.left {
    margin-top: 15px;
  }

  .tariff.left .main-btn {
    bottom: -25px;
  }
  .tariff.right .main-btn {
    bottom: -25px;
  }

  .tariff_picture {
    display: none;
  }

  .come_and_try {
    height: 5000px;
  }

  .open-doors {
    padding-top: 85px;
    height: 1200px;
    margin-top: 50px;
    display: block;
    background: url('../assets/img/translucent-image.png') center center/cover no-repeat;
    /* background: url('../assets/img/open-door-bg-mob.png') center center/cover no-repeat; */
  }

  .open-doors__bg_mob {
    display: block;
  }

  .open-doors__title {
    display: none;
  }
  
  .open-doors__title_1, .open-doors__title_2, .open-doors__title_3, .open-doors__subtitle, .open-doors__bg {
    display: none;
  }
  
  .open-doors__btn {
    margin: 700px auto 0;
  }

  .open-doors__text {
    margin: 85px auto 0;
    width: 60%;
    color: #000000;
    font-weight: 600;
  }

  .open-doors__btn {
    margin: 650px auto 0;
}
  .open-doors__mob__title {
    display: block;
    font-weight: 700;
    font-size: 30px;
    line-height: 19px;
    color: #000000;
    text-align: center;
  }

  .locations__wrapper {
    display: none;
    width: 80%;
    margin: auto;
    height: auto;
  }

  .locations__wrapper_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 100px;
    max-width: 100%;
  }
  .locations__address-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .locations__address-item {
    width: 40%;
  }
  .locations > .container {
    height: 700px;
  }
  .contacts {
    background-color: #af88bd;
  }
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contacts-shedule {
    display: none;
  }
  .contacts__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contacts-social__title {
    display: none;
  }
  .locations__address-list {
    max-width: 600px;
  }
  .locations__address-item {
    margin-left: 40px;
  }
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__column {
    text-align: center;
    padding-bottom: 25px;
  }
  .footer-shedule_mobile {
    display: block;
  }
  .footer-shedule_mobile > .contacts-shedule {
    display: block;
    max-width: 100%;
    padding-bottom: 0;
  }
  .footer-shedule_mobile > .contacts-shedule span {
    font-weight: 400;
    color: #414141;
  }
  .gift-wrapper:nth-child(2) {
    bottom: -100px;
  }
  #play-pause {
    width: 100px;
    height: 100px;
  }
  #full-screen {
    right: 2%;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
    padding: 0 15px;
  }
  .teachers__slider-controls {
    right: 520px;
  }
  .gift-wrapper:nth-child(2) {
    left: -75px;
    right: auto;
  }
  .burger-menu {
    width: 35%;
  }
  .faq {
    background-size: cover;
  }
  .faq__wrapper {
    max-width: 100%;
    padding-bottom: 130px;
  }
  .questions {
    height: 295px;
    margin-bottom: 0;
    background-position: 100px bottom;
  }

  .features {
    padding-bottom: 50px;
  }

  .features.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .features__item {
    margin: 0;
    padding: 0;
  }

  .features__item.first-item {
    margin: 0;
    padding: 0;
  }

  .features__item.last-item {
    margin: 0;
    padding: 0;
  }

  .features__item.center {
    margin: 0;
    padding: 0;
    align-items: flex-start;
  }

  .features__item.align-right {
    justify-content: flex-start;
  }

  .features__item .features__row .features__list {
    display: none;
  }

  .features__item:nth-child(3) {
    margin: 0;
    padding: 0;
  }

  .features__row_title {
    margin-bottom: 50px;
  }

  .locations__map-wrapper {
    width: 1000px;
    height: 650px;
  }
  .locations__map {
    width: 1000px;
    height: 650px;
  }
  .locations__wrapper_mobile {
    width: 100%;
  }
  .faq .gift-wrapper {
    right: 0;
    left: auto;
  }
  .develop {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .open-doors {
    height: 800px;
  }

  .open-doors__btn {
    margin: 350px auto 0;
  }
}

@media screen and (max-width: 720px) {
  .main__content .main__title {
    font-size: 68px;
  }

  .container {
    max-width: 540px;
  }
  .header {
    padding: 10px 0;
  }
  .header__contacts,
  .header__menu {
    display: none;
  }
  .header__contacts_mobile {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    overflow: hidden;
    background: url("../assets/img/phone.svg") no-repeat center;
    font-size: 0;
  }
  .burger-menu_active {
    width: 40%;
  }
  .gift-wrapper:nth-child(2) {
    left: 100px;
    right: auto;
  }
  .courses__item_right-block {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding-top: 0;
    min-width: 195px;
  }
  .courses__item_left-block {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .courses__full-description {
    min-width: 360px;
  }
  .main-btn {
    padding: 10px 10px;
    font-size: 16px;
    max-width: 170px;
  }
  .courses__title {
    font-size: 16px;
  }
  .courses__subtitle,
  .courses__descr {
    font-size: 12px;
    line-height: 16px;
  }
  .features__title {
    width: 177px;
    height: 177px;
    padding: 76px 25px;
    font-size: 20px;
  }
  .features__pseudo::before {
    width: 194px;
    height: 194px;
    padding: 0;
  }
  .features__pseudo::after {
    width: 215px;
    height: 215px;
    padding: 0;
  }
  .description__content > .main-btn {
    bottom: 170px;
  }
  .motivation__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .world_explore {
    height: 450px;
  }

  .iceberg {
    height: 600px;
  }
  .teachers > .container {
    background-size: contain;
    background-position: 0 0;
  }
  .teachers__title {
    font-size: 16px;
  }
  .teachers__wrapper {
    /* height: 250px;
    width: 370px; */
    background-size: 425px;
  }
  .slide-text {
    font-size: 10px;
    line-height: 14px;
  }
  .slide__item,
  .slide__img {
    width: 200px !important;
  }
  .teachers__slider .glide__slides {
    height: auto;
  }
  .slide__text {
    padding-bottom: 20px;
    line-height: 12px;
  }
  .slide__content {
    padding-left: 80px;
  }
  .teachers {
    padding-bottom: 50px;
    background-position: center 660px;
  }
  .teachers__slider-wrapper {
    width: 200px;
  }
  .teachers__slider-controls {
    right: 70%;
    bottom: 110px;
  }
  .open-door {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .open-door__title {
    padding-bottom: 80px;
  }
  .open-door__content {
    position: relative;
    max-width: 100%;
    height: 800px;
  }
  .open-door .main-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .open-doors__text {
    width: 85%;
  }
  .grid-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: (200px) [auto-fit];
    grid-template-columns: repeat(auto-fit, 200px);
  }

  .tariff {
    width: 80%;
    height: auto;
  }

  .tariff__description {
    padding: 5px 0px;
  }
  .tariff__description_img {
    padding-right: 10px;
    width: 15%;
  }

  .tariff__description_text {
    width: 75%;
  }

  .tariff.left .main-btn {
    right: -30%;
    bottom: -40px;
  }
  .tariff.right .main-btn {
    right: -30%;
    bottom: -40px;
  }
  .come_and_try {
    height: 4800px;
  }

  .price__wrapper {
    padding: 20px;
  }
  .price__img {
    width: 80px;
    left: 5px;
  }
  .price__grid {
    font-size: 12px;
  }
  .price__header {
    display: none;
  }
  .price__header_mobile {
    display: -ms-grid;
    display: grid;
  }
  .price__header_mobile-row {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    -ms-grid-columns: (35%) [2];
    grid-template-columns: repeat(2, 35%);
  }
  .price__header_mobile-row:first-child {
    -ms-grid-columns: (70%) [1];
    grid-template-columns: repeat(1, 70%);
  }
  .questions {
    background-position: 40px bottom;
  }
  .questions__wrapper {
    padding-left: 30px;
  }
  .questions__title,
  .questions__subtitle {
    font-size: 14px;
  }
  .questions__title::before,
  .questions__subtitle::before {
    height: 75px;
    background-size: 70%;
    top: 0;
    left: -40px;
  }
  .questions__form {
    width: 350px;
    right: -150%;
  }
  .questions__form .main-btn {
    bottom: -25px;
  }
  .locations {
    padding-bottom: 0;
  }
  .locations__map-wrapper {
    width: 800px;
    height: 550px;
    right: -45%;
  }
  .locations__map {
    width: 800px;
    height: 550px;
  }
  .full-screen {
    left: 60px;
  }
  .motivation__img {
    width: 150px;
    height: 150px;
  }
  .courses__full-description {
    min-width: 340px;
  }
  .row-reverse .courses__full-description {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .courses__full-description {
    -webkit-transform: translateX(-135px);
    transform: translateX(-135px);
  }
}

@media screen and (max-width: 540px) {
  .main__content .main__title {
    font-size: 48px;
  }

  .container {
    max-width: 100%;
  }
  .locations__map-wrapper {
    width: 550px;
    height: 335px;
    right: -45%;
    padding: 30px 0 0 40px;
  }
  .locations__map {
    width: 550px;
    height: 335px;
  }
  .locations > .container {
    height: 500px;
  }
  .courses__full-description {
    -webkit-transform: translateX(-135px);
    transform: translateX(-135px);
  }
  .contacts-phone__title {
    font-size: 20px;
  }
  .contacts-phone__phone {
    font-size: 20px;
  }
  .contacts__form {
    width: 320px;
  }
  .questions {
    height: 180px;
  }
  .questions__form {
    right: -100%;
  }
  .grid-slide {
    -ms-grid-columns: (150px) [auto-fit];
    grid-template-columns: repeat(auto-fit, 150px);
  }
  .teachers__wrapper {
    width: 320px;
    height: 305px;
    background-size: contain;
  }
  .teachers__slider {
    height: 400px;
  }
  .teachers__slider-wrapper {
    width: 130px;
  }
  .slide__item,
  .slide__img {
    width: 130px !important;
  }
  .slide__content {
    padding-left: 65px;
  }
  .slide__title {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .slide__text {
    font-size: 10px;
    font-weight: 500;
  }
  .teachers__slider-controls {
    bottom: 150px;
    right: 70%;
  }
  .motivation {
    padding-bottom: 0;
  }
  .motivation__img {
    width: 120px;
    height: 120px;
  }
  .iceberg {
    height: 400px;
  }
  .locations__address-item {
    font-size: 14px;
  }
  .video__container {
    left: -40%;
  }

  .open-doors__mob__title {
    font-size: 16px;
  }

  .tariff__description_img {
    width: 20%;
    padding-right: 15px;
  }

  .tariff__description_text {
    font-size: 14px;
    width: 80%;
  }

  .courses__description_pic {
    width: auto;
  }

  .courses__description_pic img {
    width: 100%;
  }

  .features__item:nth-child(2) {
    padding-left: 0;
    padding-bottom: 20px;
  }
  .features__item:nth-child(3) {
    padding-bottom: 30px;
  }
  .price__fillial-btn {
    padding-left: 0;
  }
  #play-pause {
    width: 75px;
    height: 75px;
    right: -3%;
  }
  #full-screen {
    width: 50px;
    height: 50px;
  }
  .locations__address-item {
    margin-left: 30px;
  }
  .description__content > .main-btn {
    bottom: 190px;
    right: 25px;
  }
  .features__text {
    font-size: 12px;
  }
  .features__list {
    font-size: 12px;
  }
  .burger-menu_active {
    width: 60%;
  }
  .main__content .gift-wrapper {
    bottom: -20px;
  }
  .gift-wrapper:nth-child(2) {
    right: 0;
    left: auto;
    bottom: 0;
  }
  .faq {
    background-position: top 0px left -321px;
  }
  .courses .gift-wrapper {
    bottom: -130px;
  }
  .teachers > .container > .gift-wrapper {
    top: -50px;
    bottom: auto;
    right: 0;
  }

  .open-doors {
    height: 800px;
  }
  
 
  
  .open-doors__btn {
    margin: 350px auto 0;
  }
  

  @media screen and (max-width: 420px) {
    .tariff.left .main-btn {
    right: -20%;
  }

  .tariff.right .main-btn {
    right: -20%;
  }

  .come_and_try {
    height: 5300px;
}

.open-doors__text {
  width: 300px;
} 

.open-doors__mob__title {
  font-size: 19px;
}


}
/*# sourceMappingURL=main.css.map */
