html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat-Regular'),
  url('../fonts/Montserrat-Regular.woff2') format('woff2'),
  url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat-SemiBold'),
  url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
  url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat-Bold'),
  url('../fonts/Montserrat-Bold.woff2') format('woff2'),
  url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat-ExtraBold'),
  url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
  url('../fonts/Montserrat-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

.main {
  overflow-x: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 20px;
  border: 2px solid #d93b3b;
  border-radius: 30px;
  font-size: 26px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #d93b3b;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.50);
  color: #d93b3b;
  border-radius: 5px;
  border-color: #d93b3b;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:active {
  border-radius: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.stop-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  padding-right: 17px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.section-title {
  margin: 0;
  font-size: 70px;
  font-weight: 800;
  line-height: 130%;
}

.page {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  min-width: 320px;
  overflow-x: hidden;
}

.header {
  padding: 25px 0;
}

.container {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 25px;
}

.form-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  top: 0;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, .5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility .4s, opacity .4s;
  transition: visibility .4s, opacity .4s;
  z-index: 99999;
}

.modal__box {
  /* display: none; */
  position: relative;
  margin: auto;
  max-width: 90%;
  width: 1090px;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 12px;
  /*background-color: #000;*/
  /*-webkit-box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);*/
  /*box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);*/
  z-index: 10;
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal.open .modal__box {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal__close-btn {
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: -4px;
  right: -45px;
  width: 40px;
  height: 40px;
  outline: none;
  color: #d93b3b;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.modal__close-btn:hover {
  color: red;
}

.close-btn-line {
  position: absolute;
  display: block;
  width: 41px;
  height: 2px;
  background-color: currentColor;
}

.close-btn-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-btn-line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  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;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-modal__img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.camp-gallery-modal__img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
}

.gallery-modal__prev-btn,
.gallery-modal__next-btn,
.camp-gallery-modal__prev-btn,
.camp-gallery-modal__next-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  background-color: rgba(227, 194, 154, 0.5);
  transition: background-color .3s;
}

.gallery-modal__prev-btn,
.camp-gallery-modal__prev-btn {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.gallery-modal__next-btn,
.camp-gallery-modal__next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.gallery-modal__prev-btn:hover,
.camp-gallery-modal__prev-btn:hover {
  background-color: rgb(227, 194, 154);
}

.gallery-modal__next-btn:hover,
.camp-gallery-modal__next-btn:hover {
  background-color: rgb(227, 194, 154);
}

.application-modal {
  padding: 20px;
  background-color: #fff;
  max-width: 500px;
  margin: 0 auto;
}

.application-modal__title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.application-modal__text {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.application-modal__form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.application-modal__form .form-group {
  margin-bottom: 15px;
}

.application-modal__form-input,
.application-modal__form-select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
}

.application-modal__form-checkbox {
  margin-right: 5px;
}

.application-modal__submit-btn {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: max-content;
  padding: 20px;
  background-color: #d93b3b;
  color: #fff;
  border: none;
  cursor: pointer;
}

.header-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*.header-container::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 40%;*/
/*  width: 1000px;*/
/*  height: 1000px;*/
/*  border-radius: 50%;*/
/*  -webkit-transform: translate(50%, -60%);*/
/*          transform: translate(50%, -60%);*/
/*  background-color: #d93b3b;*/
/*  z-index: -1;*/
/*}*/

.header-logo {
  width: 150px;
  margin-right: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/*.nav__item:not(:last-child) {*/
/*  margin-right: 10px;*/
/*}*/

.nav__link {
  position: relative;
  padding: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 130%;
  text-transform: uppercase;
}

/* Верхняя линия */
.nav__link::before,
.nav__link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: #d93b3b; /* Цвет линии */
  -webkit-transition: all 0.3s cubic-bezier(.8,.2,.2,.8);
  transition: all 0.3s cubic-bezier(.8,.2,.2,.8);
}

/* Нижняя линия */
.nav__link::before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); /* Начальное положение справа */
}

/* Нижняя линия */
.nav__link::after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); /* Начальное положение справа */
}

/* Эффект при наведении */
.nav__link:hover::before,
.nav__link:hover::after {
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0); /* Переход на начальную позицию */
}

.header__phone-wrap {
  position: relative;
  margin-left: auto;
}

.header__phone {
  padding: 6px 10px;
  border: 2px solid #d93b3b;
  border-radius: 3px;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  color: #d93b3b;
  z-index: 10;
  -webkit-transition: color .3s, background-color .3s, border-radius .3s;
  transition: color .3s, background-color .3s, border-radius .3s;
}

.header__phone:hover {
  color: #fff;
  background-color: #d93b3b;
  border-radius: 30px;
}

.header__phone-call-time {
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 100%;
  font-size: 16px;
  color: #000;
  text-align: center;
}

.burger {
  display: none;
}

.section {
  position: relative;
  padding: 25px 0;
}

.hero {
  padding-top: 0;
}

.hero__container {
  position: relative;
}

.hero__wrap {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 100px;
}

.hero__wrap::before {
  content: '';
  position: absolute;
  display: block;
  left: 58%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background-image: url('../img/hero-img-3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), color-stop(70%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), color-stop(70%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.page__title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 90px;
  font-weight: 800;
  line-height: 130%;
}

.page__title span {
  text-transform: uppercase;
  color: #d93b3b;
}

.page__sub-title {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
}

.hero__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  gap: 25px;
}

.hero__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.addresses__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.addresses__item:not(:last-child) {
  margin-bottom: 10px;
}

.addresses__item::before {
  content: '';
  display: block;
  margin-right: 10px;
  width: 40px;
  height: 45px;
  background-image: url('../img/address-marker.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  max-width: 320px;
  margin-right: 25px;
}

.hero__advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hero__advantage .hero__advantage-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hero__advantage .hero__advantage-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.page__trial-session {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}

.page__trial-session::before {
  content: '';
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 45px;
  background-image: url('../img/fire.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-us {
  overflow: hidden;
}

.about-us .container::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: -400px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: #d93b3b;
}

.about-us .container::after {
  content: '';
  position: absolute;
  top: 60%;
  left: -180px;
  width: 250px;
  height: 250px;
  background-image: url(../img/plashka-dot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-us__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  padding: 70px 70px 0;
  width: 875px;
}

.about-us__wrap::before {
  content: '';
  position: absolute;
  left: -72%;
  width: 75%;
  height: 1024px;
  background-image: url('../img/about-us-img-1.png');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.about-us__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}

.about-us__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 350px;
  right: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
  text-align: right;
}

.about-us__note::before {
  content: '';
  display: block;
  margin-right: 10px;
  width: 37px;
  height: 44px;
  background-image: url('../img/flag.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-us__info-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.about-us__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(50% - 20px);
  margin-bottom: 40px;
}

.about-us__info:nth-child(odd) {
  margin-right: 40px;
}

.about-us__info-title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.about-us__info-text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.about-us__price-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.about-us__price-title {
  margin-right: 60px;
  font-size: 50px;
  font-weight: 800;
  line-height: 130%;
}

.about-us__price-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about-us__price {
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 800;
  line-height: 130%;
}

.about-us__price span {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-34px);
}

.about-us__price-block .page__trial-session {
  position: static;
}

.about-us__btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.advantages {
  padding-top: 50px;
}

.advantages__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}

.advantages__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px;
  width: calc((100% - 75px) / 4);
  gap: 25px;
  border-radius: 8px;
  border: 2px solid #e3c29a;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.advantages__item:hover {
  background-color: #e3c29a;
}

.advantages__item::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.advantages__item--1::before{
  background-image: url(../img/icon-1.png);
}

.advantages__item--2::before{
  background-image: url(../img/icon-2.png);
}

.advantages__item--3::before{
  background-image: url(../img/icon-3.png);
}

.advantages__item--4::before{
  background-image: url(../img/icon-4.png);
}

.advantages__item--5::before{
  background-image: url(../img/icon-5.png);
}

.advantages__item--6::before{
  background-image: url(../img/icon-6.png);
}

.advantages__item--7::before{
  background-image: url(../img/icon-7.png);
}

.advantages__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
}

.advantages__descr {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.groups {
  padding-bottom: 100px;
  z-index: 15;
}

.groups .section-title {
  margin-bottom: 25px;
  line-height: 100%;
}

.groups__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 3 * 25px) / 4) 25px calc((100% - 3 * 25px) / 4) 25px calc((100% - 3 * 25px) / 4) 25px calc((100% - 3 * 25px) / 4);
  grid-template-columns: repeat(4, calc((100% - 3 * 25px) / 4));
  -ms-grid-rows: auto 25px auto;
  grid-template-rows: repeat(2, auto);
  padding: 50px 100px 0;
  width: 100%;
  gap: 25px;
}

.groups__wrap > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.groups__wrap > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.groups__wrap > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.groups__wrap > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.groups__wrap > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.groups__wrap > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.groups__wrap > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.groups__wrap > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

.groups__header {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  -ms-grid-row: 1;
  grid-row: 1;
  -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;
}

.groups__item--1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.groups__item--2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.groups__item--3 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / span 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.groups__item--4 {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4 / span 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.groups__header::after {
  content: '';
  display: block;
  width: 50%;
  max-width: 335px;
  height: 500px;
  background-image: url(../img/groups-item-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.groups__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  max-width: 500px;
  gap: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.groups__descr {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}

.groups__item {
  position: relative;
  width: 100%;
  border: 2px solid #d93b3b;
  border-radius: 8px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: contain;
  overflow: hidden;
}

.groups__item:hover .group__item-info {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.groups__item--1 {
  background-image: url(../img/groups-item-2.png);
}

.groups__item--2 {
  background-image: url(../img/groups-item-3.png);
}

.groups__item--3 {
  background-image: url(../img/groups-item-4.png);
}

.groups__item--4 {
  background-image: url(../img/groups-item-5.png);
}

.groups__item-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 425px;
  gap: 20px;
}

.groups__item-title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0;
  padding: 1px 3px 0;
  -webkit-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  color: inherit;
  background-color: #ffffffcf;
}

.group__item-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  padding: 15px 10px 10px;
  -webkit-transform: translateY(85px);
  transform: translateY(80px);
  gap: 10px;
  background-color: #ffffffcf;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.groups__item-age {
  font-size: 32px;
  font-weight: 800;
  line-height: 60%;
}

.groups__item-age-color {
  color: #d93b3b;
}

.groups__item-age-year {
  font-size: 32px;
}

.groups__programs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.groups__programs-item:not(:last-child) {
  margin-bottom: 5px;
}

.groups__item:hover .groups__item-link {
  display: block;
}

.gallery {
  background: #d93b3b;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 59, 59, 1)), color-stop(68%, rgba(217, 59, 59, 1)), color-stop(68%, rgba(227, 194, 154, 1)), to(rgba(227, 194, 154, 1)));
  background: linear-gradient(0deg, rgba(217, 59, 59, 1) 0%, rgba(217, 59, 59, 1) 68%, rgba(227, 194, 154, 1) 68%, rgba(227, 194, 154, 1) 100%);
}

.gallery .container::before {
  content: '';
  position: absolute;
  top: -198px;
  right: 0;
  width: 800px;
  height: 253px;
  -webkit-transform: translateX(65%);
  transform: translateX(65%);
  background-image: url(../img/plashka-dot-red.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 11;
}

.gallery .container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  -webkit-transform: translate(50%, -60%);
  transform: translate(50%, -60%);
  background-color: #fff;
  z-index: 10;
}

.gallery__wrap {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 50px;
  overflow: hidden;
}

.gallery__header {
  position: absolute;
  left: 439px;
  top: 10px;
  width: 100%;
  z-index: 15;
}

.gallery__header .section-title {
  position: relative;
  color: #fff;
}

.gallery__video {
  position: relative;
  display: inline-block;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  z-index: 15;
}

.stories {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e3c29a;
}

.story-video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
  z-index: 1;
}

.story-video.active {
  display: block;
}

.story-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.story-controls button {
  pointer-events: auto;
  background: rgb(227 194 154 / 50%);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
}

.story-prev,
.story-next {
  background-color: rgb(227 194 154 / 50%);
  transition: background-color .3s;
}

.story-prev:hover,
.story-next:hover {
  background-color: rgb(227 194 154);
}

.story-prev {
  border-radius: 0 3px 3px 0;
}

.story-next {
  border-radius: 3px 0 0 3px;
}

.story-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  padding: 5px;
  z-index: 5;
}

.story-progress-bar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.story-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background-color: white;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes progressAnim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes progressAnim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.story-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.story-sound-toggle {
  position: absolute;
  top: 15px;
  right: 5px;
  font-size: 1.5rem;
  border: none;
  background-color: #00000091;
  border-radius: 8px;
  cursor: pointer;
  z-index: 5;
}

.gallery__slider {
  position: relative;
  width: 400px;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  z-index: 10;
}

.gallery__slider-prev-btn,
.gallery__slider-next-btn {
  position: absolute;
  width: 97px;
  height: 37px;
  top: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  outline: none;
  background-image: url('../img/white-arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
}

.gallery__slider-prev-btn {
  left: -160px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gallery__slider-prev-btn.swiper-button-disabled {
  display: none;
}

.gallery__slider-next-btn {
  right: -160px;
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.gallery__slider-next-btn.swiper-button-disabled {
  display: none;
}

.gallery__swiper {
  width: 100%;
  height: 100%;
}

.gallery__list {
  width: 100%;
  height: 100%;
}

.gallery__item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery__item.swiper-slide-active {
  position: relative;
  border: 2px solid #e3c29a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  cursor: pointer;
  z-index: 10;
}

.gallery__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: rgb(217 59 59);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(217 59 59)), to(rgba(224, 142, 120, 0.185)));
  background: linear-gradient(to top, rgb(217 59 59) 0%, rgba(224, 142, 120, 0.185) 100%);
  z-index: 1; /* Градиент над слайдами, но под активным слайдом */
}

.gallery__item.swiper-slide-active::before {
  display: none;
}

.gallery__slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg width='81' height='79' viewBox='0 0 81 79' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='25.1624' height='6.2906' transform='matrix(-0.72074 0.693205 0.72074 0.693205 18.1355 57.1966)' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M44.2696 65.7708C28.041 65.7708 14.8852 52.6834 14.8852 36.5393C14.8852 20.3952 28.041 7.30786 44.2696 7.30786C60.4981 7.30786 73.6539 20.3952 73.6539 36.5393C73.6539 52.6834 60.4981 65.7708 44.2696 65.7708ZM44.2696 73.0786C23.9839 73.0786 7.53917 56.7194 7.53917 36.5393C7.53917 16.3592 23.9839 0 44.2696 0C64.5552 0 80.9999 16.3592 80.9999 36.5393C80.9999 56.7194 64.5552 73.0786 44.2696 73.0786Z' fill='white'/%3E%3Cpath d='M42 24L42 48.9999L47.9954 48.9999L47.9955 23.9999L42 24Z' fill='white'/%3E%3Cpath d='M57.2336 33.9999L32.2336 33.9999L32.2336 39.9954L57.2336 39.9954L57.2336 33.9999Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.gallery__item.swiper-slide-active:hover::after {
  opacity: 1;
}

.coaches {
  overflow: hidden;
}

.coaches .container::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: -250px;
  width: 400px;
  height: 400px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #e3c29a;
}

.coaches .container::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: -155px;
  width: 253px;
  height: 800px;
  background-image: url('../img/plashka-dot-red-y.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.coaches__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 100px;
  width: 100%;
}

.coaches__wrap .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.coaches__swiper {
  width: 100%;
  overflow: hidden;
}

.coaches__swiper-btns {
  display: none;
}

.coaches__slider-prev-btn,
.coaches__slider-next-btn {
  display: inline-block;
  width: 97px;
  height: 37px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  outline: none;
  background-image: url('../img/red-arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
}

.coaches__slider-next-btn {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.coaches__slider-prev-btn.swiper-button-disabled {
  visibility: hidden;
}

.coaches__slider-next-btn.swiper-button-disabled {
  visibility: hidden;
}

.coaches__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.coaches__item {
  width: calc((100% - 20px) / 2);
  gap: 25px;
}

.coaches__item:nth-child(1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.coaches__item-image {
  width: 50%;
  font-size: 0;
  text-align: center;
}

.coaches__img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 90%;
  width: 90%;
  mask-image: linear-gradient(to bottom,
  rgba(0, 0, 0, 1) 0%,
  rgba(0, 0, 0, 1) 70%,
  rgba(0, 0, 0, 0) 100%);
}

.coaches__item-info {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
}

.coaches__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

.coaches__last-name {
  font-size: 32px;
  font-weight: 800;
  line-height: 130%;
}

.coaches__first-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.coaches__sub-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
}

.schedule {
  position: relative;
  padding: 60px 0;
  background-color: #fff;
}

.schedule .container::before {
  content: '';
  position: absolute;
  display: block;
  top: -75px;
  left: -165px;
  width: 235px;
  height: 1280px;
  background-image: url('../img/plashka-dot-schedule.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.schedule .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.schedule .section-title span {
  display: inline-block;
  width: 5px;
  height: 50px;
  background-color: #000;
}

.schedule__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  max-width: 850px;
  gap: 25px;
}

.schedule__control {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding-left: 10px;
  border: 2px solid #e3c29a;
  border-radius: 8px;
  background-color: #fff;
}

.schedule__control-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: lowercase;
}

.choices__inner {
  padding-left: 10px;
  background-color: #e3c29a;
  border: none;
  border-radius: 0;
  min-height: auto;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.choices[data-type*=select-one] .choices__input {
  padding-left: 0;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  margin-top: -1px;
  background-color: white;
  border: 2px solid #e3c29a;
  border-top-color: white;
  border-radius: 0 0 8px 8px;
}

.is-open .choices__list--dropdown, .is-open .choices__list--dropdown[aria-expanded] {
  border-color: #e3c29a;
  margin-right: -3px;
}

.is-flipped .choices__list--dropdown, .is-flipped .choices__list--dropdown[aria-expanded] {
  border-radius: 8px 8px 0 0;
}

.is-open .choices__inner {
  border-radius: 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after {
  display: none;
}

.choices[data-type*=select-one]::after {
  content: '';
  width: 20px;
  height: 12px;
  right: 9px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L6 6L1 1' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 12px;
  background-position: center;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 10;
}

.choices[data-type*=select-one].is-open::after {
  margin-top: -2.5px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L6 6L1 1' stroke='white'/%3E%3C/svg%3E");
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.choices__list--single {
  padding-right: 30px;
  padding-left: 0;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: block;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
}

.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.choices__list .is-selected {
  display: none;
}

.schedule__departments {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.schedule__department {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  pointer-events: none;
  position: absolute; /* чтобы не "скакала" верстка при скрытии */
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: opacity .2s, visibility .3s, -webkit-transform .4s;
  transition: opacity .2s, visibility .3s, -webkit-transform .4s;
  transition: opacity .2s, transform .4s, visibility .3s;
  transition: opacity .2s, transform .4s, visibility .3s, -webkit-transform .4s;
}

.schedule__department.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
  position: relative; /* возвращаем поток */
}

.schedule__department-coach {
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
  font-size: 24px;
}

.schedule__department-coach-title {
  font-weight: 700;
  color: #e3c29a;
  text-transform: uppercase;
}

.schedule__department-coach-name {
  font-weight: 400;
}

.schedule__department-cards {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}

.schedule__department-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 2 * 25px) / 3);
  min-width: 265px;
  padding: 20px;
  border: 2px solid #e3c29a;
  border-radius: 8px;
  gap: 20px;
  background-color: #fff;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  text-align: center;
}

.schedule__department-card:hover {
  background-color: #e3c29a;
}

.schedule__department-card:hover .schedule__department-card-title {
  background-color: #d93b3b;
  color: #fff;
}

.schedule__department-card-title {
  margin: 0;
  padding: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background-color: #e3c29a;
  border-radius: 5px;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}

.schedule__department-card-title span {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.schedule__department-card-schedule-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.schedule__department-card-schedule {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.schedule__department-card-schedule-day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 16px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-image: url(../img/schedule-day.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule__department-card-schedule-time {
  padding-top: 16px;
  font-size: 22px;
  font-weight: 600;
}

.schedule__department-card-pricing {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: normal;
  -ms-grid-row-align: stretch;
  align-self: normal;
  padding: 7px;
  margin: auto -22px -22px;
  border-radius: 0 0 8px 8px;
  background-color: #d93b3b;
  font-size: 18px;
  color: #fff;
}

.schedule__department-card-pricing-title {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}

.schedule__department-card-pricing-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.schedule__department-card-pricing-cost {
  align-self: flex-end;
}

.schedule__department-card-pricing-cost span {
  font-weight: 600;
  color: #fff;
}

.schedule__department-card-pricing-training {
  font-size: 12px;
}

.camp {
  display: none;
  position: relative;
}

/*.camp::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 85px;*/
/*  right: -145px;*/
/*  width: 436px;*/
/*  height: 436px;*/
/*  background-image: url(../img/plashka-dot.png);*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*  background-position: center;*/
/*  z-index: -1;*/
/*}*/

.camp__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 100px 0;
}

.camp__wrap .section-title {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-bottom: 50px;
}

.camp__row {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.camp__row:not(:last-child) {
  margin-bottom: 50px;
}

.camp__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.camp__date-title,
.camp__date {
  font-size: 88px;
  font-weight: 800;
  line-height: 110%;
  text-align: center;
}

.camp__date {
  margin-bottom: 25px;
}

.camp__request-btn {
  font-size: 48px;
  border-radius: 54px;
}

.camp__video {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  width: 60%;
}

.camp__video-img {
  border: 4px solid #e3c29a;
  border-radius: 8px;
}

.camp__video::before,
.camp__video::after {
  content: '';
  width: 16%;
  height: 100px;
  background-image: url('../img/camp-video-arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.camp__video::after {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.camp__video-btn::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url('../img/play-icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* PDF Viewer Styles */
.pdf-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  /* padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.pdf-viewer {
  width: 100%;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  background-color: #e3c29a;
  overflow: auto;
}

#pdf-canvas {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pdf-controls {
  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;
  gap: 15px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* .pdf-controls button {
  background: #d93b3b;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
} */

.pdf-prev-page,
.pdf-next-page {
  display: block;
  width: 45px;
  height: 45px;
  border: 2px solid #d93b3b;
  border-radius: 30px;
  color: #fff;
  background-color: #d93b3b;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pdf-prev-page:hover,
.pdf-next-page:hover {
  border-radius: 4px;
  color: #d93b3b;
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pdf-prev-page:active,
.pdf-next-page:active {
  border-radius: 30px;
}

.pdf-prev-page:disabled,
.pdf-next-page:disabled {
  border-radius: 30px;
  color: #fff;
  border-color: #cccccc;
}

/* .pdf-controls button:hover {
  background: #c0392b;
  transform: translateY(-1px);
} */

.pdf-controls button:disabled {
  background: #cccccc;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
}

.pdf-controls span {
  font-size: 16px;
  color: #333;
  min-width: 50px;
  text-align: center;
}

.pdf-download {
  text-align: center;
  margin-top: 20px;
}

/* .pdf-download a {
  display: inline-block;
  padding: 10px 25px;
  background: #d93b3b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 500;
}

.pdf-download a:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} */

.pdf-error {
  padding: 20px;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  border-radius: 4px;
  color: #c62828;
  text-align: center;
}

.pdf-error a {
  color: #c62828;
  text-decoration: underline;
}

.news .section-title {
  margin-bottom: 50px;
  text-align: center;
}

.news__feed-wrap {
  max-width: 660px;
  margin: 0 auto;
  padding: 15px;
  border: 15px solid #d93b3b;
  border-radius: 12px;
  background-color: #e3c29a;
}

.news__vk-feed {
  width: 100%;
  /*max-width: 800px;*/
  margin: 0 auto;
}

.contacts {
  position: relative;
}

.contacts.section {
  padding-bottom: 0;
}

.contacts::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: -300px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #d93b3b;
}

.contacts__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 100px 0;
}

.contacts__wrap .section-title {
  margin-bottom: 50px;
}

.contacts__info {
  width: calc(40% - 25px);
}

.contacts__list {
  margin-bottom: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contacts__item {
  flex-direction: column;
  gap: 5px;
  color: #000;
}

.contacts__link {
  font-size: 34px;
  font-weight: 600;
  transition: color .3s;
}

.contacts__link:hover {
  color: #e3c29a;
}

.contacts__item-descr {
  font-size: 16px;
}

.contacts__social-list {
  gap: 20px;
}

.contacts__social-link {
  display: block;
  width: 50px;
  height: 50px;
  filter: grayscale(100%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.contacts__social-link:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  filter: grayscale(0);
}

.contacts__social-link--whatsapp {
  background-image: url('../img/whatsup-icon.png');
}

.contacts__social-link--telegram {
  background-image: url('../img/telegram-icon.png');
}

.contacts__social-link--vk {
  background-image: url('../img/vk-icon.png');
}

/*.contacts__list {*/
/*  -webkit-box-orient: vertical;*/
/*  -webkit-box-direction: normal;*/
/*  -ms-flex-direction: column;*/
/*  flex-direction: column;*/
/*  -webkit-box-align: start;*/
/*  -ms-flex-align: start;*/
/*  align-items: flex-start;*/
/*}*/

/*.contacts__item:not(:last-child) {*/
/*  margin-bottom: 10px;*/
/*}*/

/*.contacts__link {*/
/*  -webkit-box-align: center;*/
/*  -ms-flex-align: center;*/
/*  align-items: center;*/
/*  font-size: 32px;*/
/*  font-weight: 400;*/
/*  line-height: 130%;*/
/*  gap: 20px;*/
/*  -webkit-transition: color .3s;*/
/*  transition: color .3s;*/
/*}*/

/*.contacts__link:hover {*/
/*  color: #e3c29a;*/
/*}*/

/*.contacts__link:hover::before {*/
/*  -webkit-transform: scale(1.2);*/
/*  transform: scale(1.2);*/
/*}*/

/*.contacts__link::before {*/
/*  content: '';*/
/*  display: block;*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*  background-position: center;*/
/*  -ms-flex-negative: 0;*/
/*  flex-shrink: 0;*/
/*  -webkit-transition: -webkit-transform .3s;*/
/*  transition: -webkit-transform .3s;*/
/*  transition: transform .3s;*/
/*  transition: transform .3s, -webkit-transform .3s;*/
/*}*/

/*.contacts__link--phone::before {*/
/*  background-image: url('../img/phone.png');*/
/*}*/

/*.contacts__link--whatsapp::before {*/
/*  background-image: url('../img/whatsup-icon.png');*/
/*}*/

/*.contacts__link--telegram::before {*/
/*  background-image: url('../img/telegram-icon.png');*/
/*}*/

/*.contacts__link--vk::before {*/
/*  background-image: url('../img/vk-icon.png');*/
/*}*/

.contacts__record {
  width: calc(60% - 25px);
  min-height: 600px;
  padding: 100px 100px 60px;
  border: 2px solid #e3c29a;
  border-radius: 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  background-color: #fff;
  z-index: 10;
}

.contacts__form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts__form-title {
  margin: 0;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.contacts__form-wrap {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 606px;
  width: 100%;
}

.contacts__form-label {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.contacts__form-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e3c29a;
  border-radius: 3px;
  outline: none;
}

.contacts__form-input-error {
  position: absolute;
  display: none;
  bottom: -20px;
  left: 0;
  font-size: 14px;
  color: red;
}

.contacts__form-radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
  padding-top: 30px;
}

.contacts__form-radio .contacts__form-input-error {
  bottom: -25px;
  width: 100%;
  text-align: center;
}

.contacts__form-legend {
  position: absolute;
  top: 0;
  width: max-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
}

.contacts__form-radio-group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}

.contacts__form-radio-label {
  padding: 10px;
  border: 2px solid #e3c29a;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: background-color .3s, color .3s, border-color .3s;
  transition: background-color .3s, color .3s, border-color .3s;
}

.contacts__form-radio-label:hover {
  background-color: #e3c29a;
  border-color: transparent;
}

.contacts__form-radio-input:checked + .contacts__form-radio-label {
  background-color: #e3c29a;
  color: #fff;
}

.contacts__form-radio-label.error,
.contacts__form-input.error,
.contacts__form-label_checkbox.error::before {
  border-color: red;
}

.contacts__form-label_checkbox {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-column-align: center;
  justify-self: center;
  cursor: pointer;
}

.contacts__form-label_checkbox::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #e3c29a;
  border-radius: 3px;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contacts__form-label_checkbox::after {
  content: '';
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #e3c29a;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: visibility .2s, opacity .2s;
  transition: visibility .2s, opacity .2s;
}

.contacts__form-checkbox:checked + .contacts__form-label_checkbox::after {
  visibility: visible;
  opacity: 1;
}

.contacts__form-btn {
  width: 100%;
  border-color: #e3c29a;
  background-color: #e3c29a;
}

.contacts__form-btn:hover {
  border-color: #e3c29a;
  color: #e3c29a;
}

.form-message {
  display: none;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  height: 100%;
  min-height: 250px;
  width: 100%;
  max-width: 300px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #e3c29a;
  text-align: center;
}

.contacts__map {
  margin-top: -50px;
  width: 100%;
  height: 500px;
}

[class*="copyrights-pane"] {
  display: none !important;
}

.footer {
  padding: 10px 0;
}

.footer__container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loader {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.lds-circle,
.lds-circle div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lds-circle {
  display: inline-block;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
}
.lds-circle > div {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 8px;
  background: #c62828;
  border-radius: 50%;
  -webkit-animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@-webkit-keyframes lds-circle {
  0%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(1800deg);
    transform: rotateY(1800deg);
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    -webkit-transform: rotateY(3600deg);
    transform: rotateY(3600deg);
  }
}
@keyframes lds-circle {
  0%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(1800deg);
    transform: rotateY(1800deg);
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    -webkit-transform: rotateY(3600deg);
    transform: rotateY(3600deg);
  }
}

.rights {
  font-size: 14px;
  text-align: center;
}
