@charset "UTF-8";
:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Raleway", sans-serif;
  --content-width: 1360px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --bg-color: #F4F2F3;
  --grey-color: #B0B0B0;
  --dark-color: #242424;
  --green-color: #063E4B;
  --orange-color: #FF8C00;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  color: var(--dark-color);
  background-color: var(--bg-color);
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

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

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.ibg {
  display: block;
  position: relative;
}

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

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

.text-left {
  text-align: left;
}

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

.gap-15 {
  gap: 15px;
}

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

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-item-100 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.flex .burger {
  --burger-width: 30px;
  --burger-height: 14px;
  --burger-line-height: 2px;
  position: relative;
  z-index: 500;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  color: #fff;
  border: 2px #fff;
  display: none;
}
.flex .burger::before, .flex .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.flex .burger::before {
  top: 0;
}
.flex .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.flex .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.flex .burger--active {
  color: #242424;
}
.flex .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.flex .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.flex .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .flex .burger {
    display: block;
  }
}

.arrow-right::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../img/svg/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 8px;
}
@media (any-hover: hover) {
  .arrow-right--dark:hover::after {
    background-image: url("../img/svg/arrow-right.svg");
  }
}
.arrow-right--dark::after {
  background-image: url("../img/svg/arrow-right-dark.svg");
}

.overflow-hidden {
  overflow: hidden;
}

.loading-ring::after {
  content: "";
  -webkit-animation: ring 1.2s linear infinite;
  animation: ring 1.2s linear infinite;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  margin: -23px 0 0 -23px;
  border: 5px solid transparent; /* Изначально все стороны прозрачны */
  border-left-color: #FF8C00; /* Верхняя граница окрашена */
  border-right-color: #FF8C00; /* Правая граница окрашена */
}

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

/* Анимация кольца */
@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.btn {
  font-size: 18px;
  line-height: 125%;
  border-radius: 20px;
  padding: 10px 20px;
  min-width: 230px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: 45px;
  background-color: var(--orange-color);
}
@media (max-width: 1024px) {
  .btn {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: #D2691E;
  }
}
.btn--simple-light {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn--simple-light:hover {
  background-color: var(--orange-color);
  border: 2px solid transparent;
}
.btn--simple-dark {
  background-color: transparent;
  border: 2px solid #242424;
  color: #242424;
}
@media (any-hover: hover) {
  .btn--simple-dark:hover {
    border: 2px solid transparent;
    color: #fff;
    background-color: var(--orange-color);
  }
}
.btn--big {
  min-height: 60px;
}
@media (max-width: 1024px) {
  .btn--big {
    min-height: 50px;
  }
}
.btn:focus {
  outline: none;
}

@-webkit-keyframes hardShine {
  0% {
    left: -50%;
  }
  10% {
    left: 105%;
  }
  100% {
    left: 200%;
  }
}

@keyframes hardShine {
  0% {
    left: -50%;
  }
  10% {
    left: 105%;
  }
  100% {
    left: 200%;
  }
}
.button-hard-shine {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.button-hard-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-animation: hardShine 5s ease-in-out infinite;
  animation: hardShine 5s ease-in-out infinite;
}

.char-counter {
  position: absolute;
  font-size: 12px;
  color: #555;
  text-align: right;
  right: 15px;
  bottom: 15px;
  margin-top: 5px;
}

@media (min-width: 1024px) {
  .review-form.card--padding {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media (min-width: 1300px) {
  .review-form.card--padding {
    padding-right: 185px;
    padding-left: 185px;
  }
}
.review-form.card--padding .form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: none;
}
.review-form.card--padding .form__input-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 20px);
  flex: 0 1 calc(50% - 20px);
}
@media (max-width: 768px) {
  .review-form.card--padding .form__input-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.review-form.card--padding .form__label {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-block-form__rating-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-block-form__rating-options input[type=radio] {
  display: none; /* Скрываем радио-кнопки */
}

.section-block-form__rating-options label {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
  text-align: center;
}

.section-block-form__rating-options input[type=radio]:checked + label {
  background-color: #2f62d7;
  color: white;
  border-color: #2f62d7;
}

.section-block-form__rating-options label:hover {
  background-color: #e0e0e0;
}

.section-block-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;
  gap: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 20px);
  flex: 0 1 calc(50% - 20px);
}
@media (max-width: 576px) {
  .section-block-form__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

textarea.form__input {
  padding: 20px 20px;
}

.question-form__title {
  margin-bottom: 20px;
}

.rating {
  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; /* Отображаем звезды справа налево */
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.rating input[type=radio] {
  display: none; /* Скрываем радио-кнопки */
}

.rating .star {
  width: 28px;
  height: 28px;
  background-image: url("../img/svg/star.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  cursor: pointer;
  opacity: 0.4; /* "Неактивная" звезда */
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* Эффект при наведении */
.rating .star:hover,
.rating .star:hover ~ .star {
  opacity: 1; /* "Активные" звёзды при наведении */
}

/* Активные звёзды после выбора */
.rating input[type=radio]:checked ~ .star {
  opacity: 1; /* "Выбранные" звёзды */
}

.form--wrapper-330 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 330px;
  min-width: 330px;
  margin: 0 auto;
}

.header {
  z-index: 100;
  position: absolute;
  width: 100%;
  color: #ffffff;
}
.header__wrapper {
  background-color: transparent;
}
@media (max-width: 768px) {
  .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100px;
}
@media (max-width: 1024px) {
  .header__top {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .header__top .language-panel {
    display: none;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  z-index: 550;
}
.logo__image {
  width: 100%;
  max-height: 70px;
}
@media (max-width: 1024px) {
  .logo__image {
    max-height: 40px;
  }
}
@media (max-width: 576px) {
  .logo__image {
    max-height: 30px;
  }
}
.logo__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  width: 100%;
  color: #ffffff;
  font-size: 28px;
  line-height: normal;
}
@media (max-width: 1024px) {
  .logo__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }
}
.logo__text span {
  display: block;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 1024px) {
  .logo__text {
    font-size: 20px;
  }
  .logo__text span {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .logo__text {
    font-size: 18px;
  }
  .logo__text span {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .logo {
    gap: 10px;
  }
}
.logo.changing .logo__text {
  color: #242424;
  font-weight: 500;
}
.logo.changing .logo__text span {
  font-size: 16px;
  color: inherit;
}

.language-panel {
  z-index: 1;
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 20px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  /* Применение размытия */
  /* Для поддержки WebKit-браузеров */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
}
.language-panel__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.language-panel__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-right: 15px;
}
.language-panel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  pointer-events: none;
}
.language-panel__item.active {
  background: rgba(255, 255, 255, 0.4);
  padding: 7px 15px;
  border-radius: 17px;
}
.language-panel__item img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0;
  box-shadow: 0;
}
@media (any-hover: hover) {
  .language-panel__item:not(.active) img:hover {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(229, 229, 229, 0.3490196078);
    box-shadow: 0px 0px 5px 5px rgba(229, 229, 229, 0.3490196078);
  }
}
.language-panel__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: fill;
  color: #fff;
}
.language-panel__item span {
  display: none;
}
.language-panel__toggle {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 5px 10px;
  width: 48px;
  height: 30px;
  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;
  cursor: pointer;
}
.language-panel__toggle img, .language-panel__toggle svg {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.language-panel__toggle.turn img, .language-panel__toggle.turn svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.language-panel__dropdown {
  position: absolute;
  right: 0;
  top: 40px;
  pointer-events: none;
}
.language-panel__dropdown.open .language-panel__dropdown-wrapper {
  visibility: visible;
  height: 100%;
}
.language-panel__dropdown-wrapper {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-transition: height 0.9s ease 0s;
  transition: height 0.9s ease 0s;
  height: 0;
  visibility: hidden;
}
.language-panel__dropdown-item {
  background-color: transparent;
  pointer-events: none;
}
.language-panel__dropdown-item:not(:last-child) {
  margin-bottom: 8px;
}
@media (any-hover: hover) {
  .language-panel__dropdown-item:hover {
    background-color: #dcdcdc;
    border-radius: 5px;
  }
}
.language-panel__dropdown-item span {
  margin-left: 5px;
}
.language-panel__dropdown-item .language-panel__link::before {
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.language-panel__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #242424;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  pointer-events: fill;
  cursor: pointer;
}
@media (max-width: 768px) {
  .language-panel {
    margin-left: auto;
    border: 2px solid #242424;
    background: rgba(0, 0, 0, 0.1);
  }
  .language-panel__item.active {
    background: rgba(65, 65, 65, 0.4);
    padding: 7px 15px;
    border-radius: 17px;
  }
  .language-panel__toggle {
    border: 2px solid transparent;
    background-color: var(--green-color);
  }
}

.nav__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 1025px) and (max-width: 1330px) {
  .nav__list {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .nav__list {
    gap: 10px;
  }
}
.nav__item {
  border-radius: 20px;
  position: relative;
  padding: 10px 0;
}
@media (max-width: 1024px) {
  .nav__item {
    font-size: 14px;
    padding: 6px 14px;
  }
}
@media (max-width: 768px) {
  .nav__item {
    font-size: 20px;
  }
}
.nav__link {
  color: #fff;
  font-size: inherit;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  /* Применение размытия */
  /* Для поддержки WebKit-браузеров */
}
@media (any-hover: hover) {
  .nav__link:hover {
    background: rgba(0, 0, 0, 0.435);
  }
}
@media (max-width: 1024px) {
  .nav__link {
    font-size: 14px;
    padding: 6px 14px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background-color: #fff;
    padding: 70px 15px 15px 15px;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #242424;
    gap: 20px;
  }
  .nav.menu--active {
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav__link {
    color: var(--dark-color);
    font-weight: 600;
    font-size: inherit;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    position: relative;
    background: transparent;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
    backdrop-filter: blur(10px);
    /* Применение размытия */
    -webkit-backdrop-filter: blur(10px);
    /* Для поддержки WebKit-браузеров */
  }
}
@media (max-width: 768px) and (any-hover: hover) {
  .nav__link:hover {
    background: rgba(173, 173, 173, 0.435);
  }
}

.share {
  z-index: 2;
  position: fixed;
  bottom: 50px;
  right: 80px;
}
.share__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  height: 100%;
  max-height: 250px;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  margin-bottom: 10px;
}
.share__list.hidden {
  max-height: 0;
}
.share__list .share__link.hidden {
  opacity: 0;
}
.share__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--dark-blue, #fefefe);
  -webkit-box-shadow: 16px 16px 64px 0px rgba(4, 14, 21, 0.04);
  box-shadow: 16px 16px 64px 0px rgba(4, 14, 21, 0.04);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 54px;
  height: 54px;
  min-height: 54px;
  min-width: 54px;
}
.share__link img {
  width: 28px;
}
.share__link--bookmark {
  background-color: #7279D8;
}
.share__link--bookmark img {
  width: 22px;
}
.share__link--print {
  background-color: #ad6fa8;
}
.share__link--print img {
  width: 22px;
}
.share__link--facebook {
  background-color: #1877F2;
}
.share__link--twitter {
  background-color: #000000;
}
.share__link--instagram {
  background-color: #E1306C;
}
.share__link--send-link {
  background-color: #7a30e1;
}

@media (max-width: 1024px) {
  .share {
    bottom: 30px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .share {
    bottom: 30px;
    right: 15px;
  }
}
.share__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--dark-blue, #233849);
  -webkit-box-shadow: 16px 16px 64px 0px rgba(4, 14, 21, 0.04);
  box-shadow: 16px 16px 64px 0px rgba(4, 14, 21, 0.04);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .share__button img {
    width: 24px;
  }
}
.flag {
  position: relative;
  text-decoration: none;
}
.flag::before {
  content: "";
  position: relative;
  width: 28px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.flag--en::before {
  background-image: url("../img/svg/gb.svg");
}
.flag--ru::before {
  background-image: url("../img/svg/ru.svg");
}
.flag--me::before {
  background-image: url("../img/svg/me.svg");
}
.flag--de::before {
  background-image: url("../img/svg/de.svg");
}
.flag--tr::before {
  background-image: url("../img/svg/tr.svg");
}
.flag--fr::before {
  background-image: url("../img/svg/fr.svg");
}
.flag--cn::before {
  background-image: url("../img/svg/cn.svg");
}
.flag--rs::before {
  background-image: url("../img/svg/rs.svg");
}
.flag--hr::before {
  background-image: url("../img/svg/hr.svg");
}
.flag--al::before {
  background-image: url("../img/svg/al.svg");
}
.flag--it::before {
  background-image: url("../img/svg/it.svg");
}
.flag--pl::before {
  background-image: url("../img/svg/pl.svg");
}
.flag--cz::before {
  background-image: url("../img/svg/cz.svg");
}
.flag--sl::before {
  background-image: url("../img/svg/sl.svg");
}
.flag--hu::before {
  background-image: url("../img/svg/hu.svg");
}
.flag--ro::before {
  background-image: url("../img/svg/ro.svg");
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  color: var(--dark-color);
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: relative;
  padding: 0 10px;
  color: inherit;
}
@media (max-width: 576px) {
  .breadcrumbs__item {
    margin-bottom: 5px;
  }
}
.breadcrumbs__link {
  color: var(--dark-color);
}
.breadcrumbs__current {
  color: var(--green-color);
}
@media (max-width: 576px) {
  .breadcrumbs {
    padding: 8px 0;
  }
}

.header.sticky {
  -webkit-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
  position: fixed;
  background-color: #fff;
  padding: 10px 0;
}
.header.sticky .logo__image {
  width: 100%;
  max-height: 30px;
}
@media (max-width: 1024px) {
  .header.sticky .logo__image {
    max-height: 20px;
  }
}
.header.sticky .logo__text {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
}
.header.sticky .logo__text span {
  display: none;
}
.header.sticky .nav__link {
  color: var(--dark-color);
  font-weight: 600;
  font-size: inherit;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  position: relative;
  background: transparent;
  -webkit-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header.sticky .nav__link:hover {
    border-bottom: 2px solid #343434;
  }
}
.header.sticky .nav__item {
  padding: 6px 0;
}
.header.sticky .language-panel {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
}
.header.sticky .language-panel .language-panel__toggle {
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.header.sticky .language-panel .language-panel__toggle svg path {
  stroke: #343434;
}
.header.sticky .language-panel__item {
  height: 28px;
}
.header.sticky .language-panel__item.active {
  background: rgba(255, 255, 255, 0.9);
  padding: 7px 15px;
  border-radius: 17px;
}
.header.sticky .language-panel .language-panel__link.flag::before {
  width: 24px;
  height: 16px;
}
.header.sticky .header__top {
  height: 40px;
}
.header.sticky .burger {
  color: #242424;
  border: 2px #242424;
}

.hero {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.hero .hero__container {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.hero__body {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
}
.hero__content {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  height: 100%;
  width: 100%;
  left: 50%;
  /* Центрирование по горизонтали */
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  /* Смещение на половину ширины и высоты */
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.hero__title {
  position: relative;
  top: 30%;
  left: 5%;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  max-width: 800px;
}
@media (max-width: 768px) {
  .hero__title {
    top: 15%;
    font-size: 24px;
  }
}
.hero__wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 600px;
  background-color: var(--bg-color-dark);
  background: var(--bg-gradient-dark);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero__wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    height: auto;
    max-width: 100%;
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .hero__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hero__wrapper-btn {
  pointer-events: fill;
}
@media (max-width: 768px) {
  .hero__wrapper-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__images {
  pointer-events: none;
}

.hero-slider {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.hero-slider__swiper-wrapper {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.hero-slider__slide {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero-slider__slide.swiper-slide-active .hero-slider__image {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  /* Увеличение изображения до 110% */
}
.hero-slider__body-slide {
  position: relative;
  height: 100%;
}
.hero-slider__image {
  height: 100%;
  padding: 0 0 60% 0;
  -webkit-transition: -webkit-transform 20s linear 0s;
  transition: -webkit-transform 20s linear 0s;
  transition: transform 20s linear 0s;
  transition: transform 20s linear 0s, -webkit-transform 20s linear 0s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hero-slider__image:before {
  pointer-events: none;
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 0, 36, 0.6)), color-stop(40%, rgba(11, 11, 46, 0.4)), color-stop(65%, rgba(11, 11, 46, 0)), color-stop(84%, rgba(11, 11, 46, 0.0144432773)), to(rgba(11, 11, 46, 0.4878326331)));
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.6) 0%, rgba(11, 11, 46, 0.4) 40%, rgba(11, 11, 46, 0) 65%, rgba(11, 11, 46, 0.0144432773) 84%, rgba(11, 11, 46, 0.4878326331) 100%);
}
.hero-slider__content {
  position: absolute;
  z-index: 2;
  top: 65%;
  right: 15%;
  height: 100%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .hero-slider__content {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .hero-slider__content {
    top: 45%;
    width: 65%;
  }
}
.hero-slider__text {
  color: #fff;
  font-size: inherit;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 15px 20px 40px 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  /* Применение размытия */
}
@media (max-width: 1024px) {
  .hero-slider__text {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .hero-slider__text {
    font-size: 12px;
    padding: 10px 13px 40px 13px;
  }
}
.hero-slider__button {
  top: -30px;
  right: 25px;
  padding: 10px 40px;
}
.hero-slider__swiper-pagination.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: auto !important;
  bottom: 0 !important;
}
.hero-slider__swiper-pagination.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal span {
  background: var(--orange-color);
}

.hero-slider__button-next,
.hero-slider__button-prev {
  color: #fff !important;
}

.to-scroll {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 20px;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.to-scroll__link {
  pointer-events: fill;
  width: 100px;
  height: 100%;
  margin: 0 auto;
  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;
  cursor: pointer;
}

.to-scroll__link svg {
  -o-object-position: left;
  object-position: left;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  text-align: center;
  position: absolute;
  animation: arrow-scroll 1s infinite alternate-reverse cubic-bezier(0.43, 0.13, 0.57, 0.88);
  width: 25px;
}

@-webkit-keyframes arrow-scroll {
  from {
    bottom: 5px;
  }
  to {
    bottom: -5px;
  }
}
@keyframes arrow-scroll {
  from {
    bottom: 5px;
  }
  to {
    bottom: -5px;
  }
}
.hero__content--card {
  position: relative;
  top: 200px;
  position: absolute;
  z-index: 10;
  pointer-events: none;
  height: auto;
  width: 100%;
  left: 50%;
  max-width: 320px;
  /* Центрирование по горизонтали */
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  /* Смещение на половину ширины и высоты */
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 768px) {
  .hero__content--card {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 25%;
    max-width: 400px;
    left: 0;
  }
}
@media (max-width: 576px) {
  .hero__content--card {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 15%;
    max-width: 400px;
    left: 0;
  }
}
.hero__content--card .hero__wrapper {
  background-color: var(--green-color);
  border-radius: 25px;
}
.hero__content--card .hero__wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}
.hero__content--card .hero__title {
  left: auto;
  top: auto;
}
.hero__content--card .hero__text {
  color: #ffffff;
}
.hero__content--card .hero__wrapper-btn {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media (max-width: 768px) {
  .hero__content--card .hero__wrapper-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Базовые стили для контейнера */
.parallax-container {
  position: relative;
  height: 100vh;
  -webkit-perspective: 1px;
  perspective: 1px; /* Создает иллюзию глубины */
  margin-bottom: 90px;
  pointer-events: none;
}

/* Стили для каждого слоя */
.layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}

/* Параллакс-эффект: разные скорости прокрутки для каждого слоя */
#layer3 {
  -webkit-transform: translateZ(-2px) scale(3);
  transform: translateZ(-2px) scale(3); /* Самый задний слой (небо) */
}

#layer2 {
  -webkit-transform: translateZ(-1px) scale(2);
  transform: translateZ(-1px) scale(2); /* Средний слой (горы) */
}

.layer img {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .layer--layer1 {
    top: 60px;
  }
}
.layer--layer1 img {
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}
@media (max-width: 768px) {
  .layer--layer1 img {
    -o-object-position: 30% 50%;
    object-position: 30% 50%;
  }
}
@media (max-width: 576px) {
  .layer--layer1 img {
    -o-object-position: 45% 50%;
    object-position: 45% 50%;
  }
}
.layer--layer1-snowmobile {
  left: 40%;
  width: 50%;
}
@media (max-width: 1024px) {
  .layer--layer1-snowmobile {
    top: 60px;
    left: -35%;
    width: 200%;
    height: 125%;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5); /* Масштабируем изображение */
  }
}
@media (max-width: 576px) {
  .layer--layer1-snowmobile {
    left: -22%;
    width: 150%;
    height: 140%;
  }
}
.layer--layer1-snowmobile img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 90%;
  object-position: 0% 90%;
}
@media (max-width: 768px) {
  .layer--layer1-snowmobile img {
    -o-object-position: 30% 50%;
    object-position: 30% 50%;
  }
}
@media (max-width: 576px) {
  .layer--layer1-snowmobile img {
    -o-object-position: 45% 50%;
    object-position: 45% 50%;
  }
}
/* Анимация для увеличения и уменьшения (zoom) */
.zoom-animation {
  -webkit-animation: zoomInOut 35s infinite;
  animation: zoomInOut 35s infinite;
}

.zoom-outin-animation {
  -webkit-animation: zoomOutIn 35s infinite;
  animation: zoomOutIn 35s infinite;
}

.zoom-and-swing-animation {
  -webkit-animation: zoomEffect 35s infinite ease-in-out, swingJumpEffect 5s infinite ease-in-out;
  animation: zoomEffect 35s infinite ease-in-out, swingJumpEffect 5s infinite ease-in-out;
}

/* Анимация наклона (tilt) */
.tilt-animation {
  -webkit-animation: tiltEffect 35s infinite;
  animation: tiltEffect 35s infinite;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* Анимация движения вправо и влево (move sideways) */
.move-animation {
  -webkit-animation: moveSideways 35s infinite linear;
  animation: moveSideways 35s infinite linear;
}

/* Анимация увеличения и уменьшения */
@-webkit-keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes zoomOutIn {
  0%, 100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOutIn {
  0%, 100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Анимация наклона (перспектива вниз-вверх) */
@-webkit-keyframes tiltEffect {
  0%, 100% {
    -webkit-transform: perspective(500px) rotateX(0deg);
    transform: perspective(500px) rotateX(0deg);
  }
  50% {
    -webkit-transform: perspective(500px) rotateX(5deg);
    transform: perspective(500px) rotateX(5deg);
  }
}
@keyframes tiltEffect {
  0%, 100% {
    -webkit-transform: perspective(500px) rotateX(0deg);
    transform: perspective(500px) rotateX(0deg);
  }
  50% {
    -webkit-transform: perspective(500px) rotateX(5deg);
    transform: perspective(500px) rotateX(5deg);
  }
}
/* Анимация движения вправо-влево */
@-webkit-keyframes moveSideways {
  0%, 100% {
    object-position: 0% 50%; /* Начальная позиция */
  }
  50% {
    object-position: 100% 50%; /* Конечная позиция */
  }
}
@keyframes moveSideways {
  0%, 100% {
    -o-object-position: 0% 50%;
    object-position: 0% 50%; /* Начальная позиция */
  }
  50% {
    -o-object-position: 100% 50%;
    object-position: 100% 50%; /* Конечная позиция */
  }
}
@-webkit-keyframes zoomAndSwing {
  0%, 100% {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
  25% {
    -webkit-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
  }
  50% {
    -webkit-transform: scale(1.2) rotate(0deg);
    transform: scale(1.2) rotate(0deg);
  }
  75% {
    -webkit-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
  }
}
@keyframes zoomAndSwing {
  0%, 100% {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
  25% {
    -webkit-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
  }
  50% {
    -webkit-transform: scale(1.2) rotate(0deg);
    transform: scale(1.2) rotate(0deg);
  }
  75% {
    -webkit-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
  }
}
@-webkit-keyframes swingEffect {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}
@keyframes swingEffect {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}
@-webkit-keyframes swingJumpEffect {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
  }
  20% {
    -webkit-transform: rotate(2deg) translateY(0);
    transform: rotate(2deg) translateY(0);
  }
  40% {
    -webkit-transform: rotate(-2deg) translateY(0);
    transform: rotate(-2deg) translateY(0);
  }
  60% {
    -webkit-transform: rotate(1deg) translateY(0);
    transform: rotate(1deg) translateY(0);
  }
  80% {
    -webkit-transform: rotate(-1deg) translateY(0);
    transform: rotate(-1deg) translateY(0);
  }
  90% {
    -webkit-transform: rotate(0deg) translateY(-8px);
    transform: rotate(0deg) translateY(-8px); /* Подпрыгивание вверх */
  }
  95% {
    -webkit-transform: rotate(0deg) translateY(2px);
    transform: rotate(0deg) translateY(2px); /* Легкая просадка вниз */
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0); /* Возврат в исходное положение */
  }
}
@keyframes swingJumpEffect {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
  }
  20% {
    -webkit-transform: rotate(2deg) translateY(0);
    transform: rotate(2deg) translateY(0);
  }
  40% {
    -webkit-transform: rotate(-2deg) translateY(0);
    transform: rotate(-2deg) translateY(0);
  }
  60% {
    -webkit-transform: rotate(1deg) translateY(0);
    transform: rotate(1deg) translateY(0);
  }
  80% {
    -webkit-transform: rotate(-1deg) translateY(0);
    transform: rotate(-1deg) translateY(0);
  }
  90% {
    -webkit-transform: rotate(0deg) translateY(-8px);
    transform: rotate(0deg) translateY(-8px); /* Подпрыгивание вверх */
  }
  95% {
    -webkit-transform: rotate(0deg) translateY(2px);
    transform: rotate(0deg) translateY(2px); /* Легкая просадка вниз */
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0); /* Возврат в исходное положение */
  }
}
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* Чтобы снег не мешал кликам */
  overflow: hidden;
  z-index: 9999;
}

.snow-container::before,
.snow-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(8px 8px at 10% 20%, white, transparent), radial-gradient(12px 12px at 30% 50%, white, transparent), radial-gradient(8px 8px at 70% 80%, white, transparent), radial-gradient(16px 16px at 90% 10%, white, transparent), radial-gradient(10px 10px at 15% 40%, white, transparent), radial-gradient(14px 14px at 50% 70%, white, transparent), radial-gradient(8px 8px at 85% 25%, white, transparent), radial-gradient(12px 12px at 60% 90%, white, transparent), radial-gradient(16px 16px at 5% 5%, white, transparent), radial-gradient(14px 14px at 95% 95%, white, transparent);
  -webkit-filter: drop-shadow(0px 0px 4px rgba(100, 149, 237, 0.8));
  filter: drop-shadow(0px 0px 4px rgba(100, 149, 237, 0.8)); /* Синяя тень */
  -webkit-animation: snowfallDiagonal 8s linear infinite;
  animation: snowfallDiagonal 8s linear infinite;
}

.snow-container::after {
  -webkit-animation-duration: 12s;
  animation-duration: 12s; /* Разное время, чтобы слои не совпадали */
}

@-webkit-keyframes snowfallDiagonal {
  0% {
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
  }
  100% {
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
  }
}

@keyframes snowfallDiagonal {
  0% {
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
  }
  100% {
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
  }
}
.snow-wave-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.snow-wave {
  display: inline-block;
  /* Предположим, что ширина картинки составляет 1000px */
  width: 1000px;
  height: auto;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
  -webkit-animation: slideWave 2s linear infinite;
  animation: slideWave 2s linear infinite;
}

/* Анимация сдвига картинки слева направо */
@-webkit-keyframes slideWave {
  0% {
    -webkit-transform: translateX(0) scale(0.8);
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) scale(1.2);
    transform: translateX(100%) scale(1.2);
    opacity: 0;
  }
}
@keyframes slideWave {
  0% {
    -webkit-transform: translateX(0) scale(0.8);
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) scale(1.2);
    transform: translateX(100%) scale(1.2);
    opacity: 0;
  }
}
.snow-road {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 100%;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
  height: 100%;
  background: url("../img/snowmobile/snow-texture.png") repeat;
  background-size: cover;
  -webkit-animation: moveSnow 2s linear infinite;
  animation: moveSnow 2s linear infinite;
}
@media (max-width: 1240px) {
  .snow-road {
    bottom: -15%;
  }
}

@-webkit-keyframes moveSnow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 500px 0;
  } /* Движение под 45 градусов */
}

@keyframes moveSnow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 500px 0;
  } /* Движение под 45 градусов */
}
@media (max-width: 576px) {
  .about__container {
    margin-bottom: 10px;
  }
}
.about__body:not(:last-child) {
  margin-bottom: 30px;
}
.about__content {
  gap: 100px;
}
@media (min-width: 1025px) {
  .about__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .about__content {
    gap: 50px;
  }
}
.about__wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.about__wrapper:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .about__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin: 0;
  }
  .about__wrapper:not(:last-child) {
    margin-bottom: 0px;
  }
}
.about__title {
  margin-bottom: 20px;
}
.about__title.title-block {
  text-align: left;
}
.about__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding: 0px 0px 26% 0px;
  overflow: hidden;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .about__image {
    display: none;
  }
}
.advantages {
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .advantages {
    gap: 0;
  }
}
.advantages__item {
  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-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  gap: 20px;
}
@media (max-width: 576px) {
  .advantages__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -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;
    margin-bottom: -10px;
  }
  .advantages__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.advantages__image {
  padding: 0px 0px 44% 0px;
  overflow: hidden;
  min-height: 120px;
  min-width: 200px;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .advantages__image {
    min-height: auto;
    min-width: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    padding: 0px 0px 25% 0px;
  }
}
.advantages__caption-text {
  font-weight: 600;
  font-size: 24px;
  color: var(--green-color);
  line-height: 110%;
  text-align: center;
}
@media (max-width: 1024px) {
  .advantages__caption-text {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .advantages__caption-text {
    font-size: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1024px) {
  .cards {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .cards {
    gap: 15px;
  }
}
.cardsgap--40 {
  gap: 40px;
}
@media (max-width: 1024px) {
  .cardsgap--40 {
    gap: 35px;
  }
}
@media (max-width: 576px) {
  .cardsgap--40 {
    gap: 25px;
  }
}
.cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.card {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: relative;
}
@media (max-width: 576px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.card--padding {
  padding: 15px;
}
.card--paddind {
  padding: 15px;
}
.card--dark-bg {
  background-color: var(--green-color);
}
.card--no-bg {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.card--50 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 15px);
  flex: 0 1 calc(50% - 15px);
}
.card--50:nth-last-child(1):nth-child(odd) {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (min-width: 1024.8px) {
  .card--50:nth-last-child(1):nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 1024px) {
  .card--50 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.card--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card--column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.card__wrapper {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  height: 100%;
}
.card__wrapper--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}
.card__wrapper--content > *:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .card__wrapper--content {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .card__wrapper--content {
    padding: 10px 10px 20px 10px;
  }
}
.card__wrapper--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .card__wrapper--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .card__wrapper--row > * {
    width: 100%;
  }
}
.card__wrapper--40 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
.card__wrapper--auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 576px) {
  .card__wrapper {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}
.card__image {
  padding: 0 0 46% 0;
  overflow: hidden;
  border-radius: 30px;
  min-height: 100%;
}
.card__image::after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), color-stop(32%, rgba(0, 0, 0, 0.24)), color-stop(65%, rgba(11, 11, 46, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.24) 32%, rgba(11, 11, 46, 0) 65%);
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .card__image {
    padding: 0 0 64% 0;
  }
}
.card__wrapper-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card__btn-wrapper {
  margin-top: auto;
  text-align: right;
}
@media (max-width: 576px) {
  .card__btn-wrapper {
    text-align: center;
  }
}
.card__btn-wrapper--all-width .btn {
  width: 100%;
}
@media (max-width: 576px) {
  .card__title {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.card__title--light {
  z-index: 1;
  line-height: normal;
  position: absolute;
  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;
  font-size: 24px;
  border-radius: 20px;
  padding: 5px 20px;
  margin: 20px;
  color: #fff;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .card__title--light {
    margin: 10px;
  }
}
.card__text--grey {
  color: #737373;
}
.card__text--big {
  color: var(--dark-color);
  font-size: 18px;
}
.card__text--big b {
  font-size: 24px;
}
@media (max-width: 576px) {
  .card__text--big b {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
  }
}
.card__text p {
  margin-bottom: 5px;
}
.card__price {
  color: var(--green-color);
  font-weight: 600;
  font-size: 24px;
}
.card__price:not(:last-child) {
  margin-bottom: 0px;
}
@media (max-width: 576px) {
  .card__price {
    font-size: 18px;
  }
}
.card__price span {
  font-size: 32px;
}
@media (max-width: 576px) {
  .card__price span {
    font-size: 24px;
  }
}
.card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.5;
}
.card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card__item-list {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 10px);
  flex: 0 1 calc(50% - 10px);
  padding-left: 15px;
  font-weight: 600;
  font-size: 20px;
}
.card__item-list::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff8c00;
  display: inline-block;
}
.card__item-list span {
  font-size: 24px;
  line-height: 16px;
}
@media (max-width: 576px) {
  .card__item-list span {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .card__item-list {
    font-size: 16px;
  }
}
.card__included-text {
  font-size: 14px;
}
.card__box {
  background-color: var(--green-color);
  border-radius: 20px;
  padding: 15px;
}
.card__box > *:not(:last-child) {
  margin-bottom: 15px;
}
.card__box p {
  color: #fff;
  font-size: 14px;
  margin: 15px 0;
}
.card__days-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  counter-reset: day-counter;
}
.card__day {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  counter-increment: day-counter;
  font-size: 24px;
  font-weight: 400;
}
.card__day::before {
  content: counter(day-counter);
  position: relative;
  background: transparent;
  color: white;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  border: 4px solid #ff8c00;
  padding: 5px 10px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
}
.card__day-title {
  color: #ffffff;
  display: inline-block;
}
.card__price {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.card__price span {
  font-size: 24px;
  margin-right: 10px;
}
.card__info-title {
  margin-bottom: 10px;
}

.card--dark-bg .card__item-list {
  color: #ffffff;
  font-weight: 500;
}

.numbers {
  counter-reset: card-counter;
  /* Инициализация счётчика */
}

.number::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  counter-increment: card-counter;
  /* Увеличение значения счётчика для каждой карточки */
  content: counter(card-counter);
  /* Вставка значения счётчика в контент */
  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;
  color: #fff;
  font-size: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px 5px;
  margin: 20px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  /* Применение размытия */
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  .number::before {
    margin: 15px;
  }
}
@media (max-width: 576px) {
  .number::before {
    margin: 10px;
  }
}

.number-bg {
  background-color: var(--green-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .number-bg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
}

.information-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-style: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.information-item:not(:last-child) {
  margin-bottom: 10px;
}
.information-item__text {
  padding-top: 4px;
  color: #737373;
}

.star {
  width: 28px;
  height: 28px;
  background-image: url("../img/svg/star.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}

.icon::before {
  content: "";
  position: relative;
  width: 20px;
  height: 30px;
  min-width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon--location::before {
  background-image: url("../img/svg/location.svg");
}
.icon--phone::before {
  background-image: url("../img/svg/phone.svg");
  height: 20px;
}
.icon--message::before {
  background-image: url("../img/svg/message.svg");
  height: 20px;
}

.review-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.review-section h5 {
  font-weight: bold;
  margin: 20px 0 5px 0;
}
.review-section .benefits,
.review-section .green-dotter {
  margin-top: 5px;
}
.review-section ul.green-dotter > li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #35a52f;
  display: inline-block;
}
.review-section ul.benefits > li::before {
  content: "✓";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 10px;
  height: 10px;
  color: #35a52f;
  border-radius: 50%;
  background-color: transparent;
  display: inline-block;
}

.hotels-list__review-card {
  gap: 25px;
}
@media (max-width: 1024px) {
  .hotels-list__review-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.hotels-list .card__image {
  padding: 0px 0px 66% 0px;
}
.hotels-list .card__wrapper--content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gap-80 {
  gap: 80px;
}
@media (max-width: 1024px) {
  .gap-80 {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .gap-80 {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .gap-80 {
    gap: 20px;
  }
}

.max-width-1000-center {
  margin: 0 auto;
  max-width: 1000px;
}

.white {
  color: #fff;
}

.fz24 {
  font-size: 24px;
}

@media (max-width: 576px) {
  .weather__container {
    padding: 0;
  }
}
.weather-block {
  background-color: #458FE6;
  overflow: hidden;
  border-radius: 30px;
  padding: 20px 20px 30px 20px;
  color: #fff;
  min-height: 350px;
  position: relative;
}
.weather-block.loading-ring {
  background: #458FE6;
}
.weather-block.loading-ring > * {
  display: none;
}
@media (max-width: 1024px) {
  .weather-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 15px 15px 15px;
  }
}
@media (max-width: 576px) {
  .weather-block {
    padding: 15px 10px 10px 10px;
  }
}
.weather-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #458FE6;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.weather-block__now {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  margin: 0px 30px 0px 0px;
}
@media (max-width: 1024px) {
  .weather-block__now {
    margin-right: 0px;
    margin: 0px 0px 30px 0px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
.weather-block__day-wrapper {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .weather-block__day-wrapper {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.weather-block__swiper-slider {
  width: 100%;
}
.weather-block__day {
  background-color: rgba(255, 255, 255, 0.1215686275);
  color: var(--dark-color);
  border: 2px solid #fff;
  padding: 15px;
  border-radius: 30px;
  height: auto;
  min-height: 200px;
  min-width: 130px;
}
@media (max-width: 576px) {
  .weather-block__day {
    border-radius: 20px;
    padding: 10px;
    min-width: 110px;
  }
}
.weather-block__header-days {
  height: 41px;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 36px;
}
@media (max-width: 1024px) {
  .weather-block__header-days {
    height: auto;
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.weather-block__buttons-slider {
  margin-top: 20px;
  z-index: 1;
  display: -webkit-box;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
}
.weather-block__button {
  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;
  position: relative;
  pointer-events: all;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.weather-block__button::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/svg/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (any-hover: hover) {
  .weather-block__button:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
.weather-block__button--next {
  right: -25px;
}
@media (max-width: 768px) {
  .weather-block__button--next {
    right: -15px;
  }
}
.weather-block__button--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -25px;
}
@media (max-width: 768px) {
  .weather-block__button--prev {
    left: -15px;
  }
}
.weather-block__button.swiper-button-disabled {
  opacity: 0;
}
.weather-block__swiper-pagination {
  position: relative;
  margin: 10px;
  border-radius: 4px;
}
.weather-block__swiper-pagination.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: auto !important;
  bottom: 0 !important;
}
.weather-block__swiper-pagination.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal span {
  background: #fff;
}

.weather-now {
  z-index: 1;
}
.weather-now > *:not(:last-child) {
  margin-bottom: 20px;
}
.weather-now__title {
  height: 45px;
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
  color: var(--laght-color);
}
@media (max-width: 768px) {
  .weather-now__title {
    height: auto;
    font-size: 24px;
  }
}
.weather-now__time {
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .weather-now__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .weather-now__wrapper {
    gap: 20px;
  }
}
.weather-now__temperature {
  font-size: 56px;
  line-height: normal;
}
@media (max-width: 768px) {
  .weather-now__temperature {
    font-size: 36px;
  }
}
.weather-now__cloud {
  margin-left: 15px;
}
.weather-now__cloud img {
  height: 64px;
}
@media (max-width: 768px) {
  .weather-now__cloud {
    font-size: 36px;
  }
  .weather-now__cloud img {
    height: 36px;
  }
}
.weather-now__wrapper-items:not(:last-child) {
  margin-bottom: 20px;
}
.weather-now__wrapper-items > *:not(:last-child) {
  margin-bottom: 10px;
}
.weather-now__description-cloud {
  font-size: 20px;
}
@media (max-width: 768px) {
  .weather-now__description-cloud {
    font-size: 16px;
  }
}
.weather-now__middle-text {
  font-size: 20px;
}
@media (max-width: 768px) {
  .weather-now__middle-text {
    font-size: 16px;
  }
}
.weather-now__bottom {
  gap: 10px;
}
.weather-now__bottom * {
  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: 6px;
  white-space: nowrap;
}
.weather-now__bottom > *::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .weather-now__bottom {
    font-size: 16px;
  }
}
.weather-now__wind::before {
  background-image: url(../img/weather/wind.svg);
}
.weather-now__humidity::before {
  background-image: url(../img/weather/humidity.svg);
}
.weather-now__pressure::before {
  background-image: url(../img/weather/pressure.svg);
}

.weather-next-day > *:not(:last-child) {
  margin-bottom: 10px;
}
.weather-next-day__day-week {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .weather-next-day__day-week {
    font-size: 16px;
  }
}
.weather-next-day__date {
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .weather-next-day__date {
    font-size: 16px;
  }
}
.weather-next-day__cloud {
  height: 48px;
}
.weather-next-day__cloud img {
  height: 100%;
}
.weather-next-day__t-day {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .weather-next-day__t-day {
    font-size: 16px;
  }
}
.weather-next-day__t-day span {
  margin-right: 10px;
}
.weather-next-day__t-night {
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .weather-next-day__t-night {
    font-size: 16px;
  }
}
.weather-next-day__t-night span {
  margin-right: 10px;
}
.weather-next-day__cloud-description {
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .weather-next-day__cloud-description {
    font-size: 16px;
  }
}

.sunny-day {
  background-color: #458FE6;
  background: url("../img/weather/clear.jpeg") no-repeat center center;
  background-size: cover;
}

.clear-night {
  background-color: #2b3f74;
  background: url("../img/weather/clear-night.jpeg") no-repeat center center;
  background-size: cover;
}

.partly-cloudy-day {
  position: relative;
  background-color: #458FE6;
  background: url("../img/weather/clear.jpeg") no-repeat center center;
  background-size: cover;
}

.partly-cloudy-night {
  background-color: #4b5a72;
  background: url("../img/weather/partly-cloudy-night.jpeg") no-repeat center center;
  background-size: cover;
}

.rainy {
  background-color: #5D6D7E;
  background: url("../img/weather/cloudy.jpeg") no-repeat center center;
  background-size: cover;
}
.rainy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/weather/rain.svg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.rainy-night {
  background-color: #2C3E50;
  background: url("../img/weather/partly-cloudy-night.jpeg") no-repeat center center;
  background-size: cover;
}
.rainy-night::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/weather/rain.svg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.snowy {
  position: relative;
  background-color: #4b5a72;
  background: url("../img/weather/cloudy.jpeg") no-repeat center center;
  background-size: cover;
}
.snowy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/weather/snow.svg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.foggy {
  background-color: #4b5a72;
}
.foggy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/weather/cloudy.jpeg") no-repeat center center;
  background-size: cover;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  /* Эффект размытия */
}

.default-weather {
  background-color: #458FE6;
}

.footer {
  background-color: var(--green-color);
  padding-bottom: 50px;
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}
.footer__wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 25px);
  flex: 0 1 calc(50% - 25px);
}
.footer__wrapper:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.footer__heading {
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  line-height: 110%;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .footer__heading {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .footer__heading {
    font-size: 24px;
  }
}
.footer__information {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 330px;
  min-width: 330px;
  margin: 0 auto;
}

.other-cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.other-cities__city-link {
  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;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  line-height: normal;
}
@media (any-hover: hover) {
  .other-cities__city-link:hover {
    text-decoration: underline;
  }
}

.information-item__text--white {
  color: #fff;
  font-size: 18px;
}

.form__header {
  margin-bottom: 30px;
}
.form__input-wrapper {
  width: 100%;
}
.form__input-wrapper label {
  margin-bottom: 10px;
  font-weight: 600;
}
.form__input {
  background-color: #fff;
  border-radius: 25px;
  min-height: 45px;
  width: 100%;
  padding: 5px 20px;
}
.form__input--border {
  border: 2px solid #c4c4c4;
}
.form__btn {
  min-width: 330px;
}

.article-header {
  position: relative;
}
.article-header__container {
  position: relative;
}
.article-header__body {
  overflow: hidden;
  position: relative;
}
.article-header__image {
  padding: 0 0 30% 0;
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.article-header__image:before {
  pointer-events: none;
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 11, 46, 0.4)), to(rgba(11, 11, 46, 0.7)));
  background: linear-gradient(180deg, rgba(11, 11, 46, 0.4) 0%, rgba(11, 11, 46, 0.7) 100%);
}
.article-header__content {
  z-index: 10;
  pointer-events: none;
  height: 100%;
  width: 100%;
  /* Смещение на половину ширины и высоты */
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.article-header__title {
  position: relative;
  margin-top: 200px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  max-width: 800px;
}
@media (max-width: 768px) {
  .article-header__title {
    margin-top: 100px;
    font-size: 24px;
  }
}

.article {
  padding: 35px 0;
}
.article__container {
  gap: 30px;
}
@media (max-width: 768px) {
  .article__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.article__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.article__column-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article__sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
}
@media (max-width: 1024px) {
  .article__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }
}

.article-panel {
  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;
  width: 100%;
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .article-panel {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.article-panel__views {
  color: #737373;
}
@media (max-width: 1200px) {
  .article-panel__views {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.article-panel__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.article-panel__tag {
  margin-left: auto;
}

.article-panel__share .share__link {
  width: 35px;
  min-width: 35px;
  height: 35px;
  min-height: 35px;
  padding: 10px;
}
.article-panel__share .share__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tag__item {
  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: 0 20px;
  background-color: transparent;
  border: 2px solid #242424;
  color: #242424;
  min-height: 35px;
  border-radius: 18px;
}

.acticle__content {
  /* Добавляем кастомный маркер перед элементом списка */
  /* Стили для нумерованного списка */
}
.acticle__content blockquote p {
  position: relative;
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .acticle__content blockquote p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .acticle__content blockquote p {
    font-size: 22px;
  }
}
.acticle__content blockquote.quotation p::before {
  content: '"';
  font-size: 52px;
  position: absolute;
  display: inline-block;
  font-weight: 500;
  top: 0;
  left: -20px;
}
.acticle__content h2 {
  line-height: 110%;
  font-size: 28px;
  color: var(--green-color);
  margin: 30px 0px 15px 0px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .acticle__content h2 {
    margin: 25px 0px 15px 0px;
  }
}
.acticle__content h3 {
  line-height: 110%;
  font-size: 20px;
  color: var(--green-color);
  margin: 20px 0px 15px 0px;
  font-weight: 500;
}
.acticle__content h4 {
  line-height: 110%;
  font-size: 18px;
  color: var(--dark-color);
  margin: 20px 0px 10px 0px;
  font-weight: 600;
}
.acticle__content p {
  line-height: 110%;
  font-size: 18px;
  margin: 0 0 15px 0;
}
.acticle__content ul {
  list-style-type: none;
  /* Убираем стандартные маркеры */
  padding: 0;
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .acticle__content ul {
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .acticle__content ul {
    margin-left: 5px;
  }
}
.acticle__content ul > li {
  padding: 10px 0 10px 20px;
  /* Отступы между элементами списка */
  font-size: 18px;
  /* Размер шрифта */
  color: #333;
  /* Цвет текста */
  position: relative;
}
.acticle__content ul > li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff8c00;
  display: inline-block;
}
.acticle__content ol {
  counter-reset: list-counter;
  /* Сброс счетчика */
  margin-left: 40px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 1024px) {
  .acticle__content ol {
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .acticle__content ol {
    margin-left: 5px;
  }
}
.acticle__content ol > li {
  counter-increment: list-counter;
  /* Увеличиваем счетчик для каждого элемента */
  padding: 10px 0 10px 20px;
  font-size: 18px;
  color: #333;
  position: relative;
}
.acticle__content ol > li::before {
  content: counter(list-counter);
  /* Добавляем счетчик перед текстом */
  color: #ff8c00;
  /* Золотой цвет для маркера */
  font-size: 24px;
  position: absolute;
  font-weight: 600;
  top: 19px;
  line-height: 0;
  left: 0;
}
.acticle__content figure img {
  max-width: 600px;
  max-height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .acticle__content figure img {
    max-height: 500px;
  }
}
.acticle__content figure {
  margin: 20px 0;
  text-align: center;
}
.acticle__content a {
  text-decoration: underline;
  padding: 10px;
}
.acticle__content p > a {
  text-decoration: underline;
  color: var(--green-color);
}
.acticle__content p > img {
  max-height: 570px;
  border-radius: 30px;
}
.acticle__content a.btn {
  text-decoration: none;
}
.acticle__content .float-image {
  width: 30vw;
}
@media (max-width: 1024px) {
  .acticle__content .float-image {
    width: 100vw;
  }
}
.acticle__content .float-image--right {
  float: right;
  margin: 15px 0 15px 15px;
}
.acticle__content .float-image--left {
  float: left;
  margin: 15px 15px 15px 0;
}
.acticle__content .table-wrapper {
  width: 100%;
  overflow-x: scroll;
  display: block;
}
.acticle__content table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0 15px 0;
}
.acticle__content caption {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
  color: #242424;
}
.acticle__content thead {
  background-color: #ff8c00;
  color: #fff;
}
.acticle__content thead th {
  padding: 10px;
  font-weight: 500;
  text-align: left;
}
.acticle__content tbody td {
  padding: 10px;
  text-align: left;
  color: #242424;
}
.acticle__content tbody tr {
  border-bottom: 1px solid #dcdcdc;
}
.acticle__content tbody tr:last-child {
  border-bottom: none;
}
.acticle__content tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.acticle__content table,
.acticle__content th,
.acticle__content td {
  border: 1px solid #dcdcdc;
}
.acticle__content table th,
.acticle__content table td {
  border-radius: 5px;
}

a.cta-article {
  text-decoration: none;
}

.cta-article {
  position: relative;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
  background-color: var(--green-color);
  min-height: 140px;
  border-radius: 30px;
  margin: 30px 0;
}
@media (max-width: 1024px) {
  .cta-article {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .cta-article {
    min-height: 300px;
    max-width: 400px;
    margin: 30px auto;
  }
}
.cta-article__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-article__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .cta-article__image:before {
    pointer-events: none;
    content: "";
    z-index: 1;
    height: 100%;
    width: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 0, 36, 0.6)), color-stop(30%, rgba(11, 11, 46, 0.4)), color-stop(65%, rgba(11, 11, 46, 0)), color-stop(84%, rgba(11, 11, 46, 0.0144432773)), to(rgba(11, 11, 46, 0.4878326331)));
    background: linear-gradient(180deg, rgba(2, 0, 36, 0.6) 0%, rgba(11, 11, 46, 0.4) 30%, rgba(11, 11, 46, 0) 65%, rgba(11, 11, 46, 0.0144432773) 84%, rgba(11, 11, 46, 0.4878326331) 100%);
  }
}
.cta-article__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .cta-article__content {
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 5px;
    margin-bottom: 0;
  }
  .cta-article__content .cta-article__btn {
    width: 100%;
  }
}
.cta-article__title {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .cta-article__title {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .cta-article__title {
    font-size: 24px;
  }
}
.cta-article.item-sidebar {
  margin: 0;
  position: relative;
  background-color: var(--green-color);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .cta-article.item-sidebar {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    margin: 0 auto;
  }
}
.cta-article.item-sidebar.h300 {
  min-height: 300px;
}
.cta-article.item-sidebar .cta-article__content {
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  z-index: 1;
  width: 100%;
  height: 100%;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px;
}
.cta-article.item-sidebar .cta-article__content .cta-article__title {
  font-size: 18px;
  padding: 10px;
}
.cta-article.item-sidebar .cta-article__content .cta-article__btn {
  width: 100%;
}
.cta-article.item-sidebar .cta-article__image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 0px 0px 90% 0px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cta-article.item-sidebar .cta-article__image {
    padding: 0 0 114% 0;
  }
}
@media (max-width: 768px) {
  .cta-article.item-sidebar .cta-article__image {
    padding: 0 0 0 0;
  }
}
.cta-article.item-sidebar .cta-article__image:before {
  pointer-events: none;
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 0, 36, 0.6)), color-stop(30%, rgba(11, 11, 46, 0.4)), color-stop(65%, rgba(11, 11, 46, 0)), color-stop(84%, rgba(11, 11, 46, 0.0144432773)), to(rgba(11, 11, 46, 0.4878326331)));
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.6) 0%, rgba(11, 11, 46, 0.4) 30%, rgba(11, 11, 46, 0) 65%, rgba(11, 11, 46, 0.0144432773) 84%, rgba(11, 11, 46, 0.4878326331) 100%);
}

.sidebar {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.sidebar__item {
  background-color: #fff;
  border-radius: 30px;
}

.item-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.item-sidebar__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  height: 100px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .item-sidebar__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
    height: 64px;
  }
}
.item-sidebar__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-sidebar__text {
  color: var(--dark-color);
  font-size: 15px;
}

.section-padding {
  padding-top: 55px;
  padding-bottom: 55px;
}
@media (max-width: 1024px) {
  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .section-padding {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.section-padding-top {
  padding-top: 55px;
}
@media (max-width: 1024px) {
  .section-padding-top {
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .section-padding-top {
    padding-top: 25px;
  }
}

.block-header {
  margin-bottom: 40px;
}
.block-header--gap25 > *:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .block-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .block-header {
    margin-bottom: 25px;
  }
}
.block-header--page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
  max-width: 950px;
}
.block-header__title-block {
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  line-height: 110%;
  color: var(--green-color);
}
.block-header__title-block--white {
  color: #fff;
}
@media (max-width: 1024px) {
  .block-header__title-block {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .block-header__title-block {
    font-size: 24px;
  }
}
.block-header .card__wrapper-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-header__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.block-header__panel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

h2.title-block,
.title-block {
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  line-height: 110%;
  color: var(--green-color);
}
h2.title-block--white,
.title-block--white {
  color: #fff;
}
h2.title-block--dark,
.title-block--dark {
  color: var(--dark-color);
}
@media (max-width: 1024px) {
  h2.title-block,
  .title-block {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  h2.title-block,
  .title-block {
    font-size: 24px;
  }
}
h2.title-block--text-left,
.title-block--text-left {
  text-align: left;
}

h3.title-card,
.title-card {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--green-color);
}
h3.title-card--white,
.title-card--white {
  color: #fff;
}
@media (max-width: 1024px) {
  h3.title-card,
  .title-card {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  h3.title-card,
  .title-card {
    font-size: 18px;
  }
}

.intro {
  gap: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.intro:not(:last-child) {
  margin-bottom: 45px;
}
.intro > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 1024px) {
  .intro--save-img-revers {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .intro--save-img-revers > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.intro--save-img-revers > *.intro__image {
  display: block;
}
@media (max-width: 1024px) {
  .intro {
    gap: 25px;
  }
  .intro:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .intro > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.intro__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.intro__text--white {
  color: #fff;
}
.intro__text h3 {
  font-size: 16px;
  font-weight: 500;
}
.intro__text p {
  color: inherit;
}
.intro__text p:not(:last-child) {
  margin-bottom: 10px;
}
.intro__image {
  overflow: hidden;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 0 0 24% 0;
}
@media (max-width: 576px) {
  .intro__image {
    display: none;
  }
}
.intro__image--contain {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.intro__image--contain img {
  -o-object-fit: contain;
  object-fit: contain;
}
.intro__btn-wrapper {
  margin-top: auto;
  padding-top: 30px;
  text-align: right;
}
@media (max-width: 1024px) {
  .intro__btn-wrapper {
    padding-top: 15px;
  }
}

.section-block {
  position: relative;
}
.section-block--bg-dark {
  background-color: var(--green-color);
}
.section-block__wrapper-btn {
  text-align: center;
  margin-top: 30px;
}
.section-block__body {
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-block__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 15px);
  flex: 0 1 calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-block__column--w100pr {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (max-width: 768px) {
  .section-block__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.header-height {
  padding-top: var(--header-height);
}

.section-block__body .title-card {
  margin-bottom: 15px;
}

.restaurant-details__info {
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.restaurant-details__wrapper-btn {
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 768px) {
  .restaurant-details__wrapper-btn {
    text-align: center;
  }
}

.restaurant-schedule__wrapper-btn {
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 768px) {
  .restaurant-schedule__wrapper-btn {
    text-align: center;
  }
}

.restaurant-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.restaurant-location__address {
  margin-bottom: 15px;
}
.restaurant-location__map {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.restaurant-location__map iframe {
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
  width: 100%;
}

.section-block-gallery__grid {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "large large small1 small2" "large large small3 small4";
  gap: 10px;
}
@media (max-width: 1024px) {
  .section-block-gallery__grid {
    grid-template-areas: "large large" "small1 small2" "small3 small4";
  }
}
.section-block-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 0px 0px 20% 0px;
}
@media (max-width: 1024px) {
  .section-block-gallery__item {
    padding: 0px 0px 60% 0px;
  }
}
.section-block-gallery__item.large {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: large;
  padding: 0px 0px 40% 0px;
}
@media (max-width: 1024px) {
  .section-block-gallery__item.large {
    padding: 0px 0px 60% 0px;
  }
}
.section-block-gallery__item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: small1;
}
.section-block-gallery__item:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: small2;
}
.section-block-gallery__item:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: small3;
}
.section-block-gallery__item:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
  grid-area: small4;
}
@media (max-width: 1024px){
  .section-block-gallery__item.large {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .section-block-gallery__item:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .section-block-gallery__item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .section-block-gallery__item:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .section-block-gallery__item:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
}
.section-block-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}
.section-block-gallery__item-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  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;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.hotel-details__wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hotel-details__rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.hotel-details__rating-score {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  background-color: var(--orange-color);
}
.hotel-details__rating-text {
  font-weight: 600;
}
.hotel-details__reviews {
  padding: 5px 10px;
  font-size: 14px;
  min-height: 0;
  min-width: 0;
}
.hotel-details__description p {
  line-height: 125%;
  margin-bottom: 10px;
}
.hotel-details__wrapper {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hotel-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hotel-schedule > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 576px) {
  .hotel-schedule {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .hotel-schedule > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.hotel-amenities__list > li:last-child {
  list-style: none;
}

details .hotel-amenities__list-second {
  left: -40px;
  position: relative;
}

.hotel-amenities__more {
  margin-top: 5px;
  color: #666666;
}
.hotel-amenities__more::marker {
  color: #666666;
}

.hotel-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.hotel-location__address {
  margin-bottom: 15px;
}
.hotel-location__map {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hotel-location__map iframe {
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
  width: 100%;
}

.block-reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.block-reviews__more {
  width: 100%;
  padding: 12px;
}

.review-card {
  padding: 16px;
  border-bottom: 1px solid #eee;
  width: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 20px);
  flex: 0 1 calc(50% - 20px);
}
@media (max-width: 768px) {
  .review-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0;
  }
}
.review-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.review-card__author {
  font-weight: 600;
}
.review-card__date {
  color: #666;
  font-size: 14px;
}
.review-card__rating {
  margin-left: auto;
  padding: 4px 8px;
  background: #2ecc71;
  color: #fff;
  border-radius: 4px;
}
.review-card__content {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.hotel-info__section-wrapper .card__wrapper-stars .star {
  width: 20px;
  height: 20px;
}
.hotel-info__subtitle {
  margin-right: 10px;
  font-size: 16px;
}
.section-block-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 330px;
  min-width: 330px;
  margin: 0 auto;
}
.section-block-form__input-wrapper label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.section-block-form__custom-number-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.section-block-form__number-btn {
  background-color: #fff;
  border-radius: 25px;
  min-height: 45px;
  width: 100%;
  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;
  line-height: 0;
  border: 2px solid #c4c4c4;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
}

.modal-gallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

.modal-gallery__content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  max-height: 80%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.modal-gallery__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.modal-gallery__swiper-image {
  display: block;
  position: relative;
  height: 100%;
}
.modal-gallery__swiper-image img {
  position: relative;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  border-radius: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
}

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

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.lightbox__container {
  width: 100%;
}
.lightbox__swiper-wrapper {
  margin: 30px 0;
}
.lightbox__swiper-button-prev.swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  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;
  cursor: pointer;
}
.lightbox__swiper-button-next.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  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;
  cursor: pointer;
}
.lightbox__image {
  padding-bottom: 100%;
}
.lightbox__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.lightbox__close-btn {
  z-index: 1000;
  font-size: 64px;
}

.question-card__question {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 5px;
}

.question-card__answer {
  margin-top: 5px;
}

.questions-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  /* Количество колонок */
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  /* Расстояние между колонками */
}
@media (max-width: 768px) {
  .questions-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

.question-card {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  /* Запрещает разрывать карточки между колонками */
  background-color: #fff;
  overflow: hidden;
  border-bottom: 2px solid #c4c4c4;
  margin-bottom: 16px;
  /* Расстояние между элементами по вертикали */
}
.question-card__question {
  padding: 15px 0;
  background-color: #fff;
}
.question-card__question span.icon-item {
  border-radius: 50%;
  font-weight: 400;
  color: #ffffff;
  background-color: #2ecc71;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-style: normal;
}
.question-card__question span {
  color: #888;
  margin-left: 8px;
  font-weight: 400;
}
.question-card__answer {
  padding: 0px 0 15px 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding-top: 20px;
}
.question-card__answer span.icon-item {
  border-radius: 50%;
  font-weight: 400;
  color: #ffffff;
  background-color: #2f62d7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  bottom: 10px;
  position: relative;
  margin-bottom: -10px;
}

.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: max-height;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.open .accordion__content {
  opacity: 1;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .graph-modal__container {
    width: 95%;
  }
}
@media (max-width: 576px) {
  .graph-modal__container {
    padding: 20px 10px;
  }
}
.graph-modal__container--max-w500 {
  max-width: 500px;
}

.slider-section {
  position: relative;
  margin: 0 25px;
}
@media (max-width: 1024px) {
  .slider-section {
    margin: 0 5px;
  }
}
.slider-section__swiper-slide {
  height: auto !important;
}
.slider-section__swiper-slide .card {
  height: 100%;
}
.slider-section__buttons {
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .slider-section__buttons--tours {
    top: -20%;
  }
}
.slider-section__button {
  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;
  position: relative;
  pointer-events: all;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.slider-section__button::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/svg/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (any-hover: hover) {
  .slider-section__button:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
.slider-section__button.next {
  right: 20px;
}
@media (max-width: 1024px) {
  .slider-section__button.next {
    right: 10px;
  }
}
.slider-section__button.prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: 20px;
}
@media (max-width: 1024px) {
  .slider-section__button.prev {
    left: 10px;
  }
}
.slider-section__button--next-tours {
  right: -25px;
}
@media (max-width: 1024px) {
  .slider-section__button--next-tours {
    right: -10px;
  }
}
.slider-section__button--prev-tours {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -25px;
}
@media (max-width: 1024px) {
  .slider-section__button--prev-tours {
    left: -10px;
  }
}
.slider-section__button--next-gallery {
  right: 15px;
}
.slider-section__button--prev-gallery {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: 15px;
}
.slider-section__swiper-pagination {
  position: relative;
  width: 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;
  margin-top: 20px;
}
.slider-section__swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 5px;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.slider-section__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFA500;
}

.sectoin-block__container {
  margin: 0 -25%;
}
@media (max-width: 768px) {
  .sectoin-block__container {
    margin: 0 -30%;
  }
}
@media (max-width: 576px) {
  .sectoin-block__container {
    margin: 0 -70%;
  }
}

.gallery__swiper--main {
  margin-bottom: 20px;
  height: 100%;
}

.gallery__swiper-wrapper {
  height: 100%;
}

.gallery__swiper-slide {
  height: 100%;
}

.gallery__swiper-slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-lazy {
  width: 100%;
  height: auto;
}

.swiper-lazy-preloader {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #ddd;
  border-top-color: #333;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.gallery__swiper--main .swiper-slide {
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s, -webkit-transform 0.5s, -webkit-filter 0.5s;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.5;
  z-index: 0;
}

.gallery__swiper--main .swiper-slide-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /* Увеличение активного слайда */
  z-index: 2;
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.gallery__swiper--main .swiper-slide-prev,
.gallery__swiper--main .swiper-slide-next {
  z-index: 1;
  opacity: 0.5;
}

.gallery__swiper--main .swiper-slide-prev {
  -webkit-transform: translateX(50%) scale(0.9);
  -ms-transform: translateX(50%) scale(0.9);
  transform: translateX(50%) scale(0.9);
  /* Смещение и уменьшение неактивных слайдов */
}
@media (max-width: 768px) {
  .gallery__swiper--main .swiper-slide-prev {
    -webkit-transform: translateX(80%) scale(0.9);
    -ms-transform: translateX(80%) scale(0.9);
    transform: translateX(80%) scale(0.9);
  }
}

.gallery__swiper--main .swiper-slide-next {
  -webkit-transform: translateX(-50%) scale(0.9);
  -ms-transform: translateX(-50%) scale(0.9);
  transform: translateX(-50%) scale(0.9);
  /* Смещение и уменьшение неактивных слайдов */
}
@media (max-width: 768px) {
  .gallery__swiper--main .swiper-slide-next {
    -webkit-transform: translateX(-80%) scale(0.9);
    -ms-transform: translateX(-80%) scale(0.9);
    transform: translateX(-80%) scale(0.9);
  }
}

.slide__image {
  padding: 0px 0px 80% 0px;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slide__image {
    padding: 0px 0px 110% 0px;
  }
}
@media (max-width: 576px) {
  .slide__image {
    padding: 0px 0px 120% 0px;
  }
}

.gallery__swiper--thumbs {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  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;
  overflow: hidden;
}
.gallery-thumbs__swiper-slide {
  padding: 0px 16% 0px 0px;
  width: auto;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .gallery-thumbs__swiper-slide {
    padding: 0px 25% 0px 0px;
  }
}
.gallery-thumbs__swiper-slide img {
  width: auto;
  height: 100%;
  display: block;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-thumbs__swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.hero-page-slider__image {
  height: 100%;
  padding: 0px 0px 30% 0px;
}
@media (max-width: 768px) {
  .hero-page-slider__image {
    padding: 0px 0px 50% 0px;
  }
}
.hero-page-slider__button-see-all {
  z-index: 1;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .hero-page-slider__button-see-all {
    bottom: 10px;
    padding: 5px 10px;
    font-size: 14px;
    min-height: 0;
    min-width: 0;
  }
}

.swiper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}