@charset "UTF-8";
/* inter-tight-regular - cyrillic-ext_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/inter-tight-v7-cyrillic-ext_latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-500 - cyrillic-ext_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    src: url("fonts/inter-tight-v7-cyrillic-ext_latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-600 - cyrillic-ext_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    src: url("fonts/inter-tight-v7-cyrillic-ext_latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-700 - cyrillic-ext_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/inter-tight-v7-cyrillic-ext_latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-800 - cyrillic-ext_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 800;
    src: url("fonts/inter-tight-v7-cyrillic-ext_latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
*:before, *:after {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Inter Tight", sans-serif;
    background-color: #f5f3f1;
}

header,
footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}

main,
article,
section,
footer,
header,
aside,
canvas {
    display: block;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    font-size: inherit;
    font-weight: inherit;
}

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

svg {
    max-width: 100%;
    display: inline-block;
}

a {
    color: inherit;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir=rtl] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75 ;
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height);
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none;
}

.f-spinner svg *:first-child {
    stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
.f-throwOutUp {
    animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
    animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
        opacity: 0;
    }
}
@keyframes f-throwOutDown {
    to {
        transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
        opacity: 0;
    }
}
.f-zoomInUp {
    animation: var(--f-transition-duration, 0.4s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, 0.4s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
    from {
        transform: scale(0.975) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes f-zoomOutDown {
    to {
        transform: scale(0.975) translate3d(0, 16px, 0);
        opacity: 0;
    }
}
.f-fadeIn {
    animation: var(--f-transition-duration, 0.4s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2;
}

.f-fadeOut {
    animation: var(--f-transition-duration, 0.4s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
    z-index: 1;
}

@keyframes f-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-fadeOut {
    100% {
        opacity: 0;
    }
}
.f-fadeFastIn {
    animation: var(--f-transition-duration, 0.4s) ease-out both f-fadeFastIn;
    z-index: 2;
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, 0.4s) ease-out both f-fadeFastOut;
    z-index: 2;
}

@keyframes f-fadeFastIn {
    0% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-fadeFastOut {
    100% {
        opacity: 0;
    }
}
.f-fadeSlowIn {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
    z-index: 2;
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
    z-index: 1;
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-fadeSlowOut {
    100% {
        opacity: 0;
    }
}
.f-crossfadeIn {
    animation: var(--f-transition-duration, 0.4s) ease-out both f-crossfadeIn;
    z-index: 2;
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, 0.4s) * 0.5) linear 0.1s both f-crossfadeOut;
    z-index: 1;
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-crossfadeOut {
    100% {
        opacity: 0;
    }
}
.f-slideIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%);
    }
}
@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%);
    }
}
.f-classicIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
    z-index: 2;
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
    z-index: 2;
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
    z-index: 1;
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
    z-index: 1;
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-75px);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes f-classicInPrev {
    0% {
        transform: translateX(75px);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes f-classicOutNext {
    100% {
        transform: translateX(-75px);
        opacity: 0;
    }
}
@keyframes f-classicOutPrev {
    100% {
        transform: translateX(75px);
        opacity: 0;
    }
}
:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition);
}
.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
    outline: none;
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none;
}

.f-button[disabled] {
    cursor: default;
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
    pointer-events: none;
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto;
}

html.with-fancybox body {
    touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none;
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: none;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
    box-sizing: inherit;
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity;
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip;
}

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

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab;
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing;
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
    overflow: hidden;
}

.fancybox__slide.has-image {
    overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
    overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
    display: block;
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20;
}

.is-loading .fancybox__content {
    opacity: 0;
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab;
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
    cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
    will-change: transform, width, height;
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none;
    filter: blur(0px);
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden;
}

.is-compact .fancybox__caption {
    padding-bottom: 0;
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
    opacity: 1;
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative;
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    transition: all 0.4s ease;
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px;
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1;
}

.is-idle .fancybox__nav {
    animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
    z-index: 30;
    cursor: pointer;
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none;
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none;
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
    animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
    animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, 0.9);
    color: #fff;
}

.has-map .fancybox__content {
    background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px ;
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0);
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1;
}

.f-thumbs .f-spinner svg {
    display: none;
}

.f-thumbs.is-vertical {
    height: 100%;
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
    display: flex;
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer;
}

.f-thumbs__slide.is-loading img {
    opacity: 0;
}

.is-classic .f-thumbs__viewport {
    height: 100%;
}

.is-modern .f-thumbs__track {
    width: max-content;
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
    width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
    cursor: pointer;
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transition: none;
    pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100% 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none;
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
    clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn 0.2s ease-out;
    z-index: 10;
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
    transition: none !important;
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    z-index: 20;
}

.fancybox__toolbar :focus-visible {
    z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none;
}

.fancybox__infobar span {
    padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
    position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex;
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none;
}

.header {
    padding-top: 10px;
}

.header__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.header__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 24px;
    z-index: 999;
}

.header__logo {
    width: 179px;
}

.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 24px;
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
}
.main-nav.open {
    opacity: 1;
    user-select: all;
    visibility: visible;
}

.main-nav__item {
    list-style: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main-nav__item:first-child {
    border-top: none;
}

.main-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 18px;
    line-height: 29px;
    text-decoration: none;
    font-weight: 600;
    user-select: none;
}
.main-nav__link:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("images/icons/icon-arrow-left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-controls__contacts {
    display: none;
}

.header-controls__btn-contact {
    display: none;
}

.phone-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #f5f3f1;
}

.burger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background-color: #FF6624;
}
.burger:before, .burger:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    border-radius: 2px;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}
.burger:before {
    transform: translateY(8px);
}
.burger span {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 0;
}
.burger span:before, .burger span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.burger.open:before, .burger.open:after {
    opacity: 0;
}
.burger.open span:before {
    transform: rotate(45deg);
}
.burger.open span:after {
    transform: rotate(-45deg);
}

.promo {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.promo__slider-wrap {
    position: relative;
}

.promo__slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.promo__slider .slick-dots li {
    list-style: none;
}
.promo__slider .slick-dots .slick-active button {
    background-color: #FF6624;
}
.promo__slider .slick-dots button {
    font-size: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.promo__slider-btn {
    display: none;
}

.promo__slider-prev {
    left: 20px;
}

.promo__slider-next {
    right: 20px;
}

.promo-slide {
    border-radius: 24px;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    background-position: center;
}

.promo-slide__fade {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    background-color: rgba(0, 0, 0, 0.3);
}

.promo-slide__label {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
}
.promo-slide__label + .promo-slide__title {
    margin-top: 20px;
}

.promo-slide__title {
    max-width: 320px;
    font-size: 28px;
    line-height: 31px;
    font-weight: 600;
    text-align: center;
}

.promo-slide__btn {
    margin-top: 30px;
    z-index: 800;
}

.btn {
    display: inline-block;
    padding: 9px 20px;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    background-color: #FF6624;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    z-index: 800;
}

.services {
    padding-top: 30px;
    padding-bottom: 15px;
}

.services__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.services__wrapper {
    display: grid;
    gap: 30px;
}

.services-info {
    border: 1px solid #DFD7CF;
    border-radius: 24px;
    padding-top: 40px;
    position: relative;
}

.services-info__title {
    padding: 0 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}

.services-info__desc {
    padding: 0 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #505050;
    margin-top: 30px;
}

.services-info__btn {
    display: none;
}

.services-info__banner {
    background-size: cover;
    margin-top: 50px;
    width: 100%;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 20px;
    height: 180px;
}
.services-info__banner strong {
    font-weight: 800;
    font-size: 96px;
    line-height: 110%;
    color: #fff;
}
.services-info__banner p {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
    margin-top: 20px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-list__item {
    list-style: none;
}

.services-card {
    display: flex;
    gap: 10px;
    padding: 20px;
    text-decoration: none;
    border-radius: 24px;
    background-color: #fff;
}

.services-card__icon {
    flex-shrink: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
}
.services-card__icon svg {
    width: 100%;
    height: 100%;
    fill: #FF6624;
}
.services-card__icon--stroke svg {
    stroke: #FF6624;
    fill: none;
}

.services-card__text {
    flex-grow: 1;
}

.services-card__title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.services-card__more {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 13px;
    color: #959595;
}

.services-card__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.services-card__arrow svg {
    stroke: #959595;
}

.about-main {
    padding: 15px 0;
}

.about-main__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.about-main__wrapper {
    border-radius: 24px;
    background-size: cover;
}

.about-main__fade {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 230px 20px 40px;
    border-radius: 24px;
}

.about-main__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: #fff;
    max-width: 300px;
}

.about-list {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.about-list__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
}

.about-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.about-item__icon img {
    width: 100%;
    height: 100%;
}

.about-item__desc {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
}

.page-slider {
    padding-top: 30px;
    padding-bottom: 15px;
    overflow: hidden;
}

.page-slider__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.page-slider__slider {
    position: relative;
}
.page-slider__slider .slick-list {
    overflow: initial;
}

.page-slider__slider-wrap {
    position: relative;
}
.page-slider__slider-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 1;
    right: 100%;
    width: 100vw;
    height: 100%;
    background-color: #f5f3f1;
}

.page-slider__slider-item {
    padding: 0 3px;
}

.page-slider__photo-wrap {
    height: 200px;
}

.page-slider__photo {
    height: 100%;
    border-radius: 15px;
}

.page-slider__btn {
    position: absolute;
    top: calc(50% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.page-slider__btn svg {
    stroke: #000;
    transition: all 0.3s ease;
}
.page-slider__btn.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.page-slider__prev {
    left: 0;
}
.page-slider__prev svg {
    transform: rotate(180deg);
}

.page-slider__next {
    right: 0;
}

.contacts-block {
    padding: 15px 0 30px;
}

.contacts-block__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.contacts-block__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-card {
    padding: 20px;
    border: 1px solid #DFD7CF;
    border-radius: 24px;
}

.contacts-card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}

.contacts-card__desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #505050;
    margin-top: 30px;
}

.contacts-card__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 30px;
}

.contacts-card__item {
    display: flex;
    gap: 10px;
    list-style: none;
}

.contacts-card__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-top: 3px;
}
.contacts-card__icon img {
    width: 100%;
    height: 100%;
}

.contacts-card__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #959595;
}

.contacts-card__text {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.contacts-card__text a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.request {
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
}

.request__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
}

.request__confirm {
    margin-top: 20px;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #959595;
    max-width: 304px;
}
.request__confirm a {
    color: #000;
    text-decoration: none;
}

.form-request {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.form-request__btn {
    margin-top: 10px;
}

.form-field__input {
    border-radius: 12px;
    padding: 14px 20px;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    outline: transparent;
}
.form-field__input::placeholder {
    color: #959595;
    opacity: 1;
}

.form-field__select {
    border-radius: 12px;
    padding: 14px 20px;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    outline: transparent;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_167_1062)'%3E%3Cpath d='M15 7.5L10 12.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 7.5L10 12.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_167_1062'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    /* Стиль для выбранного варианта – делаем текст черным */
}
.form-field__select:required:invalid {
    color: #959595;
}
.form-field__select:not(:required:invalid) {
    color: #000;
}

.lead {
    padding: 0 0 30px;
    display: none;
}

.lead__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.lead-banner {
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 280px;
}

.lead-contact {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.lead-contact__icon {
    width: 40px;
    height: 40px;
}
.lead-contact__icon svg {
    width: 100%;
    height: 100%;
}

.lead-contact__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    text-align: left;
}
.lead-contact__info a {
    text-decoration: none;
}

.footer {
    padding-bottom: 10px;
}

.footer__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.footer__wrap {
    padding: 20px;
    color: #fff;
    background-color: #302623;
    border-radius: 24px;
}

.footer__nav {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__contacts {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__info {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 16px;
    row-gap: 16px;
    padding-top: 40px;
}

.footer-nav {
    width: 100%;
    column-count: 2;
}

.footer-nav__item {
    display: inline-flex;
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
}

.footer-nav__link {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
    text-decoration: none;
}

.footer-contacts__title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.footer-contacts__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.footer-contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
}
.footer-contacts__item p {
    padding-top: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.footer-contacts__item a {
    text-decoration: none;
}

.footer-contacts__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
.footer-contacts__icon svg {
    width: 100%;
    height: 100%;
}
.footer-contacts__icon svg path {
    stroke: #FF6624;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info__logo {
    width: 155px;
}

.footer-info__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer-info__btn {
    padding-top: 8px;
}

.social {
    display: flex;
    gap: 20px;
}

.social__item {
    flex-shrink: 0;
    list-style: none;
}

.social__link {
    display: block;
    width: 32px;
    height: 32px;
}
.social__link svg {
    width: 100%;
    height: 100%;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    opacity: 0.6;
}
.copyright a {
    text-decoration: none;
}

.page-header__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.page-header__card {
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header__card-wrap {
    padding: 45px 0;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.3);
}

.page-header__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.page-header__breadcrumbs {
    margin: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 20px;
}
.breadcrumbs li {
    display: flex;
}
.breadcrumbs li:last-child:after {
    content: normal;
}
.breadcrumbs li a,
.breadcrumbs li span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-decoration: none;
}
.breadcrumbs li a {
    color: #FF6624;
}
.breadcrumbs li:after {
    content: "";
    display: block;
    width: 17px;
    height: 12px;
    margin-left: 20px;
    background-image: url("images/icons/icon-breadcrumbs-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.status {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #FF6624;
}

.substrat {
    position: fixed;
    z-index: 900;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.2;
}

.no-scroll {
    overflow-y: hidden;
}

.popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 44px 40px;
    background-color: #fff;
    border-radius: 24px;
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
    min-height: 583px;
}
.popup.open {
    opacity: 1;
    user-select: all;
    visibility: visible;
}

.popup__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 20px;
    user-select: none;
}

.popup__close {
    display: none;
    cursor: pointer;
}

.intro {
    padding: 25px 0 10px;
}

.intro__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.intro-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border: 1px solid #DFD7CF;
    border-radius: 24px;
}

.intro-info__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}

.intro-info__desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #505050;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-info__btn {
    margin-top: 30px;
}
.intro-info__btn a {
    font-size: 16px;
    line-height: 26px;
    padding: 12px 40px;
}

.advantages__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.advantages__title {
    position: fixed;
    transform: scale(0);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantages-list__item {
    list-style: none;
}

.advantages-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    border-radius: 24px;
    background-color: #fff;
}

.advantages-card__icon {
    flex-shrink: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
}
.advantages-card__icon img {
    width: 100%;
    height: 100%;
}

.advantages-card__title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}
.advantages-card__title--br br {
    display: none;
}

.amenities {
    padding: 25px 0 30px;
}

.amenities__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.amenities__title {
    position: fixed;
    transform: scale(0);
}

.amenities-list__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.amenities-card {
    padding: 30px 15px 22px;
    border-radius: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.amenities-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}

.amenities-info__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.amenities-info__icon img {
    width: 100%;
    height: 100%;
}
.amenities-info__icon svg {
    width: 100%;
    height: 100%;
    fill: #FF6624;
}

.amenities-info__icon--stroke svg {
    width: 100%;
    height: 100%;
    stroke: #FF6624;
    fill: none;
}

.amenities-info__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
}

.amenities-info__desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #505050;
    padding-right: 8px;
}

.amenities-info__btn {
    display: none;
}

.amenities-table__table {
    width: 100%;
}

.amenities-table__row {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 5px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.amenities-table__row:last-child {
    padding-bottom: 0;
}

.amenities-table__cell {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.amenities-table__cell span {
    font-weight: 500;
    font-size: 10px;
    line-height: 150%;
    color: #505050;
}
.amenities-table__cell--value {
    font-weight: 700;
    text-align: right;
    color: #FF6624;
}

.gallery {
    padding: 25px 0 30px;
}

.gallery__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.gallery__title {
    position: fixed;
    transform: scale(0);
}

.gallery__btn {
    margin: 30px 0 0;
    text-align: center;
}
.gallery__btn button {
    padding-inline: 40px;
}

.gallery-list__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}

.gallery-list__slide.nextstop ~ .gallery-list__slide {
    display: none;
}

.gallery-slide {
    width: 100%;
    position: relative;
    display: block;
}

.gallery-slide__pic {
    border-radius: 16px;
    width: 100%;
}

.f-button {
    color: #FF6624;
}

.is-next, .is-prev {
    background-color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8333 10L4.16664 10' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.8333 10L10.8333 5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.8333 10L10.8333 15' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}
.is-next svg, .is-prev svg {
    display: none;
}

.is-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_172_2389)'%3E%3Cpath d='M4.16669 10L15.8334 10' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.16669 10L9.16669 15' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.16669 10L9.16669 5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_172_2389'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.contacts {
    padding: 30px 0 15px;
}

.contacts__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.contacts__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    max-width: 326px;
    margin: 0 auto;
}

.contacts__list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__map {
    margin-top: 10px;
}

.contacts-item {
    border-radius: 24px;
    background-color: #fff;
    display: flex;
    padding: 20px 15px;
    gap: 10px;
}

.contacts-item__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.contacts-item__icon img {
    width: 100%;
    height: 100%;
}

.contacts-item__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
}

.contacts-item__desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #505050;
    margin-top: 10px;
}
.contacts-item__desc a {
    text-decoration: none;
}

.map {
    width: 100%;
    height: 320px;
    border-radius: 24px;
}
.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.call {
    padding: 15px 0 30px;
}

.call__inner {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.call__wrapper {
    display: grid;
    gap: 10px;
}

.promo__link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
}

@media (min-width: 360px){
    .services-info__title {
        padding: 0 40px;
    }
    .services-info__desc {
        padding: 0 40px;
    }
    .services-info__banner {
        padding-left: 40px;
    }
    .services-card__title {
        font-size: 18px;
        line-height: 20px;
    }
    .about-main__fade {
        padding: 230px 40px 40px;
    }
    .contacts-card {
        padding: 30px;
    }
    .contacts-card__icon {
        width: 40px;
        height: 40px;
    }
    .request {
        padding: 30px 30px 40px;
    }
    .footer__wrap {
        padding: 30px;
    }
    .intro-info {
        padding: 40px;
    }
    .advantages-card__title {
        font-size: 18px;
        line-height: 20px;
    }
    .amenities-table__row {
        gap: 25px;
    }
}

@media (min-width: 430px){
    .services-card {
        gap: 15px;
        padding: 30px;
    }
    .services-card__icon {
        width: 60px;
        height: 60px;
    }
    .services-card__title {
        font-size: 20px;
        line-height: 22px;
    }
    .contacts-card {
        padding: 40px;
    }
    .contacts-card__item {
        gap: 20px;
    }
    .footer__wrap {
        padding: 40px;
    }
    .footer-contacts__item {
        gap: 20px;
    }
    .advantages-card {
        gap: 20px;
        padding: 30px;
    }
    .advantages-card__icon {
        width: 60px;
        height: 60px;
        padding: 5px;
        margin-right: 0;
    }
    .advantages-card__title {
        font-size: 20px;
        line-height: 22px;
    }
    .amenities-card {
        padding: 30px 30px 22px;
    }
    .amenities-table__row {
        gap: 40px;
    }
    .contacts-item {
        padding: 30px;
        gap: 30px;
    }
}

@media (min-width: 670px){
    .promo-slide__title {
        max-width: 66%;
    }
    .about-main__title {
        max-width: 435px;
        font-weight: 600;
        font-size: 24px;
    }
    .about-list__list {
        grid-template-columns: 1fr 1fr;
    }
    .page-slider {
        padding: 60px 0;
    }
    .page-slider__photo-wrap {
        height: 300px;
    }
    .lead-banner {
        min-height: 400px;
    }
    .intro-info {
        flex-direction: row;
    }
    .amenities-list__list {
        gap: 20px;
    }
    .amenities-card {
        display: grid;
        grid-template-columns: 1fr;
    }
    .amenities-card__btn {
        display: none;
    }
    .amenities-info__desc {
        padding-right: calc(100% - 700px);
    }
    .amenities-info__btn {
        display: block;
        margin-top: 10px;
    }
    .amenities-table__row {
        grid-template-columns: 1fr 200px;
        gap: 0;
    }
    .amenities-table__row:last-child {
        padding-bottom: 15px;
    }
}

@media (min-width: 960px){
    .services-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .services-list__item {
        width: calc(50% - 10px);
    }
    .services-card {
        height: 100%;
    }
    .page-slider {
        padding: 80px 0;
    }
    .page-slider__slider-item {
        padding: 0 5px;
    }
    .page-slider__photo-wrap {
        height: 400px;
    }
    .contacts-block__wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .contacts-block__contacts {
        order: 2;
    }
    .contacts-block__form {
        order: 1;
    }
    .contacts-block__form .request {
        height: 100%;
    }
    .contacts-card {
        padding: 30px 40px 40px;
        height: 100%;
    }
    .contacts-card__desc {
        font-size: 18px;
        line-height: 150%;
        margin-top: 40px;
    }
    .footer__main {
        display: flex;
        flex-wrap: wrap;
    }
    .footer__nav {
        order: 2;
        width: 50%;
    }
    .footer__contacts {
        order: 3;
        width: 100%;
    }
    .footer__info {
        order: 1;
        width: 50%;
        padding-top: 0;
    }
    .advantages-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .advantages-card {
        height: 100%;
    }
    .amenities-table__cell {
        font-size: 16px;
        line-height: 24px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .amenities-table__cell span {
        font-size: 16px;
    }
    .amenities-table__cell--value {
        justify-content: end;
    }
    .contacts__title {
        max-width: 370px;
    }
    .contacts__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .contacts-item {
        flex-direction: column;
    }
    .map {
        height: 380px;
    }
    .call__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px){
    .header {
        padding-top: 20px;
    }
    .header__inner {
        padding: 0 20px;
    }
    .header__wrap {
        padding: 36px 30px 36px 40px;
        z-index: auto;
    }
    .header__logo {
        width: 190px;
    }
    .header__nav {
        display: block;
    }
    .main-nav {
        position: static;
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 0;
        visibility: visible;
        opacity: 1;
    }
    .main-nav__list {
        display: flex;
        gap: 10px;
    }
    .main-nav__item {
        border: none;
    }
    .main-nav__item .active {
        color: #FF6624;
        background-color: #f5f3f1;
    }
    .main-nav__link {
        padding: 11px 20px;
        font-size: 16px;
        line-height: 28px;
        border-radius: 16px;
        transition: all 0.3s ease;
        user-select: unset;
    }
    .main-nav__link:hover {
        color: #FF6624;
        background-color: #f5f3f1;
    }
    .main-nav__link:after {
        content: normal;
    }
    .header-controls {
        gap: 30px;
        padding-left: 40px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header-controls__contacts {
        display: block;
    }
    .header-controls__btn-contact {
        display: block;
    }
    .header-controls__phone-btn {
        display: none;
    }
    .header-controls__burger {
        display: none;
    }
    .header-contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .header-contacts__phone {
        font-size: 16px;
        font-weight: 600;
        line-height: 26px;
        color: #FF6624;
        text-decoration: none;
    }
    .header-contacts__mail {
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        color: #FF6624;
        text-decoration: none;
    }
    .promo {
        padding: 0 20px;
    }
    .promo__slider .slick-dots {
        bottom: 30px;
    }
    .promo__slider-btn {
        position: absolute;
        bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #fff;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    .promo__slider-btn svg {
        stroke: #000;
        transition: all 0.3s ease;
    }
    .promo__slider-btn:hover {
        background-color: #FF6624;
    }
    .promo__slider-btn:hover svg {
        stroke: #fff;
    }
    .promo__slider-btn.slick-disabled {
        opacity: 0;
        pointer-events: none;
    }
    .promo__slider-prev svg {
        transform: rotate(180deg);
    }
    .promo-slide__fade {
        min-height: 500px;
        align-items: unset;
        padding-left: 87px;
        background-color: rgba(0, 0, 0, 0.2);
    }
    .promo-slide__label {
        font-size: 20px;
        line-height: 22px;
        width: fit-content;
    }
    .promo-slide__label + .promo-slide__title {
        margin-top: 10px;
    }
    .promo-slide__title {
        font-size: 48px;
        line-height: 53px;
        text-align: left;
        max-width: 619px;
    }
    .promo-slide__btn {
        margin-top: 5px;
        margin-top: 46px;
        z-index: 1000;
    }
    .btn {
        padding: 12px 40px;
        font-size: 16px;
        line-height: 26px;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    .btn:hover {
        background-color: #fff;
        color: #FF6624;
        border-color: #FF6624;
    }
    .services {
        padding-top: 55px;
        padding-bottom: 50px;
    }
    .services__inner {
        padding: 0 20px;
    }
    .services__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .services-info {
        padding-top: 80px;
    }
    .services-info__title {
        font-weight: 600;
        font-size: 36px;
        line-height: 110%;
        padding: 0 80px;
    }
    .services-info__desc {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        padding: 0 80px;
        margin-top: 50px;
    }
    .services-info__btn {
        display: block;
        margin-top: 40px;
        margin-left: 80px;
    }
    .services-info__banner {
        margin-top: 80px;
        padding-left: 80px;
        height: 270px;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .services-info__banner strong {
        font-weight: 800;
        font-size: 156px;
        line-height: 110%;
    }
    .services-info__banner p {
        font-weight: 600;
        font-size: 26px;
        line-height: 100%;
        margin-top: 40px;
    }
    .services-card {
        position: relative;
        flex-direction: column;
        gap: 30px;
        min-height: 350px;
        padding: 40px;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0);
        background-image: linear-gradient(180deg, #FFFFFF 49.5%, rgba(237, 241, 255, 0) 100%);
        transition: all 0.3s ease;
    }
    .services-card:hover {
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.07);
        background-image: linear-gradient(180deg, #fff 49.5%, #ffede5 100%);
    }
    .services-card:hover .services-card__icon {
        background-color: #FF6624;
    }
    .services-card:hover .services-card__icon svg {
        fill: #fff;
    }
    .services-card:hover .services-card__icon--stroke svg {
        fill: none;
        stroke: #fff;
    }
    .services-card:hover .services-card__title {
        color: #FF6624;
    }
    .services-card:hover .services-card__more {
        color: #FF6624;
    }
    .services-card:hover .services-card__arrow {
        background-color: #FF6624;
    }
    .services-card:hover .services-card__arrow svg {
        stroke: #fff;
    }
    .services-card__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    .services-card__icon svg {
        width: 60px;
        height: 60px;
        transition: all 0.3s ease;
    }
    .services-card__text {
        display: flex;
        flex-direction: column;
    }
    .services-card__title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 27px;
        transition: all 0.3s ease;
    }
    .services-card__more {
        margin-top: auto;
        font-size: 16px;
        line-height: 50px;
        transition: all 0.3s ease;
    }
    .services-card__arrow {
        position: absolute;
        right: 40px;
        bottom: 40px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s;
    }
    .services-card__arrow svg {
        transition: all 0.3s;
    }
    .about-main {
        padding: 50px 0;
    }
    .about-main__inner {
        padding: 0 20px;
    }
    .about-main__wrapper {
        background-position: center;
    }
    .about-main__fade {
        padding: 317px 80px 60px;
    }
    .about-main__title {
        font-size: 48px;
        max-width: 890px;
    }
    .about-list {
        padding-top: 60px;
        margin-top: 60px;
    }
    .about-list__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .about-item {
        gap: 20px;
    }
    .about-item__icon {
        width: 60px;
        height: 60px;
    }
    .about-item__desc {
        font-size: 24px;
    }
    .page-slider {
        padding: 100px 0 50px;
    }
    .page-slider__inner {
        padding: 0 20px;
    }
    .page-slider__photo-wrap {
        height: 500px;
    }
    .page-slider__btn {
        top: calc(50% - 25px);
        width: 50px;
        height: 50px;
    }
    .page-slider__btn:hover {
        background-color: #FF6624;
    }
    .page-slider__btn:hover svg {
        stroke: #fff;
    }
    .page-slider__prev {
        left: 20px;
    }
    .page-slider__next {
        right: 20px;
    }
    .contacts-block {
        padding: 50px 0 100px;
    }
    .contacts-block__inner {
        padding: 0 20px;
    }
    .contacts-block__wrap {
        padding: 0 calc((100% - 1144px - 20px) / 2);
    }
    .contacts-card {
        padding: 60px 60px 81px 60px;
    }
    .contacts-card__title {
        font-weight: 600;
        font-size: 36px;
        line-height: 40px;
    }
    .contacts-card__list {
        margin-top: 50px;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }
    .contacts-card__item {
        gap: 10px;
        align-items: flex-end;
    }
    .contacts-card__icon {
        width: 24px;
        height: 24px;
    }
    .contacts-card__label {
        margin-left: -34px;
    }
    .contacts-card__text a:hover {
        color: #FF6624;
    }
    .contacts-card__text {
        font-size: 18px;
        line-height: 25px;
    }
    .contacts-card__text span {
        display: none;
    }
    .request {
        padding: 60px;
        height: 100%;
    }
    .request__title {
        font-size: 24px;
        line-height: 26px;
    }
    .request__confirm {
        font-size: 14px;
        line-height: 20px;
        max-width: 394px;
    }
    .request__confirm a {
        transition: all 0.3s ease;
    }
    .request__confirm a:hover {
        opacity: 0.5;
    }
    .form-request__btn {
        padding-inline: 48px;
    }
    .form-field__input {
        transition: all 0.3s ease;
        font-size: 16px;
        line-height: 26px;
        padding: 11px 20px;
    }
    .form-field__input:focus {
        border-color: #FF6624;
    }
    .form-field__select {
        transition: all 0.3s ease;
        font-size: 16px;
        line-height: 26px;
        padding: 11px 20px;
    }
    .form-field__select:focus {
        border-color: #FF6624;
    }
    .lead {
        padding-bottom: 100px;
        display: block;
    }
    .lead__inner {
        padding: 0 20px;
    }
    .lead-banner {
        height: 100%;
        order: 2;
    }
    .lead-contact__info a {
        font-size: 18px;
        line-height: 25px;
        transition: all 0.3s ease;
    }
    .lead-contact__info a:hover {
        opacity: 0.5;
    }
    .footer {
        padding-bottom: 20px;
    }
    .footer__inner {
        padding: 0 20px;
    }
    .footer__wrap {
        padding: 0;
    }
    .footer__main {
        flex-wrap: nowrap;
    }
    .footer__nav {
        width: calc(29.16% - 30px);
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .footer__contacts {
        width: 41.66%;
        padding-top: 60px;
        padding-bottom: 70px;
        padding-left: 60px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer__info {
        width: calc(29.16% + 30px);
        padding-left: 60px;
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .footer__bottom {
        align-items: center;
        padding: 30px 60px;
    }
    .footer-nav {
        column-count: initial;
    }
    .footer-nav__link {
        font-size: 18px;
        line-height: 20px;
        transition: all 0.3s ease;
    }
    .footer-nav__link:hover {
        opacity: 0.5;
    }
    .footer-contacts__title {
        font-size: 18px;
        line-height: 20px;
    }
    .footer-contacts__list {
        gap: 28px;
    }
    .footer-contacts__item p {
        font-size: 16px;
        line-height: 22px;
    }
    .footer-contacts__item a {
        transition: all 0.3s ease;
    }
    .footer-contacts__item a:hover {
        opacity: 0.5;
    }
    .footer-info {
        gap: 36px;
    }
    .footer-info__logo {
        width: 190px;
    }
    .footer-info__text {
        font-size: 16px;
        line-height: 22px;
    }
    .social__link {
        transition: all 0.3s ease;
    }
    .social__link:hover {
        opacity: 0.5;
    }
    .copyright {
        flex-direction: row;
        gap: 40px;
        font-size: 14px;
        line-height: 20px;
    }
    .copyright a {
        transition: all 0.3s ease;
    }
    .copyright a:hover {
        opacity: 0.5;
    }
    .page-header__inner {
        padding: 0 20px;
    }
    .page-header__card-wrap {
        padding: 130px 0;
    }
    .page-header__title {
        font-size: 48px;
        line-height: 50px;
    }
    .page-header__breadcrumbs {
        margin: 25px 0;
    }
    .breadcrumbs li a,
    .breadcrumbs li span {
        font-size: 14px;
        font-weight: 500;
        line-height: 15px;
    }
    .breadcrumbs li:after {
        height: 15px;
    }
    .popup {
        position: fixed;
        width: 50%;
        left: 50%;
        z-index: 999;
        top: 50%;
        max-width: 700px;
        transform: translate(-50%, -50%);
    }
    .popup__close {
        position: absolute;
        right: 0;
        top: -70px;
        right: 0;
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background-color: #FF6624;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .intro {
        padding: 40px 0 20px;
    }
    .intro__inner {
        padding: 0 20px;
    }
    .intro-info {
        padding: 80px 180px 80px 80px;
        justify-content: space-between;
    }
    .intro-info__title {
        font-size: 36px;
        line-height: 40px;
        max-width: 520px;
    }
    .intro-info__desc {
        font-size: 18px;
        line-height: 27px;
        gap: 30px;
        max-width: 512px;
        flex-shrink: 0;
    }
    .intro-info__btn {
        margin-top: 50px;
    }
    .advantages__inner {
        padding: 0 20px;
    }
    .advantages-card {
        position: relative;
        gap: 20px;
        padding: 40px 40px 40px 40px;
        min-height: 140px;
    }
    .advantages-card__icon {
        padding: 0;
    }
    .advantages-card__title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 0;
        width: fit-content;
    }
    .advantages-card__title--br br {
        display: block;
    }
    .amenities {
        padding: 40px 0 100px;
    }
    .amenities__inner {
        padding: 0 20px;
    }
    .amenities-card {
        padding: 40px;
        gap: 40px;
    }
    .amenities-info {
        gap: 0;
    }
    .amenities-info__icon {
        width: 80px;
        padding: 10px;
        height: 80px;
        margin-right: 40px;
    }
    .amenities-info__title {
        font-weight: 500;
        font-size: 36px;
        line-height: 40px;
    }
    .amenities-info__title br {
        display: none;
    }
    .amenities-info__desc {
        font-size: 18px;
        line-height: 27px;
        padding-right: calc(100% - 876px);
        padding-left: 120px;
        margin-top: 10px;
    }
    .amenities-info__btn {
        margin-left: 120px;
        margin-top: 50px;
    }
    .amenities-table__table {
        padding-left: 120px;
    }
    .amenities-table__row {
        padding: 17px 0;
        grid-template-columns: 1fr 308px;
    }
    .amenities-table__cell {
        font-size: 18px;
        line-height: 27px;
    }
    .amenities-table__cell span {
        font-size: 18px;
    }
    .gallery {
        padding: 40px 0 100px;
    }
    .gallery__inner {
        padding: 0 20px;
    }
    .gallery__btn {
        margin-top: 40px;
    }
    .gallery-list__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .gallery-slide::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .gallery-slide::before {
        content: "";
        width: 50px;
        height: 50px;
        background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='50' height='50' rx='16' fill='%23FF6624'/%3E%3Cg clip-path='url(%23clip0_238_2203)'%3E%3Cpath d='M25 18V32' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 25H32' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_238_2203'%3E%3Crect width='24' height='24' fill='white' transform='translate(13 13)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 2;
    }
    .gallery-slide:hover::after {
        opacity: 0.2;
        visibility: visible;
    }
    .gallery-slide:hover::before {
        opacity: 1;
        visibility: visible;
    }
    .gallery-slide__pic {
        border-radius: 24px;
    }
    .is-next, .is-prev {
        width: 50px;
        height: 50px;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12L5 12' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 12L13 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 12L13 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .is-next:hover, .is-prev:hover {
        background-color: #FF6624 !important;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12L5 12' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 12L13 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 12L13 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .is-prev {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12L19 12' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L11 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L11 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .is-prev:hover {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12L19 12' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L11 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L11 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .contacts {
        padding: 40px 0 50px;
    }
    .contacts__inner {
        padding: 0 20px;
    }
    .contacts__title {
        font-size: 36px;
        line-height: 40px;
        max-width: 734px;
    }
    .contacts__list {
        margin-top: 100px;
        gap: 20px;
    }
    .contacts__map {
        margin-top: 20px;
    }
    .contacts-item {
        padding: 40px 40px 53px;
        gap: 30px;
    }
    .contacts-item__icon {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    .contacts-item__title {
        font-size: 24px;
        line-height: 26px;
    }
    .contacts-item__desc {
        font-size: 18px;
        line-height: 27px;
        margin-top: 40px;
    }
    .contacts-item__desc a {
        transition: all 0.3s ease;
    }
    .contacts-item__desc a:hover {
        opacity: 0.5;
    }
    .call {
        padding: 50px 0 100px;
    }
    .call__inner {
        padding: 0 20px;
    }
    .call__wrapper {
        gap: 20px;
        grid-template-columns: 572px 1fr;
    }
}

@media (min-width: 1400px){
    .about-list__list {
        gap: 80px;
    }
}

@media (hover: hover){
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg);
    }
}

.bx-404-container{
    max-width: 1360px;
    margin: 0 auto;
    padding: 60px 20px;
    height: 35vh;
}
.bx-404-container div{
    font-size: 24px;
    color: #000;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.bx-404-container a{
    font-weight: 600;
    text-decoration: underline;
}
.bx-404-text-block{
    margin: 10px 0;
}
@media (max-width: 750px) {
    .bx-404-container div{
        font-size: 16px;
        color: #000;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
    .bx-404-container a{
        font-weight: 600;
        text-decoration: underline;
    }
}
.footer__swebs a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    opacity: 0.6;
}

.footer__swebs svg {
    width: 40px;
    /*margin-left: 5px;*/
}


@media (min-width: 1280px) {
    .footer__swebs a {
        font-size: 14px;
        line-height: 20px;
    }
}