* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark Theme */

:root {
  --main-color: rgb(199, 94, 144);
  --secondary-color: rgb(142, 52, 95);
  --main-background-color: rgb(29, 29, 29);
  --header-hero-background-color-light: linear-gradient(
    46.79deg,
    rgba(255, 253.9375, 254.44345092773438, 1),
    rgba(246.5, 220.8229217529297, 233.05010986328125, 1) 100%
  );
  --header-hero-background-color-dark: rgb(22, 22, 22);
  --footer-background-color: rgb(22, 22, 22);
  --secondary-background-color: rgb(22, 22, 22);
  --contacts-background-color-main: rgb(199, 94, 144);
  --contacts-background-color-secondary: rgb(142, 52, 95);
  --input-border-color: rgb(255, 255, 255);
  --button-text-color: rgb(255, 255, 255);
  --main-text-color: rgb(255, 255, 255);
  --grey-text-color: rgb(105, 105, 105);
  --white-text-color: rgb(255, 255, 255);
}

/* Light Theme */

[data-theme='light'] {
  --main-background-color: rgb(251, 246, 248);
  --secondary-background-color: rgb(255, 255, 255);
  --contacts-background-color-main: rgb(142, 52, 95);
  --contacts-background-color-secondary: rgb(199, 94, 144);
  --input-border-color: rgb(183, 183, 183);
  --main-text-color: rgb(35, 35, 35);
  --footer-background-color: rgb(247, 221, 233);
}

body,
.header,
.header__navbar-item--link,
.logo,
.hero,
.hero .hero__subtitle,
.section__text,
.contacts,
.contacts__icon--location,
.contacts__icon--email,
.contacts__icon--phone,
.contacts__communication,
.button,
.booking__input,
.pricing-card__feature {
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1),
    color 1s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-bold.woff2') format('woff2');
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-regular.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

html {
  scrollbar-gutter: stable;
}

body {
  background-color: var(--main-background-color);
  font-family: 'Poppins';
  color: var(--main-text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.header__navbar,
.header__theme-switcher,
.header__button,
.hero__image-main--pc,
.our-rooms__image-gallery,
.slider-testimonials--pc,
.footer__copyright--pc,
.footer__plans-link svg {
  display: none;
}

.header {
  background-color: transparent;
  color: var(--main-text-color);
  width: 100%;
  height: auto;
  padding: 34px 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.header-hero-wrapper {
  position: relative;
  z-index: 0;
  background: var(--header-hero-background-color-light);
  border-radius: 0 0 60px 60px;
}
.header-hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  background: var(--header-hero-background-color-dark);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme='light'] .header-hero-wrapper::before {
  opacity: 0;
}

.header__logo {
  width: 100%;
  max-width: 178px;
  aspect-ratio: 2.575 / 1;
  position: relative;
}

.header__logo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__logo--light {
  opacity: 0;
}

[data-theme='light'] .header__logo--light {
  opacity: 1;
}

[data-theme='light'] .header__logo--dark {
  opacity: 0;
}

/* Hamburger Button */

.header__hamburger {
  position: relative;
  width: 51px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 11px;
  z-index: 1000;
}

.header__hamburger-line {
  position: absolute;
  width: 51px;
  height: 9px;
  background: var(--main-color);
  border-radius: 20px 0 0 20px;
  transition: 0.4s ease, height 0.4s ease;
  left: 0;
  transform-origin: center;
}

.header__hamburger-line--top {
  top: 0;
}

.header__hamburger-line--middle {
  top: calc(50% - 4.5px);
}

.header__hamburger-line--bottom {
  bottom: 0;
}

body.lock {
  overflow: hidden;
}

.header.open .header__hamburger-line--top,
.header.open .header__hamburger-line--bottom {
  height: 4px;
  border-radius: 20px;
}

.header.open .header__hamburger-line--top {
  transform: rotate(45deg);
  top: calc(50% - 2px);
  background-color: rgb(255, 255, 255);
}

.header.open .header__hamburger-line--middle {
  opacity: 0;
  transform: scaleX(0);
  background-color: rgb(255, 255, 255);
}

.header.open .header__hamburger-line--bottom {
  transform: rotate(-45deg);
  bottom: auto;
  top: calc(50% - 2px);
  background-color: rgb(255, 255, 255);
}

/* Mobile Menu */

.header__mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  padding: 33px 32px 88px;
  top: 0;
  right: 0;
  width: 96vw;
  height: 100%;
  border-radius: 60px 0 0 60px;
  transform: translateX(100%);
  z-index: 100;
  background: var(--main-color);
  transition: transform 0.3s ease-in-out;
}

.header.open .header__mobile-menu {
  transform: translateX(0);
}

.mobile-menu__theme-switcher {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 158px;
  height: 66px;
  background-color: rgb(255, 255, 255);
  border-radius: 220px;
  padding: 10px 18px;
}

.mobile-menu__theme-switcher::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  display: block;
  width: 87px;
  height: 66px;
  border-radius: 40px;
  background-color: var(--secondary-color);
  transition: left 0.3s ease-in;
}

.mobile-menu__theme-switcher--active::before {
  left: 72px;
}

.theme-switcher__icon {
  position: relative;
  z-index: 10;
  padding: 5px;
  width: 46.22px;
  height: auto;
}

.theme-switcher__icon path {
  transition: stroke 0.3s ease-in-out;
}

.theme-switcher__icon--dark path {
  stroke: rgb(255, 255, 255);
}
.theme-switcher__icon--light path {
  stroke: rgb(16, 16, 16);
}

.mobile-menu__theme-switcher--active .theme-switcher__icon--dark path {
  stroke: rgb(16, 16, 16);
}
.mobile-menu__theme-switcher--active .theme-switcher__icon--light path {
  stroke: rgb(255, 255, 255);
}

.mobile-menu__navigation {
  height: 100%;
  padding: 100px 0 124px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu__navigation li {
  width: 100%;
}

.mobile-menu__navigation li a {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.mobile-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 372px;
  padding: 20px 80px;
  border-radius: 220px;
  color: var(--button-text-color);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.mobile-button--dark {
  background-color: var(--secondary-color);
}

.mobile-button--light {
  padding: 22px 80px;
  background-color: var(--main-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

/* Hero */

.hero {
  background: transparent;
  color: var(--main-text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 76px;
  padding: 94px 26px 0;
  border-radius: 0 0 60px 60px;
}

.hero__content-wrapper {
  position: relative;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.hero__subtitle {
  margin: 24px 0;
}

.section__title {
  color: rgb(105, 105, 105);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3.6px;
  text-align: center;
  text-transform: uppercase;
}

.section__subtitle {
  color: var(--main-text-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
}

.section__text {
  color: var(--main-text-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.hero__button {
  margin-top: 41px;
}

.hero__image {
  width: 100%;
  padding-bottom: 35px;
}

.hero__image-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 48px 0;
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero__main-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 26px;
}

.hero__image-main {
  width: 100%;
  height: auto;
  display: block;
}

.hero__image-small {
  position: absolute;
  border-radius: 50%;
  width: 17%;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--main-color);
  object-fit: cover;
}

.hero__image-small--1 {
  top: 15%;
  left: 1%;
}

.hero__image-small--2 {
  top: 47%;
  left: 4%;
}

.hero__image-small--3 {
  top: 72%;
  left: 18%;
}

.hero__image-small--4 {
  top: 88%;
  left: 47%;
}

/* Contacts */

.contacts {
  margin: 50px 26px 26px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 46px;
  background-color: var(--contacts-background-color-main);
}

.contacts__icon {
  border-radius: 50%;
  height: 78px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts__icon--location {
  background-color: var(--contacts-background-color-secondary);
}

.contacts__icon--email,
.contacts__icon--phone {
  background-color: var(--contacts-background-color-main);
}

.contacts__text a {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

.contacts__address,
.contacts__phone,
.contacts__email {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contacts__address {
  padding: 30px 10px 0 30px;
}

.contacts__communication {
  padding: 48px 10px 57px 30px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  background-color: var(--contacts-background-color-secondary);
  border-radius: 70px 70px 40px 40px;
}

/* About */

.about {
  background-color: var(--secondary-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 53px 46px 28px;
  margin: 0 26px;
  border-radius: 40px;
  overflow: hidden;
}

.about__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__title {
  position: relative;
}

.about__subtitle {
  position: relative;
  font-size: 32px;
  line-height: 48px;
  margin: 20px 0 37px;
}

.about__title-underline,
.about__subtitle-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -6px;
}

.about__subtitle-underline {
  background-color: var(--main-color);
}

.about__button {
  margin: 37px 0 60px;
  padding: 18px 80px;
}

.about__image-wrapper {
  width: 100%;
  background-image: url(../images/about-bg.png);
  background-position-x: 110%;
  background-position-y: 23%;
  background-repeat: no-repeat;
  display: flex;
}

.about__image {
  position: relative;
  transform: translateX(-12%);
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.about__image--main {
  max-width: none;
}

/* Our rooms */

.our-rooms {
  padding: 33px 26px 58px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.our-rooms__image {
  display: flex;
  justify-content: center;
  padding-bottom: 59px;
}

.our-rooms__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 23px;
}

.our-rooms__subtitle {
  padding: 16px 0 39px;
}

.our-rooms__title-text,
.our-rooms__subtitle-text {
  position: relative;
  display: inline-block;
}

.our-rooms__title-underline,
.our-rooms__subtitle-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -10px;
  left: 0;
}

.our-rooms__subtitle-underline {
  background-color: var(--main-color);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.accordion__wrapper {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(128, 128, 128, 0.13);
  transition: all 0.8s ease;
  position: relative;
}

.accordion__wrapper.active {
  padding-bottom: 36px;
}

.our-rooms__accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.accordion-label__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  padding: 16px 10px;
  border-radius: 50%;
  background-color: var(--main-color);
}

.accordion-label__icon svg {
  transition: transform 0.8s ease;
  transform: scaleY(1);
  transform-origin: center;
  color: var(--white-text-color);
}

.accordion__wrapper.active .accordion-label__icon svg {
  transform: scaleY(-1);
}

.accordion-label__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  position: relative;
}

.our-rooms__accordion-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  padding-left: 66px;
  margin-top: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.7s ease;
}

.accordion__wrapper.active .our-rooms__accordion-content {
  display: flex;
  justify-content: end;
  max-height: 300px;
  opacity: 1;
  animation: fade 0.8s ease-in-out;
}

/* Care Section */

.care-container {
  width: 100%;
  padding: 0 26px;
  position: relative;
}

.care {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 40px;
  background-color: var(--secondary-background-color);
  overflow: hidden;
}

.care__intro {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 88px 37px 59px;
  background-color: var(--main-color);
  border-radius: 40px;
}

.care__intro-title {
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 4.3px;
  color: rgb(24, 24, 24);
  padding-right: 76px;
}

.care__intro-subtitle {
  position: relative;
  text-align: left;
  margin: 19px 0 16px;
  color: var(--white-text-color);
}

.care__intro-subtitle-underline {
  display: none;
}

.care__intro-text {
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  padding-right: 76px;
  color: var(--white-text-color);
}

.care__intro-button {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  padding: 13px 84px;
  white-space: nowrap;
  margin-top: 34px;
  width: 236px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.care__intro-button::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.care__block {
  display: flex;
  flex-direction: column;
  padding: 44px 32px 40px;
  background-color: var(--secondary-background-color);
}

.care__block:nth-child(2),
.care__block:nth-child(3) {
  border-bottom: 1px solid rgba(128, 128, 128, 0.13);
}

.care__block:last-child {
  padding: 44px 32px 69px;
  border-radius: 0 0 40px 40px;
}

.care__block-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  margin: 22px 0 10px;
}

.care__block-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  padding-right: 54px;
}

/* Clients */

.slider--clients {
  padding: 43px 26px 79px;
  position: relative;
  overflow: visible;
}

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

.slider--clients .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.slider--clients .swiper-slide__content {
  width: 100%;
  position: relative;
  overflow: visible;
  padding-bottom: 55px;
}

.slider--clients .swiper-slide__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.slider--clients .swiper-slide__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 70%;
  transform: translate(-50%);
  padding: 26px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--main-color);
}

.slider--clients .swiper-slide__icon svg {
  stroke-width: 4px;
  width: 71px;
  height: auto;
}

.slider-button {
  position: absolute;
  top: 41%;
  transform: translateY(-50%);
  width: 49px;
  height: 49px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.button-prev {
  left: 1%;
}

.button-next {
  right: 1%;
}

/* Pricing */

.pricing {
  padding: 0 26px 73px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__title {
  position: relative;
}

.pricing__subtitle {
  position: relative;
  font-size: 40px;
  line-height: 60px;
  margin: 20px 0;
}

.pricing__title-underline,
.pricing__subtitle-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -6px;
}
.pricing__subtitle-underline {
  background-color: var(--main-color);
}

.pricing__text {
  font-family: Poppins;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 64px;
}

.pricing__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.pricing-card {
  padding: 35px 37px 48px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card--dark {
  background-color: var(--secondary-background-color);
}

.pricing-card--light {
  z-index: 1;
  background-color: var(--main-color);
  padding: 50px 37px;
}

.pricing-card--light .pricing-card__plan-title,
.pricing-card--light .pricing-card__amount,
.pricing-card--light .pricing-card__period,
.pricing-card--light .pricing-card__features {
  color: var(--white-text-color);
}
.pricing-card__plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pricing-card__plan-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.26em;
  text-align: left;
  text-transform: uppercase;
  color: var(--main-color);
}

.pricing-card__price {
  margin: 10px 0 42px;
  display: flex;
  align-items: end;
  gap: 10px;
  width: 100%;
}

.pricing-card__amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.pricing-card__period {
  font-size: 14px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
}

.pricing-card__feature::before {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='31' height='30' viewBox='0 0 31 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.2083 10.0586L12.4166 20.8503L7.79157 16.2253M29.375 14.6836C29.375 22.3465 23.163 28.5586 15.5 28.5586C7.83705 28.5586 1.625 22.3465 1.625 14.6836C1.625 7.02064 7.83705 0.808594 15.5 0.808594C23.163 0.808594 29.375 7.02064 29.375 14.6836Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  flex-shrink: 0;
  filter: invert(0) sepia(0) saturate(0) hue-rotate(0deg);
}

body[data-theme='light'] .pricing-card--dark .pricing-card__feature::before {
  filter: invert(1) sepia(0) saturate(0) hue-rotate(0deg);
}

.pricing__button {
  width: 236px;
  padding: 14px 0;
  margin-top: 50px;
}

.pricing-card--light .pricing__button {
  font-size: 12px;
  line-height: 18px;
}

/* Reviews */

.reviews {
  padding: 0 26px;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews__title {
  padding: 0 66px;
}

.reviews__title-text {
  position: relative;
}

.reviews__subtitle {
  position: relative;
  font-size: 32px;
  line-height: 48px;
  margin: 28px 0 20px;
}

.reviews__title-underline,
.reviews__subtitle-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -6px;
}

.reviews__subtitle-underline {
  background-color: var(--main-color);
}

.reviews__text {
  font-size: 14px;
  line-height: 21px;
}

.slider-testimonials--mobile {
  margin-top: 39px;
  position: relative;
}

.slider-testimonials--mobile .swiper {
  width: 100%;
  height: auto;
}

.slider-testimonials--mobile .swiper-slide__content {
  padding: 37px 42px 46px;
  background-color: var(--secondary-background-color);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-testimonials--mobile .swiper-slide__icon {
  display: flex;
  gap: 14px;
}

.slider-testimonials--mobile .swiper-slide__text {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.slider-testimonials--mobile .swiper-slide__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.slider-testimonials--mobile .swiper-slide__author-image {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 4px solid var(--main-color);
}

.testimonials-button-next--mobile {
  right: -5%;
  top: 48%;
}

.testimonials-button-prev--mobile {
  left: -5%;
  top: 48%;
}

/* Booking  */

.booking {
  padding: 56px 26px 93px;
}

.booking__container {
  background-color: var(--secondary-background-color);
  border-radius: 40px;
  padding: 63px 27px 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.booking__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.booking__title {
  max-width: 185px;
  position: relative;
}

.booking__subtitle {
  position: relative;
}

.booking__title-underline,
.booking__subtitle-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -6px;
}

.booking__subtitle-underline {
  background-color: var(--main-color);
}

.booking__text {
  font-size: 14px;
  line-height: 21px;
}

.booking__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}

.booking__field {
  position: relative;
  width: 100%;
}

.booking__input {
  width: 100%;
  padding: 36px 12px 13px 31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: var(--main-text-color);
  border: 1px solid var(--input-border-color);
  outline: none;
  border-radius: 40px;
  background: transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.booking__input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.date-wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
}

.booking__input--date::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.date-icon-wrapper {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  padding: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  pointer-events: none;
  z-index: 2;
}

.booking__input::placeholder {
  color: var(--main-text-color);
  opacity: 1;
  transition: color 0.3s, opacity 0.3s;
}

.booking__input:focus::placeholder {
  color: var(--main-text-color);
  opacity: 0.5;
}

.booking__label {
  position: absolute;
  top: 17px;
  left: 31px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3.6px;
  text-align: left;
  text-transform: uppercase;
  color: var(--grey-text-color);
  transition: 0.2s ease;
}

.booking__input--plan {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' fill='none' stroke='%23999' stroke-width='15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.booking__input--plan option {
  background-color: var(--main-color);
}

.booking__input::-webkit-inner-spin-button,
.booking__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking__input {
  -moz-appearance: textfield;
}

.booking__number-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.booking__arrows {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  top: 15px;
  right: 11px;
  border: 1px solid var(--main-text-color);
  border-radius: 50%;
}

.booking__arrow {
  position: absolute;
  right: 11px;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--main-text-color);
}

.booking__arrow-icon {
  width: 20px;
  height: 20px;
}

.booking__arrow--up {
  top: 3px;
}

.booking__arrow--down {
  bottom: 4px;
}

.booking__button {
  max-width: 316px;
}

/* Booking Modal */

.booking-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  max-height: 90%;
  width: 90%;
  max-width: 800px;
  background-color: var(--secondary-background-color);
  border-radius: 40px;
  border: none;
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, backdrop-filter 0.4s ease;
}

.booking-modal.showing {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  backdrop-filter: blur(0px);
}

.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.booking-modal.showing::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.booking-modal__content {
  padding: 36px 24px;
}

.booking-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 14px;
}

.booking-modal__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
  color: var(--main-text-color);
}

.booking-modal__subtitle {
  font-size: 16px;
  color: var(--grey-text-color);
}

.booking-modal__close {
  position: absolute;
  top: 10px;
  right: 16px;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  color: var(--main-color);
}

.booking-modal__close-icon {
  width: 24px;
  height: 24px;
}

.booking-modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.booking-modal__field {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.booking-modal__label {
  position: absolute;
  top: 17px;
  left: 30px;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3.6px;
  text-align: left;
  text-transform: uppercase;
  color: var(--grey-text-color);
  transition: 0.2s ease;
}

.booking-modal__input {
  width: 100%;
  padding: 28px 12px 8px 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: var(--main-text-color);
  border: 1px solid var(--input-border-color);
  outline: none;
  border-radius: 40px;
  background: transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.booking-modal__input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.booking-modal__input::placeholder {
  color: var(--main-text-color);
  opacity: 1;
  transition: color 0.3s, opacity 0.3s;
}

.booking-modal__input:focus::placeholder {
  color: var(--main-text-color);
  opacity: 0.5;
}

.booking-modal__date-wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
}

.booking-modal__input--date::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.booking-modal__date-icon-wrapper {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
}

.booking-modal__input--plan {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' fill='none' stroke='%23999' stroke-width='15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.booking-modal__input--plan option {
  background-color: var(--main-color);
}

.booking-modal__input::-webkit-inner-spin-button,
.booking-modal__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking-modal__input {
  -moz-appearance: textfield;
}

.booking-modal__number-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-modal__arrows {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  top: 13px;
  right: 12px;
  border: 1px solid var(--main-text-color);
  border-radius: 50%;
}

.booking-modal__arrow {
  position: absolute;
  right: 9px;
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--main-text-color);
}

.booking-modal__arrow-icon {
  width: 16px;
  height: 16px;
}

.booking-modal__arrow--up {
  top: 0px;
}

.booking-modal__arrow--down {
  bottom: 4px;
}

.booking-modal__button {
  margin-top: 16px;
  width: 100%;
  border-radius: 220px;
  max-width: 268px;
}

/* Footer */

.footer__container {
  background-color: var(--footer-background-color);
  border-radius: 100px 100px 0 0;
  display: flex;
  flex-direction: column;
  padding: 88px 26px 60px;
}

.footer__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
  width: 100%;
  position: relative;
}

.footer__intro::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 26px);
  bottom: -57px;
  height: 1px;
  background: rgba(128, 128, 128, 0.13);
}

.footer__intro-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.footer__intro-logo-image {
  max-width: 85px;
  height: auto;
  flex-shrink: 1;
}

.footer__intro-logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__intro-logo-text--top {
  position: relative;
  color: var(--grey-text-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 4.4px;
  text-align: left;
  text-transform: uppercase;
  width: fit-content;
}

.footer__intro-logo-text--bottom {
  position: relative;
  color: var(--main-text-color);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
}

.footer__intro-logo-text--top-underline,
.footer__intro-logo-text--bottom-underline {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform-origin: left center;
  bottom: -6px;
}

.footer__intro-form {
  width: 100%;
}

.footer__intro-email {
  position: relative;
  width: 100%;
}

.footer__intro-email__button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  background-image: url('../images/email-icon.png');
  background-size: 27px 21px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.footer__intro-email__label {
  position: absolute;
  top: 17px;
  left: 31px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3.6px;
  text-align: left;
  text-transform: uppercase;
  color: var(--grey-text-color);
  transition: 0.2s ease;
}

.footer__intro-email__input {
  width: 100%;
  padding: 36px 12px 13px 31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: var(--main-text-color);
  border: 1px solid var(--input-border-color);
  outline: none;
  border-radius: 40px;
  background: transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.footer__intro-email__input::placeholder {
  color: var(--main-text-color);
  opacity: 1;
  transition: opacity 0.3s;
}

.footer__intro-email__input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.footer__intro-email__input:focus::placeholder {
  opacity: 0.5;
}

.footer__contacts {
  margin: 122px 0 71px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.footer__contacts-block {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  padding-left: 5px;
}

.footer__contacts-block-icon {
  height: 50px;
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__contacts-block-icon-image {
  width: 23.5px;
  height: auto;
}

.footer__contacts-block-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.footer__contacts-block-text-top {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

.footer__contacts-block-link-bottom {
  color: var(--main-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}

.footer__plans {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.footer__plans-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.footer__plans-link {
  color: var(--main-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 46px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin: 42px 0 82px;
}

.footer__social-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.footer__social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.footer__social-icon {
  border-radius: 50%;
  background-color: var(--main-color);
  width: 44px;
  height: 44px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-icon {
  font-size: 27px;
  color: var(--secondary-background-color);
}

.footer__copyright--mobile {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 480px) {
  .header {
    padding: 42px 52px 0;
  }

  .header__logo {
    max-width: 222px;
  }

  .header__mobile-menu {
    padding: 46px 48px 112px;
  }

  .mobile-menu__navigation li a {
    font-size: 36px;
  }

  .hero {
    padding: 94px 52px 0;
  }

  .hero__main-image-wrapper {
    padding: 0 40px;
  }

  .hero__image-small {
    width: 15%;
  }

  .hero__button {
    margin: 54px 0 26px;
  }

  .mobile-button--light {
    font-size: 14px;
  }

  .section__title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5px;
  }

  .section__subtitle {
    font-size: 48px;
    line-height: 66px;
  }

  .section__text {
    font-size: 15px;
    line-height: 24px;
  }

  .contacts {
    margin: 50px 52px 50px;
  }

  .contacts__text a {
    font-size: 24px;
    line-height: 36px;
  }

  .about {
    padding: 62px 60px 42px;
    margin: 0px 52px;
  }

  .about__image {
    transform: translateX(16%);
    width: 100%;
  }

  .about__image-wrapper {
    background-position-x: 70%;
  }

  .our-rooms {
    padding: 42px 52px 66px;
  }

  .accordion-label__title {
    font-size: 22px;
    line-height: 38px;
  }

  .our-rooms__accordion-content {
    font-size: 17px;
    line-height: 23px;
    padding-left: 66px;
    margin-top: 18px;
  }

  .care-container {
    padding: 0px 52px;
  }

  .care__intro {
    padding: 84px 46px 68px;
  }

  .care__intro-button {
    font-size: 14px;
    line-height: 20px;
    padding: 18px 84px;
    width: 262px;
  }

  .care__block {
    padding: 52px 46px;
  }

  .care__block-title {
    font-size: 28px;
    line-height: 44px;
    margin: 24px 0 14px;
  }

  .care__block-text {
    font-size: 17px;
    line-height: 24px;
    padding-right: 100px;
  }

  .slider--clients {
    padding: 48px 84px 84px;
  }

  .slider--clients .swiper-slide {
    width: 75%;
  }

  .slider--clients .swiper-slide__icon {
    padding: 24px;
    width: 114px;
    height: 114px;
  }

  .slider--clients .swiper-slide__icon svg {
    width: 64px;
    height: auto;
  }

  .slider--clients .button-next {
    right: 18%;
  }

  .slider--clients .button-prev {
    left: 18%;
  }

  .pricing {
    padding: 0px 52px 82px;
  }

  .pricing__text {
    margin-bottom: 46px;
  }

  .pricing-card {
    padding: 44px 46px 60px;
    width: 100%;
    max-width: 510px;
  }

  .pricing-card--light .pricing-card__price {
    margin: 0px 0 38px;
  }

  .pricing-card__plan-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.26em;
  }

  .pricing-card__amount {
    font-size: 50px;
    font-weight: 700;
    line-height: 76px;
  }

  .pricing-card__period {
    font-size: 18px;
    font-weight: 700;
    line-height: 62px;
  }

  .pricing-card__feature {
    gap: 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .pricing-card__feature::before {
    width: 38px;
    height: 38px;
  }

  .pricing-card__plan-icon svg {
    width: 82px;
    height: auto;
  }

  .pricing__button {
    width: 100%;
    max-width: 296px;
    padding: 20px 0;
  }

  .pricing-card--light .pricing__button {
    font-size: 14px;
  }

  .reviews {
    padding: 0 52px;
  }

  .reviews__subtitle {
    margin: 34px 0 26px;
  }

  .slider-testimonials--mobile .swiper-slide__content {
    padding: 46px 52px 60px;
    gap: 25px;
  }

  .slider-testimonials--mobile .swiper-slide__text {
    font-size: 16px;
    line-height: 24px;
  }

  .slider-testimonials--mobile .swiper-slide__author {
    gap: 20px;
  }

  .slider-testimonials--mobile .swiper-slide__author-image {
    width: 95px;
    height: 95px;
  }

  .swiper-slide__author-name {
    font-size: 20px;
    line-height: 30px;
  }

  .booking {
    padding: 62px 52px 98px;
  }

  .booking__container {
    padding: 68px 36px 84px;
    gap: 56px;
  }

  .booking__title {
    max-width: 100%;
  }

  .booking__button {
    margin-top: 12px;
  }

  .booking-modal__close {
    top: 14px;
    right: 18px;
  }

  .booking-modal__close-icon {
    width: 32px;
    height: 32px;
  }

  .booking-modal__content {
    padding: 50px 34px;
  }

  .booking-modal__header {
    margin-bottom: 22px;
  }

  .booking-modal__title {
    font-size: 30px;
    line-height: 38px;
  }

  .booking-modal__subtitle {
    font-size: 18px;
  }

  .footer__container {
    padding: 94px 52px 72px;
  }

  .footer__intro {
    gap: 72px;
    padding: 0 14px;
  }

  .footer__intro-logo-text--top {
    color: var(--grey-text-color);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 5.4px;
  }

  .footer__intro-logo-text--bottom {
    font-size: 48px;
    line-height: 72px;
  }

  .footer__intro-logo-image {
    max-width: 105px;
  }

  .footer__contacts-block-icon {
    height: 62px;
    width: 62px;
  }

  .footer__contacts-block-icon-image {
    width: 29.5px;
  }

  .footer__contacts-block-text-top {
    font-size: 24px;
  }

  .footer__contacts-block-link-bottom {
    font-size: 17px;
    line-height: 24px;
  }

  .footer__contacts-block {
    gap: 30px;
    padding-left: 8px;
  }

  .footer__plans-title {
    font-size: 24px;
    line-height: 36px;
  }

  .footer__plans-link {
    font-size: 17px;
    line-height: 42px;
  }
  .footer__social {
    gap: 34px;
  }

  .footer__social-text {
    font-size: 24px;
    line-height: 38px;
  }

  .footer__social-icon {
    width: 55px;
    height: 55px;
  }

  .footer__copyright--mobile {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  /* Header */

  .header__hamburger,
  .header__mobile-menu,
  .slider-testimonials--mobile {
    display: none;
  }

  .header__navbar {
    display: block;
  }

  .header {
    padding: 32px 42px;
    gap: 38px;
  }

  .header__navbar {
    flex-grow: 1;
  }

  .header__logo {
    max-width: 190px;
  }

  .header__navbar-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }

  .header__navbar-item--link {
    color: var(--main-text-color);
    font-size: 12px;
    font-weight: 700;
    line-height: 21px;
  }

  .header__theme-switcher {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    height: 33px;
    background-color: rgb(255, 255, 255);
    border-radius: 220px;
  }

  .header__theme-switcher::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    display: block;
    width: 44px;
    height: 33px;
    border-radius: 40px;
    background-color: var(--main-color);
    transition: left 0.3s ease-in;
  }

  .header__theme-switcher--active::before {
    left: 37px;
  }

  .theme-switcher__icon {
    padding: 11px;
  }

  /* Hero */

  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 32px 42px 110px;
    gap: 60px;
  }

  .hero__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding-top: 16px;
  }

  .hero__subtitle {
    margin: 16px 0 20px;
  }

  .section__title {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-align: left;
  }

  .hero__title {
    text-wrap: nowrap;
  }

  .section__subtitle {
    font-size: 30px;
    line-height: 36px;
    text-align: left;
  }

  .section__text {
    font-size: 12px;
    line-height: 20px;
    text-align: left;
  }

  .hero__text {
    width: 86%;
  }

  .button {
    font-size: 12px;
    line-height: 18px;
    padding: 14px 41px;
    margin: 0;
  }

  .hero__button {
    max-width: 203px;
    margin-top: 48px;
  }

  .hero__image {
    padding: 0;
  }

  .hero__main-image-wrapper {
    padding: 0;
  }

  .hero__image-main {
    display: none;
  }

  .hero__image-main--pc {
    display: block;
    height: auto;
  }

  .hero__image-wrapper {
    width: auto;
    margin: -36px;
    padding: 42px 26px 42px 38px;
    overflow: visible;
  }

  .hero__image-small {
    width: 23%;
  }

  .hero__image-small--1 {
    top: 19%;
    left: -12%;
  }

  .hero__image-small--2 {
    top: 55%;
    left: -12%;
  }

  .hero__image-small--3 {
    top: 84%;
    left: 5%;
  }

  .hero__image-small--4 {
    top: 88%;
    left: 46%;
  }

  /* Contacts */

  .contacts {
    flex-direction: row;
    margin: 50px 42px -46px;
    justify-content: space-between;
    gap: 0;
    position: relative;
    top: -94px;
  }

  .contacts__address {
    padding: 22px 10px 22px 28px;
    width: 100%;
    gap: 26px;
  }

  .contacts__communication {
    border-radius: 100px 40px 40px 100px;
    padding: 22px 28px 22px 38px;
    width: fit-content;
    gap: 20px;
    text-wrap: nowrap;
  }

  .contacts__text a {
    font-size: 18px;
    line-height: 30px;
  }

  .contacts__icon {
    height: 49px;
  }

  .location__image {
    max-width: 58%;
  }

  .contacts__icon-image {
    max-width: 58%;
  }

  /* About */

  .about {
    margin: 0 42px;
    padding: 18px 34px;
    flex-direction: row;
    justify-content: space-between;
    gap: 42px;
  }

  .about__content-wrapper {
    width: 100%;
    align-items: start;
  }

  .about__subtitle {
    margin: 16px 0 20px;
  }

  .about__button {
    max-width: 165px;
    margin-top: 34px;
  }

  .about__image-wrapper {
    max-width: 100%;
    background-position-x: 52%;
  }

  .about__image {
    transform: translateX(-14%);
  }

  .about__image--main {
    max-width: 150%;
  }

  /* Our Rooms */

  .our-rooms {
    padding: 46px 42px;
    align-items: center;
  }

  .our-rooms__image {
    display: none;
  }

  .our-rooms__image-gallery {
    order: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .image-gallery__images {
    display: flex;
    flex-direction: row;
    height: 410px;
    width: 100%;
    cursor: pointer;
  }

  .image-gallery__image {
    margin: 8px;
    flex-grow: 1;
    transition: flex-grow 1s cubic-bezier(0.17, 0.84, 0.44, 1), opacity 1s ease;
    background-position: center;
    background-size: cover;
    border-radius: 40px;
    opacity: 0.3;
  }

  .image-gallery__image--active {
    flex-grow: var(--total-images);
    opacity: 1;
  }

  .our-rooms__title {
    order: 1;
  }

  .our-rooms__subtitle {
    order: 2;
    padding: 0;
    margin: 18px 0 26px;
  }

  .our-rooms__accordion {
    order: 4;
    margin-top: 26px;
  }

  .accordion-label__title {
    font-size: 18px;
    line-height: 28px;
  }

  .our-rooms__accordion-content {
    padding: 0;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    width: 70%;
  }

  /* Care */

  .care-container {
    padding: 0 42px;
  }

  .care {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    border-radius: 40px;
    gap: 20px;
    padding: 40px;
  }

  .care__intro {
    width: calc(50% - 10px);
    padding: 64px 32px 48px 32px;
  }

  .care__intro-title {
    padding: 0;
  }

  .care__intro-text {
    padding: 0;
    width: 75%;
  }

  .care__intro-button {
    width: 230px;
    margin-top: 48px;
  }

  .care__block {
    width: calc(50% - 10px);
    padding: 0;
    align-items: center;
  }

  .care__block:last-child {
    padding: 0;
    border-radius: 0;
  }

  .care__block:nth-child(2),
  .care__block:nth-child(3) {
    border-bottom: none;
  }

  .care__block-title {
    font-size: 22px;
    line-height: 36px;
    margin: 0;
    margin: 14px 0 10px;
  }

  .care__block-text {
    font-size: 14px;
    line-height: 22px;
    padding: 0;
  }

  .care__block-image {
    width: 100%;
  }

  .care__block-image .block-image {
    width: 100%;
  }

  /* Slider Clients */

  .slider--clients {
    padding: 48px 42px;
  }

  .slider--clients .button-next {
    right: 2%;
  }

  .slider--clients .button-prev {
    left: 2%;
  }

  /* Pricing */

  .pricing {
    padding: 0px 42px 48px;
  }

  .pricing__subtitle {
    margin: 18px 0 14px;
  }

  .pricing__text {
    text-align: center;
    width: 70%;
  }

  .pricing__cards {
    justify-content: center;
    gap: 40px;
    max-width: 800px;
  }

  .pricing-card {
    padding: 46px 62px;
    max-width: 100%;
  }

  .pricing-card__plan-title {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-card__plan-icon svg {
    width: 52px;
  }

  .pricing-card--light .pricing-card__plan-icon svg {
    width: 60px;
  }

  .pricing-card__price {
    margin: 8px 0 34px;
  }

  .pricing-card__amount {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
  }

  .pricing-card__period {
    font-size: 12px;
    font-weight: 700;
    line-height: 48px;
  }

  .pricing-card__features {
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }

  .pricing-card__feature {
    gap: 12px;
    font-size: 12px;
    line-height: 18px;
    text-wrap: nowrap;
  }

  .pricing-card__feature::before {
    width: 30px;
    height: 30px;
  }

  .pricing__button {
    margin-top: 42px;
    max-width: 236px;
  }

  /* Reviews */

  .reviews {
    padding: 0 42px;
  }

  .reviews__subtitle {
    margin: 18px 0 14px;
  }

  .reviews__text {
    text-align: center;
    width: 70%;
  }

  .slider-testimonials--pc {
    display: block;
    margin-top: 46px;
    position: relative;
    overflow: visible;
  }

  .slider-testimonials--pc .swiper {
    width: 100%;
    height: auto;
  }

  .slider-testimonials--pc .swiper-slide {
    width: 70%;
    max-width: 560px;
  }

  .slider-testimonials--pc .swiper-slide__content {
    width: 100%;
    height: 322px;
    padding: 30px 34px 37px;
    background-color: var(--secondary-background-color);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }

  .slider-testimonials--pc .swiper-slide__icon {
    display: flex;
    gap: 10px;
  }

  .swiper-slide__icon svg {
    width: 24px;
    height: 53px;
  }

  .slider-testimonials--pc .swiper-slide__text {
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .slider-testimonials--pc .swiper-slide__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .slider-testimonials--pc .swiper-slide__author-image {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    border: 3px solid var(--main-color);
  }

  .swiper-slide__author-name {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonials-button-next--pc {
    right: -4%;
    top: 48%;
  }

  .testimonials-button-prev--pc {
    left: -4%;
    top: 48%;
  }

  /* Booking */

  .booking {
    padding: 48px 42px 68px;
  }

  .booking__container {
    padding: 78px 84px 69px;
  }

  .booking__header {
    gap: 0;
  }

  .booking__subtitle {
    margin: 18px 0 14px;
  }

  .booking__text {
    text-align: center;
    width: 75%;
  }

  /* Booking Modal */

  .booking-modal__content {
    padding: 48px 46px;
  }

  .booking-modal__close {
    top: 18px;
    right: 20px;
  }

  .booking-modal__close-icon {
    width: 42px;
    height: 42px;
  }

  .booking-modal__header {
    margin-bottom: 28px;
  }

  .booking-modal__title {
    font-size: 32px;
    line-height: 42px;
  }

  .booking-modal__subtitle {
    font-size: 20px;
  }

  .booking-modal__form {
    gap: 22px;
  }

  .booking-modal__input {
    padding: 32px 14px 10px 32px;
    font-size: 17px;
    line-height: 25px;
  }

  .booking-modal__label {
    top: 18px;
    left: 33px;
    font-size: 9px;
    line-height: 18px;
  }

  .booking-modal__date-icon-wrapper {
    width: 46px;
    height: 46px;
    padding: 13px;
  }

  .booking-modal__arrows {
    width: 44px;
    height: 44px;
  }

  .booking-modal__arrow {
    width: 21px;
    height: 21px;
    right: 10px;
  }

  .booking-modal__arrow-icon {
    width: 21px;
    height: 21px;
  }

  .booking-modal__arrow--up {
    top: 2px;
  }

  .booking-modal__arrow--down {
    bottom: 2px;
  }

  .booking-modal__button {
    margin-top: 16px;
    font-size: 14px;
    padding: 20px 41px;
  }

  /* Footer */

  .footer__container {
    padding: 68px 42px 46px;
  }

  .footer__intro {
    gap: 36px;
    padding: 0 80px;
  }

  .footer__intro::after {
    width: calc(100% - 21px);
    bottom: -48px;
  }

  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin: 96px 0 48px;
    padding: 0 12px;
  }

  .footer__contacts {
    margin: 0;
    padding: 0;
    gap: 28px;
  }

  .footer__contacts-block {
    gap: 22px;
  }

  .footer__contacts-block-icon {
    height: 55px;
    width: 55px;
  }

  .footer__contacts-block-text {
    gap: 8px;
    width: 60%;
  }

  .footer__contacts-block-text-top {
    font-size: 18px;
    line-height: 26px;
  }

  .footer__contacts-block-link-bottom {
    font-size: 14px;
    line-height: 21px;
  }

  .footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .footer__plans {
    gap: 8px;
  }

  .footer__plans-title {
    font-size: 18px;
    line-height: 26px;
  }

  .footer__plans-link {
    font-size: 16px;
    line-height: 26px;
  }
  .footer__social {
    margin: 0;
    gap: 18px;
  }

  .footer__social-text {
    font-size: 24px;
    line-height: 34px;
  }

  .footer__social-icons {
    justify-content: space-between;
    gap: 8px;
  }

  .footer__copyright--mobile {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .button {
    text-shadow: none;
    transition: box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1),
      text-shadow 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .button:hover {
    box-shadow: inset 0 0 30px var(--secondary-color),
      0 0 30px var(--secondary-color);
    text-shadow: 2px 2px 4px #427388;
  }

  /* Header */

  .header {
    padding: 32px 52px;
  }

  .header__navbar-item--link {
    font-size: 14px;
  }

  .header__theme-switcher {
    width: 88px;
    height: 36px;
  }

  .header__theme-switcher::before {
    width: 49px;
    height: 36px;
  }

  .header__theme-switcher--active::before {
    left: 41px;
  }

  /* Hero */

  .hero {
    padding: 38px 52px 120px;
    gap: 90px;
  }

  .hero__title {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 3.6px;
  }

  .hero__subtitle {
    font-size: 38px;
    line-height: 46px;
  }

  .section__subtitle {
    font-size: 32px;
    line-height: 49px;
  }

  .section__text {
    font-size: 14px;
    line-height: 21px;
  }

  .hero__image-small {
    border: 4px solid var(--main-color);
  }

  /* Contacts */

  .contacts {
    margin: 62px 52px -56px;
    top: -112px;
  }

  .contacts__icon {
    height: 54px;
  }

  .contacts__address {
    padding: 28px 23px;
    gap: 12px;
  }

  .contacts__communication {
    flex-direction: row;
    padding: 28px 23px;
    gap: 32px;
  }

  .contacts__phone,
  .contacts__email {
    gap: 12px;
  }

  /* About */

  .about {
    margin: 0 52px;
    padding: 22px 41px;
    gap: 50px;
  }

  .about__image-wrapper {
    background-image: url(../images/about-bg-pc.png);
    background-position-x: 70%;
  }

  /* Our Rooms */

  .our-rooms {
    padding: 56px 52px;
  }

  .our-rooms__subtitle {
    margin: 22px 0 31px;
  }

  .image-gallery__images {
    height: 480px;
  }

  .accordion-label__title {
    font-size: 20px;
    line-height: 30px;
  }

  /* Care */

  .care-container {
    padding: 0 52px;
  }

  .care {
    border-radius: 40px;
    gap: 32px;
    padding: 38px;
  }

  .care > *:first-child {
    flex: 1 1 100%;
  }

  .care > *:not(:first-child) {
    flex: 1 1 calc((100% - 64px) / 3);
  }

  .care__intro {
    padding: 22px;
    align-items: center;
  }

  .care__intro-text {
    padding: 0;
    width: 85%;
    text-align: center;
    margin-top: 8px;
  }

  .care__intro-subtitle {
    margin: 0;
    line-height: 60px;
  }

  .care__intro-button {
    margin-top: 20px;
  }

  .care__block {
    align-items: start;
  }

  .care__block-title {
    margin: 0;
    line-height: 48px;
  }

  /* Slider Clients */

  .slider--clients {
    padding: 56px 52px;
  }

  /* Pricing */

  .pricing {
    padding: 0px 52px 56px;
  }

  .pricing__text {
    margin-bottom: 58px;
  }

  .pricing__cards {
    max-width: 100%;
    flex-direction: row;
    gap: 0;
  }

  .pricing-card {
    padding: 32px 34px 48px;
  }

  .pricing-card:first-child {
    border-radius: 40px 0 0 40px;
  }

  .pricing-card:last-child {
    border-radius: 0 40px 40px 0;
  }

  .pricing-card--light {
    padding: 61px 34px;
  }

  .pricing-card--light .pricing__button {
    margin-top: 64px;
  }

  .pricing-card__features {
    gap: 21px;
    flex-direction: column;
  }

  /* Reviews */

  .reviews {
    padding: 0 52px;
  }

  .slider-testimonials--pc .swiper-slide__content {
    height: 514px;
    padding: 36px 41px 45px;
    gap: 26px;
  }

  .swiper-slide__icon svg {
    width: 27px;
    height: 61px;
  }

  .slider-testimonials--pc .swiper-slide__text {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .slider-testimonials--pc .swiper-slide__author-image {
    width: 68px;
    height: 68px;
    border: 4px solid var(--main-color);
  }

  .testimonials-button-next--pc {
    right: -2.5%;
  }

  .testimonials-button-prev--pc {
    left: -2.5%;
  }

  /* Booking */

  .booking {
    padding: 56px 52px 72px;
  }

  .booking__container {
    padding: 78px 89px 69px;
  }

  .booking__form {
    row-gap: 38px;
    column-gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .booking__field {
    flex: 1 1 calc(50% - 19px);
  }

  .booking__field:nth-child(n + 5) {
    flex: 1 1 100%;
  }

  .booking__arrow {
    transition: color 0.2s ease, transform 0.15s ease;
  }

  .booking__arrow:hover {
    color: rgb(128, 128, 128);
  }

  .booking__arrow:active {
    transform: scale(0.92);
    color: var(--main-color);
  }

  .booking__button {
    max-width: 236px;
    padding: 19px 84px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 18px;
  }

  /* Booking Modal */

  .booking-modal__content {
    padding: 56px 62px 46px;
  }

  .booking-modal__close {
    top: 22px;
    right: 22px;
  }

  .booking-modal__close-icon {
    width: 48px;
    height: 48px;
  }

  .booking-modal__close {
    transition: color 0.6s ease;
  }

  .booking-modal__close:hover {
    color: white;
  }

  .booking-modal__title {
    font-size: 34px;
  }

  .booking-modal__subtitle {
    font-size: 22px;
  }

  .booking-modal__form {
    row-gap: 24px;
    column-gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .booking-modal__field {
    flex: 1 1 calc(50% - 12px);
  }

  .booking-modal__field:nth-child(n + 5) {
    flex: 1 1 100%;
  }

  .booking-modal__date-wrapper {
    cursor: pointer;
  }

  .booking-modal__arrow {
    transition: color 0.2s ease, transform 0.15s ease;
  }

  .booking-modal__arrow:hover {
    color: rgb(128, 128, 128);
  }

  .booking-modal__arrow:active {
    transform: scale(0.92);
    color: var(--main-color);
  }

  /* Footer */

  .footer__container {
    padding: 57px 68px 53px;
  }

  .footer__intro {
    padding: 0;
    flex-direction: row;
    gap: 110px;
    justify-content: space-between;
  }

  .footer__intro-logo {
    width: 38%;
    justify-content: start;
  }

  .footer__intro-logo-image {
    max-width: 87px;
  }

  .footer__intro-logo-text--top {
    font-size: 11px;
    line-height: 14px;
  }

  .footer__intro-logo-text--bottom {
    font-size: 33px;
    line-height: 46px;
  }

  .footer__intro-form {
    width: 62%;
    max-width: 720px;
  }

  .footer__intro-email__button {
    text-shadow: none;
    transition: box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1),
      text-shadow 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .footer__intro-email__button:hover {
    box-shadow: inset 0 0 30px var(--secondary-color),
      0 0 30px var(--secondary-color);
    text-shadow: 2px 2px 4px #427388;
  }

  .footer__intro::after {
    bottom: -54px;
    width: 100%;
  }

  .footer__content {
    margin: 89px 0 0px;
    padding: 0;
    gap: 110px;
  }

  .footer__contacts {
    width: 38%;
  }

  .footer__contacts-block {
    padding-left: 4px;
    width: 100%;
    max-width: 216px;
  }

  .footer__contacts-block-text {
    gap: 12px;
    width: 100%;
  }

  .footer__contacts-block-link-bottom {
    color: var(--main-text-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .footer__contacts-block-link-bottom:hover {
    color: var(--main-color);
    text-shadow: 0 0 5px var(--main-color);
  }

  .footer__contacts-block-icon {
    height: 50px;
    width: 50px;
  }

  .footer__contacts-block-icon-image {
    width: 22.8px;
  }

  .footer__contacts-block-text-top {
    font-size: 20px;
    line-height: 30px;
  }

  .footer__right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    width: 62%;
    max-width: 720px;
  }

  .footer__plans {
    gap: 20px;
    width: 40%;
  }

  .footer__plans-title {
    font-size: 20px;
    line-height: 30px;
  }

  .footer__plans-link {
    font-size: 14px;
    line-height: 46px;
    position: relative;
    overflow: visible;
    background: linear-gradient(
      to right,
      var(--main-color) 100%,
      var(--main-text-color) 0%
    );
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--main-text-color);
    transition: background-size 0.5s ease, -webkit-text-fill-color 0.5s ease,
      text-shadow 0.3s ease;
  }

  .footer__plans-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--main-color);
    transition: width 0.5s ease;
  }

  .footer__plans-link:hover {
    background-size: 100% 100%;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 3px var(--main-color);
  }

  .footer__plans-link:hover::before {
    width: 100%;
  }

  .footer__plans-link svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translateX(-16px) translateY(-50%);
    opacity: 0;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
  }

  .footer__plans-link:hover svg {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }

  .footer__social {
    gap: 27px;
    width: 60%;
  }

  .footer__social-text {
    font-size: 20px;
    line-height: 30px;
  }

  .footer__social-icons {
    gap: 0;
    max-width: 320px;
  }

  .footer__social-icon {
    width: 44px;
    height: 44px;
    transform-origin: center;
    transform: scale(1);
    transition: color 0.3s ease, box-shadow 0.3s ease;
  }

  .footer__social-icon.facebook:hover,
  .footer__social-icon.facebook:focus {
    color: #3b5998;
    box-shadow: 0 0 22px 0 #3b5998;
  }

  .footer__social-icon.twitter:hover,
  .footer__social-icon.twitter:focus {
    color: #00aced;
    box-shadow: 0 0 22px 0 #00aced;
  }

  .footer__social-icon.linkedin:hover,
  .footer__social-icon.linkedin:focus {
    color: #0077b5;
    box-shadow: 0 0 22px 0 #0077b5;
  }

  .footer__social-icon.youtube:hover,
  .footer__social-icon.youtube:focus {
    color: #cd201f;
    box-shadow: 0 0 22px 0 #cd201f;
  }

  .footer__social-icon.instagram:hover,
  .footer__social-icon.instagram:focus {
    color: #e4405f;
    box-shadow: 0 0 22px 0 #e4405f;
  }

  .footer__copyright--mobile {
    display: none;
  }

  .footer__copyright--pc {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0.18em;
    margin-top: auto;
    position: relative;
  }

  .footer__copyright--pc::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    top: -26px;
    height: 1px;
    background: rgba(128, 128, 128, 0.13);
  }
}

@media (min-width: 1280px) {
  /* Header */

  .header {
    padding: 40px 58px;
    gap: 108px;
  }

  .header__navbar-list {
    justify-content: end;
    width: 100%;
    gap: 58px;
  }

  .header__navbar-item--link {
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .header__navbar-item--link::after {
    content: '';
    position: absolute;
    width: 0;
    background-color: var(--main-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.25em;
    height: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .header__navbar-item--link:hover::after {
    width: 100%;
    animation: pulse 0.7s;
    box-shadow: 0 0 0 1em transparent;
  }

  .header__buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header__theme-switcher {
    width: 109px;
    height: 45px;
    padding: 0 5px;
  }

  .header__theme-switcher::before {
    width: 64px;
    height: 45px;
  }

  .header__theme-switcher--active::before {
    left: 48px;
  }

  .header__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 165px;
    padding: 14px 48px;
    border-radius: 220px;
    color: var(--button-text-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    background-color: var(--main-color);
  }

  /* Hero */

  .hero {
    padding: 32px 58px 128px;
  }

  .section__title {
    letter-spacing: 4px;
  }

  .hero__subtitle {
    font-size: 41px;
    line-height: 62px;
  }

  .hero__image {
    margin-top: -34px;
  }

  .hero__image-wrapper {
    width: auto;
    margin: -18px;
    padding: 54px 43px 68px;
    overflow: visible;
  }

  .hero__image-small {
    border: 6px solid var(--main-color);
  }

  /* Contacts */

  .contacts {
    margin: 42px 58px -66px;
    top: -124px;
  }

  .contacts__icon {
    height: 68px;
  }

  .contacts__text a {
    font-size: 20px;
  }

  .contacts__link {
    display: inline-block;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
  }

  .contacts__link:hover {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    transform: scale(0.97);
  }

  .contacts__address {
    width: 40%;
    padding: 45px 23px;
  }

  .contacts__communication {
    width: 60%;
    padding: 45px 34px;
    gap: 76px;
  }

  .contacts__phone,
  .contacts__email {
    gap: 24px;
  }

  /* About */

  .about {
    margin: 0 58px;
    padding: 10px 52px;
  }

  .about__subtitle {
    margin: 15px 0 28px;
  }

  .about__button {
    margin-top: 50px;
  }

  .about__image {
    transform: translateX(0%);
  }

  /* Our Rooms */

  .our-rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    padding: 70px 58px 62px;
  }

  .our-rooms__image-gallery {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    width: 100%;
    height: 100%;
  }

  .image-gallery__images {
    flex-direction: column;
    height: 100%;
  }

  .our-rooms__title,
  .our-rooms__subtitle,
  .our-rooms__accordion {
    grid-column: 2 / 3;
    padding: 0 20px;
    box-sizing: border-box;
    justify-self: center;
    width: 100%;
  }

  .our-rooms__title {
    grid-row: 1;
    margin-top: 24px;
  }

  .our-rooms__subtitle {
    grid-row: 2;
    margin: 25px 0 37px;
  }

  .our-rooms__accordion {
    grid-row: 3;
    height: 500px;
    margin: 0;
  }

  .accordion__wrapper {
    align-items: start;
    padding-bottom: 26px;
  }

  .accordion__wrapper:last-child {
    border-bottom: none;
  }

  .our-rooms__accordion-label {
    gap: 28px;
  }

  .our-rooms__accordion-content {
    padding: 0;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    width: 100%;
    padding-left: 72px;
    margin-top: 12px;
  }

  /* Care */

  .care-container {
    padding: 0 58px;
  }

  .care {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 40px;
  }

  .care__intro {
    padding: 88px 37px 59px;
    align-items: start;
  }

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

  .care__intro-subtitle {
    position: relative;
    margin: 19px 0 16px;
    font-size: 36px;
    line-height: 54px;
  }

  .care__intro-subtitle-underline {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white-text-color);
    transform-origin: left center;
    bottom: -6px;
  }

  .care__intro-button {
    margin-top: 33px;
  }

  .care > *:not(:first-child) {
    flex: 1 1 100%;
    padding: 37px;
    border-radius: 40px;
  }

  .care__block {
    position: relative;
  }

  .care__block:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 15%;
    right: 0;
    width: 1px;
    background-color: rgba(128, 128, 128, 0.13);
  }

  .care__block:last-child {
    padding-right: 44px;
  }

  .care__block-title {
    line-height: 36px;
  }

  .care__block-text {
    line-height: 21px;
  }

  /* Slider Clients */

  .slider--clients {
    padding: 59px 58px 63px;
  }

  .slider--clients .swiper-wrapper {
    transition-timing-function: linear;
  }

  .clients-button-next,
  .clients-button-prev {
    display: none;
  }

  .slider--clients .swiper-slide__icon {
    padding: 16.5px 15.5px;
    width: 70px;
    height: 70px;
    bottom: 27px;
    left: 70%;
  }

  .slider--clients .swiper-slide__icon svg {
    stroke-width: 6px;
  }

  /* Pricing */

  .pricing {
    padding: 0px 58px 94px;
  }

  .pricing__subtitle {
    font-size: 36px;
    line-height: 54px;
    margin: 19px 0 16px;
  }

  .pricing__text {
    margin-bottom: 68px;
  }

  .pricing-card--light {
    padding: 61px 41px 59px;
  }

  .pricing-card--light .pricing-card__plan-icon svg {
    width: 66px;
  }

  .pricing-card--dark {
    padding: 44px 55px 42px 58px;
  }

  .pricing-card__feature::before {
    width: 37px;
    height: 37px;
  }

  .pricing-card__plan-title {
    font-size: 16px;
    line-height: 24px;
  }

  .pricing-card__plan-icon svg {
    width: 57px;
  }

  .pricing-card__price {
    margin: 13px 0 38px;
  }

  .pricing-card__amount {
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
  }

  .pricing-card__period {
    font-size: 14px;
    font-weight: 700;
    line-height: 46px;
  }

  .pricing-card__features {
    gap: 16px;
  }

  .pricing-card__feature {
    gap: 16px;
    font-size: 14px;
    line-height: 21px;
  }

  .pricing__button {
    margin-top: 45px;
  }

  .pricing-card--light .pricing__button {
    margin-top: 80px;
  }

  /* Reviews */

  .reviews {
    padding: 0 58px;
  }

  .reviews__subtitle {
    font-size: 36px;
    line-height: 54px;
    margin: 21px 0 16px;
  }

  .reviews__text {
    width: 65%;
  }

  .slider-testimonials--pc {
    margin-top: 75px;
  }

  .slider-testimonials--pc .swiper-slide__content {
    height: 504px;
    padding: 48px 65px 40px 42px;
    gap: 29px;
  }

  .slider-testimonials--pc .swiper-slide__icon {
    gap: 14px;
  }

  .swiper-slide__icon svg {
    width: 32px;
    height: 72px;
  }

  .slider-testimonials--pc .swiper-slide__author-image {
    width: 76px;
    height: 76px;
  }

  .slider-button {
    width: 51px;
    height: 51px;
  }

  .testimonials-button-next--pc {
    right: -2%;
    top: 50%;
  }

  .testimonials-button-prev--pc {
    left: -2%;
    top: 50%;
  }

  /* Booking  */

  .booking {
    padding: 70px 58px 110px;
  }

  .booking__container {
    padding: 87px 100px 77px;
    gap: 64px;
  }

  .booking__subtitle {
    font-size: 36px;
    line-height: 54px;
    margin: 21px 0 16px;
  }

  .booking__form {
    row-gap: 42px;
    column-gap: 18px;
  }

  .booking__input {
    width: 100%;
    padding: 36px 12px 17px 42px;
  }

  .booking__label {
    top: 20px;
    left: 42px;
  }

  .date-icon-wrapper {
    right: 21px;
    width: 54px;
    height: 54px;
  }

  .booking__arrows {
    width: 50px;
    height: 50px;
    right: 21px;
  }

  .booking__arrow {
    width: 24px;
    height: 24px;
    right: 12px;
  }

  .booking__arrow-icon {
    width: 24px;
    height: 24px;
  }

  /* Footer */

  .footer__container {
    padding: 64px 93px 45px;
    border-radius: 160px 160px 0 0;
  }

  .footer__intro-logo-image {
    max-width: 108px;
  }

  .footer__intro-logo-text--top {
    font-size: 12px;
    line-height: 18px;
  }

  .footer__intro-logo-text--bottom {
    font-size: 40px;
    line-height: 60px;
  }

  .footer__intro-email__input {
    padding: 36px 12px 17px 42px;
  }

  .footer__intro-email__label {
    top: 20px;
    left: 42px;
  }

  .footer__intro-email__button {
    right: 21px;
  }

  .footer__intro::after {
    bottom: -67px;
  }

  .footer__content {
    margin: 112px 0 0px;
  }

  .footer__contacts {
    gap: 31px;
  }

  .footer__contacts-block {
    gap: 24px;
    max-width: 275px;
  }

  .footer__contacts-block-link-bottom {
    width: 88%;
  }

  .footer__social-icons {
    gap: 27px;
    justify-content: start;
  }

  .footer__copyright--pc {
    font-size: 14px;
    line-height: 46px;
    letter-spacing: 0.18em;
    margin-top: 93px;
  }
}

@media (min-width: 1440px) {
  /* Header */

  .header {
    padding: 40px 64px;
    gap: 122px;
  }

  .header__navbar-list {
    gap: 64px;
  }

  /* Hero */

  .hero {
    padding: 67px 64px 158px;
    gap: 134px;
  }

  .hero__title {
    letter-spacing: 5px;
  }

  .hero .hero__subtitle {
    font-size: 46px;
    line-height: 69px;
    margin: 28px 0;
  }

  .hero__text {
    width: 90%;
  }

  .hero__button {
    margin-top: 40px;
  }

  .hero__image-wrapper {
    padding: 54px 18px 68px 41px;
  }

  /* Contacts */

  .contacts {
    margin: 42px 64px -80px;
    top: -128px;
  }

  .contacts__address {
    width: 37.5%;
    padding: 45px 23px;
  }

  .contacts__communication {
    width: 62.5%;
    padding: 45px 34px;
    gap: 102px;
  }

  .contacts__icon {
    height: 78px;
  }

  /* About */

  .about {
    margin: 0px 64px;
    padding: 10px 58px 0;
    gap: 130px;
  }

  .section__title {
    letter-spacing: 4.3px;
  }

  .section__subtitle {
    font-size: 36px;
    line-height: 54px;
  }

  .about__subtitle {
    margin: 17px 0 31px;
  }

  .about__button {
    margin-top: 54px;
  }

  .about__image-wrapper {
    background-position-x: 78%;
  }

  .about__image {
    transform: translateX(3%);
  }

  /* Our Rooms */

  .our-rooms {
    padding: 73px 64px 62px;
    gap: 0 25px;
  }

  .our-rooms__image-gallery {
    width: 90%;
  }

  .our-rooms__title,
  .our-rooms__subtitle,
  .our-rooms__accordion {
    padding: 0;
  }

  .our-rooms__subtitle {
    margin: 28px 0 41px;
  }

  .accordion__wrapper {
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(128, 128, 128, 0.13);
  }

  .accordion {
    gap: 27px;
  }

  .our-rooms__accordion-content {
    padding: 0px 32px 0 72px;
  }

  /* Care */

  .care-container {
    padding: 0 64px;
  }

  .care > *:not(:first-child) {
    flex: 1 1 100%;
    padding: 52px 34px;
  }

  .care__block-title {
    font-size: 24px;
    margin: 10px 0 10px;
  }

  .care__intro-subtitle {
    margin: 19px 0 7px;
  }

  .care__intro-button {
    width: 236px;
  }

  /* Clients Slider */

  .slider--clients {
    padding: 66px 64px 45px;
  }

  /* Pricing */

  .pricing {
    padding: 0px 64px 112px;
  }

  .pricing__subtitle {
    font-size: 40px;
    line-height: 60px;
    margin: 21px 0 18px;
  }

  .pricing__text {
    width: 50%;
    margin-bottom: 75px;
  }

  .pricing-card__amount {
    line-height: 52px;
  }

  .pricing-card__period {
    line-height: 36px;
  }

  /* Reviews */

  .reviews {
    padding: 0 64px;
  }

  .reviews__subtitle {
    font-size: 40px;
    line-height: 60px;
    margin: 23px 0 18px;
  }

  .slider-testimonials--pc {
    margin-top: 83px;
  }

  .slider-testimonials--pc .swiper-slide__content {
    height: 453px;
    padding: 48px 46px 40px 42px;
  }

  /* Booking */

  .booking {
    padding: 86px 64px 122px;
  }

  .booking__container {
    padding: 97px 111px 86px;
    gap: 71px;
  }

  .booking__subtitle {
    font-size: 40px;
    line-height: 60px;
    margin: 23px 0 18px;
  }

  .booking__text {
    width: 80%;
  }

  /* Footer */
  .footer__container {
    padding: 71px 103px 50px;
  }

  .footer__content {
    margin: 118px 0 0px;
  }

  .footer__plans {
    width: 47%;
  }

  .footer__social {
    width: 53%;
  }

  .footer__copyright--pc {
    letter-spacing: 0.26em;
  }
}

@media (min-width: 1600px) {
  /* Header */

  .header {
    padding: 44px 72px;
    gap: 136px;
  }

  .header__logo {
    width: 210px;
    max-width: 100%;
    height: auto;
  }

  .header__navbar-list {
    gap: 72px;
  }

  .header__navbar-item--link {
    font-size: 16px;
    line-height: 23px;
  }

  .header__buttons-wrapper {
    gap: 16px;
  }

  .header__theme-switcher {
    width: 122px;
    height: 50px;
    padding: 0 8px;
  }

  .header__theme-switcher::before {
    width: 70px;
    height: 50px;
  }

  .header__theme-switcher--active::before {
    left: 54px;
  }

  .theme-switcher__icon {
    padding: 8px;
  }

  .button {
    font-size: 14px;
    line-height: 20px;
    padding: 16px 54px;
  }

  .header__button {
    max-width: 183px;
  }

  /* Hero */

  .hero {
    padding: 74px 72px 162px;
    gap: 150px;
  }

  .hero__content-wrapper {
    padding-top: 26px;
  }

  .hero__title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 4.8px;
  }

  .hero .hero__subtitle {
    font-size: 52px;
    line-height: 77px;
  }

  .section__text {
    font-size: 16px;
    line-height: 24px;
  }

  .hero__button {
    max-width: 226px;
  }

  .hero__image {
    margin-top: -38px;
    max-width: 632px;
  }

  .hero__image-wrapper {
    padding: 60px 20px 75px 46px;
    margin: 0;
  }

  .hero__image-small {
    width: 25%;
  }

  /* Contacts */

  .contacts {
    margin: 24px 72px -52px;
  }

  .contacts__address {
    padding: 50px 26px;
    width: 100%;
  }

  .contacts__communication {
    width: 100%;
    padding: 50px 38px;
    gap: 113px;
  }

  .contacts__address,
  .contacts__phone,
  .contacts__email {
    gap: 28px;
  }

  .contacts__icon {
    height: 87px;
  }

  .contacts__text a {
    font-size: 22px;
    line-height: 34px;
  }

  /* About */

  .about {
    margin: 0px 72px;
    padding: 12px 64px;
    gap: 144px;
  }

  .section__title {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 4.8px;
  }

  .section__subtitle {
    font-size: 40px;
    line-height: 60px;
  }

  .about__subtitle {
    margin: 19px 0 35px;
  }

  .about__button {
    margin-top: 60px;
    max-width: 183px;
  }

  .about__image-wrapper {
    max-width: 600px;
    background-position-x: 87%;
  }

  .about__image {
    transform: translateX(16%);
  }

  /* Our Rooms */

  .our-rooms {
    padding: 70px 72px;
    gap: 0 28px;
  }

  .our-rooms__accordion-label {
    gap: 32px;
  }

  .accordion-label__icon {
    width: 50px;
    height: 50px;
    padding: 20px 13px;
  }

  .accordion__wrapper.active .our-rooms__accordion-content {
    max-height: 334px;
  }

  .accordion-label__title {
    font-size: 22px;
    line-height: 34px;
  }

  .our-rooms__accordion-content {
    font-size: 16px;
    line-height: 24px;
    padding: 0px 36px 0 82px;
  }

  /* Care */

  .care-container {
    padding: 0 72px;
  }

  .care__intro-button {
    width: 262px;
    margin-top: 37px;
  }

  .care__intro-button::before {
    left: 19px;
    width: 26px;
    height: 26px;
  }

  .care__intro {
    padding: 98px 41px 65px;
    max-width: 368px;
    justify-content: space-between;
  }

  .care__block-title {
    font-size: 28px;
    margin: 14px 0 12px;
    line-height: 40px;
  }

  .care > *:not(:first-child) {
    flex: 1 1 100%;
    padding: 58px 38px;
  }

  .care__block:not(:last-child)::after {
    width: 2px;
    bottom: 9%;
  }

  .care__block-text {
    font-size: 16px;
    line-height: 24px;
  }

  /* Clients Slider */

  .slider--clients {
    padding: 70px 72px 62px;
  }

  /* Pricing */

  .pricing {
    padding: 0px 72px 118px;
  }

  .pricing__subtitle {
    font-size: 44px;
    line-height: 67px;
    margin: 24px 0 20px;
  }

  .pricing-card--dark {
    padding: 49px 61px 47px 64px;
  }

  .pricing-card--light {
    padding: 68px 46px 65px;
  }

  .pricing-card--light .pricing-card__plan-icon svg {
    width: 74px;
  }

  .pricing-card__plan-title {
    font-size: 18px;
    line-height: 27px;
  }

  .pricing-card__plan-icon svg {
    width: 63px;
  }

  .pricing-card__price {
    margin: 14px 0 42px;
    gap: 12px;
  }

  .pricing-card__period {
    font-size: 16px;
  }

  .pricing-card__features {
    gap: 18px;
  }

  .pricing-card__feature {
    gap: 18px;
    font-size: 16px;
    line-height: 23px;
  }

  .pricing-card__feature::before {
    width: 41px;
    height: 41px;
  }

  .pricing__button {
    margin-top: 50px;
    max-width: 262px;
  }

  .pricing-card--light .pricing__button {
    margin-top: 90px;
  }

  /* Reviews */

  .reviews {
    padding: 0px 72px;
  }

  .reviews__subtitle {
    font-size: 44px;
    line-height: 67px;
    margin: 24px 0 20px;
  }

  .slider-testimonials--pc .swiper-slide {
    max-width: 572px;
  }

  .slider-testimonials--pc .swiper-slide__content {
    height: 504px;
    padding: 53px 51px 44px 47px;
    gap: 32px;
  }

  .slider-testimonials--pc .swiper-slide__text {
    font-size: 16px;
    line-height: 24px;
  }

  .slider-testimonials--pc .swiper-slide__author-image {
    width: 84px;
    height: 84px;
  }

  .swiper-slide__author-name {
    font-size: 18px;
    line-height: 28px;
  }

  .slider-button {
    width: 58px;
    height: 58px;
  }

  /* Booking */

  .booking {
    padding: 95px 72px 135px;
  }

  .booking__container {
    padding: 102px 123px 95px;
    gap: 79px;
  }

  .booking__subtitle {
    font-size: 44px;
    line-height: 67px;
    margin: 24px 0 20px;
  }

  .booking__text {
    width: 65%;
  }

  .booking__form {
    row-gap: 46px;
    column-gap: 20px;
  }

  .booking__input {
    padding: 40px 13px 19px 47px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 60px;
  }

  .booking__label {
    font-size: 12px;
    line-height: 20px;
    top: 23px;
    left: 47px;
  }

  .date-icon-wrapper {
    right: 25px;
    width: 65px;
    height: 65px;
  }

  .booking__arrows {
    width: 58px;
    height: 58px;
    right: 25px;
  }

  .booking__arrow {
    width: 28px;
    height: 28px;
    right: 14px;
  }

  .booking__arrow-icon {
    width: 28px;
    height: 28px;
  }

  .booking__arrow--up {
    top: 4px;
  }

  .booking__arrow--down {
    bottom: 4px;
  }

  .booking__button {
    max-width: 262px;
    margin-top: 24px;
  }

  /* Booking Modal */

  .booking-modal__content {
    padding: 58px 82px 48px;
  }

  /* Footer */

  .footer__container {
    padding: 81px 114px 56px;
  }

  .footer__intro-logo-image {
    max-width: 120px;
  }

  .footer__intro-logo-text--top {
    font-size: 14px;
    line-height: 21px;
  }

  .footer__intro-logo-text--bottom {
    font-size: 44px;
    line-height: 67px;
  }

  .footer__intro-email__input {
    padding: 40px 13px 19px 47px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 60px;
  }

  .footer__intro-email__label {
    font-size: 12px;
    line-height: 20px;
    top: 23px;
    left: 47px;
  }

  .footer__intro-email__button {
    width: 60px;
    height: 60px;
    right: 23px;
  }

  .footer__intro::after {
    height: 2px;
    bottom: -75px;
  }

  .footer__content {
    margin: 130px 0 0px;
  }

  .footer__contacts {
    justify-content: space-between;
  }

  .footer__contacts-block {
    gap: 28px;
    max-width: 100%;
    min-width: 541px;
  }

  .footer__contacts-block-icon {
    height: 56px;
    width: 56px;
  }

  .footer__contacts-block-icon-image {
    width: 26px;
  }

  .footer__contacts-block-text {
    gap: 14px;
  }

  .footer__contacts-block-text-top {
    font-size: 22px;
    line-height: 33px;
  }

  .footer__contacts-block-link-bottom {
    font-size: 16px;
    line-height: 26px;
  }

  .footer__plans-title {
    font-size: 22px;
    line-height: 33px;
  }

  .footer__plans-link {
    font-size: 16px;
  }

  .footer__social {
    gap: 30px;
  }

  .footer__social-text {
    font-size: 22px;
    line-height: 33px;
  }

  .footer__social-icons {
    gap: 30px;
    max-width: 100%;
  }

  .footer__social-icon {
    width: 52px;
    height: 52px;
  }

  .footer__copyright--pc::before {
    height: 2px;
  }

  .footer__copyright--pc {
    font-size: 16px;
    line-height: 51px;
    letter-spacing: 0.29em;
    margin-top: 102px;
  }
}

@media (min-width: 1920px) {
  /* Header */

  .header {
    padding: 53px 86px;
    gap: 163px;
  }

  .header__logo {
    width: 252px;
  }

  .header__navbar-list {
    gap: 86px;
  }

  .header__navbar-item--link {
    font-size: 19px;
    line-height: 28px;
  }

  .header__buttons-wrapper {
    gap: 20px;
  }

  .header__theme-switcher {
    width: 146px;
    height: 60px;
    padding: 0 14px;
  }

  .header__theme-switcher::before {
    width: 81px;
    height: 60px;
  }

  .header__theme-switcher--active::before {
    left: 68px;
  }

  .theme-switcher__icon {
    padding: 6px;
  }

  .button {
    font-size: 17px;
    line-height: 24px;
    padding: 19px 70px;
  }

  .header__button {
    max-width: 220px;
  }

  /* Hero */

  .hero {
    padding: 90px 86px 198px;
    gap: 180px;
  }

  .hero__content-wrapper {
    padding-top: 20px;
  }

  .section__title {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 5.8px;
  }

  .hero .hero__subtitle {
    font-size: 62px;
    line-height: 92px;
    margin: 34px 0;
  }

  .section__text {
    font-size: 19px;
    line-height: 29px;
  }

  .hero__text {
    width: 75%;
  }

  .hero__button {
    max-width: 272px;
  }

  .hero__button {
    margin-top: 56px;
  }

  .hero__image {
    max-width: 670px;
  }

  /* Contacts */

  .contacts {
    margin: 37px 86px -62px;
    top: -154px;
  }

  .contacts__address,
  .contacts__phone,
  .contacts__email {
    gap: 34px;
  }

  .contacts__address {
    padding: 60px 32px;
  }

  .contacts__icon {
    height: 104px;
  }

  .location__image,
  .contacts__icon-image {
    max-width: 100%;
    width: 48%;
  }

  .contacts__address .contacts__text {
    width: 80%;
  }

  .contacts__text a {
    font-size: 26px;
    line-height: 41px;
  }

  /* About */

  .about {
    margin: 0px 86px;
    padding: 18px 78px;
    gap: 176px;
  }

  .section__subtitle {
    font-size: 48px;
    line-height: 72px;
  }

  .about__button {
    max-width: 220px;
  }

  /* Our Rooms */

  .our-rooms {
    padding: 84px 86px;
    gap: 0 34px;
  }

  .our-rooms__title {
    grid-row: 1;
    margin-top: 42px;
  }

  .our-rooms__accordion-label {
    gap: 38px;
  }

  .accordion {
    gap: 32px;
  }

  .accordion__wrapper {
    padding-bottom: 22px;
  }

  .accordion-label__icon {
    width: 60px;
    height: 60px;
    padding: 24px 16px;
  }

  .accordion-label__title {
    font-size: 26px;
    line-height: 41px;
  }

  .our-rooms__accordion {
    height: 600px;
  }

  .our-rooms__accordion-content {
    font-size: 19px;
    line-height: 29px;
    padding: 0px 43px 0 100px;
  }

  /* Care */

  .care-container {
    padding: 0 86px;
  }

  .care__intro {
    padding: 98px 52px 65px;
    max-width: 442px;
  }

  .care__intro-button {
    width: 314px;
    margin-top: 44px;
  }

  .care__intro-button::before {
    left: 24px;
    width: 31px;
    height: 31px;
  }

  .care > *:not(:first-child) {
    flex: 1 1 100%;
    padding: 70px 43px;
  }

  .care__block-title {
    font-size: 36px;
    line-height: 48px;
    margin: 18px 0 14px;
  }

  .care__block-text {
    font-size: 19px;
    line-height: 30px;
  }

  /* Slider Clients */

  .slider--clients {
    padding: 84px 86px 74px;
  }

  .slider--clients .swiper-slide__icon {
    padding: 19.8px 18.6px;
    width: 84px;
    height: 84px;
    bottom: 22px;
  }

  /* Pricing */

  .pricing {
    padding: 0px 110px 142px;
  }

  .pricing__subtitle {
    font-size: 53px;
    line-height: 80px;
    margin: 28px 0 24px;
  }

  .pricing__text {
    margin-bottom: 98px;
  }

  .pricing-card--dark {
    padding: 60px 74px 56px 78px;
  }

  .pricing-card__plan-title {
    font-size: 22px;
    line-height: 32px;
  }

  .pricing-card__plan-icon svg {
    width: 76px;
  }

  .pricing-card__price {
    margin: 17px 0 50px;
    gap: 14px;
  }

  .pricing-card__amount {
    line-height: 62px;
  }

  .pricing-card__period {
    font-size: 18px;
    line-height: 48px;
  }

  .pricing-card__features {
    gap: 22px;
  }

  .pricing-card__feature {
    gap: 22px;
    font-size: 19px;
    line-height: 28px;
  }

  .pricing-card__feature::before {
    width: 49px;
    height: 49px;
  }

  .pricing__button {
    margin-top: 60px;
    max-width: 314px;
  }

  .pricing-card--light {
    padding: 82px 56px 78px;
  }

  .pricing-card--light .pricing-card__plan-icon svg {
    width: 89px;
  }

  .pricing-card--light .pricing__button {
    margin-top: 108px;
    font-size: 17px;
    line-height: 24px;
  }

  /* Reviews */

  .reviews {
    padding: 0px 86px;
  }

  .reviews__subtitle {
    font-size: 44px;
    line-height: 67px;
    margin: 28px 0 24px;
  }

  .slider-testimonials--pc .swiper-slide {
    max-width: 100%;
  }

  .slider-testimonials--pc .swiper-slide__content {
    height: 624px;
    padding: 64px 62px 55px 56px;
    gap: 38px;
  }

  .slider-testimonials--pc .swiper-slide__icon {
    gap: 16px;
  }

  .swiper-slide__icon svg {
    width: 38px;
    height: 86px;
  }

  .slider-testimonials--pc .swiper-slide__text {
    font-size: 19px;
    line-height: 30px;
  }

  .slider-testimonials--pc .swiper-slide__author {
    gap: 22px;
  }

  .slider-testimonials--pc .swiper-slide__author-image {
    width: 102px;
    height: 102px;
    border: 6px solid var(--main-color);
  }

  .swiper-slide__author-name {
    font-size: 22px;
    line-height: 34px;
  }

  .slider-button {
    width: 70px;
    height: 70px;
  }

  .slider-button svg {
    width: 36px;
    height: 24px;
  }

  /* Booking  */

  .booking {
    padding: 114px 86px 162px;
  }

  .booking__container {
    padding: 122px 148px 114px;
    gap: 94px;
  }

  .booking__subtitle {
    font-size: 53px;
    line-height: 80px;
    margin: 28px 0 24px;
  }

  .booking__subtitle {
    font-size: 53px;
    line-height: 80px;
    margin: 28px 0 24px;
  }

  .booking__input {
    padding: 48px 16px 24px 56px;
    font-size: 22px;
    line-height: 31px;
  }

  .booking__label {
    font-size: 14px;
    line-height: 24px;
    top: 28px;
    left: 56px;
  }

  .date-icon-wrapper {
    right: 19px;
    width: 74px;
    height: 74px;
  }

  .date-icon-wrapper svg {
    width: 32px;
    height: 40px;
  }

  .booking__arrows {
    width: 70px;
    height: 70px;
    right: 19px;
    top: 17px;
  }

  .booking__arrow {
    width: 34px;
    height: 34px;
    right: 16px;
  }

  .booking__arrow-icon {
    width: 34px;
    height: 34px;
  }

  .booking__arrow--up {
    top: 4px;
  }

  .booking__arrow--down {
    bottom: 4px;
  }

  .booking__button {
    max-width: 314px;
    margin-top: 30px;
  }

  /* Footer */

  .footer__container {
    padding: 98px 138px 66px;
  }

  .footer__intro::after {
    bottom: -90px;
  }

  .footer__intro-logo {
    gap: 28px;
  }

  .footer__intro-logo-image {
    max-width: 144px;
  }

  .footer__intro-logo-text--top {
    font-size: 17px;
    line-height: 25px;
  }

  .footer__intro-logo-text--bottom {
    font-size: 53px;
    line-height: 80px;
  }

  .footer__intro-form {
    width: 62%;
    max-width: 858px;
  }

  .footer__intro-email__input {
    padding: 48px 16px 24px 56px;
    font-size: 22px;
    line-height: 31px;
  }

  .footer__intro-email__label {
    font-size: 14px;
    line-height: 24px;
    top: 28px;
    left: 56px;
  }

  .footer__intro-email__button {
    right: 19px;
    width: 74px;
    height: 74px;
    background-size: 37px 29px;
  }

  .footer__content {
    margin: 156px 0 0px;
  }

  .footer__contacts-block {
    gap: 34px;
    padding-left: 12px;
    min-width: 684px;
  }

  .footer__contacts-block-icon {
    height: 68px;
    width: 68px;
  }

  .footer__contacts-block-icon-image {
    width: 32px;
  }

  .footer__contacts-block-text {
    gap: 18px;
  }

  .footer__contacts-block-text-top {
    font-size: 26px;
    line-height: 40px;
  }

  .footer__contacts-block-link-bottom {
    font-size: 20px;
    line-height: 32px;
  }

  .footer__right {
    max-width: 858px;
  }

  .footer__plans-title {
    font-size: 26px;
    line-height: 40px;
  }

  .footer__plans-link {
    font-size: 20px;
  }

  .footer__social {
    gap: 36px;
  }

  .footer__social-text {
    font-size: 26px;
    line-height: 40px;
  }

  .footer__social-icons {
    gap: 36px;
    max-width: 100%;
  }

  .footer__social-icon {
    width: 62px;
    height: 62px;
  }

  .footer__social-icon .fab {
    font-size: 37px;
  }

  .footer__copyright--pc {
    font-size: 19px;
    line-height: 61px;
    letter-spacing: 0.35em;
    margin-top: 122px;
  }

  .footer__copyright--pc::before {
    top: -40px;
  }
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(2%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(166, 166, 166, 0.4);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(166, 166, 166, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
