@import url(https://fonts.googleapis.com/css?family=Montserrat:500,600,700,800&display=swap);

@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 360px;
}

body {
  color: #353535;
  line-height: 1;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

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

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-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;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container_wide] {
  max-width: 114rem !important;
}

[class*=__container] {
  max-width: 88.125rem;
  margin: 0 auto;
  padding: 0 0.625rem;
}

@media (max-width: 1440px) {
    [class*=__container] {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    [class*=__container] {
        max-width:1320px
    }
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 2rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black-color);
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  background: url("../img/icon/arrow-down.svg") center center no-repeat;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  position: absolute;
  top: 3.4375rem;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background-color: #f8f6fa;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 1rem 0;
  color: inherit;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.125rem;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black-color);
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select__content {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

.quantity {
  width: 7rem;
  height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  height: 2rem;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  border-radius: 50%;
  border: 1px solid #ddd;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus {
  background-color: var(--red-color);
}

.quantity__button_plus::before,
.quantity__button_plus::after {
  content: "";
  background-color: var(--white-color);
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  background-color: transparent;
  height: 100%;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black-color);
}

.quantity__input input:focus {
  outline: none;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  max-width: 649px;
  background: #fff;
  border-radius: 10px;
  padding: 60px 24px;
  background: #fff url("../img/decor/popup/01.png") center right no-repeat;
}

.popup_thanks .popup__content {
  background: #fff url("../img/decor/popup/02.png") center right no-repeat;
}

.lock .popup__content {
  visibility: visible;
}

.popup__inner-block {
  max-width: 25.3125rem;
  margin: 0 auto;
}

.popup__button {
  width: 100%;
}

.popup__actions {
  text-align: right;
}

.popup__actions:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.popup__close:focus {
  outline: none;
}

.popup__close img {
  width: 30px;
}

.popup__title {
  font-weight: 800;
  line-height: 100%;
  text-align: center;
  color: #173300;
}

.popup__title:not(:last-child) {
  margin-bottom: 0.625rem;
}

.popup__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #353535;
}

.popup__text:not(:last-child) {
  margin-bottom: 2rem;
}

.form-popup {
  max-width: 28.125rem;
  margin: 0 auto;
}

.form-popup__lines {
  max-width: 28.125rem;
}

.form-popup__lines:not(:last-child) {
  margin-bottom: 1.875rem;
}

.form-popup__line:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.form-popup__button {
  width: 100%;
  text-align: left;
}

.form-popup__input {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #f4f4f4;
  border-radius: 8px;
  background-color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #9e9e9e;
}

.form-popup__input:focus {
  outline: none;
}

.tabs {
  max-width: 47.1875rem;
  margin: 0 auto;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}

.tabs__navigation:not(:last-child) {
  margin-bottom: 20px;
}

.tabs__title {
  padding: 10px 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fafafa;
  border-radius: 0.5rem;
  width: 210px;
}

.tabs__title._tab-active {
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  background: #98b501;
}

.tabs__content {
  height: 720px;
}

.tabs__body {
  height: 100%;
}

.tabs__inner {
  height: 100%;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.button {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5625rem;
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  background: #98b501;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.subtitle {
  font-weight: 800;
  text-align: center;
  color: #173300;
}

.navigation-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}

.navigation-block__prev {
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  background: #98b501;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  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;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.navigation-block__prev.swiper-button-disabled {
  background: rgba(151, 181, 1, 0.5450980392);
  pointer-events: none;
}

.navigation-block_master .navigation-block__prev,
.navigation-block_spa-products .navigation-block__prev {
  width: 3.25rem;
  height: 3.25rem;
}

.navigation-block__next {
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  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;
  background: #98b501;
  border-radius: 8px;
  width: 30px;
  height: 30px;
}

.navigation-block__next.swiper-button-disabled {
  background: rgba(151, 181, 1, 0.5450980392);
  pointer-events: none;
}

.navigation-block_master .navigation-block__next,
.navigation-block_spa-products .navigation-block__next {
  width: 3.25rem;
  height: 3.25rem;
}

.removed {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  z-index: 21;
}

.video-block-screen {
  position: relative;
  height: 100%;
}

.video-block-screen img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px 4px 144px rgba(7, 9, 40, 0.5);
          box-shadow: inset 0px 4px 144px rgba(7, 9, 40, 0.5);
  z-index: 1;
}

.video-block-play {
  display: block;
  position: absolute;
  background-size: 140px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.video-block-iframe {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

.video-block.active .video-block-iframe {
  display: block;
}

.video-block {
  position: relative;
  min-height: 100%;
  z-index: 22;
  min-width: 100%;
  overflow: hidden;
  min-height: 540px;
}

.video-block:not(:last-child) {
  margin-bottom: 1.875rem;
}

.video-block_small {
  padding-top: 0;
}

.to-play {
  padding: 32px;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 540px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 22;
  -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;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

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

.to-play_small {
  height: 100%;
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 33.75rem;
  width: 100%;
  height: 100%;
  z-index: 22;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#player-2,
#player-3,
#player-4,
#player-5,
#player-6 {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 568px;
  width: 100%;
  height: 100%;
  z-index: 22;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.video__play svg path {
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}

.icon-menu {
  display: none;
}

.header {
  position: fixed;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 1.25rem 0;
}

.header._header-scroll {
  background-color: #fff;
  border-bottom: 0.0625rem solid #98b501;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
}

.header__logo {
  position: relative;
  z-index: 10;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.header__logo span {
  font-weight: 600;
  color: #214900;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  position: relative;
  z-index: 10;
}

.header__social li a svg path {
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}

.header__social li:nth-child(1) {
  -webkit-transform: translateY(0.5px);
      -ms-transform: translateY(0.5px);
          transform: translateY(0.5px);
}

.header__callback {
  font-weight: 700;
  color: #245200;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.menu__link {
  font-weight: 600;
  text-align: center;
  color: #214900;
  display: inline-block;
  border: 1px solid #214900;
  padding: 5px 10px;
  min-width: 114px;
  border-radius: 0.5rem;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.hero {
  background: url("../img/background-images/hero-2.jpg") top/cover no-repeat;
  padding-top: 200px;
  padding-bottom: 200px;
}

.hero__body {
  max-width: 45.9375rem;
}

.hero__title {
  font-weight: 800;
  line-height: 137%;
  color: #245200;
}

.hero__title span {
  color: #98b501;
}

.hero__title:not(:last-child) {
  margin-bottom: 2.5rem;
}

.hero__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero__items:not(:last-child) {
  margin-bottom: 2.5rem;
}

.hero__icon:not(:last-child) {
  margin-bottom: 1.25rem;
}

.hero__descr {
  font-weight: 600;
  line-height: 133%;
  color: #353535;
}

.contacts {
  position: relative;
}

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

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}

.contacts__list li a span {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 143%;
  color: #173300;
}

.contacts__list:not(:last-child) {
  margin-bottom: 2.5rem;
}

.contacts__icon {
  width: 3.125rem;
  height: 3.125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.125rem;
          flex: 0 0 3.125rem;
  border-radius: 50%;
  border: 1px dashed #000;
  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;
  background-color: #fff;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.contacts__icon svg path {
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}

.contacts__subtitle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.contacts__map iframe {
  border-radius: 0.9375rem;
  height: 400px;
  width: 100%;
}

.contacts::after {
  content: "";
  position: absolute;
  background: url("../img/decor/contacts/02.png") center/cover no-repeat;
  width: 440px;
  height: 306px;
  bottom: 0;
  right: 0;
}

.geft-certificate__subtitle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.geft-certificate__image {
  position: relative;
  padding-bottom: 48%;
  min-height: 10rem;
}

.geft-certificate__image:not(:last-child) {
  margin-bottom: 3.75rem;
}

.geft-certificate__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.375rem;
}

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

.promotions {
  position: relative;
}

.promotions::before {
  content: "";
  position: absolute;
  top: -33%;
  left: 0;
  background: url("../img/decor/promo/01.png") center/cover no-repeat;
  width: 345px;
  z-index: -1;
  height: 429px;
}

.promotions::after {
  content: "";
  position: absolute;
  top: -70%;
  right: 0;
  background: url("../img/decor/promo/02.png") center/cover no-repeat;
  width: 296px;
  z-index: -1;
  height: 623px;
}

.promotions__subtitle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.promotions__image {
  position: relative;
  padding-bottom: 58%;
  min-height: 12.5rem;
  width: 100%;
}

.promotions__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.promotions__image:not(:last-child) {
  margin-bottom: 1.25rem;
}

.promotions__title {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 120%;
  color: #173300;
}

.promotions__navigation {
  display: none;
  padding: 1.25rem 0;
}

.advantages__subtitle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.advantages__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.advantages__items:not(:last-child) {
  margin-bottom: 2.5rem;
}

.advantages__item {
  background: #fafafa;
  border-radius: 0.5rem;
  padding: 1.875rem 1.25rem;
}

.advantages__image:not(:last-child) {
  margin-bottom: 1.25rem;
}

.advantages__text {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 500;
  color: #353535;
}

.advantages__text span {
  font-weight: 800;
  color: #173300;
}

.advantages__actions {
  text-align: center;
}

.info-block {
  position: relative;
}

.info-block::before {
  content: "";
  position: absolute;
  top: -33%;
  left: 0;
  background: url("../img/decor/advantages/01.png") center/cover no-repeat;
  width: 235px;
  z-index: -1;
  height: 375px;
}

.info-block::after {
  content: "";
  position: absolute;
  top: -33%;
  right: 0;
  background: url("../img/decor/advantages/02.png") center/cover no-repeat;
  width: 219px;
  z-index: -1;
  height: 329px;
}

.info-block__subtitle:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.info-block__descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  text-align: center;
  color: #353535;
  max-width: 58.125rem;
  margin: 0 auto;
}

.info-block__descr:not(:last-child) {
  margin-bottom: 2.5rem;
}

.info-block__image {
  overflow: hidden;
  position: relative;
  padding-bottom: 44%;
  min-height: 12.5rem;
}

.info-block__image:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.info-block__image img {
  border-radius: 0.625rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-block__title {
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  color: #173300;
}

.info-block__title:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.info-block__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: #353535;
}

.info-block__navigation {
  display: none;
  padding: 1.25rem 0;
}

.masters_mobile {
  display: none;
}

.masters__container {
  position: relative;
}

.masters__navigation:not(:last-child) {
  margin-bottom: 1.875rem;
}

.masters__subtitle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.masters__slider:not(:last-child) {
  margin-bottom: 2.5rem;
}

.masters__image {
  position: relative;
  padding-bottom: 62%;
  min-height: 18.75rem;
}

.masters__image:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.masters__image img {
  border-radius: 0.625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masters__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  color: #173300;
}

.masters__title:not(:last-child) {
  margin-bottom: 0.6875rem;
}

.masters__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: #353535;
}

.masters__list li {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: #353535;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
}

.masters__list li::before {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.9375rem;
          flex: 0 0 0.9375rem;
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
  background: url("../img/icons/check-list-icon.svg") center center no-repeat;
}

.masters__actions {
  text-align: center;
}

.spa {
  position: relative;
}

.spa::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  background: url("../img/decor/spa-products/01.png") center/cover no-repeat;
  width: 273px;
  z-index: -1;
  height: 850px;
}

.spa::after {
  content: "";
  position: absolute;
  top: -30%;
  right: 0;
  background: url("../img/decor/spa-products/02.png") center/cover no-repeat;
  width: 285px;
  z-index: 2;
  height: 600px;
}

.spa__subtitle:not(:last-child) {
  margin-bottom: 1.875rem;
}

.spa__inner {
  background: #fafafa;
  padding-top: 2.875rem;
  padding-bottom: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.spa__price-list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.spa__items:not(:last-child) {
  margin-bottom: 2.5rem;
}

.spa__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.25rem;
}

.spa__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 100%;
  color: #173300;
}

.spa__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.spa__info span {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
  text-align: right;
  color: #353535;
}

.spa__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.spa__actions {
  text-align: center;
}

.spa__image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: right;
}

.spa__image img {
  max-width: 100%;
}

.spa-programs__header:not(:last-child) {
  margin-bottom: 2.5rem;
}

.spa-programs__inner {
  background-color: #f8faf6;
}

.spa-programs__container {
  position: relative;
  z-index: 2;
}

.spa-programs__slider {
  position: relative;
}

.spa-programs__content {
  padding-left: 5.625rem;
  position: relative;
  z-index: 1;
}

.spa-programs__slide {
  position: relative;
  opacity: 0;
  pointer-events: none;
}

.spa-programs__slide.swiper-slide-active {
  opacity: 1;
  pointer-events: all;
}

.spa-programs__backgound {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.spa-programs__backgound_mobile {
  display: none;
}

.spa-programs__title {
  font-weight: 800;
  font-size: 1.5625rem;
  line-height: 100%;
  color: #173300;
}

.spa-programs__title:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.spa-programs__list li {
  font-weight: 500;
  font-size: 18px;
  color: #353535;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.spa-programs__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icons/check-icon-2.svg") center/cover no-repeat;
}

.spa-programs__list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.spa-programs__list:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.spa-programs__descr {
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  color: #98b501;
  max-width: 6.5rem;
}

.spa-programs__descr:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.spa-programs__actions:not(:last-child) {
  margin-bottom: 1.875rem;
}

.spa-programs__button {
  display: inline-block;
}

.spa-programs__navigation_inner-slide {
  position: relative;
  z-index: 2;
  display: none;
}

.content-section {
  padding-top: 5.8125rem;
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/decor/content-section/01.png") center/cover no-repeat;
  width: 226px;
  z-index: -1;
  height: 434px;
}

.content-section::after {
  content: "";
  position: absolute;
  bottom: -18%;
  right: 0;
  background: url("../img/decor/content-section/02.png") center/cover no-repeat;
  width: 374px;
  z-index: -1;
  height: 645px;
}

.content-section__subtitle:not(:last-child) {
  margin-bottom: 3.125rem;
}

.content-section__prev-button {
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  background: #98b501;
  border-radius: 8px;
  width: 3.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.25rem;
          flex: 0 0 3.25rem;
  height: 3.25rem;
  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;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.content-section__slider {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.content-section__slide {
  position: relative;
  padding-bottom: 14%;
  overflow: hidden;
  min-height: 6.875rem;
  display: inline-block;
}

.content-section__slide img {
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.content-section__next-button {
  -webkit-box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
          box-shadow: 0 8px 15px 0 rgba(152, 181, 1, 0.35);
  background: #98b501;
  border-radius: 8px;
  width: 3.25rem;
  height: 3.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.25rem;
          flex: 0 0 3.25rem;
  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;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.content-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-section__inner:not(:last-child) {
  margin-bottom: 2.5rem;
}

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

.content-section__navigation:not(:last-child) {
  margin-bottom: 2.5rem;
}

.reviews {
  padding-bottom: 5.625rem;
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../img/decor/review/01.png") center/cover no-repeat;
  width: 151px;
  z-index: -1;
  height: 300px;
}

.reviews__subtitle:not(:last-child) {
  margin-bottom: 37px;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@font-face {
  font-family: "lg";
  src: url(data:font/woff2;base64,d09GMgABAAAAAAkcAAsAAAAAEogAAAjNAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAgSQRCAqcLJZKCzoAATYCJANwBCAFgkoHIBupDgDm53Gzej8JpU0wqygVVyoWwphIsuuw60jpmBY6ppTa7mk7jtx57UQ0V2ulvfmteSIQji061T2HvfDEECASKizU5VUQXFjFRtgYTVg+woiYDVezOThR4tAvr/YYgOO/RZ+BAABzYtMA8Kl8Neg3UIDCoCkOyWBuLcCvSHycH78QvhFxmUCK03A0RwGSvXBAHgR8UB8DMvocJYAgbiZiJnqmYGbXjG3mz7P8nHhe8Uvxr0j+fzwPABAjWT1E83IJHh/x87G/jv1l7JtYR+y+WF2MKAai/qfDtfIRt7hBikI8D1IpipXqWqYSDgDBfwE7qDLw5EEALqFRDMKAsApNwchXAJgFL/WETMbKcDVSifR6QkjwkDaRTEugqlBtKVcL6Smi1dHlIqUmuii6Pic1JTIlFTX3uRenMNpiCiKOCZBm2ges0b/ScigDVgcb2MEHfloel7e1z208KrZUeQFjK0dIkbl6FOFczRhFE6zaRklPlz52tOXcKtmpdqisgHnbxRatg66vsZNHaWMPQ/eZmH6jaavlNASsipbKwVZSYrRm1mywI0670UEdhLy+yuscolSZJHKwg5IyNzRJQbKRZiicwnYiChjO1vSbKCBpkAgCjGIb6KCvA5GL0VHeUDwAQEHkSC2ToBJhKN9KAneim2ekLf1vENf3mjT3vAS295XY2MMgzRpSqTVWpt4ang+ksXynRUQPlkFOu+b6Yw0jBp8krbXbYbjc5mn6KpsNWKtqtcNz0D8xTTQKzthbZYAxLev3NkFgyYWsngBjGo8jg6a9Y3rKR9Pfqun10RvJi9X9foZGvrltMkJgWR7dhI7SSITEaBWIQQTMUSOJkTi5nlqpZUfNKcYD1Do/ZdkbR8UeVpKLSbMVgKLX0flzQYqCrLpll+/vus2IM9+lbdTgWWRLQJqvaq7eHKulgL2ssp7LrpxR2DBI/ja1zXvi7cS1E0Gr0uhy7PUGwPmdkkdjEYOjpGnQRXowC/GBq51eymLRXrsXsTzXX37VlXzeVxoI6m8Gy67oBnzsB6DoQYY7GHM2fbT4oS9zON45lPnwbmww2BL0G89EnfaVPi5eJ3NZFtjc277Wb9M1A+UWG2WZyrj6PMKmLHRoH04iZLuivlsHTmm9/qYJ1r2Z90DtuKYduK6SdNZ3dRRxHAoE+l4HGM6MyIe+0se+zHEfsP4s2sqqnVdSTE/8lCVYMRVsuBVEJOvT3fa1Xr4X2iDZflVFmxyDmpu1r8b9IsVzXUB9w1/l9ccf7WCszaI1ATtUx7oRztk1dtbBcciudJAi83Vv2yaTg9uON6toxLlIM2GVxClo2eVBt5gcOHRwHLIpptC92TeKRi3MjtBkTAOaoU+6P1q364+kdgt/+xh2fRvlOf2p5xR4ut7P4s0sPwY63OguajQWuYqMjUWaA9100ya6yHdHr/BMyxN9QmGa2zjPnbZr17KTy9weKwqXYtqjcMunRkgE9kP+Refvml14hAZw8WFQGmZnnaEi0eLUQTCc+tLSphVyaUH6lAJoXjF1MDiaFSOexNCRKYW8TOkhKzDEDjPDvHHI3c5hXbQLhujhUuPmBYd+N/EaktFsDqoDo4/G0yx70s3SSuXJDIvjMNsIQ7TDqb+/sv8NHGl6BvDAMOnsCpv9PQcP9tS6N294zEnwtNdt2tfTXSz7JGwAqALmbKpr90BaeqA9tlvduWP4/xa0thZcJMNDC6XqrFuy2xGF7YaiQkN7UfhEbMaNkOxQHezh7YVFBsP9TcoybgmzhaExmpxb/78Naf89LmVWthVvvSWh3rZUWtlMFStWENDf5uqEd2LiP/M/fvWEWUntjnTynpI2ainnLdjPUIvL2uGFJvoUQy0taZvPePLqxy0lK6mUo8yp6B+WtdyyTHivdrgLZrhbvAOlWMbQEJtJZ7JuXgRLC+hwe/kb90WvW4U4/PGGRUmLk995J1loWLRhQwVCKkve4JOS8YJASY+P8KQNe/vahGNU8TJRe/eCaaG7ozsrt6Ixu623v/ck0rvlG2EYBoAh6abIxoZ9UeHoNQAiMPKv/8pIi+47EAMHcfLh7dyX8q0Po+Iap94fFob+4fr/DXr96x+j1x2dhZ0dBfRqardjBIZ+M+S6Lo6ojE+4HKF7Kz7zG+eCOkwQ98UfOirDqrckKPVz3sR8srT/gsev3H0p3Rq7wkD1JLE/XZ+2Ze5pV5eqPiqqmBkc1PQYDBvlk5MdqQff21UyInvyhyjMsHXV33tD3zaQ7Us/NKfX44qLQ/8ffOtzXIjnymRNXampDWkGDR5yOyThG2/9UXC6liWEEz0hX+uR1Xg780i4eNOSig3Fk2pSkPpBqrrmx3/+TbB2ya9ePfrGJx98H8rvjKsRQoSh/G0s8cO6bhwwUI8vUz1c21B04cscrjVV1q8zzCVJkmv/T8y21/bLszJpxeqptculJZpleUyKrPX/X3QZBL+rl+hTWuR/2At7LhYVX9BBsULaqi9LWh+6xMDLW6V65dy2gsMbszemQ96XMDvrSfRM60ceo5R/oGDXB0KrxJsTACBhbV48S4Cd5IeyAVdU5Yg+2nPGKS+XAwmOljrwpIdMmdJPexI9ndnIXUIVgety83YzRdXD6E6YvF0gVGJRMhpOyQW6xGM0Zbq7zw8AoAcWAYa7cSOsARF+Fm8DBAAYgDUq07ZSWvm3UIoAAIAfde39SB7Hz+K/xR9vAkMBg0YE8PKEChkH47+9MDggitAdAEObxnBmZAFu5C4eyMxqN/2c3ZUK2qJ+tDUvrTR/BGHDbqZplsDNZVVQjIaim4XA6TE4YLCfEdweIwAKaArx8aN1JETYMNMDEWGYZdRjMJDAB4T7+EEiwAdiBKCBlRQCfnwjEgohbttG2AYb3yS+7tWIDW1rd/6mMedAM+yEHbAvWge0XgNevwdW20Cmdfb6NXBYqm+DtZHUyUW88R/abjA/OxeYpIa9sNmNGMqHbMgd2CAZPzVuOfQFg5H275pWwx73mQMODQAAAA==) format("woff2"), url(data:font/woff;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  -o-transition-duration: inherit !important;
     transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  -o-transition-timing-function: inherit !important;
     transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/gif;base64,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) no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  -o-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

@media (min-width: 29.99875em) {
  .header__menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .content-section__slide {
    border-radius: 0.625rem;
  }

  .content-section__slide img {
    border-radius: 0.625rem;
  }
}

@media (min-width: 47.99875em) {
  .quantity {
    margin: 0 auto;
  }

  .promotions__wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }

  .info-block__wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}

@media (min-width: 61.99875em) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 0.625rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 68.4375em) {
  .spa__price-list {
    max-width: 50rem;
  }
}

@media (min-width: 86.8125em) {
  .spa-programs__slide {
    padding-bottom: 10.3125rem;
    padding-top: 10.3125rem;
  }
}

@media (min-width: 88.125em) {
  .popup__title {
    font-size: 1.875rem;
  }

  .subtitle {
    font-size: 1.875rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .contacts {
    padding-bottom: 6.25rem;
  }

  .geft-certificate {
    padding-bottom: 7.5rem;
  }

  .promotions {
    padding-bottom: 7.5rem;
  }

  .advantages {
    padding-bottom: 7.5rem;
  }

  .info-block {
    padding-bottom: 7.5rem;
  }

  .masters {
    padding-bottom: 7.5rem;
  }

  .spa {
    padding-bottom: 7.5rem;
  }

  .spa-programs {
    padding-bottom: 7.5rem;
  }

  .content-section {
    padding-bottom: 7.5rem;
  }
}

@media (min-width: 99.0625em) {
  .masters__navigation {
    position: absolute;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 110%;
    top: 29%;
    left: -5%;
    z-index: 5;
  }
}

@media (min-width: 102.375em) {
  .contacts::before {
    content: "";
    position: absolute;
    background: url("../img/decor/contacts/01.png") center/cover no-repeat;
    width: 255px;
    height: 272px;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 112.125em) {
  .spa-programs__navigation_absolute {
    position: absolute;
    top: 50%;
    left: 9%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 3;
    width: 80%;
  }
}

@media (max-width: 112.1875em) {
  .spa-programs__navigation_absolute {
    display: none;
  }

  .spa-programs__navigation_inner-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 102.375em) {
  .contacts::after {
    display: none;
  }
}

@media (max-width: 102.4375em) {
  .promotions::before {
    display: none;
  }

  .promotions::after {
    display: none;
  }

  .info-block::before {
    display: none;
  }

  .info-block::after {
    display: none;
  }

  .spa::before {
    display: none;
  }

  .spa::after {
    display: none;
  }

  .content-section::before {
    display: none;
  }

  .content-section::after {
    display: none;
  }

  .reviews::before {
    display: none;
  }
}

@media (max-width: 88.125em) and (max-width: 22.5em) {
  .hero {
    padding-top: 7.5rem;
  }

  .hero {
    padding-bottom: 3.125rem;
  }
}

@media (max-width: 88.125em) {
  .spa__image {
    -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
            transform: translateX(15px);
  }

  .content-section__slide {
    padding-bottom: 17%;
  }

  .content-section__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}

@media (max-width: 86.875em) {
  .spa-programs__content {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 68.5em) {
  .spa__price-list {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .spa__image {
    display: none;
  }
}

@media (max-width: 61.99875em) {
  .video-block {
    min-height: 400px;
  }

  .to-play {
    min-height: 400px;
  }

  #player {
    min-height: 400px;
  }

  .video__play svg {
    width: 100px;
  }

  .icon-menu {
    display: block;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 11;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #245200;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .header__container {
    gap: 1.875rem;
  }

  .header__actions {
    gap: 0.625rem;
  }

  .header__social {
    gap: 0.625rem;
  }

  .menu__body {
    padding: 6.25rem 0.625rem 1.875rem 0.625rem;
    position: fixed;
    top: 0;
    left: -100%;
    overflow: auto;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: left 0.5s ease 0s;
    -o-transition: left 0.5s ease 0s;
    transition: left 0.5s ease 0s;
  }

  .menu__body::after {
    content: "";
    -webkit-transition: left 0.5s ease 0s;
    -o-transition: left 0.5s ease 0s;
    transition: left 0.5s ease 0s;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    background-color: #fff;
    height: 56px;
    z-index: 10;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::after {
    left: 0;
  }

  .menu__list {
    gap: 0.625rem;
  }

  .menu__list {
    text-align: center;
  }

  .menu__list:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .menu__link {
    font-size: 1rem;
    min-width: 135px;
    padding: 5px 15px;
  }

  .hero__descr {
    font-size: 1rem;
  }

  .spa-programs__content {
    padding-left: 1.875rem;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) {
  .select__title {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .select__options {
    padding: 0.9375rem;
    top: 3.125rem;
  }

  .select__option {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .select__content {
    width: 7.5rem;
  }

  .quantity__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2rem;
            flex: 0 0 2rem;
  }

  .popup__content {
    padding: 3.75rem 1.5rem;
  }

  .popup__text {
    font-size: 1rem;
  }

  .popup__text:not(:last-child) {
    margin-bottom: 1rem;
  }

  .form-popup__lines:not(:last-child) {
    margin-bottom: 1rem;
  }

  .form-popup__input {
    font-size: 1rem;
  }

  .button {
    padding: 0.9375rem 1.5625rem;
  }

  .video-block {
    min-height: 230px;
  }

  .to-play {
    min-height: 230px;
  }

  #player {
    min-height: 230px;
  }

  #player-2,
  #player-3,
  #player-4,
  #player-5,
  #player-6 {
    min-height: 387px;
  }

  .video__play svg {
    width: 80px;
  }

  .header {
    padding: 0.9375rem 0;
  }

  .header__container {
    gap: 1.25rem;
  }

  .header__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .menu__link {
    font-size: 1.25rem;
  }

  .hero {
    background: url("../img/background-images/hero-mobile.jpg") center/cover no-repeat;
  }

  .hero__title {
    text-align: center;
  }

  .hero__title:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .hero__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .hero__icon:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .hero__descr {
    font-size: 0.875rem;
  }

  .hero__actions {
    text-align: center;
  }

  .contacts__list li a {
    gap: 0.9375rem;
  }

  .contacts__subtitle:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .geft-certificate__subtitle:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .geft-certificate__image:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .promotions__wrapper:not(:last-child) {
    margin-bottom: 10px;
  }

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

  .advantages__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }

  .advantages__item {
    padding: 1.5625rem 0.625rem;
  }

  .advantages__text {
    font-size: 0.875rem;
  }

  .info-block__descr:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .info-block__image:not(:last-child) {
    margin-bottom: 1.25rem;
  }

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

  .masters_desktop {
    display: none;
  }

  .masters_mobile {
    display: block;
  }

  .masters__navigation button {
    width: 30px !important;
    height: 30px !important;
  }

  .masters__navigation button svg {
    width: 13px;
  }

  .masters__subtitle:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .masters__slider:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .masters__list li {
    gap: 0.625rem;
  }

  .spa__inner {
    padding: 20px 0px;
  }

  .spa__items:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .spa__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .spa__info-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4375rem;
  }

  .spa__divider {
    display: none;
  }

  .spa-programs__slide {
    background: url("../img/spa-programs/mobile-01.png") center/cover no-repeat;
  }

  .spa-programs__backgound {
    display: none;
  }

  .spa-programs__actions {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .spa-programs__actions:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .spa-programs__navigation button {
    width: 30px !important;
    height: 30px !important;
  }

  .spa-programs__navigation button svg {
    width: 13px;
  }

  .spa-programs__navigation_inner-slide {
    margin-bottom: 1.875rem;
  }

  .spa-programs__body-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .content-section {
    padding-top: 3.75rem;
  }

  .content-section__subtitle:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .content-section__prev-button {
    width: 30px !important;
    height: 30px !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 30px !important;
            flex: 0 0 30px !important;
  }

  .content-section__prev-button svg {
    width: 13px;
  }

  .content-section__next-button {
    width: 30px !important;
    height: 30px !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 30px !important;
            flex: 0 0 30px !important;
  }

  .content-section__next-button svg {
    width: 13px;
  }

  .content-section__inner:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .content-section__navigation:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .reviews {
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 29.99875em) {
  .select__title {
    font-size: 0.875rem;
  }

  .select__option {
    font-size: 0.875rem;
  }

  .tabs__title {
    font-size: 0.875rem;
  }

  .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.625rem;
  }

  .header__logo {
    gap: 0.4375rem;
  }

  .header__logo span {
    font-size: 1rem;
  }

  .header__menu {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .header__actions {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .header__callback {
    font-size: 1rem;
  }

  .hero__item {
    max-width: 233px;
  }

  .hero__icon img {
    width: 1.875rem;
  }

  .contacts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contacts::after {
    background: url("../img/decor/contacts/mobile-02.png") center/cover no-repeat;
    display: block;
    top: 22%;
    width: 211px;
    height: 349px;
  }

  .advantages__text {
    font-size: 0.8125rem;
  }

  .spa-programs__content {
    padding-left: 0;
  }

  .spa-programs__descr {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .spa-programs__navigation_inner-slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 23.375em) {
  .header__callback span {
    display: none;
  }
}

@media (max-width: 22.5em) {
  .popup__title {
    font-size: 1.375rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .hero__title {
    font-size: 1.5625rem;
  }

  .contacts {
    padding-bottom: 3.125rem;
  }

  .geft-certificate {
    padding-bottom: 3.125rem;
  }

  .promotions {
    padding-bottom: 1.875rem;
  }

  .advantages {
    padding-bottom: 3.125rem;
  }

  .info-block {
    padding-bottom: 3.125rem;
  }

  .masters {
    padding-bottom: 3.125rem;
  }

  .spa {
    padding-bottom: 3.125rem;
  }

  .spa-programs {
    padding-bottom: 3.125rem;
  }

  .content-section {
    padding-bottom: 3.75rem;
  }
}

@media (min-width: 22.5em) and (max-width: 88.125em) {
@supports (font-size: clamp( 1.375rem , 1.2035714286rem  +  0.7619047619vw , 1.875rem )) {
    .popup__title {
      font-size: clamp( 1.375rem , 1.2035714286rem  +  0.7619047619vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.2035714286rem  +  0.7619047619vw , 1.875rem )) {
    .popup__title {
      font-size: calc(1.375rem + 0.5 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (font-size: clamp( 1.25rem , 1.0357142857rem  +  0.9523809524vw , 1.875rem )) {
    .subtitle {
      font-size: clamp( 1.25rem , 1.0357142857rem  +  0.9523809524vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.0357142857rem  +  0.9523809524vw , 1.875rem )) {
    .subtitle {
      font-size: calc(1.25rem + 0.625 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (font-size: clamp( 1.5625rem , 1.2410714286rem  +  1.4285714286vw , 2.5rem )) {
    .hero__title {
      font-size: clamp( 1.5625rem , 1.2410714286rem  +  1.4285714286vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.5625rem , 1.2410714286rem  +  1.4285714286vw , 2.5rem )) {
    .hero__title {
      font-size: calc(1.5625rem + 0.9375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 2.0535714286rem  +  4.7619047619vw , 6.25rem )) {
    .contacts {
      padding-bottom: clamp( 3.125rem , 2.0535714286rem  +  4.7619047619vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 2.0535714286rem  +  4.7619047619vw , 6.25rem )) {
    .contacts {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .geft-certificate {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .geft-certificate {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 1.875rem , -0.0535714286rem  +  8.5714285714vw , 7.5rem )) {
    .promotions {
      padding-bottom: clamp( 1.875rem , -0.0535714286rem  +  8.5714285714vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , -0.0535714286rem  +  8.5714285714vw , 7.5rem )) {
    .promotions {
      padding-bottom: calc(1.875rem + 5.625 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .advantages {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .advantages {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .info-block {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .info-block {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .masters {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .masters {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .spa {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .spa {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .spa-programs {
      padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.625rem  +  6.6666666667vw , 7.5rem )) {
    .spa-programs {
      padding-bottom: calc(3.125rem + 4.375 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.75rem , 2.4642857143rem  +  5.7142857143vw , 7.5rem )) {
    .content-section {
      padding-bottom: clamp( 3.75rem , 2.4642857143rem  +  5.7142857143vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 3.75rem , 2.4642857143rem  +  5.7142857143vw , 7.5rem )) {
    .content-section {
      padding-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 65.625);
    }
}
}

@media (max-width: 88.125em) and (min-width: 88.125em) {
  .hero {
    padding-top: 9.375rem;
  }

  .hero {
    padding-bottom: 9.375rem;
  }
}

@media (max-width: 88.125em) and (min-width: 22.5em) and (max-width: 88.125em) {
@supports (padding-top: clamp( 7.5rem , 6.8571428571rem  +  2.8571428571vw , 9.375rem )) {
    .hero {
      padding-top: clamp( 7.5rem , 6.8571428571rem  +  2.8571428571vw , 9.375rem );
    }
}

@supports not (padding-top: clamp( 7.5rem , 6.8571428571rem  +  2.8571428571vw , 9.375rem )) {
    .hero {
      padding-top: calc(7.5rem + 1.875 * (100vw - 22.5rem) / 65.625);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 0.9821428571rem  +  9.5238095238vw , 9.375rem )) {
    .hero {
      padding-bottom: clamp( 3.125rem , 0.9821428571rem  +  9.5238095238vw , 9.375rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 0.9821428571rem  +  9.5238095238vw , 9.375rem )) {
    .hero {
      padding-bottom: calc(3.125rem + 6.25 * (100vw - 22.5rem) / 65.625);
    }
}
}

@media (any-hover: hover) {
  .select__option:hover {
    color: var(--red-color);
  }

  .quantity__button:hover {
    border: 0.0625rem solid var(--black-color);
  }

  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: var(--black-color);
  }

  .quantity__button_plus:hover {
    background-color: var(--white-color);
    border: 0.0625rem solid var(--red-color);
  }

  .quantity__button_plus:hover::before,
  .quantity__button_plus:hover::after {
    content: "";
    background-color: var(--red-color);
  }

  .popup__close:hover svg path {
    fill: #98b501;
  }

  .button:hover {
    background-color: #245200;
  }

  .video-block:hover .video__play svg path {
    fill: #98b501;
  }

  .header__logo:hover span {
    color: #98b501;
  }

  .header__social li a:hover svg path {
    fill: #245200;
  }

  .header__callback:hover {
    color: #98b501;
    text-decoration: underline;
  }

  .menu__link:hover {
    border: 1px solid transparent;
    color: #fff;
    background-color: #98b501;
  }

  .contacts__list li a:hover .contacts__icon {
    background-color: #173300;
  }

  .contacts__list li a:hover .contacts__icon svg path {
    fill: #fff;
  }

  .contacts__list li a:hover span {
    text-decoration: underline;
  }

  .masters__navigation button:hover {
    background: #fff;
  }

  .masters__navigation button:hover svg path {
    fill: #98b501;
  }

  .spa__item:hover {
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.03);
            box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.03);
    background: #fff;
  }

  .spa-programs__navigation button:hover {
    background: #fff;
  }

  .spa-programs__navigation button:hover svg path {
    fill: #98b501;
  }

  .content-section__prev-button:hover {
    background: #fff;
  }

  .content-section__prev-button:hover svg path {
    fill: #98b501;
  }

  .content-section__slide:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .content-section__next-button:hover {
    background: #fff;
  }

  .content-section__next-button:hover svg path {
    fill: #98b501;
  }
}