@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

a {
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul,
ol,
dd {
  list-style: none;
  list-style-type: none;
}

input,
button,
textarea,
select,
span,
b {
  font: inherit;
}

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

button {
  color: inherit;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:root {
  --color-1: #546659;
  --color-2: #e9e3d6;
  --color-3: #435247;
  --color-4: #f8f2e7;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  background-color: #796953;
}
body::before, body::after {
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  width: calc((100% - 1920px) / 2);
  min-width: 320px;
  height: 100%;
  background-repeat: repeat;
  background-position: center;
  background-size: cover 100%;
  pointer-events: none;
}
body::before {
  left: 0;
  background: url("../img/left.webp");
}
body::after {
  right: 0;
  background: url("../img/right.webp");
}

body.no-scroll {
  overflow-y: hidden !important;
  touch-action: none;
}

.stop-transitions * {
  transition: none !important;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0 0 60px 45px rgba(37, 32, 27, 0.56);
}

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    padding: 0 48px;
  }
}
@media only screen and (min-width: 1700px) {
  .container {
    padding: 0;
  }
}

.bg-light {
  background-color: #e9e3d6;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-block: 68px;
}
.bg-light * {
  color: #546659;
}
@media only screen and (min-width: 992px) {
  .bg-light {
    padding-block: 80px;
  }
}

.bg-dark {
  background-color: #435247;
  background-position: 0 0;
  background-size: cover;
  padding-block: 68px;
}
.bg-dark * {
  color: #e9e3d6;
}
@media only screen and (min-width: 992px) {
  .bg-dark {
    padding-block: 80px;
  }
}

[class^=title-] {
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 1;
}

.title-h1 {
  font-size: 40px;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) {
  .title-h1 {
    font-size: 72px;
  }
}
@media only screen and (min-width: 1199px) {
  .title-h1 {
    font-size: 88px;
  }
}

[class^=title-h2] {
  margin-bottom: 16px;
  font-size: 32px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  [class^=title-h2] {
    font-size: 64px;
  }
}
@media only screen and (min-width: 1199px) {
  [class^=title-h2] {
    font-size: 72px;
  }
}

.title-h2-light {
  color: #e9e3d6;
}

.title-h2-dark {
  color: #546659;
  text-shadow: 0 4px 8px #d3cdc0;
}

.title-h3 {
  margin-bottom: 16px;
  font-size: 24px;
  text-transform: uppercase;
  color: #f8f2e7;
}
@media only screen and (min-width: 992px) {
  .title-h3 {
    font-size: 48px;
  }
}

.title-h4 {
  margin-bottom: 16px;
  font-size: 24px;
  color: #f8f2e7;
}
@media only screen and (min-width: 992px) {
  .title-h4 {
    font-size: 32px;
  }
}

.description {
  display: block;
  font-size: 16px;
  line-height: 1.19;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .description span {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .description {
    font-size: 20px;
    line-height: 1.25;
  }
}
@media only screen and (min-width: 1199px) {
  .description {
    font-size: 24px;
  }
}

.button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 297px;
  margin: 0 auto;
  padding: 18px 10px;
  border-radius: 8px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  background-image: url("../img/button.webp"), linear-gradient(270deg, #df9347 21.52%, #9c5107 101.52%), linear-gradient(90deg, #556659 23.57%, #aaccb2 134.68%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: normal;
  transition: background 0.4s ease;
  gap: 10px;
  isolation: isolate;
}
.button::before {
  position: absolute;
  content: "";
  z-index: -1;
  opacity: 0;
  background-image: url("../img/button.webp"), linear-gradient(270deg, #eba259 56.06%, #bc5d00 101.52%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transition: opacity 0.5s ease;
  inset: 0;
}
@media (any-hover: hover) {
  .button:hover::before {
    opacity: 1;
  }
}

.header {
  position: relative;
  z-index: 5;
  margin-left: auto;
  padding-top: 24px;
}
.header .container {
  max-width: 1824px;
}
.header-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 16px;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .header-content {
    margin: 0 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-content {
    flex-direction: row;
    align-items: center;
    padding: 16px 32px;
    border-radius: 56px;
    background: rgba(232, 232, 232, 0.15);
    gap: 32px;
    backdrop-filter: blur(5px);
  }
}
@media only screen and (min-width: 1300px) {
  .header-content {
    margin: 0 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .header {
    position: absolute;
    left: 50%;
    width: 100%;
    padding-top: 29px;
    transform: translateX(-50%);
  }
}

.menu__button {
  position: relative;
  z-index: 5;
  display: none;
  cursor: pointer;
}
.menu__button span {
  position: relative;
  width: 15px;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
  transition: 0.5s ease;
}
.menu__button span::before, .menu__button span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
  transition: 0.5s ease;
}
.menu__button span::before {
  transform: translateY(-4px);
}
.menu__button span::after {
  transform: translateY(4px);
}
.menu__button._close {
  display: none;
}
.menu__button._close span {
  background-color: transparent;
}
.menu__button._close span::before {
  background-color: #e9e3d6;
  transform: rotate(45deg);
}
.menu__button._close span::after {
  background-color: #e9e3d6;
  transform: rotate(-45deg);
}
@media all and (max-width: 1023px) {
  .menu__button._close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 102;
    display: flex;
    background-color: #435247;
  }
}
@media all and (max-width: 1023px) {
  .menu__button {
    position: fixed;
    top: 16px;
    right: 28px;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(232, 232, 232, 0.15);
    backdrop-filter: blur(6.25px);
  }
}
@media only screen and (max-width: 991px) {
  .menu__button {
    right: 16px;
  }
}
.menu__nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu__nav.active {
  visibility: visible;
  transform: translateX(0);
}
.menu__nav.active::before {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .menu__nav-wrap {
    position: relative;
    width: 100%;
    max-width: 343px;
    padding: 16px 32px 32px;
    border-radius: 16px;
    background: url("../img/bg-1.webp"), #e9e3d6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media all and (max-width: 1023px) {
  .menu__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 30px;
    visibility: hidden;
    background: rgba(16, 16, 16, 0.7);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s;
    overflow-y: auto;
  }
  .menu__nav::before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
  }
}
.menu__links {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .menu__links {
    gap: 16px;
  }
}
@media only screen and (min-width: 1300px) {
  .menu__links {
    gap: 32px;
  }
}
@media all and (max-width: 1023px) {
  .menu__links {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
}
.menu__link {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .menu__link:hover {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 1024px) {
  .menu__link {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1074px) {
  .menu__link {
    font-size: 16px;
  }
}
@media all and (max-width: 1023px) {
  .menu__link {
    display: block;
    text-align: center;
    color: #435247;
    white-space: normal;
  }
}

.socials-menu {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .socials-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-bottom: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .socials-menu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .socials-menu {
    display: none;
  }
}

.socials-header {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-right: 4px;
}
.socials-header a {
  display: flex;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.socials-header a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 992px) {
  .socials-header a {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 1300px) {
  .socials-header a {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 1023px) {
  .socials-header {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .socials-header {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .socials-header {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .socials-header {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1300px) {
  .socials-header {
    gap: 32px;
  }
}

.hero {
  position: relative;
  width: 100%;
  box-shadow: 0 0 47.6px 9px rgba(76, 62, 47, 0.63);
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -87px;
  padding: 0 16px;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .hero-content {
    margin-top: 0;
    padding-top: 165px;
  }
}
.hero-logo {
  display: block;
  width: 100%;
  max-width: 190px;
  margin-bottom: 5px;
}
.hero-logo img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 992px) {
  .hero-logo {
    max-width: 511px;
    margin-bottom: 10px;
  }
}
.hero .title-h1 {
  max-width: 650px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .hero .title-h1 {
    margin-bottom: 32px;
  }
}
.hero .description {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .description span {
  display: block;
}
@media only screen and (max-width: 992px) {
  .hero .description {
    max-width: 265px;
  }
}
.hero .conditions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 38px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 34px rgba(19, 17, 7, 0.59);
  letter-spacing: 0.01em;
  text-align: center;
  background: rgba(232, 232, 232, 0.15);
}
@media only screen and (min-width: 992px) {
  .hero .conditions {
    margin-top: 32px;
    padding: 37px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1800px) {
  .hero .conditions {
    position: absolute;
    right: 50px;
    bottom: -68px;
  }
}
@media only screen and (min-width: 1800px) {
  .hero {
    height: 853px;
  }
}

.swiper-hero,
.swiper-hero .swiper-wrapper,
.swiper-hero .swiper-slide {
  height: 100%;
}

@media (max-width: 992px) {
  .swiper-hero .slide-1 img {
    object-position: 27% center;
    transform: scale(1.3);
  }
  .swiper-hero .slide-2 img {
    object-position: 20% center;
    transform: scale(1.1);
  }
  .swiper-hero .slide-3 img {
    object-position: center bottom;
    transform: scale(1.1);
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-banya {
  padding: 28px 0;
}
.swiper-banya .swiper-slide {
  border-radius: 16px;
  box-shadow: 0 4px 7.3px #3f4d43;
  cursor: pointer;
}
.swiper-banya .swiper-slide img {
  border-radius: inherit;
  aspect-ratio: 262/424;
}
@media only screen and (min-width: 992px) {
  .swiper-banya .swiper-slide img {
    aspect-ratio: 35/53;
  }
}
@media only screen and (min-width: 992px) {
  .swiper-banya {
    padding: 30px 0 40px;
  }
}

.banya-slider {
  padding: 16px 40px;
}
@media only screen and (min-width: 992px) {
  .banya-slider {
    padding: 40px 80px 0;
  }
}

.banya-slider.fullscreen {
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgba(16, 16, 16, 0.8);
  inset: 0;
}
.banya-slider.fullscreen .swiper {
  height: 100%;
}
.banya-slider.fullscreen .swiper-wrapper {
  height: 100%;
}
.banya-slider.fullscreen .swiper-slide {
  height: 100%;
}
.banya-slider.fullscreen .slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  padding: 60px 80px;
  box-sizing: border-box;
}
.banya-slider.fullscreen .swiper-wrapper {
  height: 100%;
}
.banya-slider.fullscreen .swiper-slide {
  width: 100%;
  height: 100%;
}
.banya-slider.fullscreen .swiper-slide-active {
  border: 2px solid #e9e3d6;
  border-radius: 32px;
}
.banya-slider.fullscreen .swiper-pagination {
  display: none;
}

.swiper-banya .swiper-banya {
  padding-bottom: 40px;
}

.banya-close {
  position: absolute;
  top: 0;
  right: 100px;
  z-index: 100;
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.banya-close svg {
  fill: #e9e3d6;
  width: 32px;
  height: 32px;
}

.banya-slider.fullscreen .banya-close {
  display: block;
}

.swiper-feedback {
  padding-block: 20px;
}
.swiper-feedback .swiper-slide {
  filter: drop-shadow(0 4px 7.3px #3f4d43);
  border-radius: 16px;
}
.swiper-feedback .swiper-slide img {
  border-radius: inherit;
}
.swiper-feedback .swiper-slide a {
  display: block;
  border-radius: inherit;
}
@media only screen and (min-width: 992px) {
  .swiper-feedback {
    padding-block: 40px;
  }
}

.swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: stretch;
  box-sizing: content-box;
  width: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 0;
  flex-shrink: 0;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  gap: 8px;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #e9e3d6;
  border-radius: 50%;
  cursor: pointer;
}
.swiper-pagination-bullet:hover {
  opacity: 0.7;
  background-color: #e9e3d6;
  transition: 0.2s all ease-in-out;
}
.swiper-pagination-bullet-active {
  background-color: #e9e3d6;
}
@media only screen and (min-width: 790px) {
  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}

.swiper-hero .swiper-pagination {
  position: relative;
  bottom: 18px;
  z-index: 40;
  width: 100%;
  height: 6px;
  gap: 7px;
}
.swiper-hero .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  border-radius: 6px;
  opacity: 0.5;
  background-color: #f2f2f2;
}
.swiper-hero .swiper-pagination-bullet:hover {
  opacity: 0.7;
  transition: 0.2s all ease-in-out;
}
.swiper-hero .swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (min-width: 992px) {
  .swiper-hero .swiper-pagination-bullet {
    width: 40px;
    height: 6px;
  }
}
@media only screen and (min-width: 992px) {
  .swiper-hero .swiper-pagination {
    bottom: 24px;
    gap: 14px;
  }
}
@media only screen and (min-width: 1800px) {
  .swiper-hero .swiper-pagination {
    bottom: 50px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid #e9e3d6;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s ease all;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  fill: #e9e3d6;
  width: 18px;
  height: 18px;
  transition: 0.3s ease all;
}
@media only screen and (min-width: 992px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 56px;
    height: 56px;
    border: 3px solid #e9e3d6;
  }
}
@media (any-hover: hover) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: #e9e3d6;
  }
  .swiper-button-next:hover svg,
  .swiper-button-prev:hover svg {
    fill: #435247;
  }
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev {
  left: 0;
}

.offers.bg-light {
  background-image: url("../img/bg-1.webp");
}
.offers .container {
  position: relative;
}
.offers .container::before {
  position: absolute;
  content: "";
  top: -143px;
  right: -134px;
  z-index: 1;
  display: block;
  width: 282px;
  height: 259px;
  background-image: url("../img/leaf.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  isolation: isolate;
}
@media only screen and (min-width: 992px) {
  .offers .container::before {
    top: -158px;
    right: -234px;
    width: 371px;
    height: 332px;
  }
}
.offers .description {
  max-width: 305px;
  margin-inline: auto;
}
@media only screen and (min-width: 992px) {
  .offers .description {
    max-width: 1200px;
  }
}
.offers .cards {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 56px auto 48px;
  gap: 40px;
}
@media only screen and (min-width: 460px) {
  .offers .cards {
    gap: 64px;
  }
}
@media only screen and (min-width: 1800px) {
  .offers .cards {
    justify-content: space-between;
    margin: 64px auto 56px;
  }
}
.offers .card {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 476px;
  padding: 16px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.offers .card p {
  max-width: 220px;
  color: #f8f2e7;
}
@media only screen and (min-width: 460px) {
  .offers .card p {
    max-width: 270px;
  }
}
.offers .card p + p {
  margin-top: 20px;
}
.offers .card .title-h4 {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.17);
}
.offers .card-1 {
  background-image: url("../img/card-1-mob.webp");
}
@media only screen and (min-width: 460px) {
  .offers .card-1 {
    background-image: url("../img/card-1.webp");
  }
}
.offers .card-2 {
  background-image: url("../img/card-2-mob.webp");
}
@media only screen and (min-width: 460px) {
  .offers .card-2 {
    background-image: url("../img/card-2.webp");
  }
}
.offers .card-3 {
  background-image: url("../img/card-3-mob.webp");
}
@media only screen and (min-width: 460px) {
  .offers .card-3 {
    background-image: url("../img/card-3.webp");
  }
}
.offers .card-content {
  position: relative;
  z-index: 2;
}
.offers .card-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  transform: scale(1);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 460px) {
  .offers .card-image {
    transform: scale(0.87);
  }
}
@media only screen and (max-width: 459px) {
  .offers .card {
    min-height: 214px;
  }
}
@media (any-hover: hover) {
  .offers .card:hover .card-image {
    transform: scale(1);
  }
}
.offers .button {
  box-shadow: 0 2px 6.3px #c8bda5;
}

.banya.bg-dark {
  background-image: url("../img/bg-2.webp");
}
.banya .container {
  max-width: 1800px;
}
.banya .description {
  max-width: 320px;
  margin: 0 auto;
}
@media only screen and (min-width: 790px) {
  .banya .description {
    max-width: 600px;
  }
}
@media only screen and (min-width: 1024px) {
  .banya .description {
    max-width: 1330px;
  }
}
.banya-row {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
@media only screen and (min-width: 992px) {
  .banya-row {
    flex-direction: row;
    margin-bottom: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .banya-row {
    justify-content: flex-end;
  }
}
.banya-info {
  width: 100%;
  max-width: 600px;
  padding-top: 20px;
}
.banya-info .description {
  max-width: 280px;
  padding-top: 10px;
}
.banya-info .description span {
  display: block;
}
@media only screen and (min-width: 992px) {
  .banya-info .description span {
    line-height: 1;
  }
}
.banya-info .description span + span {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .banya-info .description span + span {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .banya-info .description {
    max-width: none;
    text-align: left;
  }
}
@media only screen and (min-width: 992px) {
  .banya-info {
    width: 40%;
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1440px) {
  .banya-info {
    width: 37%;
    max-width: none;
  }
}
@media only screen and (max-width: 992px) {
  .banya .title-h3 {
    text-align: center;
  }
}
.banya-slider {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .banya-slider {
    width: 58%;
  }
}

.tags {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 16px;
  flex-flow: row wrap;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .tags {
    justify-content: flex-start;
  }
}

.tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  border: 2px solid #e9e3d6;
  border-radius: 53px;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 16px;
  color: #e9e3d6;
  transition: 0.3s ease all;
}
@media only screen and (min-width: 992px) {
  .tag {
    font-size: 24px;
  }
}
@media (any-hover: hover) {
  .tag:hover {
    color: #435247;
    background-color: #e9e3d6;
  }
}

.streaming.bg-light {
  background-image: url("../img/bg-3.webp");
}
.streaming .container {
  position: relative;
}
.streaming .container::before, .streaming .container::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.streaming .container::after {
  right: -134px;
  bottom: 6px;
  z-index: 2;
  width: 362px;
  height: 371px;
  background-image: url("../img/mandarinas.webp");
}
@media only screen and (min-width: 790px) {
  .streaming .container::after {
    right: -561px;
    bottom: -478px;
    width: 1039px;
    height: 1116px;
  }
}
@media only screen and (min-width: 992px) {
  .streaming .container::after {
    right: -461px;
    bottom: -278px;
    z-index: 0;
  }
}
.streaming .container::before {
  top: -170px;
  left: -80px;
  width: 195px;
  height: 206px;
  background-image: url("../img/leaf-big-mob.webp");
}
@media only screen and (min-width: 992px) {
  .streaming .container::before {
    top: -694px;
    left: -938px;
    width: 1491px;
    height: 1468px;
    background-image: url("../img/leaf-big.webp");
  }
}
.streaming-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .streaming-row .title-h2-dark {
    font-size: 24px;
  }
}
.streaming-row .title-h2-dark,
.streaming-row .description {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .streaming-row .title-h2-dark,
  .streaming-row .description {
    text-align: left;
  }
}
.streaming-row:nth-child(2n+1) {
  margin-top: 56px;
}
@media only screen and (min-width: 992px) {
  .streaming-row:nth-child(2n+1) {
    flex-direction: row-reverse;
    margin-top: 120px;
  }
}
@media only screen and (min-width: 992px) {
  .streaming-row {
    flex-direction: row;
    gap: 24px;
    margin-top: 64px;
  }
}
@media only screen and (min-width: 1350px) {
  .streaming-row {
    gap: 60px;
  }
}
.streaming-text {
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .streaming-text * {
    padding: 0 16px;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .streaming-text {
    width: 38%;
  }
}
@media only screen and (min-width: 1350px) {
  .streaming-text {
    width: 34%;
  }
}
@media only screen and (min-width: 1920px) {
  .streaming-text {
    width: 30%;
  }
}
.streaming-image {
  border-radius: 16px;
}
.streaming-image img {
  aspect-ratio: 343/306;
  border-radius: inherit;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .streaming-image img {
    aspect-ratio: 1003/468;
  }
}
@media only screen and (min-width: 1350px) {
  .streaming-image img {
    aspect-ratio: 1003/468;
  }
}
@media only screen and (max-width: 991px) {
  .streaming-image {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) {
  .streaming-image {
    width: 61%;
  }
}

.additional.bg-dark {
  background-image: url("../img/bg-4.webp");
}
.additional .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 343px;
  padding: 24px 0;
}
@media only screen and (min-width: 790px) {
  .additional .item {
    max-width: 398px;
    padding: 24px;
  }
}
.additional .item-icon {
  height: 120px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .additional .item-icon {
    margin-bottom: 24px;
  }
}
.additional .title-h4 {
  text-align: center;
  text-transform: uppercase;
}

.items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px auto 0;
}

.item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 0%;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(233, 227, 214, 0.43);
}

@media (max-width: 1440px) {
  .items {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
  .item::after {
    display: none;
  }
  .item:nth-child(odd)::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    display: block;
    width: 2px;
    height: 80%;
    background-color: rgba(233, 227, 214, 0.43);
    transform: translateY(-50%);
  }
  .item:nth-child(-n+2)::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 2px;
    background-color: rgba(233, 227, 214, 0.43);
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .items {
    grid-template-columns: 1fr;
    max-width: 343px;
    margin: 0 auto;
  }
  .item::after {
    content: none;
    display: none !important;
  }
  .item:not(:last-child)::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 280px;
    height: 2px;
    background-color: rgba(233, 227, 214, 0.43);
    transform: translateX(-50%);
  }
}
.price.bg-light {
  background-image: url("../img/bg-5.webp");
}
.price .container {
  position: relative;
}
.price .container::before {
  position: absolute;
  content: "";
  bottom: -165px;
  left: -56px;
  z-index: 1;
  display: block;
  width: 208px;
  height: 175px;
  background-image: url("../img/mandarina.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  isolation: isolate;
}
@media only screen and (min-width: 992px) {
  .price .container::before {
    bottom: -452px;
    left: -335px;
    width: 653px;
    height: 512px;
  }
}

.price-tabs {
  display: none;
}

.price-table {
  width: 100%;
  max-width: 500px;
  margin: 36px auto 0;
  border: 1px solid #435247;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .price-table {
    max-width: 1520px;
    margin: 64px auto 0;
    border-radius: 16px 16px 0 0;
  }
}

.price-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: #435247;
  background-color: #e9e3d6;
  padding-block: 30px;
}
.price-row div {
  width: 50%;
  max-width: 150px;
}
@media only screen and (min-width: 992px) {
  .price-row div {
    width: 25%;
    max-width: 200px;
  }
}
.price-row .label {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  .price-row .label {
    font-size: 32px;
  }
}
.price-row .value {
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .price-row .value {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .price-row {
    padding-block: 32px;
  }
}

.price-row.desktop {
  font-size: 24px;
  background: #435247;
}
.price-row.desktop div {
  color: #f2ede4;
}
@media only screen and (min-width: 1199px) {
  .price-row.desktop {
    font-size: 32px;
  }
}

.price-row:nth-child(odd):not(.desktop) {
  background-color: #dbd5c8;
}

@media (max-width: 991px) {
  .price-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 27px 10px;
    background-color: #435247;
    gap: 6px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 375px) {
  .price-tabs {
    padding: 27px 15px;
  }
}
@media (max-width: 991px) {
  .price-tabs button {
    width: 32%;
    border-right: 1px solid rgba(233, 227, 214, 0.5);
    font-family: "Sofia Sans Condensed", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: rgba(233, 227, 214, 0.5);
  }
  .price-tabs button:last-child {
    border-right: none;
  }
  .price-tabs button.active {
    color: rgb(233, 227, 214);
  }
  .price-row.desktop {
    display: none;
  }
  .value {
    display: none;
  }
  .value.active {
    display: block;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .value.active {
    font-size: 16px;
  }
}
.feedback.bg-dark {
  background-image: url("../img/bg-6.webp");
}
.feedback .container {
  max-width: 1590px;
}
.feedback-slider {
  position: relative;
  padding: 0 10px;
}
@media only screen and (max-width: 991px) {
  .feedback-slider .swiper-pagination {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .feedback-slider .swiper-button-next,
  .feedback-slider .swiper-button-prev {
    top: auto;
    bottom: -40px;
    width: 40px;
    height: 40px;
    transform: translateY(0%);
  }
  .feedback-slider .swiper-button-next svg,
  .feedback-slider .swiper-button-prev svg {
    width: 23px;
    height: 23px;
  }
}
@media only screen and (max-width: 991px) {
  .feedback-slider .swiper-button-next {
    right: calc(50% - 60px);
  }
}
@media only screen and (max-width: 991px) {
  .feedback-slider .swiper-button-prev {
    left: calc(50% - 60px);
  }
}
@media only screen and (min-width: 992px) {
  .feedback-slider {
    margin-top: 24px;
    padding: 0 80px;
  }
}

.contact.bg-light {
  background-image: url("../img/bg-4.webp");
}
@media only screen and (min-width: 992px) {
  .contact.bg-light {
    background-image: url("../img/bg-7.webp");
  }
}
.contact .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 32px;
}
@media only screen and (min-width: 790px) {
  .contact .container {
    flex-direction: row;
    gap: 0;
  }
}
.contact .contact-info {
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 789px) {
  .contact .contact-info .title-h2-dark {
    display: none;
  }
}
.contact .title-h2-dark {
  text-align: left;
}
.contact .title-h2-dark.mobile {
  margin-bottom: 8px;
  text-align: center;
}
@media only screen and (min-width: 790px) {
  .contact .title-h2-dark.mobile {
    display: none;
  }
}
.contact .items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 790px) {
  .contact .items {
    margin-top: 30px;
  }
}
.contact .item {
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 790px) {
  .contact .item {
    padding-left: 16px;
  }
}
.contact .item-icon {
  width: 48px;
  height: 48px;
}
.contact .item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact .title-item {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  text-transform: uppercase;
}
.contact .item-text {
  font-size: 16px;
}
.contact .socials {
  display: flex;
  gap: 32px;
}
.contact .map {
  position: relative;
  width: 100%;
  height: 310px;
  filter: drop-shadow(0 2px 12.4px rgba(200, 189, 165, 0.43));
  border-radius: 16px;
}
.contact .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}
@media only screen and (min-width: 790px) {
  .contact .map {
    max-width: 70%;
    height: 487px;
  }
}

footer.bg-dark {
  font-size: 14px;
  color: #fff;
  padding-block: 24px;
  background-image: url("../img/bg-6.webp");
}
footer.bg-dark .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1820px;
  gap: 16px;
}
footer.bg-dark .container::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -24px;
  width: 187px;
  height: 240px;
  background-image: url("../img/leaf-lavr-m.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
@media only screen and (min-width: 992px) {
  footer.bg-dark .container::after {
    right: -750px;
    bottom: -16px;
    width: 984px;
    height: 572px;
    background-image: url("../img/leaf-lavr.webp");
  }
}
@media only screen and (min-width: 992px) {
  footer.bg-dark .container {
    flex-direction: row;
  }
}
footer.bg-dark .logo {
  display: block;
  width: 181px;
}
@media only screen and (min-width: 992px) {
  footer.bg-dark .logo {
    width: 140px;
  }
}
footer.bg-dark .copy {
  margin: 0 auto;
  text-align: center;
}
footer.bg-dark .copy a {
  display: block;
  margin-top: 8px;
  text-decoration: underline;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  footer.bg-dark .copy a:hover {
    text-decoration: none;
  }
}
@media only screen and (min-width: 992px) {
  footer.bg-dark {
    background-image: url("../img/bg-8.webp");
  }
}
@media only screen and (min-width: 992px) {
  footer.bg-dark {
    padding-block: 16px;
  }
}