html {
  scroll-behavior: smooth;
}
@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: 400;
  outline: none;
  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%;
}

.stemlab__messengers {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  column-gap: 12px;
  align-items: center;
}
.stemlab__messengers_text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-right: 10px;
}

.stemlab__messengers.mobile {
  display: none;
}

.header__contacts {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  text-align: right;
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  align-items: center;
}

.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: 1000px;
	min-width: calc(300px + 12px);
	min-height: calc(60px + 12px);
	border: 6px solid #00ffcb;
	box-shadow: 0 0 60px rgba(0, 255, 203, 0.64); */
  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;
  }
}

.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;
}

.stemlab__messengers.header_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;
}
.br__mobile {
  display: none;
}

.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.webp") no-repeat center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.burger-menu_active {
  left: 0;
}

/* section {
  width: 100vw;
} */

.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;
}

section {
  min-height: 100vh;
}
.main {
  width: 100%;
  padding-top: 85px;
  background: no-repeat center/cover url("../assets/img/main-page-pict.webp");
}

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

.main__description {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  max-width: 600px;
  padding-bottom: 30px;
}

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

.connections-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, 1);
}

.connections-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-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;
}

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

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

.gift-wrapper {
  /* display: none; */
  position: absolute;
  bottom: -50px;
  right: -35px;
  cursor: pointer;
  width: 519.67px;
  height: 80px;

  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid #ffffff;
  border-radius: 10px;
}
.teachers > .container .gift-wrapper {
  display: none;
}
.test_passed_background {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(86.59deg, #17db2a 6.64%, #60ff70 105.96%);
  border-radius: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.test_passed_background img {
  width: 100%;
}

.gift__text {
  position: absolute;
  left: 100px;
  padding: 10px;
}
.gift_text_main {
  font-size: 26px;
  line-height: 30px;
}
.gift_text_second {
  font-size: 20px;
  line-height: 23px;
}
.gift__text_mobile {
  display: none;
}

.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-mobile {
  display: none;
  position: absolute;
  top: 400px;
  left: 0;
  cursor: pointer;
}

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

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

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

.gift {
  position: relative;
  opacity: 0.8;
  bottom: 10px;
  width: 80px;
  height: 80px;
  margin-left: 30px;
  border-radius: 50%;
  background: url("../assets/img/gift.png.webp") no-repeat center #ff5e00;
  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);
  }
}

.courses {
  position: relative;
  margin-top: -11%;
  width: 100%;
  height: 90vw;
  padding-top: 40px;
  padding-top: 150px;
  background: no-repeat center/cover url("../assets/img/courses_pict.png.webp");
}
.courses__book_mobile {
  display: none;
}
.courses__mobile_image {
  width: 100vw;
  margin-top: -150px;
  display: none;
}
.courses__mobile_image img {
  width: 100%;
}
.courses__description {
  position: absolute;
  right: 5%;
  top: 15%;
  display: flex;
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.courses__title {
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 61px;
  margin-bottom: 10%;
}
.courses__second_title {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 10%;
}
.courses__text {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10%;
}
.courses__variety {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.courses_city,
.courses_villiage {
  width: 40%;
  position: relative;
}
.courses_city img,
.courses_villiage img {
  width: 100%;
  border: 3px solid #ffd600;
  border-radius: 5%;
}

.courses_city div,
.courses_villiage div {
  margin-top: -20%;
  left: -10px;
  position: relative;
  z-index: 2;
  width: 110%;
}

.courses_city a,
.courses_villiage a {
  text-decoration: none;
}

.courses__ages {
  position: absolute;
  bottom: -200px;
  left: -50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
}

.courses__ages .ages {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #bee2f3;
  border-radius: 20px;
  border: 2px solid #096996;
  width: 15vw;
  height: 4vh;
  margin-right: 10%;
  text-align: center;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0em;
}

.courses__ages_mobile {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}

.courses__ages_mobile .ages {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #bee2f3;
  border-radius: 20px;
  border: 2px solid #096996;
  width: 15vw;
  height: 2vh;
  margin-right: 10%;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  padding: 0 7px;
  letter-spacing: 0em;
}


section.advantages {
  min-height: fit-content;
}
.advantages {
  background: no-repeat center/contain
    url("../assets/img/advantages_pict.png.webp");
  /* margin-top: -10%; */
  background-size: 100% 100%;
}
.advantages .container {
  height: 100%;
}
.advantages__title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
  color: #ffffff;
  padding-top: 50px;
  text-transform: uppercase;
}
.advantages__boxes {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 7%;
  padding-bottom: 30px;
}
.advantages__left_box,
.advantages__right_box {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.advantages__right_box {
  padding-left: 7%;
}
.advantages__item {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  margin-bottom: 8%;
}

.advantages__star {
  width: 20%;
}
.advantages__star img {
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
}
.advantages__description {
  width: 80%;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;

  color: #000000;
}
.outing__camp_header_img.mobile {
  display: none;
}
.outing__camp_main_text.mobile {
  display: none;
}
.city__camp {
  position: relative;
  z-index: 2;
}
.city__camp_header_img {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.city__camp_header_img img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.city__camp_header_text {
  position: absolute;
  top: 45%;
  left: 24%;
  margin: 0 auto;
  font-style: normal;
  font-weight: 900;
  font-size: 52px;
  line-height: 61px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.8);
}
.city__camp_main_text {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 40px;
  color: #000000;
}
.city__camp_main_description {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
}
.city__camp_schedule_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.city__camp_schedule_item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 2%;
  z-index: 1;
}

.schedule_item_date {
  width: 20%;
  background: linear-gradient(223.4deg, #f4f4f4 -6.45%, #ffffff 105.08%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}

.schedule_item_bracket {
  position: absolute;
  width: 5%;
  left: 18.5%;
  top: 28%;
  display: flex;
  align-items: center;
}
.schedule_item_bracket img {
  width: 100%;
}

.schedule_item_description {
  width: 78%;
  background: linear-gradient(223.4deg, #f4f4f4 -6.45%, #ffffff 105.08%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 5px;
}
.schedule_item_description_img {
  padding: 2%;
  width: 20%;
}
.schedule_item_description_img img {
  width: 100%;
}
.schedule_item_description_text {
  padding-left: 2%;
  width: 80%;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}

.camp__options {
  background: no-repeat center/contain
    url("../assets/img/camp-options-pict.png.webp");
  margin-top: -10%;
  width: 100%;
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
}
.connection__mobile_only {
  display: none;
}
.connections__submit_box.connections_on_grass_mobile {
  display: none;
}

.connections__submit_box {
  position: absolute;
  left: 200px;
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 25px;
  background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;

  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;

  color: #ffffff;
}
.connections__submit_box_text {
  width: 60%;
}

.box_text_title {
  font-weight: 700;
  font-size: 28px;
  text-align: left;
  margin-bottom: 20px;
}
.box_text_contain {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
.box_text_footer {
  margin-top: 5%;
}

.connections__submit_box.connections_on_grass.connections-form.connections-form__input
  .form__phone-input {
  margin-bottom: 15px;
}

.connections__submit_box.connections_on_grass.connections-form.connections-form__btn {
  bottom: -20px;
}

.connections-form__title {
  padding-bottom: 30px;
  font-size: 16px;
  text-align: center;
  color: black;
  font-weight: bold;
}

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

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

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

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

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

.connections-form__btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.options__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20%;
}
.options__description {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 42px;
  text-align: center;
  color: #000000;
}

.options__boxes {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.options__box_left {
  width: 47%;
  height: 100%;
  background: no-repeat center/contain url("../assets/img/option1.png.webp");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.options__box_right {
  height: 100%;
  width: 47%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.options__item_top {
  background: no-repeat center/contain url("../assets/img/option2.png.webp");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40%;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding: 70px 30px 0 50px;
}
.options__item_bottom {
  background: no-repeat center/contain url("../assets/img/option3.png.webp");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40%;
  width: 100%;
  position: relative;
  padding: 40px 5px 0 30px;
}

.options__box_title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
.options__box_text {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  padding: 2% 15%;
}

.options_clock_morning,
.options_clock_evening {
  position: absolute;
  width: 20%;
}

.options_clock_morning {
  left: 6%;
  top: -20%;
}

.options_clock_evening {
  left: 10%;
  top: -3%;
}

.options_clock_morning img,
.options_clock_evening img {
  width: 100%;
}

.connection:last-child {
  z-index: 2 !important;
  position: relative;
}

.connection {
  height: 100%;
  position: relative;
  background: no-repeat center/contain
    url("../assets/img/connection_pict.png.webp");
  background-size: 100% 100%;
  margin-top: -100px;
}
.connection_title {
  /* background: no-repeat center/contain url("../assets/img/circles.png.webp"); */
  background-size: 150% 150%;
  z-index: 10;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -20%;
  left: 15%;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
.connection_title img {
  width: 700px;
  position: absolute;
  left: -20%;
  top: -45%;
  z-index: 100;
}
.daily__plan {
  background: no-repeat center/cover
    url("../assets/img/daily-plan-pict.png.webp");
  background-size: 100% 100%;
  margin-top: -7.5%;
  position: relative;
  z-index: 1;
}
.connection_children {
  position: absolute;
  top: -500px;
  right: 0;
}
.daily__plan_title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #000000;
  display: block;
  margin: 0 auto;
  padding: 130px 7% 0 7%;
}
.daily__plan_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  padding-bottom: 130px;
  padding-top: 100px;
}
.daily__plan_item {
  background: no-repeat center/cover
    url("../assets/img/daily-plan-item.png.webp");
  background-size: 100% 100%;
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.daily__plan_item_title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #fff7f1;
  padding: 5%;
}
.daily__plan_item_text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  padding: 5%;
}

.connections_on_grass {
  width: 50%;
  bottom: -50%;
}

.connection_second {
  height: 100%;
  min-height: 920px;
  position: relative;
  background-color: rgb(254, 220, 193);
  /* background: no-repeat center/cover
		url("../assets/img/connection_pict.png.webp"); */
  margin-top: -300px;
  z-index: 0 !important;
}

.outing__camp {
  background: no-repeat center/cover
    url("../assets/img/outgoing-camp-back.png.webp");
  min-height: 2500px;
  background-position: center 300px;
  /* background-size: 100% 90%; */
  position: relative;
}
.outing__camp_header_img {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.outing__camp_header_img img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.outing__camp_background {
}
.outing__camp_header_text {
  position: absolute;
  top: 45%;
  left: 24%;
  font-style: normal;
  font-weight: 900;
  font-size: 52px;
  line-height: 61px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.8);
}
.outing__camp_main_text {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 40px;
  color: #000000;
}
.outing__camp_main_description {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
}
.outing__camp_advantages_title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  padding-top: 17%;
}
.outing__camp_advantages_wrapper {
  display: flex;
  flex-direction: row;
  padding-top: 12%;
}

.outing__camp_advantages_left,
.outing__camp_advantages_right {
  width: 50%;
}
.outing__camp_advantages_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10%;
  margin-left: 100px;
}
.outing__camp_advantages_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(223.4deg, #f4f4f4 -6.45%, #ffffff 105.08%);
  border-radius: 10px;
  margin-bottom: 10%;
  z-index: 4;
  position: relative;
}
.outing__camp_advantages_img {
  margin-left: -10%;
}

.outing__camp_advantages_img img {
}
.outing__camp_advantages_text {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  color: #000000;
  padding: 10px;
}

.camp__details {
  background: no-repeat center/cover url("../assets/img/camp-details.png.webp");
  z-index: 100;
  width: 100%;
  /* background-size: 100% 70%; */
  position: relative;
  z-index: 3;
  margin-top: -855px;
}
/* .camp__details_circles {
  background: no-repeat center/contain url("../assets/img/camp_circles.png.webp");
  position: relative;
  height: 700px;
  width: 700px;
  top: 300px;
} */

.connections__submit_box.connections_camp_details {
  left: 20%;
  bottom: 10%;
  /* bottom: 74%; было если секция с загородным расскоменнтирована */
  width: 50%;
}
.container__circle {
  position: relative;
  width: 50%;
  /* max-width: 600px; */
}

.image__circle {
  width: 100%;
  height: auto;
}

.text__inside {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: bold;
}

.text__inside.camp {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  text-align: center;
  text-transform: uppercase;
}

.container__circle.camp {
  top: 750px;
}

.camp__details_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 700px;
}
.camp__details_left_box,
.camp__details_right_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
}

.camp__details_left_box {
  margin-right: 5%;
}
.camp__details_item {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid #6400e3;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 5%;
}

.camp__details_time {
  background: no-repeat center/cover
    url("../assets/img/camp-details-time.png.webp");
  width: 30%;
  background-size: 100% 100%;
  margin: 3px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.camp__details_text {
  width: 70%;
  height: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  padding: 10% 5%;
}
.outing__camp_children {
  position: absolute;
  bottom: 0;
  right: 0;
}

.children__container_mobile {
  display: none;
}
.children__container_mobile > .stemlab__messengers.mobile {
  padding-top: 270px;
}
.children__container_mobile .stemlab__messengers_text {
  color: #000;
  line-height: 12px;
}

.slider__ablum_circle {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.slider__ablum_circle_title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin: 0 auto;
  text-align: center;
  display: block;
  align-items: center;
  text-transform: uppercase;
  width: 60%;
  margin-top: 80px;
  margin-bottom: 50px;
}
.slider-container {
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  transition: transform 0.5s;
}

.slide {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: black;
  transition: all 0.5s;
  overflow: hidden;
  margin-right: -100px;
}
.slide img {
  width: 100%;
  height: 100%;
}

.slide.active {
  transform: scale(1.5);
}

.slide:not(.active) {
  opacity: 0.5;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.learn__more {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
}
.learn__more .stemlab__messengers.mobile {
  margin: -50px 0 50px 0;
}
section.lern__more {
  min-height: auto;
}
.learn__more_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 15px 60px;
  background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
}
.learn__more_description {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.learn__more_desc_title {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  padding-bottom: 5%;
}
.learn__more_desc_text {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  padding-bottom: 5%;
}
.learn__more_desc_contacts {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
.learn__more_form {
  width: 50%;
  margin-bottom: -5%;
}

.answers {
  background: no-repeat center/contain
    url("../assets/img/answers-back.png.webp");
  /* background-size: 100% 100%; */
}
.photo__album {
  background: no-repeat center/cover url("../assets/img/photo_album.png.webp");
  background-size: 100% 100%;
  min-height: auto;
  padding-bottom: 200px;
}
.photo__album > .container {
  max-width: 1400px;
}
.photo__album_title {
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding-top: 150px;
  font-size: 42px;
}
.slider-container-photo.mobile {
  display: none;
}
.slider-container-photo {
  width: 100%;
  overflow: hidden;
}

.slider-photo {
  display: flex;
  width: 200%;
  transition: transform 0.3s ease-in-out;
}

.slide-photo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  height: 250px;
}

.row img {
  width: 22%;
  height: auto;
  margin: 12px;
  object-fit: cover;
  border-radius: 10px;
}
#prevBtn,
#nextBtn {
  font-size: 48px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#enlarged-photo {
  max-width: 90%;
  max-height: 90%;
}
.controls {
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.slider__entertainments_title {
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  margin: 80px auto 45px auto;
  max-width: 900px;
  text-align: center;
}
.slider_entertainments {
  width: 100%;
}
.slider_entertainments__track {
  overflow: hidden;
}

.slider_entertainments__slides {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.slider_entertainments__slide {
  border-radius: 50%;
  filter: grayscale(100%);
}
.slider_entertainments__slide img {
  width: 100%;
  border-radius: 50%;
}
.slider_entertainments__slide.glide__slide--active {
  transform: scale(1);
  z-index: 5;
  filter: grayscale(0);
}
.slider_entertainments__slide.glide__slide--active :nth-child(3) {
  transform: scale(0.3);
  filter: grayscale(0);
}
.slider_entertainments__slide {
  transform: scale(0.67);
}
.entertainments__glide__bullets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 50px auto 50px auto;
}
.entertainments__glide__bullet {
  margin-right: 2%;
  width: 10px;
  height: 12px;
  background: #cfcfcf;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.entertainments__glide__bullet.glide__bullet--active {
  width: 20px;
  height: 20px;
  background: #ffd600;
}

.answers_title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 150px;
}
.slider_answers {
  width: 80%;
  margin: 0 auto;
}
.slider_answers__track {
  overflow: hidden;
}
.slider_answers_slides {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding-top: 50px;
}
.slider_answers_slide {
  display: flex;
  flex-direction: column;
  background: linear-gradient(223.4deg, #f4f4f4 -6.45%, #ffffff 105.08%);
  border-radius: 10px;
  border: 1px solid #ffd600;
  margin-right: 40px !important;
  background-color: #bee2f3;
  padding: 35px;
}
.slider_answers_slide--active {
  background-color: grey;
}
.answers_slide_title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
  padding-bottom: 20px;
}
.answers_slide_body {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
}
.answers__glide__bullets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.answers__glide__bullet {
  margin-right: 2%;
  width: 10px;
  height: 12px;
  background: #cfcfcf;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.answers__glide__bullet.glide__bullet--active {
  width: 20px;
  height: 20px;
  background: #ffd600;
}

/* reviews slider */
.reviews {
  background: no-repeat center/cover url("../assets/img/reviews-back.png.webp");
  background-size: 100% 100%;
}

.slider_reviews {
  width: 60%;
  min-height: 300px;
  margin: 0 auto;
}
.reviews_title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 130px;
}
.reviews__glide__bullets {
  width: 70%;
  font-size: 48px;
  margin: -35px auto 0 !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.slider_reviews__track {
  overflow: hidden;
}
.slider_reviews_slides {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding-top: 100px;
}
.slider_reviews_slide {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  border: none;
  margin-right: 40px !important;
  padding: 35px;
}
.reviews_slide_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 20px;
}
.reviews__footer_name {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}
.reviews__footer_rating {
  color: #ff8c22;
  font-size: 48px;
}
.reviews_slide_body {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 20px;
}

.slider_reviews {
  margin-bottom: 100px;
}

.reviews-btn {
  margin: 500px 100px 20px 20px;
}

/* reviews slider end */

/* slider */
.teachers {
  padding-bottom: 140px;
  background: url("../assets/img/teachers-back.png.webp") no-repeat right;
  min-height: auto;
}

.teachers__title {
  text-align: center;
  color: #000;
  z-index: 9;
}

.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;
  margin-bottom: 50px;
  width: 490px;
}

.teachers > .container {
  position: relative;
  /* background: url("../assets/img/teachers-shape.png.webp") 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;
}

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

.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;
}

.slide__item_active {
  width: 285px !important;
  /* transition: none; */
}

.slide__item_active img {
  width: 100%;
}

.slide__img {
  background: no-repeat bottom/contain url("/assets/img/circle.png.webp");
  width: 135px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: auto;
}

.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;
}

/* slider end */

.locations {
  padding-top: 50px;
  overflow: hidden;
}
.locations__camp_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  padding-bottom: 50px;
}
.camp__type {
  padding-bottom: 10px;
}
.locations__camp_address_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.locations__camp_address {
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 20px;
}
.locations__camp_address > p {
  font-weight: 400;
  line-height: 20px;
}

.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%;
  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;
  top: 0px;
  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 {
  background: url("../assets/img/contacts-back.jpg") no-repeat top/contain;
  min-height: 80vh;
}

.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;
}

.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.webp") 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;
}

.slider-container {
  overflow-x: hidden;
}

.connections-form__police,
.main-form__police {
  color: #000000;
  margin: 0;
  line-height: normal;
}

@media screen and (max-width: 1560px) {
  /* .connection_title {
		top: -250px;
	} */
  /* .connection_title img {
		top: -150px;
	} */
}

@media screen and (max-width: 1440px) {
  .contacts {
    /* background: linear-gradient(86.59deg, #FF8C22 6.64%, #FFD600 105.96%); */
    background: no-repeat top/cover
      url("../assets/img/contacts-back-mobile.png.webp");
  }
  .text__inside.camp {
    font-size: 42px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .section {
    min-height: auto;
  }
  .main {
    background-position: right;
  }
  .courses__title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .courses__second_title {
    font-size: 42px;
  }
  .courses__text {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: none;
  }
  .answers {
    min-height: 70vh;
  }
  .locations__wrapper {
    display: none;
    width: 80%;
    margin: 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;
  }
  .connection_second {
  }
  .contacts {
    /* background-color: #FF8C22; */
  }
  .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;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
    padding: 0 15px;
  }
  .advantages {
  }
  .teachers__slider-controls {
    right: 520px;
  }
  .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;
  }
  .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%);
  }
  .courses {
    padding-top: 0;
  }
  .courses__description {
    width: 100%;
  }
  .courses_city,
  .courses_villiage {
    width: 25%;
  }
  .courses__ages {
    position: relative;
    left: 0;
    bottom: -40px;
    font-size: 14px;
    width: auto;
  }
  .city__camp_header_text {
    font-size: 34px;
  }
  .connections__submit_box {
    left: 0;
    width: 60%;
  }
  .courses__ages {
    bottom: -60px;
  }
  .camp__details {
  }
  .outing__camp_header_text {
    font-size: 32px;
  }
  .outing__camp_advantages_wrapper {
    flex-direction: column;
    align-items: center;
    margin-bottom: 500px;
  }
  .outing__camp_advantages_left,
  .outing__camp_advantages_right {
    width: 90%;
    margin-left: 0;
    padding: 0;
  }
  .outing__camp_advantages_item {
    margin-bottom: 2%;
  }
  .slider-photo.mobile {
    width: 100%;
    justify-content: center;
  }
  .slide-photo.mobile {
    width: 70%;
  }
  .slider-container-photo {
    display: none;
  }
  .slider-container-photo.mobile {
    display: block;
    height: fit-content;
  }
  .row.mobile {
    flex-direction: column;
    height: fit-content;
  }
  .row.mobile img {
    width: auto;
    height: 300px;
  }
  .camp__details_wrapper {
    flex-direction: column;
    padding-top: 1640px;
  }
  .camp__details_left_box,
  .camp__details_right_box {
    width: 100%;
  }
  .camp__details_title {
    padding-top: 1420px;
  }
  .reviews_title {
    font-size: 26px;
  }
}

@media screen and (max-width: 720px) {
  body {
    overflow-x: hidden;
  }
  .container {
    max-width: 540px;
  }
  .stemlab__messengers.desktop {
    display: none;
  }
  .stemlab__messengers.mobile {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    font-size: 10px;
  }
  .stemlab__messengers_text {
    font-size: 10px;
    padding: 0;
    margin: 0;
  }

  .stemlab__messengers_telegram {
    width: 20px;
  }

  .stemlab__messengers_viber {
    width: 20px;
  }

  .connections__submit_box {
    text-align: start;
    padding: 20px 25px 50px 25px;
  }

  .connections__submit_box.connections_camp_details {
    padding: 40px 25px 50px 25px;
    background: linear-gradient(90deg, #076693, #28a3dd);
  }

  .connection__mobile_only {
    display: block;
    background: linear-gradient(90deg, #076693, #28a3dd);
    height: 500px;
  }

  .connections__submit_box .connections__submit_box_text > .box_text_title {
    line-height: 1.1;
    font-size: 24px;
    padding-bottom: 15px;
  }
  .daily__plan > .connection_children > .stemlab__messengers {
    display: none;
  }
  .camp__options
    > .connections-form.connections-form__wrapper.connections-form__police {
    padding-top: -200px;
    margin-top: -200px;
  }
  .connections_on_grass_mobile {
    padding: 20px 25px 50px 25px;
  }
  .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.png.webp") no-repeat center;
    font-size: 0;
  }
  .stemlab__messengers.header_mobile {
    display: flex;
    width: 20px;
    height: 20px;
    column-gap: 5px;
  }
  .burger-menu_active {
    width: 40%;
  }
  .courses {
    height: auto;
    background: no-repeat top/cover
      url("../assets/img/mobile/courses-without-book.png");
    /* background-size: 100% 100%; */
    padding-bottom: 80px;
    background-size: 100% 120%;
  }
  .courses__mobile_image {
    display: block;
    margin: 0 auto;
    margin-top: -150px;
  }

  .courses__description {
    position: initial;
    margin-bottom: 40px;
  }
  .courses__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .courses__second_title {
    margin: 0 auto;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    width: 300px;
  }
  .courses__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  }
  .courses__ages {
    display: none;
  }
  .courses__ages_mobile {
    display: flex;
    justify-content: center;
    width: auto;
    column-gap: 15px;
    margin-bottom: 30px;
  }
  .courses__ages_mobile .ages {
    margin: 0;
  }
  .courses__variety {
    justify-content: space-around;
    z-index: 3;
  }
  .courses_city,
  .courses_villiage {
    width: 40%;
  }
  .main-btn.popup-btn.main-btn_green {
    max-width: none;
    width: auto;
    font-size: 10px;
    left: 3px;
    color: #000;
    margin-top: -10%;
  }

  .main-btn.main-btn_green {
    position: absolute;
    bottom: 0;
    left: -4px;
    padding: 10px 7px;
    font-size: 10px;
    max-width: 170px;
    color: #000;
  }
  .courses__book_mobile {
    display: block;
    position: absolute;
    bottom: -60px;
    right: -30px;
    z-index: 4;
  }

  .advantages {
    background: no-repeat center/cover
      url("../assets/img/mobile/advantages_mobile.png");
    position: relative;
    padding-top: 20px;
  }
  .advantages__title {
    font-size: 18px;
  }
  .advantages__item {
    gap: 10px;
  }
  .advantages__boxes {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .advantages__left_box,
  .advantages__right_box {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0%;
  }
  .advantages__description {
    font-size: 16px;
    text-align: left;
    line-height: normal;
  }
  section.city__camp {
    min-height: fit-content;
  }
  .advantages__star {
    width: 10%;
  }
  .city__camp_header_img img {
    width: 100%;
  }
  .city__camp_header_text {
    font-size: 26px;
  }
  .city__camp_main_text {
    font-size: 14px;
    line-height: initial;
    font-weight: bold;
    text-align: center;
    margin: 17px auto 0 auto;
  }

  .city__camp_main_description {
    font-size: 14px;
    line-height: initial;
    text-align: center;
    margin: 10px auto 0 auto;
  }

  .outing__camp {
    background: no-repeat top/contain
      url("../assets/img/mobile/advantages__back_mobile.png");
    background-size: 100% 100%;
    min-height: 150vh;
    margin-top: -150px;
  }
  .outing__camp_children {
    display: none;
  }
  .outing__camp_header_img {
    width: 100%;
    font-size: 22px;
  }
  .outing__camp_header_img img {
    width: 100%;
  }
  .outing__camp_header_text {
    left: 15%;
  }
  .children__container_mobile {
    display: block;
    background: no-repeat center/cover
      url("../assets/img/mobile/children_for_mobile.png");
    /* background-size: 100% 100%; */
    min-height: 100vh;
    margin-top: -300px;
  }
  .container__circle.camp {
    width: 100%;
    top: 50px;
  }
  .camp__details_wrapper {
    padding: 0;
  }
  .slider__ablum_circle_title {
    font-size: 24px;
  }
  .schedule_item_bracket {
    left: 24.5%;
  }
  .schedule_item_date {
    font-size: 12px;
    line-height: 18px;
    width: 30%;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  }
  .schedule_item_description_text {
    font-size: 14px;
    line-height: 1.3;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    /* width: 35%; */
  }
  .slider-container .slider .slide {
    width: 250px;
    height: auto;
  }
  .answers {
    margin-bottom: 130px;
    background: url("../assets/img/mobile/answers_mobile.png") no-repeat
      center/contain;
  }
  section.connection {
    min-height:unset;
  }
  .connection_second {
    min-height: 450px !important;
  }
  .connections__submit_box.connections_on_grass {
    display: none;
  }
  .connections__submit_box.connections_on_grass_mobile {
    background: url("../assets/img/mobile/connections__back_mobile.png")
      no-repeat center/contain;
    box-shadow: none;
    background-size: 100% 100%;
    display: block;
    border-radius: 0;
    width: auto;
    bottom: -230px;
    left: 0;
    right: 0;
  }

  .daily__plan {
    background-size: 80% 80%;
  }

  .outing__camp_header_img {
    margin-top: 230px;
    width: 100%;
  }
  .outing__camp_header_img img {
    width: 100%;
  }
  .main-btn {
    padding: 10px 10px;
    font-size: 16px;
    max-width: 170px;
  }
  .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;
  }
  .iceberg {
    height: 600px;
  }
  .teachers > .container {
    background-size: contain;
    background-position: 0 0;
  }
  .teachers__title {
    font-size: 16px;
  }
  .teachers__wrapper {
    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;
  }
  .camp__details_title {
    font-size: 24px;
    line-height: 28px;
    width: 70%;
  }
  .camp__details_text {
    font-size: 14px;
    line-height: 20px;
  }

  .learn__more_wrapper {
    flex-direction: column;
    text-align: center;
  }
  .learn__more_description {
    width: 100%;
  }
  .learn__more_form {
    width: 100%;
  }
  .teachers {
    padding-bottom: 50px;
    background-position: center 660px;
  }
  .teachers__slider-wrapper {
    width: 200px;
  }
  .teachers__slider-controls {
    right: 70%;
    bottom: 110px;
  }
  .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);
  }
  .slider__entertainments_title {
    font-size: 24px;
    width: 85%;
    margin: 35px auto 24px auto;
    line-height: 1.2;
  }
  .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;
  }
  .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;
  }
  .connection {
    overflow: hidden;
    margin-top: -300px;
    height: 1150px;
    background: url("../assets/img/mobile/connections_mobile.png") no-repeat
      center/cover;
  }
  .connection_children {
    width: auto;
    left: -100px;
    overflow: hidden;
  }
  .connection_children img {
    width: 100%;
    overflow: hidden;
  }
  .connection_title {
    top: -50px;
  }
  .daily__plan {
    margin-top: -15%;
  }
  .daily__plan_title {
    padding: 0 0 30px;
    font-size: 22px;
  }
  .daily__plan_box {
    flex-direction: column;
    margin-bottom: -360px;
    padding-top: 0;
  }
  .daily__plan_item {
    width: 100%;
  }
  .connection_title {
    font-size: 32px;
  }
  .connections_on_grass {
    bottom: -30%;
  }
  .outing__camp_header_text {
    font-size: 22px;
  }
  .photo__album {
    background: no-repeat center/cover
      url("../assets/img/mobile/photo_album_mobile.png");
    background-size: 100% 100%;
  }
  .full-screen {
    position: relative;
    bottom: -230px;
    left: -30px;
  }
  .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) {
  .header__logo {
    width: 110px;
    height: 46px;
    padding-left: 30px;
  }
  .stemlab__messengers.header_mobile {
    width: 45px;
  }
  .container {
    max-width: 100%;
  }

  .main {
    background: no-repeat top/cover url("../assets/img/mobile/main-back.png");
  }
  .main__title {
    font-size: 38px;
  }
  .main__description {
    font-size: 16px;
    margin-top: 400px;
    text-align: center;
  }
  .gift-wrapper {
    display: none;
  }
  .gift-wrapper-mobile {
    display: block;
  }
  .test_passed_background {
    width: 27px;
    height: 27px;
    border-radius: 5px;
    top: -2px;
    left: -4px;
  }

  /* .main-btn.popup-btn.main-btn_green {
    width: 130%;
    font-size: 14px;
  } */
  .main__title span {
  }

  /* .gift__text {
    display: none;
  }
  .gift__text_mobile {
    display: block;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    left: 25px;
    padding: 3px 0px;
  } */
  .camp__options {
    background: no-repeat center/cover
      url("../assets/img/mobile/camp-options-mobile.png");
  }
  section.camp__options {
    min-height: fit-content;
  }
  .city__camp_schedule_item {
    margin-top: 5%;
  }
  /* .courses {
    background: no-repeat center/cover
      url("../assets/img/mobile/courses-mob.png");
  }
  .courses__title {
    margin-bottom: -5px;
    margin-top: 50px;
  }
  .courses__mobile_image {
    display: block;
  }
  .courses__ages_mobile {
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .courses__variety {
    justify-content: space-around;
  } */
  section.advantages {
    min-height: auto;
  }
  .options__description {
    font-size: 16px;
    font-weight: bold;
    width: 70%;
    line-height: 1.5;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  }
  .options__boxes {
    margin-top: 0;
  }
  .options__box_title {
    font-size: 16px;
    line-height: 19px;
  }
  .options__box_text {
    font-size: 16px;
    line-height: 19px;
  }
  .options__box_left,
  .options__item_bottom {
    padding: 20% 2% 7% 2%;
  }
  .camp__details {
    background: no-repeat bottom/cover
      url("../assets/img/mobile/camp-details-mobile.png");
    background-size: 100% 70%;
    padding-bottom: 50px;
  }
  .camp__details_title {
    padding-top: 1150px;
  }
  .camp__details_wrapper {
    padding-top: 1340px;
  }

  .learn__more_wrapper {
    padding: 0 5px;
  }

  .city__camp_header_text {
    font-size: 18px;
    left: 20%;
  }
  /* .connection {
    background: no-repeat center/cover
      url(../assets/img/mobile/connections-back-clean.png);
  } */
  .children__container_mobile {
    margin-top: -255px;
  }
  .br__mobile {
    display: block;
  }
  .connection_title {
    width: 90%;
    height: 200px;
    top: -100px;
    left: 20px;
    font-size: 24px;
  }
  .connection_title img {
    left: -30px;
    width: 120%;
    top: -120px;
  }
  .slider__ablum_circle {
    /* display: none; */
  }
  .daily__plan {
    background-size: cover;
  }
  .daily__plan > .container {
    padding-top: 70px;
  }
  .outing__camp_header_img {
    display: none;
  }
  .outing__camp_main_text {
    display: none;
  }
  .outing__camp_header_img.mobile {
    display: block;
    position: relative;
    z-index: 20;
  }
  .outing__camp_main_text.mobile {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 20;
  }
  .outing__camp {
    z-index: 4;
  }
  .outing__camp_advantages_title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    position: relative;
    top: 150px;
    left: -50px;
  }
  .outing__camp_advantages_wrapper {
    padding: 0 30px 0 30px;
    margin-top: 210px;
  }
  .outing__camp_advantages_item {
    height: auto;
  }
  .outing__camp_advantages_img img {
    height: 50px;
  }
  .outing__camp_advantages_item {
    margin-bottom: 2.5%;
  }
  .outing__camp_advantages_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
  }
  .outing__camp_children {
    display: none;
  }
  .box_text_contain {
    font-size: 16px;
    line-height: normal;
    font-family: "Roboto" regular;
  }
  .connections__submit_box.connections_camp_details {
    background: no-repeat top/cover
      url("../assets/img/mobile/camp__connections_back_mobile.png");
    width: auto;
    position: relative;
    box-shadow: none;
    margin-top: 635px;
    /* padding-top: 300px; */
    /* padding-top: 120px; было , если секция с загородным расскоментирована  */
    left: 0;
  }
  section.camp__details {
    min-height: auto;
  }
  .camp__details {
    padding: 0;
  }
  .container__circle.camp {
    top: -100px;
    margin-bottom: -120px;
  }
  .camp__details_wrapper {
    padding: 0;
  }
  .text__inside.camp {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
  }
  .locations__map {
    width: 100vw;
    height: 40vh;
    right: 34vw;
    border-radius: 10%;
  }

  .locations__map-wrapper {
    width: 550px;
    height: 100%;
    border-radius: 10%;
    /* padding: 30px 0 0 40px; */
  }

  .locations > .container {
    height: 500px;
  }
  .locations__address-item {
    font-size: 14px;
  }
  .locations__address-item {
    margin-left: 30px;
  }
  .contacts-phone__title {
    font-size: 20px;
  }
  .contacts-phone__phone {
    font-size: 20px;
  }
  .contacts__form {
    width: 320px;
  }
  .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);
  }

  .learn__more {
    width: 100%;
    position: relative;
    bottom: 20px;
    left: 0;
  }

  .learn__more_wrapper {
    padding: 30px 25px 0px 25px;
  }
  .learn__more_desc_title {
    line-height: 1.1;
    font-size: 24px;
    padding-bottom: 15px;
  }
  .learn__more_desc_text {
    font-size: 16px;
    line-height: normal;
    font-family: "Roboto" regular;
  }

  .learn__more_form > .contacts__form {
    margin: 0 auto;
    margin-bottom: 100px;
  }
  .learn__more_form > .contacts__form > textarea {
    display: none;
  }
  .learn__more_form > .contacts__form > .callback-form__row.contacts__label {
    display: none;
  }
  section.answers {
    min-height: fit-content;
  }

  .slider_answers {
    width: 90%;
  }
  .answers_title {
    font-size: 26px;
    line-height: 28px;
    padding-top: 30px;
  }
  .answers_slide_title {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.1;
  }
  .slider_answers_slide {
    margin-right: 10px !important;
    padding: 10px 15px 0px 15px;
  }
  .answers_slide_body {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.02em;
  }
  .slider_reviews {
    width: 100%;
    margin-bottom: 30px;
  }

  .slider_reviews_slides {
    padding-top: 36px;
  }
  .answers {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .photo__album_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    padding-top: 120px;
  }
  .slide-photo.mobile {
    width: 85%;
  }
  .row.mobile > img {
    height: 200px;
  }
  .reviews_title {
    font-size: 24px;
    line-height: 28px;
  }
  .reviews__glide__bullets {
    width: 100%;
  }
  .reviews__footer_name,
  .reviews__footer_rating {
    font-size: 12px;
    line-height: 14px;
  }
  .reviews_slide_body {
    font-size: 12px;
    line-height: 14px;
  }
  .teachers__wrapper {
    width: 320px;
  }
  .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%;
  }
  section.teachers {
    min-height: 50vh;
  }
  .locations__wrapper {
    max-width: 100%;
  }
  .locations__map-wrapper {
    top: 250px;
  }
  .locations__address-list {
    margin-left: 50px;
  }
  .locations__city {
    font-size: 24px;
    line-height: 28px;
  }
  .motivation {
    padding-bottom: 0;
  }
  .motivation__img {
    width: 120px;
    height: 120px;
  }
  .iceberg {
    height: 400px;
  }
  .video__container {
    left: -40%;
  }
  .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;
  } */

  .options__boxes {
    flex-direction: column;
    height: auto;
    padding-bottom: 100px;
    margin-top: 0;
  }
  .options__box_left,
  .options__box_right {
    width: 100%;
  }

  .connection {
    height: 1350px;
  }
  .connections__submit_box {
    width: 80%;
    flex-direction: column;
    bottom: -510px;
    left: 10px;
    text-align: start;
    margin: 0 auto;
  }

  .connections__submit_box.connections_camp_details {
    bottom: 65%;
    left: 0;
  }

  .connections__submit_box_text {
    width: 100%;
  }

  .locations {
    padding: 0;
  }

  .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;
  }
  .contacts {
    margin-top: -100px;
  }
}
