
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/**
  Нормализация блочной модели
 */
*,
::before,
::after {
    box-sizing: border-box;
}

/**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
    padding-left: 0;
}

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

/**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
:where(h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    dl):where([class]) {
    margin-block: 0;
}

:where(dd[class]) {
    margin-left: 0;
}

:where(fieldset[class]) {
    margin-left: 0;
    padding: 0;
    border: none;
}

/**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
:where(ul[class]) {
    list-style: none;
}

:where(address[class]) {
    font-style: normal;
}

/**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
p {
    --paragraphMarginBottom: 24px;
    margin-block: 0;
}

/**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
    margin-bottom: var(--paragraphMarginBottom);
}

/**
   Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
    font: inherit;
}

html {
    /**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
    height: 100%;
    /**
   Убираем скачок интерфейса по горизонтали
   при появлении / исчезновении скроллбара
  */
   
}

/**
   Плавный скролл
  */
html,
:has(:target) {
    scroll-behavior: smooth;
}

body {
    /**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
    min-height: 100%;
    /**
   Унифицированный интерлиньяж
  */

  /* Для браузеров на основе WebKit (Chrome, Safari) */
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    font-synthesis: none;
}

/**
   Нормализация высоты элемента ссылки при его инспектировании в DevTools
  */
a:where([class]) {
    display: inline-flex;
}

/**
   Курсор-рука при наведении на элемент
  */
button,
label {
    cursor: pointer;
}

/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут fill со значением 'none' или начинается с 'url')
  */
/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут stroke со значением 'none')
  */
/**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
    transition-property: fill, stroke;
}

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

@font-face {
    font-family: 'Involve';
    src: url('/assets/fonts/Involve-Medium.woff2')  format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    
}


:root {
    --primary-main: #5685A8;
    --secondary-main: #444444;
    --primary-hover: #78BDF0;
    --black: #000000;
    --font-family-base: 'Involve', sans-serif;
}


@keyframes disappear-animation {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes table-open {
	0% {
        max-height: 0px;
		opacity: 0;
        padding: 0px;
	}
	100% {
        height: fit-content;
		opacity: 1;
        max-height: 1000px;
        padding: 16px;
	}
}

@keyframes sandwich-menu-animation1 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes image-blink {
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}


.d-none {
    display: none;
}

.button__white-primary,
.button__white-primary:visited {
    width: fit-content;
    background-color: #ffffff;
    color: var(--primary-main);
    border-radius: 12px;
    padding: 16px 22px;
    font-family: var(--font-family-base);
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s all;
}

.button__white-primary:hover {
    color: var(--primary-hover);
}

.button__primary-white,
.button__primary-white:visited {
    width: fit-content;
    background-color: var(--primary-main);
    color: #ffffff;
    border-radius: 12px;
    border: 1px solid #ffffff;
    padding: 16px 22px;
    font-family: var(--font-family-base);
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s all;
}

.button__primary-white:hover {
    background-color: #ffffff;
    color: var(--primary-hover);
}

.button__primary-border,
.button__primary-border:visited {
    width: fit-content;
    background-color: #ffffff;
    color: var(--primary-main);
    border-radius: 12px;
    border: 1px solid var(--primary-main);
    padding: 16px 22px;
    font-family: var(--font-family-base);
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s all;
}

.button__primary-border:hover {
    border: 1px solid var(--primary-hover);
    color: var(--primary-hover);
}

.button__primary,
.button__primary:visited {
    width: fit-content;
    background-color: var(--primary-main);
    color: #ffffff;
    border-radius: 12px;
    padding: 16px 22px;
    font-family: var(--font-family-base);
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
    /* border: none; */
    transition: 0.3s all;
    cursor: pointer;
    border: 1px solid transparent;
}

.wide-button {
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.button__primary:hover {
    background-color: var(--primary-hover);
}

.banner__right__block__swiper-slide__left__swiper-buttons__button:not(.inactive):hover {
    background-color: #ffffff;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button:not(.inactive):hover path {
    stroke: var(--primary-main);
}

/* классы для текста */
.info-page__article p,
.text {
    font-family: "Involve";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-main);
    margin-bottom: 0;
}

.info-page__article p {
    font-family: "Involve";
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--secondary-main);
    margin-bottom: 0;
}

.info-page__article h2 {
    font-family: "Involve";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--secondary-main);
    margin-bottom: 0;
}

.info-page__article .bold,
.bold {
    font-weight: 500;
}

.info-page__article ul,
.list-marker {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 24px;
    font-family: "Involve";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-main);
}

.info-page__article ol,
.list-numerous {
    list-style-type: decimal;
    padding: 20px;
    line-height: 24px;
    font-family: "Involve";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-main);
}

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

.text-cyan {
    color: var(--primary-main);
}

.text-black {
    color: var(--black);
}

.font-involve {
    font-family: "Involve";
}

/* классы для текста */

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: 0.5s all;
    background-color: #ffffff;
}

.mobile-header {
    display: none;
    background-color: #ffffff;
    padding: 24px 20px;
}

header {
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.desktop-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    margin-block-end: 40px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-header .banner__left-block__phone-numbers {
    gap: 12px;
}

.desktop-header .banner__left-block__menu__item {
    font-size: 16px;
}

.header__right-block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-header .banner__left-block__social-medias__item svg {
    width: 32px;
    height: 32px;
}

.banner {
    width: 100%;
    min-height: fit-content;
    height: 100vh;
    padding: 20px;
}

.banner-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.banner__left-block {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px 45px 45px 45px;
}

.banner__left-block__logo,
.banner__left-block__logo img {
    width: 98%;
}

.banner__left-block__menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner__left-block__menu__item {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
}

.banner__left-block__menu__item a:link,
.banner__left-block__menu__item a:visited {
    color: #444444;
    text-decoration: none;
}

.banner__left-block__phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner__left-block__phone-numbers {
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
}

.banner__left-block__phone-numbers a:link,
.banner__left-block__phone-numbers a:visited {
    color: #484848;
    text-decoration: none;
}

.banner__left-block__social-medias {
    display: flex;
    gap: 10px;
}

.banner__right__block {
    background-color: var(--primary-main);
    border-radius: 40px;
    flex: 1;
    height: 100%;
}

.banner__right__block__swiper-slide {
    min-height: fit-content;
    height: 100%;
    display: flex !important;
    justify-content: space-between;
    background-color: var(--primary-main);
    border-radius: 40px;
    padding: 40px;
}

.banner__right__block__swiper-slide__left {
    width: 49%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner__right__block__swiper-slide__left__page-index {
    display: flex;
    font-size: 64px;
    font-family: var(--font-family-base);
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
}

.banner__right__block__swiper-slide__left__page-index .current {
    color: #ffffff;
}

.banner__right__block__swiper-slide__left__page-index .total {
    color: #ffffff50;
}

.banner__right__block__swiper-slide__left__bottom {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s all;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button path {
    stroke: #ffffff;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button.inactive {
    filter: brightness(0.8);
    cursor: default;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button.clicked {
    background-color: #ffffff;
}

.banner__right__block__swiper-slide__left__swiper-buttons__button.clicked path {
    stroke: var(--primary-main);
}

.banner__right__block__swiper-slide__left__swiper-buttons {
    display: flex;
    gap: 12px;
}

.banner__right__block__swiper-slide__left__bottom__slide-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 60px;
    font-family: var(--font-family-base);
    color: #ffffff;
}

.banner__right__block__swiper-slide__left__bottom__slide-subtitle {
    font-size: 20px;
     font-family: var(--font-family-base);
    font-weight: 400;
    color: #ffffff; 
}

.banner__right__block__swiper-slide__left__bottom__buttons {
    display: flex;
    gap: 24px;
}

.banner__right__block__swiper-slide__right {
    position: relative;
    width: 50%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.banner__right__block__swiper-slide__right__animation-div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.548) 30%, transparent 50%);
    background-size: 200%;
    z-index: 2;
    animation: image-blink 2s ease-in-out infinite;
    pointer-events: none;
}

.banner__right__block__swiper-slide__right__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-wrapper {
    position: relative;
    width: 100%;
    padding: 0px 20px;
    overflow: hidden;
}

.breadcrumps {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Involve";
    font-size: 16px;
    color: #9E9E9E;
    padding: 0px 20px;
    line-height: 16px;
}

.breadcrumps a.crump {
    color: #9E9E9E;
    text-decoration: none;
}

.breadcrumps a.crump:hover {
    text-decoration: underline;
}

.about-us-block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
    background: url('/assets/images/3825f1535b0ab19cc60e7eafdd2980ae42d2e4c7.png');
    background-blend-mode: overlay;
    background-position: left 20%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 60px 40px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-us-block__right-container {
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 24px;
    z-index: 10;
}

.about-us-block__right-container__title {
    font-family: var(--font-family-base);
    font-size: 58px;
    font-weight: 500;
    line-height: 60px;
    color: var(--secondary-main);
}

.about-us-block__right-container__subtitle {
    font-family: var(--font-family-base);
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-main);
}

.about-us-block__right-container__badges {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-us-block__right-container__badges__item {
    display: flex;
    gap: 24px;
}

.about-us-block__right-container__badges__item__title {
    font-family: var(--font-family-base);
    font-size: 128px;
    line-height: 100px;
    font-weight: 500;
    color: var(--primary-main);
}

.about-us-block__right-container__badges__item__subtitle {
    font-family: var(--font-family-base);
    font-size: 28px;
    font-weight: 500;
    color: var(--secondary-main);
}

.benefits-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}

.benefits-block__item {
    width: 23.5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 12px;
    background-color: var(--primary-main);
    padding: 28px;
    padding-bottom: 60px;
}

.benefits-block__item__top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.benefits-block__item__top__icon {
    width: 88px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 24px;
    flex-shrink: 0;
}

.benefits-block__item__top__title {
    flex: 1;
    font-family: var(--font-family-base);
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.benefits-block__item__text {
    font-family: var(--font-family-base);
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
}

.default-block-with-title {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.block-title {
    font-family: var(--font-family-base);
    font-size: 64px;
    font-weight: 500;
    color: var(--secondary-main);
}

.our-complexes__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.our-complexes__buttons__item {
    cursor: pointer;
    transition: 0.2s all;
}

.our-complexes__swiper .swiper-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 2px 0px;
}

.our-complexes__swiper {
    display: none !important;
}

.our-complexes__swiper .swiper-button-next,
.our-complexes__swiper .swiper-button-prev {
    pointer-events: none !important;
}

.our-complexes__swiper.active .swiper-button-next,
.our-complexes__swiper.active .swiper-button-prev {
    pointer-events: visible !important;
}

.our-complexes__swiper.active {
    display: flex !important;
}

.our-complexes__swiper__swiper-slide {
    max-width: 388px;
    min-width: 300px;
    height: 525px !important;
    display: flex !important;
    flex-direction: column;
    border-radius: 40px;
    box-shadow: 0px 0px 2px 0px #00000040;
}

.our-complexes__swiper__swiper-slide__preview {
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center 70%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.our-complexes__swiper__swiper-slide__bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.our-complexes__swiper__swiper-slide__bottom__title {
    text-align: center;
    font-family: var(--font-family-base);
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-main);
}

.our-complexes__swiper__swiper-slide__bottom__price {
    text-align: center;
    font-family: var(--font-family-base);
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-main);
}

.swiper-button-next,
.swiper-button-prev {
    height: 24px !important;
    width: 24px !important;
    color: transparent !important;
} 

.price__buttons__item {
    cursor: pointer;
    transition: 0.2s all;
    flex-shrink: 0;
}

.price__tables {
    display: none;
    flex-direction: column;
    gap: 40px;
}

.price__tables.active {
    display: flex;
}

.price__tables__table {
    border-radius: 24px;
    border: 1px solid var(--primary-main);
    font-family: var(--font-family-base);
    border-spacing: 0;
    font-size: 20px;
    padding-bottom: 12px;
}

.price__tables__table tr td {
    color: var(--secondary-main);
    font-weight: 500;
}

.price__tables__table tr td:first-child {
    width: 20%;
    font-weight: 400;
    text-align: left;
    padding-left: 32px;
}

.price__tables__table thead td {
    height: 70px;
    background-color: var(--primary-main);
    color: #ffffff;
    font-weight: 400;
}

.price__tables__table thead td:nth-child(1) {
    font-weight: 500;
    border-top-left-radius: 20px;
}

.price__tables__table thead td:last-child {
    font-weight: 500;
    border-top-right-radius: 20px;
}

.price__tables__table td {
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.equipment-block {
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: var(--primary-main);
    border-radius: 40px;
}

.equipment-block__right-block {
    width: min-content;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.equipment-block__right-block__title {
    font-family: var(--font-family-base);
    font-size: 64px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 500;
    text-wrap: nowrap;
}

.equipment-block__right-block__text {
    width: 80%;
    font-family: var(--font-family-base);
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}

.equipment-block__right-block__more-button {
    width: fit-content;
}

.equipment-block__left-block {
    position: relative;
    flex: 1;
}

.equipment-block__left-block__image {
    position: absolute;
    width: 80%;
    bottom: -40px;
}

.seo-block__item {
    height: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.seo-block__item__image {
    position: relative;
    width: auto;
    flex: 1;
    height: auto;
    min-height: 484px;
}

.seo-block__item__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
    object-position: center 60%;
}

.seo-block__item__article {
    width: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 40px;
}

.seo-block__item__article__title {
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: 28px;
    color: #444444;
}

.seo-block__item__article__text {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 20px;
    color: #444444;
    line-height: 24px;
}

.reviews-swiper {
    width: 90%;
    margin: 0 auto;
}

.reviews-swiper__review {
    max-width: 600px;
    min-width: 300px;
    height: auto !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: #5685A8;
    border-radius: 10px;
    padding: 40px;
}

.reviews-swiper__review__stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.reviews-swiper__review__stars__item {
    width: 24px;
    height: 24px;
}

.reviews-swiper__review__text {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
}

.reviews-swiper__review__user-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reviews-swiper__review__user-data__image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.reviews-swiper__review__user-data__image img {
    width: 100%;
    height: 100%;
}

.reviews-swiper__review__user-data__name {
    font-family: var(--font-family-base);
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
}

.additional-wrapper {
    position: relative;
}

.block-title__block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geo-block__text {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: var(--secondary-main);
    font-weight: 500;
}

.geo-block__maps-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.geo-block__maps-block__map {
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.geo-block__maps-block__map__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.geo-block__maps-block__map__info__address {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: var(--secondary-main);
    font-weight: 500;
}

.geo-block__maps-block__map__info__hours {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: #9E9E9E;
    font-weight: 400;
}

.geo-block__maps-block__map__info__a:link,
.geo-block__maps-block__map__info__a:visited {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: var(--primary-main);
    font-weight: 400;
    text-decoration: none;
}

.yandex-map {
    height: 460px;
    border-radius: 24px;
}

.bottom-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    padding: 48px 0px;
}

.bottom-banner__top__svg {
    margin-left: 25%;
}

.bottom-banner__top .block-title {
    text-align: center;
}

footer {
    width: 100%;
    padding: 0px 20px 20px 20px;
}

.footer-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 40px;
    background-color: var(--primary-main);
    border-radius: 40px;
}

.footer-container__left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.footer-container__left__top__logo {
    width: 275px;
}

.footer-container__left__top__logo img {
    width: 100%;
}

.footer-container__left__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-container__left__top__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-container__left__top__links__item:link,
.footer-container__left__top__links__item:visited {
    font-family: var(--font-family-base);
    font-size: 16px;
    color: #ffffffb6;
    font-weight: 400;
    text-decoration: none;
}

.footer-container__left__bottom {
    font-family: var(--font-family-base);
    font-size: 16px;
    color: #ffffffb6;
    font-weight: 400;
}

.footer-container__center {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__text {
    font-family: var(--font-family-base);
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-container__center__phone-address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-container__center__phone-address__phone,
.footer-container__center__phone-address__phone:visited,
.footer-container__center__phone-address__phone:link {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.footer-container__center__phone-address__address {
    font-family: var(--font-family-base);
    font-size: 20px;
    color: #ffffffb6;
    font-weight: 400;
}

footer .banner__left-block__menu__item a:link, 
footer .banner__left-block__menu__item a:visited {
    color: #ffffff;
    font-size: 16px;
}

footer .banner__left-block__menu {
    width: 400px;
    gap: 16px;
}

.mobile-tables-menu {
    display: none;
}

.price__tables-mobile {
    display: none;
}

.footer-container__left__bottom.mobile {
    display: none;
}

.sandwich-menu {
    display: none;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-main) !important;
}

.banner-swiper__pagination .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
}

.banner-swiper__pagination .swiper-pagination-bullet {
    background-color: #ffffff !important;
}

.our-complexes__mobile-tables__item {
    display: none;
}

footer .banner__left-block__social-medias {
    gap: 24px;
}

.popup {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #0000008e;
    z-index: 1000;
}

.popup.active {
    display: flex;
}

.video-popup {
    display: none;
    width: 70%;
}

.video-popup.active {
    display: flex;
}

.video-popup video {
    width: 100%;
    border-radius: 12px;
}

.call-me-back-popup {
    display: none;
}

.call-me-back-popup.active {
    width: 500px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
}

.call-me-back-popup__close {
    width: 20px;
    height: 20px;
    align-self: flex-end;
}

.call-me-back-popup__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.call-me-back-popup__close {
    cursor: pointer;
}

.call-me-back-button {
    cursor: pointer;
}

.call-me-back-popup__title {
    font-size: 20px;
    font-family: var(--font-family-base);
    font-weight: 500;
    color: #444444;
}

.call-me-back-popup__subtitle {
    font-size: 16px;
    font-family: var(--font-family-base);
    font-weight: 500;
    color: #444444;
    text-align: center;
}

.call-me-back-popup__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.call-me-back-popup__form__input {
    width: 100%;
    height: 52px;
    padding: 0px 12px;
    border-radius: 6px;
    border: 1px solid #444444b4;
    font-family: var(--font-family-base);
    font-size: 16px;
}

.call-me-back-popup__form__submit-button {
    width: 100%;
    border: 0px;
    font-size: 16px;
}

.call-me-back-popup__text {
    font-size: 16px;
    font-family: var(--font-family-base);
    font-weight: 400;
    color: #444444;
}

.checkbox-input {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.call-me-back-popup__text a,
.call-me-back-popup__text a:visited,
.call-me-back-popup__text a:link {
    color: #222222;
}

.blog-feed {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-feed__feed-container {
    width: 100%;
    display: flex;
    gap: 3.5%;
    flex-wrap: wrap;
    row-gap: 40px;
}

.blog-feed__feed-container__item {
    width: 31%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.log-feed__feed-container__item__preview {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.log-feed__feed-container__item__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-feed__feed-container__item__title {
    font-size: 20px;
    font-family: "Involve";
    font-weight: 500;
    color: var(--secondary-main);
}

.blog-feed__feed-container__item__description {
    font-size: 16px;
    font-family: "Involve";
    font-weight: 400;
    color: var(--secondary-main);
}

.blog-feed__feed-container__item__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-feed__feed-container__item__bottom__date {
    font-size: 16px;
    font-family: "Involve";
    font-weight: 400;
    color: #9E9E9E;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.pagination__dot {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Involve";
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-main);
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    line-height: 100%;
    transition: 0.2s all;
}

.pagination__dot.prev,
.pagination__dot.next {
    font-size: 20px;
    font-weight: 500;
}

.pagination__dot:not(.prev):not(.next):not(.active):hover {
    background-color: #78BDF0;
    color: #ffffff;
}

.pagination__dot.active {
    background-color: var(--primary-main);
    color: #ffffff;
    font-weight: 500;
}

.pagination__dot.disabled {
    filter: opacity(0.3);
    pointer-events: none;
}

.pagination__skipped-dot {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-main);
    border-radius: 50%;
}

.page-with-sidebar {
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 0px 20px;
}

.page__main-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page__sidebar {
    width: 440px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-with-sidebar .breadcrumps {
    padding: 0px 0px;
}

.info-page__preview-banner {
    width: 100%;
    max-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.info-page__preview-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-page__article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-block-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid var(--primary-main);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.sidebar-block-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-block-item__booking {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    text-align: center;
}

.sidebar-block-item__booking img {
    width: auto;
    height: auto;
}

.review-popup {
    width: fit-content;
    display: none;
    flex-direction: column;
    gap: 24px;
    user-select: none;
}

.review-popup.active {
    display: flex;
}

.review-popup__inner {
	position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
	width: 640px;
	height: 60vh;
	background: none;
	background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
}

.review-popup .x-sign {
	position: absolute;
	top: 40px;
	right: 40px;
}

.reviews-scroller__slide__user-info__profile-pic img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #484848;
}

.reviews-scroller__slide__user-info {
    display: flex;
    gap: 24px;
}

.reviews-scroller__slide__user-info__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.reviews-scroller__slide__user-info__name {
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 500;
    color: #444444;
}

.reviews-scroller__slide__user-info__right .reviews-swiper__review__stars__item {
    width: 20px;
    height: 20px;
}

.popup__slide-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}

.popup__slide-button.disabled {
    filter: brightness(0.5);
    cursor: default;
}

.popup-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.review-popup__text-block .reviews-scroller__slide__text {
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}

.review-popup__text-block {
    overflow-y: auto;
}

.review-popup .reviews-swiper__review__stars {
    justify-content: flex-start;
}

.share-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-btn .share-menu {
    position: absolute;
    top: -10px;
    left: 50%;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 0px 5px 1px #00000027;
    transform: translate(-50%, -100%);
    padding: 8px 16px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
}

.share-btn.active .share-menu {
    visibility: visible;
    opacity: 1;
}

.share-menu a {
    width: 32px;
    height: 32px;
}

.share-menu svg {
    width: 32px;
    height: 32px;
}

.s-message {
    display: none;
}

.check-all-reviews-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.error-page-container {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page-inner {
    width: 636px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.code-error {
    font-size: 128px;
    font-weight: 700;
    line-height: 96px;
    text-transform: uppercase;
}

.error-page-message {
    font-size: 20px;
    text-align: center;
}

.question-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.question {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.question .question-bottom {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 0;
}


.question-bottom-content {
    width: 100%;
    display:flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}

.question .close-button {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.question.active .close-button {
    transform: rotate(-180deg);
}

.question-top {
    display: flex;
    align-items: center;
    padding: 16px 0px;
    gap: 32px;
    border-bottom: 1px solid #E2E8F0;
    cursor: pointer;
}

.question-title {
    flex: 1;
    font-size: 28px !important;
    font-family: "Involve" !important;
    font-weight: 500 !important;
    color: #0F172A;
}

@media screen and (max-width: 1800px) {
    .about-us-block__right-container__badges__item__title {
        font-size: 96px;
        line-height: 80px;
    }

    .banner__left-block__social-medias__item svg {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 1600px) {
    .banner__left-block {
        padding: 24px;
    }

    .banner__right__block__swiper-slide__left__bottom__slide-title {
        font-size: 48px;
    }

    .about-us-block__right-container__title {
        font-size: 40px;
        line-height: 44px;
    }

    .about-us-block__right-container {
        gap: 40px;
    }

    .benefits-block__item__top {
        flex-direction: column;
        align-items: start;
    }

    .equipment-block__right-block__title {
        font-size: 48px;
        line-height: 52px;
    }

    .banner__left-block__social-medias {
        gap: 8px;
    }

    .our-complexes__swiper .swiper-wrapper {
        width: 100%;
    }

    .video-popup {
        width: 80%;
    }

    .video-block {
        height: 700px;
    }
}

@media screen and (max-width: 1540px) {
    .about-us-block__right-container__badges {
        flex-direction: column;
        gap: 24px;
    }

    .bottom-banner__top__svg {
        width: 80%;
    }

    .banner__right__block__swiper-slide__left__bottom__buttons__button {
        font-size: 16px;
    }

    .banner__right__block__swiper-slide__left__bottom__slide-subtitle {
        font-size: 16px;
    }

    .banner__left-block__menu__item {
        font-size: 16px;
    }

    .our-complexes__swiper__swiper-slide {
        max-width: 358px;
        height: 495px !important;
    }

    .banner__left-block__logo, .banner__left-block__logo img {
        width: 95%;
    }

    .banner__left-block__social-medias {
        gap: 4px;
    }

    footer .banner__left-block__menu {
        width: 300px;
        gap: 16px;
    }

    .banner__left-block__phone-numbers__item {
        font-size: 16px;
    }

    .about-us-block__right-container__subtitle {
        font-size: 16px;
    }

    .benefits-block__item__text {
        font-size: 16px;
    }

    .block-title {
        font-size: 48px;
    }

    .button__white-primary, .button__white-primary:visited {
        font-size: 16px;
    }

    .button__primary-white, .button__primary-white:visited {
        font-size: 16px;
    }

    .button__primary, .button__primary:visited {
        font-size: 16px;
    }

    .button__primary-border, .button__primary-border:visited {
        font-size: 16px;
    }

    .price__tables__table {
        font-size: 16px;
    }

    .equipment-block__right-block__text {
        font-size: 16px;
    }

    .seo-block__item__article {
        gap: 24px;
    }

    .seo-block__item__article__title {
        font-size: 24px;
    }

    .seo-block__item__article__text {
        font-size: 16px;
    }

    .reviews-swiper__review__text {
        font-size: 16px;
    }

    .geo-block__text {
        font-size: 16px;
    }

    .geo-block__maps-block__map__info__address,
    .geo-block__maps-block__map__info__hours,
    .geo-block__maps-block__map__info__a:link, .geo-block__maps-block__map__info__a:visited {
        font-size: 16px;
    }

    .footer-container__center__phone-address__address {
        font-size: 16px;
    }


    .video-block {
        height: 600px;
    }

    .header__right-block {
        gap: 24px;
    }
}

@media screen and (max-width: 1400px) {
    .desktop-header .banner__left-block__social-medias__item svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 1400px) and (min-width: 1200px) {
    .desktop-header .header__logo img {
        width: 200px;
    }
}

@media screen and (max-width: 1200px) {

    .mobile-header {
        display: flex;
    }

    .desktop-header {
        display: none;
    }

    header {
        position: fixed;
    }

    .header-container {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        width: 20%;
    }

    .header__logo img {
        width: 100%;
    }

    .banner {
        padding: 0px;
    }

    .banner-container {
        flex-direction: column;
    }

    .banner__left-block {
        display: none;
    }

    .banner__right__block {
        width: 100%;
        border-radius: 0px;
    }

    .banner__right__block__swiper-slide {
        border-radius: 0px;
    }

    .about-us-block {
        height: 1000px;
        flex-direction: column;
        background-position: 30%;
        padding: 40px 0px;
    }

    .about-us-block__right-container {
        width: 100%;
        height: fit-content;
        gap: 24px;
        border-radius: 0px;
    }

    .benefits-block {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .benefits-block__item {
        width: 49%;
    }

    .equipment-block__right-block {
        width: 40%;
    }

    .equipment-block__right-block__title {
        text-wrap: wrap;
    }

    .equipment-block__right-block__text {
        width: 100%;
    }

    .block-title {
        font-size: 48px;
    }

    .bottom-banner__top__svg {
        width: 70%;
        margin-left: 20%;
    }

    .banner__left-block__menu {
        display: none;
    }

    .price__tables { 
        display: none !important;
    }

    .price__tables-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
    }

    .price__tables-mobile__table {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .price__tables-mobile__table__top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 8px 16px;
        background-color: #F5F5F5;
    }

    .price__tables-mobile__table__top__title {
        font-family: var(--font-family-base);
        font-size: 20px;
        font-weight: 400;
        color: #444444;
    }

    .price__tables-mobile__table.active .price__tables-mobile__table__top {
        background-color: #EDEDED;
    }

    .price__tables-mobile__table__bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        background-color: #F5F5F5;
        transform-origin: top;
    }

    .price__tables-mobile__table__bottom__item {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .price__tables-mobile__table__bottom__item__title {
        font-family: var(--font-family-base);
        font-size: 20px;
        font-weight: 400;
        color: #444444;
    }

    .price__tables-mobile__table__bottom__item__price {
        font-family: var(--font-family-base);
        font-size: 22px;
        font-weight: 500;
        color: #444444;
    }

    .price__tables-mobile__table .price__tables-mobile__table__bottom {
        display: none;
    }

    .price__tables-mobile__table.active .price__tables-mobile__table__bottom {
        display: flex;
    }

    .price__tables-mobile__table svg {
        transition: all 0.5s;
    }

    .price__tables-mobile__table svg.active {
        transform: rotate(180deg);
    }

    .mobile-tables-menu {
        position: relative;
        left: -20px;
        width: 100vw;
        display: flex;
        padding-left: 20px;
        overflow-x: auto;
    }

    .mobile-tables-menu__item {
        flex-shrink: 0;
        padding: 12px 19px;
        border-bottom: 1px solid #E0E0E0;
        font-family: var(--font-family-base);
        font-size: 20px;
        font-weight: 500;
        color: #444444;
        transition: 0.3s all;
        cursor: pointer;
        user-select: none;
    }

    .mobile-tables-menu__item.active {
        border-bottom: 1px solid var(--primary-main);
    }

    .our-complexes__mobile-tables__item {
        display: none;
        flex-direction: column;
        gap: 24px;
    }

    .our-complexes__mobile-tables__item.active {
        display: flex;
    }

    .price__tables-mobile {
        display: none;
    }

    .price__tables-mobile.active {
        display: flex;
    }

    .sandwich-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 100vh;
        display: none;
        background-color: #ffffff;
        transform-origin: right;
        z-index: 1000;
    }

    .sandwich-menu.active {
        position: fixed;
        top: 0;
        right: 0;
        width: 500px;
        height: 100vh;
        display: flex;
        background-color: #ffffff;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .sandwich-menu__button {
        width: 28px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .sandwich-menu__button__line {
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background-color: #444444;
        transition: 0.5s all;
    }

    .sandwich-menu__button.active .sandwich-menu__button__line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 7px);
    }

    .sandwich-menu__button.active .sandwich-menu__button__line:nth-child(2) {
        opacity: 0;
    }

    .sandwich-menu__button.active .sandwich-menu__button__line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .sandwich-menu__container {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 34px;
    }

    .sandwich-menu .banner__left-block__menu__item {
        color: var(--secondary-main);
    }

    .sandwich-menu .banner__left-block__menu {
        display: flex;
    }

    .sandwich-menu-divider {
        width: 100%;
        height: 1px;
        background-color: #C2C2C2;
    }

    .video-popup {
        width: 90%;
    }

    .video-block {
        height: 500px;
    }

    .blog-feed__feed-container {
        column-gap: 2%;
    }

    .blog-feed__feed-container__item {
        width: 49%;
    }

    .page__sidebar {
        display: none;
    }

    .share-btn .share-menu {
        transform: translate(0%, -100%);
        left: auto;
        right: 0;
    }
}

@media screen and (max-width: 991px) {

    .banner__right__block__swiper-slide {
        flex-direction: column;
        gap: 40px;
    }

    .banner__right__block__swiper-slide__left {
        width: 100%;
        height: fit-content;
    }

    .banner__right__block__swiper-slide__right {
        width: 100%;
        height: 0;
        flex: 1;
    }

    .banner__right__block__swiper-slide__right__img {
        object-position: center 20%;
    }

    .banner__right__block__swiper-slide__left__page-index {
        display: none;
    }

    .banner__right__block__swiper-slide__left__swiper-buttons {
        display: none;
    }

    .banner__right__block__swiper-slide__left__bottom__slide-title {
        text-align: center;
        font-size: 40px;
        line-height: 36px;
    }

    .banner__right__block__swiper-slide__left__bottom__slide-subtitle {
        text-align: center;
        font-size: 20px;
    }

    .banner__right__block__swiper-slide__left__bottom__buttons {
        justify-content: center;
    }

    .about-us-block__right-container__title {
        font-size: 36px;
        line-height: 38px;
    }

    .block-title {
        font-size: 40px;
    }

    .our-complexes__buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        position: relative;
        left: -20px;
        width: 100vw;
        padding-left: 20px;
    }

    .our-complexes__buttons::-webkit-scrollbar {
        display: none;
    }

    .equipment-block {
        flex-direction: column;
        overflow: hidden;
    }

    .equipment-block__right-block {
        width: 100%;
    }

    .equipment-block__left-block__image {
        width: 100%;
        position: relative;
        bottom: -50px;
    }
    
    .seo-block__item {
        flex-direction: column;
        gap: 24px;
    }

    .seo-block__item:first-child {
        flex-direction: column-reverse;
    }

    .seo-block__item__image {
        min-height: 300px;
    }

    .reviews-swiper {
        width: 100%;
    }

    .geo-block__maps-block {
        flex-direction: column;
        gap: 24px;
    }

    .geo-block__maps-block__map {
        width: 100%;
        gap: 24px;
    }

    .bottom-banner .our-complexes__buttons {
        position: static;
        width: 100%;
        justify-content: center;
        padding-left: 0;
    }
    footer {
        height: auto;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
    }

    .footer-container__left__bottom {
        display: none;
    }

    .footer-container__left__bottom.mobile {
        display: block;
    }

    .our-complexes__swiper .swiper-wrapper {
        padding-bottom: 34px;
    }

    .our-complexes__swiper .swiper-pagination {
        bottom: 0px !important;
    }

    .reviews-swiper .swiper-wrapper {
        padding-bottom: 34px;
    }

    .reviews-swiper__pagination {
        bottom: 0px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    } 
}

@media screen and (max-width: 720px) {
    .benefits-block__item {
        width: 100%;
    }

    .mobile-tables-menu::-webkit-scrollbar {
        display: none;
    }

    .block-title__block {
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }

    .block-title {
        font-size: 32px;
    }

    .video-block {
        height: 300px;
    }

    .blog-feed__feed-container {
        column-gap: 0%;
    }

    .blog-feed__feed-container__item {
        width: 100%;
    }

    .review-popup__inner {
        width: 90vw;
        padding: 24px;
    }

    .review-popup .x-sign {
        top: 24px;
        right: 24px;
    }

    .reviews-scroller__slide__user-info {
        gap: 12px;
    }

    .reviews-scroller__slide__user-info__profile-pic img {
        width: 48px;
        height: 48px;
    }

    .reviews-scroller__slide__user-info__right {
        gap: 8px;
    }

    .error-page-inner {
        width: 100%;
        padding: 0px 32px;
    }
}

@media screen and (max-width: 600px) {
    .button__primary-white, .button__primary-white:visited,
    .button__primary-white, .button__primary-white,
    .button__primary-white, .button__primary-white:link {
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .button__white-primary, .button__white-primary:visited,
    .button__white-primary, .button__white-primary,
    .button__white-primary, .button__white-primary:link {
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .button__primary-border, .button__primary-border:visited,
    .button__primary-border, .button__primary-border
    .button__primary-border, .button__primary-border:link {
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .button__primary, .button__primary:visited {
        display: flex;
        justify-content: center;
    }

    .wrapper {
        gap: 40px;
    }

    .banner__right__block__swiper-slide__left__bottom__slide-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .banner__right__block__swiper-slide__left__bottom__buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner__right__block__swiper-slide__left__bottom__buttons__button {
        width: 230px !important;
    }

    .banner__right__block__swiper-slide {
        gap: 24px;
        padding: 24px;
        justify-content: start;
    }

    .banner__right__block__swiper-slide__right {
        width: 100%;
        flex: 1;
        height: 0;
    }

    .banner-swiper__pagination {
        bottom: 4px !important;
    }

    .banner__right__block__swiper-slide__left__bottom {
        gap: 24px;
    }

    .banner .swiper-wrapper {
        padding-bottom: 20px;
    }

    .about-us-block__right-container__title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-us-block__right-container__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .about-us-block__right-container__badges__item__title {
        font-size: 40px;
        line-height: 36px;
    }

    .about-us-block__right-container__badges__item__subtitle {
        font-size: 20px;
    }

    .about-us-block__right-container__badges {
        gap: 12px;
    }

    .about-us-block {
        position: relative;
        width: 100vw;
        height: 820px;
        left: -20px;
        border-radius: 0px;
    }

    .about-us-block__right-container {
        padding: 20px;
    }

    .video-background {
        border-radius: 0px;
    }

    .benefits-block__item {
        gap: 24px;
    }

    .benefits-block__item__text {
        font-size: 16px;
    }

    .benefits-block {
        gap: 10px;
    }

    .benefits-block__item {
        padding: 28px;
    }

    .benefits-block__item__top__icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .benefits-block__item__top__icon img {
        width: 34px;
    }

    .block-title {
        font-size: 28px;
    }

    .our-complexes__buttons {
        gap: 12px;
    }

    .our-complexes__swiper__swiper-slide {
        height: 508px !important;
    }

    .our-complexes__swiper__swiper-slide__bottom {
        padding: 12px;
    }

    .our-complexes__swiper__swiper-slide__bottom__book-button {
        font-size: 20px;
    }

    .default-block-with-title {
        gap: 24px;
    }

    .mobile-tables-menu__item {
        font-size: 16px;
    }

    .price__tables-mobile__table__top__title,
    .price__tables-mobile__table__bottom__item__title {
        font-size: 14px;
    }

    .price__tables-mobile__table__bottom__item__price {
        font-size: 16px;
    }

    .equipment-block__right-block__title {
        font-size: 28px;
        line-height: 32px;
    }

    .equipment-block__right-block__text {
        font-size: 16px;
    }

    .equipment-block__left-block__image {
        bottom: -40px;
    }

    .equipment-block {
        gap: 0;
        padding: 28px 28px 0px 28px;
    }

    .seo-block__item__article__title {
        font-size: 20px;
    }

    .reviews-swiper__review__text {
        font-size: 16px;
    }

    .reviews-swiper__review {
        padding: 30px;
    }

    .geo-block__text {
        font-size: 16px;
    }

    .geo-block__maps-block__map__info__address {
        font-size: 16px;
    }

    .geo-block__maps-block__map__info__hours {
        font-size: 16px;
    }

    .geo-block__maps-block__map__info__a:link, .geo-block__maps-block__map__info__a:visited {
        font-size: 16px;
    }

    .bottom-banner {
        gap: 24px;
        padding: 0px;
    }

    .bottom-banner .our-complexes__buttons {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .banner-bottom__button {
        width: 210px;
    }

    footer {
        padding: 0px;
    }

    .footer-container {
        border-radius: 0px;
        padding: 42px 35px;
    }

    footer .banner__left-block__social-medias {
        gap: 24px;
    }

    .footer-container__left__top {
        gap: 24px;
    }

    .footer-container__center {
        gap: 24px;
    }

    .footer-container__center__phone-address__address {
        font-size: 16px;
    }

    .footer-container__center {
        width: 100%;
    }

    .block-title {
        font-size: 20px;
    }

    .sandwich-menu.active {
        width: 100vw;
    }

    .sandwich-menu__button {
        width: 24px;
        height: 20px;
    }

    .header__logo {
        width: 30%;
    }

    .sandwich-menu .banner__left-block__menu__item {
        font-size: 16px;
    }

    .sandwich-menu__button.active .sandwich-menu__button__line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 6px);
    }

    .sandwich-menu__button.active .sandwich-menu__button__line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-container__left__top__logo {
        width: 60%;
    }

    .video-popup {
        width: 100%;
        padding: 0px 20px;
    }

    .call-me-back-popup {
        width: 100%;
        margin: 0px 20px;
    }

    .breadcrumps {
        font-size: 14px;
        line-height: 24px;
    }

    .blog-page .blog-feed__feed-container__item__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .reviews-scroller__slide__user-info {
        flex-direction: column;
    }
    
      .check-all-reviews-container {
        gap: 8px;
    }

    .error-page-inner {
        padding: 0px 16px;
    }
    
    .question-title {
        font-size: 20px !important;
    }

    .share-btn .share-menu {
        left: 0;
        right: auto;
    }
}

@media screen and (max-width: 450px) {
    .code-error {
        font-size: 112px;
        line-height: 90px;
    }

    .error-page-message {
        font-size: 18px;
    }

    .wide-button {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    footer .banner__left-block__social-medias {
        gap: 12px;
    }
}