

/* Start:/local/templates/main/css/style.css?1786460776178771*/
: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.2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, 0.2s) 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.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    animation: var(--f-transition-duration, 0.2s) 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.2s) ease-out both f-fadeFastIn;
    z-index: 2
}

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

@keyframes f-fadeFastIn {
    0% {
        opacity: .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.2s) ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, 0.2s) * .5) linear .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)
}

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

.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 .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__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-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
    visibility: hidden
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
    filter: blur(0px);
    will-change: transform, width, height
}

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

.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: .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 .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, .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: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .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 .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, .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 .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path .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 .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 .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 .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: .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: .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
}

@charset "UTF-8";
@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/Montserrat-Bold.woff2") format("woff2"), url("/local/templates/main/css/../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/Montserrat-Medium.woff2") format("woff2"), url("/local/templates/main/css/../fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/local/templates/main/css/../fonts/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: RFDewiExpanded;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/RFDewiExpanded-Black.woff2") format("woff2"), url("/local/templates/main/css/../fonts/RFDewiExpanded-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/Montserrat-Regular.woff2") format("woff2"), url("/local/templates/main/css/../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: RFDewiExtended;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/RFDewiExtended-Regular.woff2") format("woff2"), url("/local/templates/main/css/../fonts/RFDewiExtended-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: RFDewiExtended;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/RFDewiExtended-Light.woff2") format("woff2"), url("/local/templates/main/css/../fonts/RFDewiExtended-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: RFDewiExtended;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/RFDewiExtended-Semibold.woff2") format("woff2"), url("/local/templates/main/css/../fonts/RFDewiExtended-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: RFDewiExtended;
    font-display: swap;
    src: url("/local/templates/main/css/../fonts/RFDewiExtended-Bold.woff2") format("woff2"), url("/local/templates/main/css/../fonts/RFDewiExtended-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

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

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

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

@media (max-width: 1740px) {
    html {
        font-size: 0.9375rem;
    }
}

@media (max-width: 1600px) {
    html {
        font-size: 0.875rem;
    }
}

@media (max-width: 1400px) {
    html {
        font-size: 0.75rem;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 0.625rem;
    }
}

@media (max-width: 61.99875em) {
    html {
        font-size: 0.75rem;
    }
}

body {
    color: #333333;
    line-height: 1.9;
    font-family: RFDewiExtended, sans-serif;
    font-size: 1.125rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

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

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

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

a:hover {
    text-decoration: none;
    transition: 0.25s;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

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

.font-rf {
    font-family: RFDewiExtended;
}

.size-160 {
    font-size: 10rem;
}

@media (max-width: 991px) {
    .size-160 {
        font-size: 80px;
    }
}

.size-100 {
    font-size: 6.25rem;
}

@media (max-width: 991px) {
    .size-100 {
        font-size: 60px;
    }
}

.size-74 {
    font-size: 4.625rem;
}

@media (max-width: 991px) {
    .size-74 {
        font-size: 28px;
    }
}

.size-54 {
    font-size: 3.375rem;
}

@media (max-width: 991px) {
    .size-54 {
        font-size: 28px;
    }
}

.size-50 {
    font-size: 3.125rem;
}

@media (max-width: 991px) {
    .size-50 {
        font-size: 28px;
    }
}

.size-40 {
    font-size: 2.5rem;
}

.size-34 {
    font-size: 2.125rem;
}

@media (max-width: 991px) {
    .size-34 {
        font-size: 18px;
    }
}

.size-30 {
    font-size: 1.875rem;
}

@media (max-width: 991px) {
    .size-30 {
        font-size: 20px;
    }
}

.size-24 {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .size-24 {
        font-size: 14px;
    }
}

.size-20 {
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .size-20 {
        font-size: 12px;
    }
}

.size-16 {
    font-size: 1rem;
}

.size-14 {
    font-size: 0.875rem;
}

.size-13 {
    font-size: 0.8125rem;
}

.size-12 {
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .size-18-mobile {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .size-12-mobile {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .size-10-mobile {
        font-size: 10px;
    }
}

.mt-160 {
    margin-top: 10rem;
}

@media (max-width: 991px) {
    .mt-160 {
        margin-top: 40px;
    }
}

.mb-100 {
    margin-bottom: 6.25rem;
}

@media (max-width: 991px) {
    .mb-100 {
        margin-bottom: 40px;
    }
}

.mb-88 {
    margin-bottom: 5.5rem;
}

@media (max-width: 991px) {
    .mb-88 {
        margin-bottom: 44px;
    }
}

.mb-80 {
    margin-bottom: 5rem;
}

@media (max-width: 991px) {
    .mb-80 {
        margin-bottom: 40px;
    }
}

.mb-60 {
    margin-bottom: 3.75rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .mb-40 {
        margin-bottom: 20px;
    }
}

.mb-30 {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .mb-30 {
        margin-bottom: 15px;
    }
}

.mb-20 {
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .mb-20 {
        margin-bottom: 10px;
    }
}

.mb-10 {
    margin-bottom: 0.625rem;
}

@media (max-width: 991px) {
    .mb-10 {
        margin-bottom: 6px;
    }
}

.pt-240 {
    padding-top: 15rem;
}

@media (max-width: 991px) {
    .pt-240 {
        padding-top: 40px;
    }
}

.pt-160 {
    padding-top: 10rem;
}

@media (max-width: 991px) {
    .pt-160 {
        padding-top: 40px;
    }
}

.pt-120 {
    padding-top: 7.5rem;
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 40px;
    }
}

.pt-0 {
    padding-top: 0;
}

.pb-280 {
    padding-bottom: 17.5rem;
}

@media (max-width: 991px) {
    .pb-280 {
        padding-bottom: 80px;
    }
}

.pb-160 {
    padding-bottom: 10rem;
}

@media (max-width: 991px) {
    .pb-160 {
        padding-bottom: 40px;
    }
}

.pb-0 {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .pb-40-mobile {
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .no-br-mobile br {
        display: none;
    }
}

@media (max-width: 991px) {
    .pt-0-mobile {
        padding-top: 0;
    }
}

.color-red {
    color: #E5252D;
}

.color-black-50 {
    color: rgba(47, 49, 51, 0.5);
}

.color-black-75 {
    color: rgba(47, 49, 51, 0.75);
}

.fw-900 {
    font-weight: 900;
}

.fw-700 {
    font-weight: 700;
}

.fw-500 {
    font-weight: 500;
}

.fw-300 {
    font-weight: 300;
}

.line-h-1 {
    line-height: 1;
}

.line-h-1-1 {
    line-height: 1.1;
}

.line-h-1-2 {
    line-height: 1.2;
}

.line-h-1-3 {
    line-height: 1.3;
}

.line-h-1-4 {
    line-height: 1.4;
}

.section {
    font-family: Montserrat;
}

.section_gray {
    background: #F7F7F7;
}

.text-uppercase {
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .text-center-mobile {
        text-align: center;
    }
}

.page-line {
    background: #E5252D;
    height: 3px;
    width: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .page-line {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 991px) {
    .section_gray-mobile {
        background: #FAF7F5;
        margin: 40px 0;
    }
}

.letter-2 {
    letter-spacing: 2px;
}

body::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: #333333;
}

body::-webkit-scrollbar-thumb {
    background: #E5252D;
}

.lock body {
    overflow: hidden;
    touch-action: none;
}

.wrapper {
    min-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper > main {
    flex: 1 1 auto;
    overflow: hidden;
}

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

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
.container {
    padding: 0 5rem;
    max-width: calc(120rem - 5rem);
    box-sizing: border-box;
    margin: 0 auto;
}

@media (max-width: 1150px) {
    .container {
        padding: 0 20px;
    }
}

:root {
    --color-black: $ black;
    --color-black2: $ black-2;
    --color-black3: $ black-3;
    --color-black4: $ black-4;
    --color-gray: $ gray;
    --color-gray2: $ gray-2;
    --color-gray3: $ gray-3;
    --color-gray4: $ gray-4;
    --color-white: $ white;
    --color-red: $ red;
    --color-red2: $ red-2;
}

.icon::before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    background: #FFFFFF;
    transition: 0.25s;
}

.form-item {
    width: 100%;
}

.form-item.error input {
    border-bottom: 1px solid red;
}

.error-text {
    font-size: 12px;
    color: red;
    margin-top: 4px;
}

.agreed-message {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.25rem;
}

.agreed-message a {
    text-decoration: underline;
}

.agreed-message a:hover {
    color: white;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5252D;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    height: 3.75rem;
    text-transform: uppercase;
    padding: 0 2.5rem;
}

.button:hover {
    background: #CC2128;
}

@media (max-width: 47.99875em) {
    .button {
        width: 100%;
        height: 44px;
    }
}

.button[disabled] {
    background: rgba(229, 37, 45, 0.5);
}

.button[disabled]:before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    z-index: 2;
    border: 0.125rem solid red;
    border-top: 0.125rem solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.button-white {
    background: #FFFFFF;
    color: #333333;
}

.button-white:hover {
    background: rgba(255, 255, 255, 0.7);
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input {
    border-radius: 0 !important;
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    height: 3.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.875rem;
    outline: none;
    color: white;
    font-family: Montserrat;
    font-weight: 500;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    transition: 0.25s;
}

.form-input:focus {
    border-bottom: 1px solid #FFFFFF;
}

.form-input:focus::placeholder {
    opacity: 0;
}

@media (max-width: 1400px) {
    .form-input {
        height: 3.375rem;
    }
}

@media (max-width: 47.99875em) {
    .form-input {
        text-align: center;
        height: 3.25rem;
        margin-bottom: 1.5rem;
    }
}

textarea.form-input {
    resize: none;
    padding: 0px 0px;
    height: 7.5rem;
    color: #333333;
    text-align: left !important;
}

textarea.form-input::placeholder {
    color: #333333 !important;
}

@media (max-width: 61.99875em) {
    textarea.form-input {
        height: 50px;
    }
}

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

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

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

.popup .form-input {
    border-bottom: 1px solid #333333;
    color: black;
}

.popup .form-input::placeholder {
    color: rgba(51, 51, 51, 0.3);
}

.popup .form-item {
    margin-bottom: 1.25rem;
}

.popup .agreed-message {
    color: #333333;
    margin-top: 1.5625rem;
}

.popup .agreed-message a:hover {
    color: #E5252D;
}

@media (max-width: 61.99875em) {
    .popup .agreed-message br {
        display: none;
    }
}

.popup .button {
    min-width: 22.5rem;
}

.button-model {
    margin-top: 3.75rem;
}

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

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

.popup__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
}

.popup__content {
    visibility: hidden;
    transform: scale(0);
    transition: transform 0.3s ease 0s;
    background-color: #FFFFFF;
    padding: 6.25rem;
    width: 100%;
    max-width: 47.5rem;
}

.lock .popup__content {
    visibility: visible;
}

@media (max-width: 1400px) {
    .popup__content {
        padding: 40px 20px;
    }
}

.popup__close {
    outline: none;
    position: absolute;
    top: 5rem;
    right: 6.25rem;
    cursor: pointer;
}

.popup__close:before {
    transition: 0.25s;
    background: #333333;
}

.popup__close:hover:before {
    background: #E5252D;
}

@media (max-width: 61.99875em) {
    .popup__close {
        top: 20px;
        right: 20px;
    }
}

#modal-model .popup__close {
    top: 3.75rem;
    right: 3.75rem;
    background: transparent;
}

@media (max-width: 991px) {
    #modal-model .popup__close {
        top: 20px;
        right: 20px;
    }
}

#modal-model .check-main {
    border: 1px solid black;
}

#modal-model .popup__content {
    max-width: 100rem;
    height: 53.125rem;
    background: #EBE2DB url("/local/templates/main/css/../img/modal-bg.png") no-repeat right;
    background-size: cover;
}

@media (max-width: 1400px) {
    #modal-model .popup__content {
        height: 48.75rem;
    }
}

@media (max-width: 991px) {
    #modal-model .popup__content:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
    }
}

#modal-model .popup-model {
    position: relative;
    z-index: 1;
}

#modal-model .button {
    width: max-content;
}

#modal-model .popup__content {
    padding: 60px;
}

@media (max-width: 991px) {
    #modal-model .start-luxe-absolute {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    #modal-model .start-luxe-absolute .icon {
        margin: 0 5px;
        padding: 0;
        background: transparent;
    }

    #modal-model .start-luxe-absolute:before {
        content: "";
        width: calc(50% - 12px);
        height: 1px;
        background: black;
        bottom: auto;
        top: auto;
    }

    #modal-model .start-luxe-absolute:after {
        position: relative;
        width: calc(50% - 12px);
        bottom: auto;
        top: auto;
    }

    #modal-model .popup__content {
        padding: 40px;
    }

    #modal-model .button {
        width: 100%;
    }
}

.popup-title {
    font-size: 3.375rem;
    line-height: 4rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

@media (max-width: 61.99875em) {
    .popup-title {
        text-align: center;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 20px;
    }
}

.popup-content {
    margin-bottom: 3.75rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

@media (max-width: 61.99875em) {
    .popup-content {
        margin-bottom: 30px;
    }
}

.form-radio {
    display: flex;
    margin-bottom: 2.5rem;
}

@media (max-width: 61.99875em) {
    .form-radio {
        margin-bottom: 30px;
        justify-content: center;
    }
}

.form-radio__item {
    position: relative;
    margin-right: 1.25rem;
    cursor: pointer;
}

@media (max-width: 61.99875em) {
    .form-radio__item {
        margin-right: 0;
    }

    .form-radio__item:first-child {
        margin-right: 10px;
    }
}

.form-radio__item input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.form-radio__item input:checked + label {
    color: #333333;
}

.form-radio__item input:checked + label:before {
    opacity: 1;
}

.form-radio__item label {
    font-weight: 600;
    transition: 0.25s;
    color: rgba(51, 51, 51, 0.5);
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1.25rem;
    font-size: 0.875rem;
}

.form-radio__item label:before {
    transition: 0.25s;
    opacity: 0;
    border-bottom: 1px solid #E5252D;
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.6);
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}

@media (max-width: 61.99875em) {
    .form-radio__item label:before {
        bottom: -3px;
    }
}

@media (max-width: 61.99875em) {
    .form-radio__item label {
        font-size: 10px;
        line-height: 14px;
    }
}

#modal-get-production .popup-title {
    font-size: 1.875rem;
    line-height: 1.3;
}

@media (max-width: 61.99875em) {
    #modal-get-production .popup-title {
        font-size: 18px;
    }
}

@media (max-width: 61.99875em) {
    #modal-get-production p {
        text-align: center;
        line-height: 1.2;
    }
}

.popup-tel {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 61.99875em) {
    .popup-tel {
        font-size: 18px;
        display: flex;
        justify-content: center;
        margin: 10px auto 0;
    }
}

.popup-date {
    display: flex;
    margin-bottom: 1.875rem;
}

.popup-date .news-item__date {
    position: relative;
    color: white;
    background: #E5252D;
    left: 0;
    flex-shrink: 0;
    width: 6.625rem;
    height: 7.75rem;
}

.popup-date .news-item__date-day {
    font-size: 2.5rem;
    line-height: 1;
}

.popup-date .news-item__month {
    font-size: 0.625rem;
}

.popup-date__content {
    background: #FAF7F5;
    padding: 1.875rem;
}

@media (max-width: 61.99875em) {
    .popup-date__content {
        padding: 20px;
    }
}

.popup-date__title {
    font-size: 0.875rem;
    color: #E5252D;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.popup-date__description {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 61.99875em) {
    .popup-date__description {
        font-size: 10px;
    }
}

.form-line-flex {
    display: flex;
    justify-content: space-between;
}

.form-line-flex .form-item {
    width: calc(50% - 10px);
}

.mt-20 {
    margin-top: 1.25rem;
}

#modal-schema .popup__content {
    padding: 25px 20px 20px;
    background: rgb(247, 247, 247);
}

#modal-schema .popup__close {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    top: 20px;
    right: 20px;
    border-radius: 50%;
}

#modal-doctor .popup__content {
    background: #FAF7F5;
    padding: 0;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
    #modal-doctor .popup__content {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
}

#modal-doctor .popup__close {
    top: 60px;
    right: 60px;
    z-index: 2;
}

@media (max-width: 991px) {
    #modal-doctor .popup__close {
        top: 20px;
        right: 20px;
    }
}

#modal-doctor .popup-title {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    #modal-doctor .popup-title {
        text-align: left;
        font-size: 24px;
    }

    #modal-doctor .popup-title br {
        display: none;
    }
}

.popup-doctor-content {
    padding: 80px 100px;
}

@media (max-width: 1300px) {
    .popup-doctor-content {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .popup-doctor-content {
        padding: 20px;
    }
}

.popup-doctor-pic {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .popup-doctor-pic {
        position: relative;
    }

    .popup-doctor-pic:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, #FAF7F5, transparent);
    }
}

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

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

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

.about-project {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-end;
    margin-top: 7.75rem;
}

.about-project:before {
    content: "";
    background: #FAF7F5;
    width: 80%;
    position: absolute;
    left: -7.5rem;
    top: 0;
    height: 100%;
}

@media (max-width: 61.99875em) {
    .about-project:before {
        width: 200%;
        text-align: center;
    }
}

@media (max-width: 61.99875em) {
    .about-project {
        margin-top: 40px;
    }
}

.title-54 {
    font-weight: 700;
    font-size: 3.375rem;
    line-height: 4rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.title-54 span.red {
    color: #E5252D !important;
    font-weight: 700;
    display: inline;
}

.title-54 span {
    font-weight: 300;
}

@media (max-width: 1400px) {
    .title-54 {
        margin-bottom: 1.875rem;
    }
}

@media (max-width: 61.99875em) {
    .title-54 {
        text-align: center;
        font-size: 2.375rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
}

.title-40 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

@media (max-width: 1400px) {
    .title-40 {
        margin-bottom: 1.875rem;
    }
}

@media (max-width: 61.99875em) {
    .title-40 {
        text-align: center;
        font-size: 2.375rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
}

.line {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.line span {
    flex-shrink: 0;
    margin-right: 1.25rem;
}

@media (max-width: 1400px) {
    .line span {
        margin-right: 1rem;
    }
}

.line:after {
    content: "";
    width: 100%;
    height: 0.125rem;
    background: #333333;
}

@media (max-width: 1400px) {
    .line {
        margin-bottom: 1.875rem;
    }
}

@media (max-width: 61.99875em) {
    .line {
        margin-bottom: 1.5625rem;
    }
}

.about-project__content {
    flex-basis: 50%;
    padding: 7.5rem 5rem 10rem 0;
    position: relative;
    z-index: 1;
}

.about-project__content p {
    letter-spacing: 0.2px;
}

@media (max-width: 1400px) {
    .about-project__content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 61.99875em) {
    .about-project__content p {
        text-align: center;
    }
}

.about-project__content:before {
    content: "";
    mask: url("/local/templates/main/css/../img/icon/icon-quotes.svg") center center/contain no-repeat;
    -webkit-mask: url("/local/templates/main/css/../img/icon/icon-quotes.svg") center center/contain no-repeat;
    width: 8.3125rem;
    height: 8.125rem;
    background: #E5252D;
    position: absolute;
    left: 0;
    top: -5.5rem;
}

@media (max-width: 1400px) {
    .about-project__content:before {
        display: none;
    }
}

@media (max-width: 1400px) {
    .about-project__content {
        padding-top: 1.25rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 61.99875em) {
    .about-project__content {
        width: 100%;
        flex-basis: auto;
        padding: 40px 0;
    }
}

.about-project__person {
    flex-basis: 50%;
    position: relative;
    z-index: 1;
}

@media (max-width: 61.99875em) {
    .about-project__person {
        display: none;
    }
}

.about-project__pic {
    margin-top: -20.25rem;
    max-width: 100%;
}

.about-project__pic img {
    max-width: 45rem;
    margin-right: -12.5rem;
}

@media (max-width: 1470px) {
    .about-project__pic img {
        max-width: 40rem;
    }
}

@media (max-width: 1400px) {
    .about-project__pic img {
        margin-right: -2.5rem;
    }
}

@media (max-width: 1400px) {
    .about-project__pic {
        margin-top: -6.25rem;
        margin-bottom: -5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.about-project__info {
    position: relative;
    flex-basis: 50%;
    flex-shrink: 0;
}

.about-project__info:before {
    content: "";
    background: #FFFFFF;
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
}

.about-project__info-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0 5.625rem 5rem;
}

@media (max-width: 1400px) {
    .about-project__info-content {
        padding: 3.75rem 0 5rem 3.125rem;
    }
}

.about-project__info-description {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.28px;
    line-height: 1.6;
}

@media (max-width: 1400px) {
    .about-project__info-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-project__info-description br {
        display: none;
    }
}

.about-project__name {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.about-project__name span {
    color: #E5252D;
    margin-left: 1rem;
    font-weight: 400;
}

@media (max-width: 1400px) {
    .about-project__name {
        line-height: 1.4;
        font-size: 1.625rem;
    }
}

.location {
    margin-top: 10.25rem;
}

@media (max-width: 1400px) {
    .location {
        margin-top: 6.25rem;
    }
}

@media (max-width: 61.99875em) {
    .location {
        margin-top: 40px;
    }
}

.location-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 61.99875em) {
    .location-map {
        display: block;
    }

    .location-map img {
        max-width: 780px;
    }
}

.location-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding: 0 6.25rem;
}

@media (max-width: 1400px) {
    .location-head {
        margin-bottom: 1.875rem;
        padding: 0;
    }
}

@media (max-width: 61.99875em) {
    .location-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
}

.location-head__pic {
    display: flex;
    margin-top: -2.5rem;
    width: 34.125rem;
    margin-right: 0.9375rem;
}

@media (max-width: 1400px) {
    .location-head__pic {
        width: auto;
        max-width: 413px;
        margin-right: 0;
    }
}

@media (max-width: 61.99875em) {
    .location-head__pic {
        max-width: 188px;
        margin-top: 0px;
    }
}

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

.reviews {
    margin-top: 7.5rem;
}

@media (max-width: 1400px) {
    .reviews {
        margin-top: 6.25rem;
    }
}

@media (max-width: 61.99875em) {
    .reviews {
        margin-top: 40px;
    }
}

.swiper-reviews {
    padding: 0 14.375rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

@media (max-width: 1400px) {
    .swiper-reviews {
        margin-top: 3.75rem;
        padding: 0 11.25rem;
    }
}

@media (max-width: 61.99875em) {
    .swiper-reviews {
        padding: 0 40px;
        margin-top: 0;
    }
}

.swiper-arrow-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -2.5rem;
}

@media (max-width: 1150px) {
    .swiper-arrow-container {
        padding: 0 64px;
    }
}

@media (max-width: 61.99875em) {
    .swiper-arrow-container {
        display: none;
    }
}

.swiper-arrow {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(229, 37, 45, 0.3);
    cursor: pointer;
}

.swiper-arrow:before {
    position: relative;
    z-index: 1;
    width: 1rem;
    height: 1.25rem;
}

.swiper-arrow:after {
    position: absolute;
    background: #E5252D;
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    content: "";
    transition: 0.25s;
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.3);
}

.swiper-arrow:hover:after {
    width: 5rem;
    height: 5rem;
}

.swiper-arrow[aria-disabled=true] {
    pointer-events: none;
    border: 1px solid transparent;
}

.swiper-arrow[aria-disabled=true]:after {
    background: #F7F7F7;
}

.swiper-arrow[aria-disabled=true]:before {
    background: #333333;
}

.arrow-right {
    margin-right: -1.875rem;
}

@media (max-width: 1400px) {
    .arrow-right {
        margin-right: -25px;
    }
}

.arrow-left {
    margin-left: -1.875rem;
}

@media (max-width: 1400px) {
    .arrow-left {
        margin-left: -25px;
    }
}

.reviews-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FAF7F5;
    padding: 3.75rem;
}

@media (max-width: 1400px) {
    .reviews-slider {
        padding: 3.125rem;
    }
}

@media (max-width: 61.99875em) {
    .reviews-slider {
        padding: 20px;
    }
}

.reviews-slider__pic {
    width: 8.125rem;
    height: 8.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.875rem;
    border-radius: 50%;
    overflow: hidden;
}

.reviews-slider__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .reviews-slider__pic {
        width: 6.25rem;
        height: 6.25rem;
    }
}

@media (max-width: 61.99875em) {
    .reviews-slider__pic {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
}

.reviews-slider__name {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .reviews-slider__name {
        font-size: 1.625rem;
    }
}

@media (max-width: 61.99875em) {
    .reviews-slider__name {
        font-size: 14px;
        line-height: 18px;
    }
}

.reviews-slider__position {
    color: rgba(47, 49, 51, 0.75);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (max-width: 61.99875em) {
    .reviews-slider__position {
        font-size: 10px;
        line-height: 14px;
    }
}

.reviews-slider__text {
    margin-top: 3.75rem;
    position: relative;
}

.reviews-slider__text:before {
    content: "";
    background: #E5252D;
    position: absolute;
    width: 2.5rem;
    height: 0.125rem;
    top: -1.875rem;
    left: calc(50% - 1.25rem);
}

@media (max-width: 61.99875em) {
    .reviews-slider__text:before {
        top: -10px;
        width: 20px;
        height: 2px;
        left: calc(50% - 10px);
    }
}

@media (max-width: 1400px) {
    .reviews-slider__text {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
}

@media (max-width: 61.99875em) {
    .reviews-slider__text {
        font-size: 12px;
        line-height: 16px;
        margin-top: 20px;
    }
}

.title-line {
    position: relative;
}

.title-line:before {
    content: "";
    background: #E5252D;
    height: 3px;
    width: 2.5rem;
    position: absolute;
    bottom: -1.4375rem;
    left: calc(50% - 1.25rem);
}

@media (max-width: 1400px) {
    .title-line:before {
        bottom: -0.9375rem;
        height: 2px;
        width: 40px;
        left: calc(50% - 20px);
    }
}

@media (max-width: 61.99875em) {
    .title-line:before {
        width: 20px;
        left: calc(50% - 10px);
    }
}

.result {
    position: relative;
    padding-top: 6.25rem;
}

.result .container {
    position: relative;
    z-index: 1;
}

.result:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 29.625rem;
    background: #FAF7F5;
}

@media (max-width: 1800px) {
    .result:before {
        height: 28.375rem;
    }
}

@media (max-width: 1500px) {
    .result:before {
        height: 26.875rem;
    }
}

@media (max-width: 1400px) {
    .result:before {
        background: transparent;
    }
}

@media (max-width: 1400px) {
    .result {
        padding-top: 0;
    }
}

.swiper-result {
    position: relative;
    padding: 0 12.5rem;
    font-family: Montserrat;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-top: 5rem;
}

.swiper-result .swiper-arrow-container {
    top: calc(16.875rem - 2.5rem);
}

@media (max-width: 1800px) {
    .swiper-result .swiper-arrow-container {
        top: calc(15.625rem - 2.5rem);
    }
}

@media (max-width: 1500px) {
    .swiper-result .swiper-arrow-container {
        top: calc(14.375rem - 2.5rem);
    }
}

@media (max-width: 1400px) {
    .swiper-result .swiper-arrow-container {
        top: calc(17.5rem - 2.5rem);
    }
}

@media (max-width: 1200px) {
    .swiper-result .swiper-arrow-container {
        top: calc(18.75rem - 2.5rem);
    }
}

@media (max-width: 1400px) {
    .swiper-result {
        margin-top: 4.375rem;
        padding: 0 7.5rem;
    }
}

@media (max-width: 61.99875em) {
    .swiper-result {
        padding: 0 60px;
    }
}

.swiper-result.mt-0 {
    margin-top: 0;
}

.result-item__pic {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.result-item__pic img {
    height: auto;
}

.result-item__pic_schema {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.result-item__pic_schema img {
    position: relative;
    z-index: 1;
}

.result-item__pic_schema:before {
    content: "";
    background: #F7F7F7;
    width: 100%;
    height: 86%;
    border-radius: 50%;
    max-width: 465px;
    position: absolute;
}

.result-block {
    margin-top: 10rem;
}

@media (max-width: 1400px) {
    .result-block {
        margin-top: 80px;
    }
}

@media (max-width: 61.99875em) {
    .result-block {
        padding: 40px 0;
        background: #FAF7F5;
        margin-top: 26px;
    }
}

.result-item__title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 2.5rem;
    border-bottom: 1px solid #333333;
    padding: 0 2.5rem 1.25rem;
    line-height: 1.875rem;
}

@media (max-width: 1400px) {
    .result-item__title {
        font-size: 14px;
        margin-top: 20px;
        padding-bottom: 14px;
        line-height: 18px;
        padding-left: 0;
        padding-right: 0;
    }
}

.result-item__title.size-24 {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .result-item__title.size-24 {
        font-size: 14px;
    }
}

.result-item__name {
    margin-top: 1.25rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.result-item__name span {
    color: #E5252D;
}

@media (max-width: 1400px) {
    .result-item__name {
        font-size: 12px;
        margin-top: 14px;
    }
}

@media (max-width: 61.99875em) {
    .result-item__name {
        font-size: 14px;
    }
}

.result-item__description {
    margin-top: 0.625rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0 2.5rem;
    color: rgba(51, 51, 51, 0.5);
}

@media (max-width: 1400px) {
    .result-item__description {
        font-size: 10px;
        margin-top: 10px;
        padding: 0;
    }
}

@media (max-width: 61.99875em) {
    .result-item__description {
        font-size: 12px;
    }
}

.news-container {
    margin-top: 6.875rem;
}

@media (max-width: 1400px) {
    .news-container {
        margin-top: 72px;
    }
}

@media (max-width: 61.99875em) {
    .news-container {
        margin-top: 48px;
    }
}

.news-head {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.news-head .swiper-arrow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    width: 10.625rem;
    margin-top: 0;
}

@media (max-width: 1150px) {
    .news-head .swiper-arrow-container {
        padding: 0;
    }
}

@media (max-width: 47.99875em) {
    .news-head .swiper-arrow-container {
        display: none;
    }
}

.news-head .line {
    width: 100%;
    margin-bottom: 0;
}

.news-head .arrow-right {
    margin-left: 0.625rem;
}

@media (max-width: 1400px) {
    .news-head {
        margin-bottom: 4.375rem;
    }
}

@media (max-width: 47.99875em) {
    .news-head {
        margin-bottom: 40px;
    }
}

@media (max-width: 47.99875em) {
    .swiper-news {
        padding-right: 100px;
        margin-right: -20px;
    }
}

.news-item__pic {
    padding-bottom: 21.25rem;
    position: relative;
}

.news-item__pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .news-item__pic {
        padding-bottom: 23.125rem;
    }
}

@media (max-width: 47.99875em) {
    .news-item__pic {
        padding-bottom: 180px;
    }
}

.news-item {
    font-family: Montserrat;
}

@media (min-width: 47.99875em) {
    .news-item .button {
        margin-top: 0rem;
        padding: 0 2.5rem;
        transition: 0.25s;
        height: 0;
        overflow: hidden;
    }

    .news-item:hover .button {
        height: 3.75rem;
        margin-top: 1.25rem;
    }

    .news-item:hover .news-item__content {
        margin-top: -5rem;
    }

    .news-item:hover .news-item__date {
        transform: translateY(-5rem);
    }
}

@media (max-width: 47.99875em) {
    .news-item {
        height: 100%;
        position: relative;
        border-radius: 22px;
        overflow: hidden;
    }

    .news-item .news-item__content {
        position: initial;
    }

    .news-item .button {
        position: absolute;
        border-radius: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #E5252D !important;
        color: white !important;
    }

    .news-item.news-item-red .button {
        background: #CC2128 !important;
    }
}

.news-item__date {
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    bottom: 0;
    left: 2.5rem;
    transition: 0.25s;
}

@media (max-width: 1400px) {
    .news-item__date {
        left: 20px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 47.99875em) {
    .news-item__date {
        width: 62px;
        height: 70px;
    }
}

.news-item__date-day {
    font-weight: 500;
    font-size: 3.125rem;
    line-height: 3.75rem;
}

@media (max-width: 47.99875em) {
    .news-item__date-day {
        font-size: 34px;
        line-height: 38px;
    }
}

.news-item__month {
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 47.99875em) {
    .news-item__month {
        font-size: 8px;
    }
}

.news-item__content {
    min-height: 12rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.25s;
    background: white;
    position: relative;
    z-index: 1;
}

@media (max-width: 1400px) {
    .news-item__content {
        padding: 20px;
        min-height: 116px;
    }
}

@media (max-width: 47.99875em) {
    .news-item__content {
        min-height: auto;
        padding-bottom: 64px;
    }
}

.news-item__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    line-height: 1.25rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: #E5252D;
}

@media (max-width: 47.99875em) {
    .news-item__label {
        font-size: 10px;
    }
}

.news-item__title {
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

@media (max-width: 47.99875em) {
    .news-item__title {
        font-size: 14px;
        line-height: 18px;
    }
}

.news-item__time {
    font-size: 0.875rem;
    opacity: 0.5;
    font-weight: 500;
}

.news-item-red .news-item__content {
    background: #E5252D;
    color: #FFFFFF;
}

.news-item-red .news-item__label {
    color: #FFFFFF;
}

.news-item-red .news-item__date {
    color: #FFFFFF;
    background: rgba(229, 37, 45, 0.85);
}

.news-item-red .button {
    background: #FFFFFF;
    color: #333333;
}

.news-item-red .button:hover {
    background: rgba(255, 255, 255, 0.7);
}

.education {
    margin-top: 10rem;
}

@media (max-width: 1400px) {
    .education {
        margin-top: 80px;
    }
}

@media (max-width: 61.99875em) {
    .education {
        margin-top: 40px;
    }
}

.education-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.education-head h2 {
    margin-bottom: 0;
    position: relative;
}

@media (max-width: 61.99875em) {
    .education-head h2:before {
        content: "";
        background: #E5252D;
        position: absolute;
        bottom: -12px;
        height: 2px;
        width: 20px;
        left: calc(50% - 10px);
    }
}

.education-head p {
    max-width: 48.75rem;
    line-height: 1.625rem;
}

@media (max-width: 1400px) {
    .education-head p {
        max-width: 550px;
        font-size: 14px;
        line-height: 22px;
        margin-left: 20px;
    }
}

@media (max-width: 61.99875em) {
    .education-head p {
        margin-left: 0;
        margin-top: 52px;
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 61.99875em) {
    .education-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}

.education-steps {
    margin-top: 6.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1400px) {
    .education-steps {
        margin-top: 60px;
    }
}

@media (max-width: 61.99875em) {
    .education-steps {
        overflow: auto;
        margin-right: -20px;
        padding-right: 20px;
    }

    .education-steps::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
        opacity: 0;
    }
}

.education-step {
    flex-basis: 12.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 61.99875em) {
    .education-step {
        flex-basis: 100px;
    }
}

.education-step__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 12.1875rem;
}

.education-step__block:hover .education-step__number {
    color: #E5252D;
}

.education-step__number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: #F2EFED;
    margin-bottom: 0.625rem;
    transition: all 0.1s linear;
}

@media (max-width: 61.99875em) {
    .education-step__number {
        font-size: 60px;
    }
}

.education-step__text {
    font-weight: 600;
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: uppercase;
}

@media (max-width: 61.99875em) {
    .education-step__text {
        font-size: 10px;
    }
}

.education-step-active {
    flex-shrink: 0;
    flex-basis: 21.5rem;
}

.education-step-active .button {
    width: 12.8125rem;
    text-align: center;
    margin-left: 2.5rem;
    padding: 0 2.5rem;
    font-size: 0.8125rem;
    height: 5rem;
    border-radius: 40px;
    line-height: 1.25rem;
}

@media (max-height: 1400px) {
    .education-step-active .button {
        padding: 14px 20px;
        width: auto;
    }
}

@media (max-width: 61.99875em) {
    .education-step-active .button {
        margin-left: 20px;
    }
}

.education-step-active .education-step__number {
    color: #E5252D;
}

.education-step-active .education-step__text {
    font-weight: 700;
}

@media (max-width: 61.99875em) {
    .education-step-active {
        flex-basis: 228px;
    }
}

.education-arrow:before {
    width: 1.375rem;
    height: 2rem;
    background: #333333;
}

@media (max-width: 61.99875em) {
    .education-arrow {
        flex-shrink: 0;
        margin: 0 30px;
    }
}

.art-container {
    color: white;
    background: #E5252D;
    position: relative;
    padding: 7.5rem;
    height: 62.375rem;
}

@media (max-width: 1400px) {
    .art-container {
        padding: 80px 60px;
        height: 58.75rem;
    }
}

@media (max-width: 61.99875em) {
    .art-container {
        padding: 40px 20px;
        margin: 0 -20px;
        height: auto;
    }
}

.art-container.art-container--kind-detail {
    overflow: hidden;
    height: auto;
    min-height: 62.375rem;;
}
@media (max-width: 1400px) {
    .art-container.art-container--kind-detail {
        min-height: 58.75rem;
    }
}
@media (max-width: 61.99875em) {
    .art-container.art-container--kind-detail {
        min-height: unset;
    }
}

.art {
    margin-top: 200px;
}

@media (max-width: 1400px) {
    .art {
        margin-top: 120px;
    }
}

@media (max-width: 61.99875em) {
    .art {
        margin-top: 40px;
    }
}

.art-flex {
    display: flex;
    width: 36.5rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
    height: calc(100% - 13rem);
    transition: all 0.75s linear;
    opacity: 0;
    transform: translateY(3.125rem);
}
.art-flex.art-flex--big {
    width: 58.188rem;
}
@media (max-width: 61.9988em) {
    .art-flex.art-flex--big {
        width: 100%;
    }
}
.art-flex .icon {
    margin-bottom: 1.25rem;
    margin-right: 0;
}

.art-flex .icon:before {
    background: #FFFFFF;
}

.art-flex.active {
    opacity: 1;
    transform: translateY(0);
}

.art-flex > .line {
    flex-direction: column;
    align-items: center;
    margin-right: 3.75rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.art-flex > .line:after {
    width: 1px;
    height: 100%;
    background: #FFFFFF;
    opacity: 0.3;
}

@media (max-width: 61.99875em) {
    .art-flex > .line {
        display: none;
    }
}

@media (max-width: 1400px) {
    .art-flex {
        height: calc(100% - 12.5rem);
        margin-top: 2.5rem;
        width: 40.625rem;
    }
}

@media (max-width: 61.99875em) {
    .art-flex {
        height: auto;
        width: 100%;
        margin-top: 40px;
    }

    .art-flex .button {
        width: 100%;
        margin-top: 40px;
    }
}

.art-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.art-container.art-container--kind-detail .art-content {
    gap: 20px;
}
.art-content p {
    line-height: 1.875rem;
}

.art-content .line {
    display: none;
}

@media (max-width: 61.99875em) {
    .art-content p {
        display: flex;
        font-size: 12px;
        line-height: 18px;
    }

    .art-content .icon {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .art-content .icon:before {
        background: #FFFFFF;
    }

    .art-content .line {
        flex-direction: column;
        align-items: center;
        margin-right: 20px;
        display: flex;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .art-content .line:after {
        width: 1px;
        height: 100%;
        background: #FFFFFF;
        opacity: 0.3;
    }
}

.art-pic {
    width: 83.75rem;
    height: 58.75rem;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1600px) {
    .art-pic {
        width: 71.875rem;
        height: 50rem;
    }
}

@media (max-width: 61.99875em) {
    .art-pic {
        display: none;
    }
}

.art-pic.art-pic--only-part-face {
    width: 283.75rem;
    height: auto;
    left: -67%;
    bottom: -105%;
}

.similar-products {
  margin-top: 7.5rem;
}
@media (max-width: 1400px) {
  .similar-products {
    margin-top: 80px;
  }
}
@media (max-width: 61.99875em) {
  .similar-products {
    margin-top: 40px;
  }
}

.similar-products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.similar-products__head .swiper-arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 10.625rem;
  margin-top: 0;
  margin-left: 20px;
  padding: 0;
}
.similar-products__head .arrow-left {
  margin-left: 0;
  margin-right: 0.625rem;
}
.similar-products__head .arrow-right {
  margin-right: 0;
}
@media (max-width: 47.99875em) {
  .similar-products__head {
    margin-bottom: 30px;
  }
  .similar-products__head .swiper-arrow-container {
    display: none;
  }
}

.similar-products__title {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 300;
  color: #E5252D;
}
@media (max-width: 47.99875em) {
  .similar-products__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.similar-products-slider {
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}
@media (max-width: 47.99875em) {
  .similar-products-slider {
    margin-right: -20px;
    padding-right: 80px;
  }
}

.similar-product-card {
  height: 100%;
  padding: 0 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 47.99875em) {
  .similar-product-card {
    padding: 0 0 20px;
  }
}

.similar-product-card__pic {
  min-height: 20rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: #FAF7F5;
  overflow: hidden;
}
.similar-product-card__pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.similar-product-card__pic:hover img {
  transform: scale(1.06);
}
@media (max-width: 1400px) {
  .similar-product-card__pic {
    min-height: 16.25rem;
    padding: 30px;
  }
}
@media (max-width: 47.99875em) {
  .similar-product-card__pic {
    min-height: 220px;
    padding: 24px;
  }
}

.similar-product-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1.5rem;
}
.similar-product-card__content .button {
  width: 100%;
  margin-top: auto;
  min-height: 2.75rem;
  height: 2.75rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.similar-product-card__title {
  min-height: 4rem;
  margin-bottom: 2.125rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #333333;
  transition: color 0.25s;
}
.similar-product-card__title:hover {
  color: #E5252D;
}
.similar-product-card__tags {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(51, 51, 51, 0.5);
}
@media (max-width: 1400px) {
  .similar-product-card__title {
    font-size: 20px;
    line-height: 28px;
  }
  .similar-product-card__tags {
    font-size: 15px;
  }
}
@media (max-width: 47.99875em) {
  .similar-product-card__title {
    min-height: 48px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 22px;
  }
  .similar-product-card__tags {
    font-size: 13px;
  }
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

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

.swiper-pagination-bullet {
    background: #F2EFED;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 3px;
}

.swiper-pagination-bullet-active {
    background: #E5252D;
}

.swiper-button-disabled {
    pointer-events: none;
}

.kind-slide__text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.5s linear;
    position: absolute;
    width: 100%;
    top: calc(100% + 1.25rem);
}

@media (max-width: 61.99875em) {
    .kind-slide__text {
        display: none;
    }
}

.kinds {
    position: relative;
    padding-top: 10rem;
    margin-top: 10rem;
}

.kinds:before {
    content: "";
    background: #FAF7F5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 21.875rem);
}

@media (max-width: 1400px) {
    .kinds {
        margin-top: 80px;
        padding: 80px 0;
    }
}

@media (max-width: 61.99875em) {
    .kinds {
        margin-top: 40px;
        padding: 40px 0;
    }
}

.kinds-block {
    display: flex;
    position: relative;
    z-index: 1;
}

.kinds-block .swiper-arrow-container {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

@media (max-width: 61.99875em) {
    .kinds-block .swiper-arrow-container {
        display: none;
    }
}

.kinds-block .arrow-left {
    border: none;
    margin-right: 0.625rem;
}

.kinds-block .arrow-left:after {
    background: #FFFFFF;
    box-shadow: none;
}

.kinds-block .arrow-left:before {
    background: #333333;
}

.kinds-block .arrow-left:hover:after {
    background: #E5252D;
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.3);
}

.kinds-block .arrow-left:hover:before {
    background: #FFFFFF;
}

@media (max-width: 61.99875em) {
    .kinds-block {
        flex-direction: column;
    }
}

.kinds-content {
    position: relative;
    z-index: 1;
    flex-basis: 28.75rem;
}

@media (max-width: 61.99875em) {
    .kinds-content {
        flex-basis: auto;
    }
}

.kinds-label {
    font-size: 1.875rem;
    text-transform: uppercase;
    line-height: 2.25rem;
    margin-bottom: 3.125rem;
}

@media (max-width: 61.99875em) {
    .kinds-label {
        text-align: center;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 52px;
        position: relative;
    }

    .kinds-label:before {
        content: "";
        background: #E5252D;
        width: 20px;
        height: 2px;
        bottom: -12px;
        position: absolute;
        left: calc(50% - 10px);
    }
}

.kinds-content__items {
    height: 30.625rem;
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

@media (max-width: 61.99875em) {
    .kinds-content__items {
        display: none;
    }
}

.kinds-content__item {
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0;
    transition: 0.25s;
    pointer-events: none;
    left: 0;
}

.kinds-content__item .line {
    margin: 3.125rem 0;
}

.kinds-content__item.active {
    opacity: 1;
    pointer-events: auto;
}

.kinds-title {
    min-height: 11.25rem;
    font-size: 3.125rem;
    line-height: 3.75rem;
}

@media (max-width: 61.99875em) {
    .kinds-title {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
        padding-bottom: 14px;
        border-bottom: 1px solid #333333;
        margin-bottom: 14px;
        min-height: auto;
        margin-top: 10px;
    }
}

.kinds-option {
    display: flex;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
}

.kinds-option:last-child {
    margin-bottom: 0;
}

.kinds-option__label {
    flex-basis: 12.5rem;
    margin-right: 0.625rem;
}

@media (max-width: 61.99875em) {
    .kinds-option__label {
        flex-basis: 50%;
    }
}

.kinds-option__value {
    font-weight: 700;
}

.kinds-option__value span {
    font-weight: 300;
}

@media (max-width: 61.99875em) {
    .kinds-option__value span {
        display: none;
    }
}

@media (max-width: 61.99875em) {
    .kinds-option__value {
        text-align: right;
        flex-basis: 50%;
    }
}

.kind-slide {
    transition: 1s;
    width: 21.25rem;
    height: 21.25rem;
}

@media (max-width: 61.99875em) {
    .kind-slide {
        width: auto;
        height: auto;
    }
}

.kind-slide__circle {
    position: relative;
}

.kind-slide__circle:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    transition: all 0.5s linear;
    border: 7.5rem solid white;
}

@media (max-width: 61.99875em) {
    .kind-slide__circle:before {
        border: 50px solid white;
    }
}

.kind-slide__circle img {
    transform: scale(1.1);
    transition: all 0.5s linear;
}

.kind-slide-mobile {
    display: none;
}

@media (max-width: 61.99875em) {
    .kind-slide-mobile {
        display: flex;
        flex-direction: column;
    }
}

.kinds-slider {
    flex-basis: calc(100% - 28.75rem);
    margin-left: 7.5rem;
    margin-right: -9.375rem;
    position: relative;
    height: 41.25rem;
}
.kinds.kinds-detail .kinds-block {
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.kinds.kinds-detail .kinds-content {
  flex: 0 0 28.75rem;
  max-width: 28.75rem;
}
.kinds.kinds-detail .kinds-slider {
  flex: 0 0 37.5rem;
  width: 37.5rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.kinds-slider .swiper-slide {
    width: 37.5rem;
    height: 37.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 61.99875em) {
    .kinds-slider .swiper-slide {
        width: auto;
        height: auto;
    }
}

.kinds-slider .prev .kind-slide {
    transform: scale(0.5);
    opacity: 0;
}

@media (max-width: 61.99875em) {
    .kinds-slider .prev .kind-slide {
        transform: scale(1);
        opacity: 1;
    }
}

.kinds-slider .swiper-slide-active .kind-slide__text {
    opacity: 0;
}

.kinds-slider .swiper-slide-active .kind-slide {
    width: 37.5rem;
    height: 37.5rem;
}

@media (max-width: 61.99875em) {
    .kinds-slider .swiper-slide-active .kind-slide {
        width: auto;
        height: auto;
    }
}

.kinds-slider .swiper-slide-active .kind-slide__circle:before {
    background: transparent;
}

.kinds-slider .swiper-slide-active:hover .kind-slide__circle:before {
    background: white;
}

.kinds-slider .swiper-slide-active:hover .kind-slide__circle img {
    transform: scale(1.2);
}

.kinds-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 61.99875em) {
    .kinds-slider .swiper-wrapper {
        align-items: flex-start;
    }
}

@media (max-width: 61.99875em) {
    .kinds-slider {
        margin: 0 -20px;
        padding: 0 50px;
    }
}

.red {
    color: red;
}

.advantages {
    margin-top: 10rem;
}

.advantages p {
    text-align: center;
    font-size: 1.25rem;
    line-height: 2.125rem;
}

@media (max-width: 1400px) {
    .advantages p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 32px;
    }
}

@media (max-width: 1400px) {
    .advantages {
        margin-top: 80px;
    }
}

@media (max-width: 61.99875em) {
    .advantages {
        margin-top: 60px;
    }
}

.advantages-items {
    margin-top: 8.75rem;
}

@media (max-width: 1400px) {
    .advantages-items {
        margin-top: 68px;
    }
}

@media (max-width: 61.99875em) {
    .advantages-items {
        margin-top: 20px;
    }
}

@media (max-width: 61.99875em) {
    .advantages-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.advantages-item__title {
    font-weight: 600;
    font-family: Montserrat;
    font-size: 1.5rem;
    line-height: 1.875rem;
}

@media (max-width: 1700px) {
    .advantages-item__title {
        font-size: 1.375rem;
    }
}

@media (max-width: 1400px) {
    .advantages-item__title {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 61.99875em) {
    .advantages-item__title {
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }
}

.advantages-item-line {
    height: 2px;
    width: 100%;
    background: #333333;
    margin: 4.375rem 0;
}

@media (max-width: 1400px) {
    .advantages-item-line {
        margin: 40px 0;
    }
}

@media (max-width: 61.99875em) {
    .advantages-item-line {
        margin: 20px 0;
        height: 1px;
    }
}

.advantages-item__pic {
    width: 7.5rem;
    padding: 10px;
    margin-bottom: 2.5rem;
    height: 7.5rem;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(229, 37, 45, 0.3);
    cursor: pointer;
}

.advantages-item__pic img {
    position: relative;
    z-index: 1;
    max-width: 62%;
    max-height: 62%;
}

.advantages-item__pic:after {
    position: absolute;
    background: #E5252D;
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    content: "";
    transition: 0.25s;
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.3);
}

.advantages-item__pic:hover:after {
    width: 7.5rem;
    height: 7.5rem;
}

.concept {
    margin-top: 10rem;
}

.concept p {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 1400px) {
    .concept p {
        margin-top: 40px;
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 61.99875em) {
    .concept p {
        margin-top: 30px;
        font-size: 12px;
        line-height: 16px;
    }

    .concept p br {
        display: none;
    }
}

@media (max-width: 1440px) {
    .concept {
        margin-top: 80px;
    }
}

@media (max-width: 61.99875em) {
    .concept {
        margin-top: 60px;
    }
}

.fw-600 {
    font-weight: 600;
}

.concept-items {
    position: relative;
}

.concept-items:before {
    width: 62.5rem;
    height: 62.5rem;
    z-index: -1;
    content: "";
    border: 12.5rem solid #FAF7F5;
    top: 0.6875rem;
    left: 73.6875rem;
    position: absolute;
    border-radius: 50%;
}

@media (max-width: 1400px) {
    .concept-items:before {
        top: -3.1875rem;
    }
}

@media (max-width: 61.99875em) {
    .concept-items:before {
        display: none;
    }
}

.concept-items:after {
    content: "";
    width: 62.5rem;
    height: 62.5rem;
    z-index: -1;
    border: 12.5rem solid #FAF7F5;
    top: 42.5rem;
    right: 73.6875rem;
    position: absolute;
    border-radius: 50%;
}

@media (max-width: 1400px) {
    .concept-items:after {
        top: 37.5rem;
    }
}

@media (max-width: 61.99875em) {
    .concept-items:after {
        right: 168px;
        top: 0;
        width: 436px;
        height: 436px;
    }
}

.concept-item {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 54%;
    margin: 5rem 0 auto auto;
}

@media (max-width: 1400px) {
    .concept-item {
        width: 53%;
    }
}

@media (max-width: 61.99875em) {
    .concept-item {
        margin: 40px 0 0 !important;
        width: 100%;
    }
}

.concept-item .line {
    display: flex;
    flex-direction: column-reverse;
    margin-right: 6.75rem;
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .concept-item .line {
        margin-right: 45px;
    }
}

@media (max-width: 61.99875em) {
    .concept-item .line {
        margin-right: 20px;
    }
}

.concept-item .line:after {
    height: 100%;
    width: 1px;
    background: linear-gradient(0deg, #1E1E1E 0%, rgba(30, 30, 30, 0) 100%);
}

.concept-item .icon {
    margin: 20px 0 0;
}

.concept-item:nth-child(2n) {
    margin: 5rem auto auto 0;
}

.concept-item:nth-child(2n) .concept-item__element {
    text-align: right;
    flex-direction: row-reverse;
}

.concept-item:nth-child(2n) .concept-item__element .line {
    margin-right: 0;
    margin-left: 6.75rem;
}

@media (max-width: 1400px) {
    .concept-item:nth-child(2n) .concept-item__element .line {
        margin-left: 45px;
    }
}

@media (max-width: 61.99875em) {
    .concept-item:nth-child(2n) .concept-item__element .line {
        margin-left: 20px;
    }
}

.concept-item:before {
    content: "";
    top: 0px;
    height: 40px;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    position: absolute;
    z-index: 1;
}

@media (max-width: 61.99875em) {
    .concept-item:before {
        display: none;
    }
}

.concept-item.active .concept-item__element {
    transform: translateY(0);
    opacity: 1;
}

.concept-item__element {
    position: relative;
    display: flex;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s linear;
}

.concept-item__number {
    color: #E5252D;
    font-size: 12.5rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

@media (max-width: 1400px) {
    .concept-item__number {
        font-size: 100px;
    }
}

@media (max-width: 61.99875em) {
    .concept-item__number {
        margin-bottom: 20px;
    }
}

.concept-item__label {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    line-height: 2.25rem;
    font-family: Montserrat;
}

@media (max-width: 1400px) {
    .concept-item__label {
        font-size: 20px;
    }
}

@media (max-width: 61.99875em) {
    .concept-item__label {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }
}

.concept-item__description {
    font-size: 1.25rem;
    line-height: 1.7;
    font-family: Montserrat;
    margin-bottom: 1.25rem;
}

.concept-item__description:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 1400px) {
    .concept-item__description {
        font-size: 14px;
    }
}

@media (max-width: 61.99875em) {
    .concept-item__description {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 61.99875em) {
    .presentation {
        margin-top: 40px;
    }
}

.presentation-container {
    background: #E5252D;
    padding: 5.625rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1400px) {
    .presentation-container {
        padding: 40px;
    }
}

@media (max-width: 61.99875em) {
    .presentation-container {
        padding: 30px 20px;
        margin: 0 -20px;
        flex-direction: column;
    }
}

.presentation-content {
    flex-basis: calc(47% - 3.75rem);
    color: white;
}

@media (max-width: 1400px) {
    .presentation-content {
        flex-basis: calc(38% - 1.875rem);
    }
}

@media (max-width: 61.99875em) {
    .presentation-content {
        text-align: center;
    }
}

.presentation-form {
    flex-basis: calc(53% - 3.75rem);
}

@media (max-width: 1400px) {
    .presentation-form {
        flex-basis: calc(62% - 1.875rem);
    }
}

.presentation-title {
    font-size: 2.125rem;
    line-height: 3.375rem;
    text-transform: uppercase;
    margin-bottom: 2.6875rem;
    position: relative;
}

.presentation-title:before {
    content: "";
    position: absolute;
    bottom: -1.4375rem;
    left: 0;
    background: rgba(255, 255, 255, 0.25);
    width: 40px;
    height: 3px;
}

@media (max-width: 1400px) {
    .presentation-title:before {
        height: 2px;
    }
}

@media (max-width: 61.99875em) {
    .presentation-title:before {
        bottom: -10px;
        left: calc(50% - 15px);
        width: 30px;
    }
}

@media (max-width: 1400px) {
    .presentation-title {
        max-width: 320px;
        line-height: 1.4;
    }
}

@media (max-width: 61.99875em) {
    .presentation-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 22px;
        max-width: 100%;
    }
}

.presentation-description {
    font-weight: 500;
}

@media (max-width: 1400px) {
    .presentation-description {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 61.99875em) {
    .presentation-description {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 30px;
    }
}

.presentation-form__line {
    display: flex;
    justify-content: space-between;
}

.presentation-form__line .form-item {
    flex-basis: calc(50% - 1.25rem);
}

.presentation-form__line .form-input {
    border-bottom: 1px solid white;
}

.presentation-form__line .form-input::placeholder {
    color: white;
}

@media (max-width: 61.99875em) {
    .presentation-form__line .form-input {
        text-align: center;
    }
}

@media (max-width: 61.99875em) {
    .presentation-form__line {
        flex-direction: column;
    }
}

.presentation-form__line-bottom {
    margin-top: 2.5rem;
    align-items: center;
}

.presentation-form__line-bottom .button, .presentation-form__line-bottom .agreed-message {
    width: calc(50% - 1.25rem);
}

@media (max-width: 61.99875em) {
    .presentation-form__line-bottom .button, .presentation-form__line-bottom .agreed-message {
        width: 100%;
    }
}

.presentation-form__line-bottom .agreed-message {
    color: white;
}

@media (max-width: 61.99875em) {
    .presentation-form__line-bottom .agreed-message {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 1400px) {
    .presentation-form__line-bottom {
        margin-top: 14px;
    }
}

.model {
    position: fixed;
    left: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.25s;
    background: #E5252D;
    top: calc(50% - 7.625rem);
    z-index: 2;
}

.model:hover {
    background: #CC2128;
}

@media (max-width: 61.99875em) {
    .model {
        display: none;
    }
}

.model-title {
    transform: rotate(180deg);
    writing-mode: tb;
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    color: #FFFFFF;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1;
    text-transform: uppercase;
}

.model-pic {
    width: 3.75rem;
    height: 5.625rem;
}

.model-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.model-top .model-logo {
    margin: 0 3.75rem;
}

.model-content {
    flex-basis: 36.25rem;
    font-family: Montserrat;
    flex-shrink: 0;
}

.model-content .title-54 {
    margin-bottom: 7.5rem;
}

.model-top-text {
    padding-left: 4.875rem;
    font-weight: 500;
    line-height: 1.875rem;
    position: relative;
}

.model-top-text .line {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
}

.model-top-text .line .icon {
    margin-bottom: 1.25rem;
    margin-right: 0;
}

.model-top-text .line:after {
    width: 1px;
    height: 69.875rem;
}

.model-video {
    display: flex;
    align-items: center;
    margin-top: 12.1875rem;
}

.model-video:hover .model-video__icon:after {
    width: 6.25rem;
    height: 6.25rem;
}

.model-video__content {
    margin-left: 1.25rem;
    text-transform: uppercase;
    font-size: 0.8125rem;
    line-height: 1.375rem;
    display: flex;
    flex-direction: column;
}

.model-video__description {
    font-weight: 700;
}

.model-video__icon {
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(229, 37, 45, 0.3);
    width: 6.25rem;
    height: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-video__icon:before {
    z-index: 1;
    width: 1.5625rem;
    height: 1.5625rem;
    margin-left: 0.1875rem;
}

.model-video__icon:after {
    content: "";
    position: absolute;
    width: 5rem;
    height: 5rem;
    transition: 0.25s;
    border-radius: 50%;
    background: #E5252D;
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.3);
}

.model-logo {
    width: 6.25rem;
    flex-shrink: 0;
}

.model-schema {
    flex-shrink: 0;
    position: relative;
}

.model-schema path {
    transition: all 0.25s linear;
}

.model-schema path.active {
    fill-opacity: 0.8;
}

.model-schema:hover:before {
    background: #E5252D;
}

.model-schema:hover .modal-pic-schema {
    opacity: 1;
}

.modal-pic-schema {
    opacity: 0;
    transition: all 0.25s linear;
}

.model-pic-face {
    position: relative;
    z-index: 1;
    display: flex;
}

.modal-pic-face__schema {
    position: absolute;
    top: 8.5625rem;
    left: 10.25rem;
    width: 19.3125rem;
    height: 28.0625rem;
}

.modal-pic-face__schema > svg {
    width: 100%;
    height: 100%;
}

.modal-pic-body__schema {
    position: absolute;
    top: 11.3125rem;
    right: 9rem;
    width: 18.75rem;
    height: 37.25rem;
}

.modal-pic-body__schema > svg {
    width: 100%;
    height: 100%;
}

.schema-tooltip {
    position: absolute;
    left: calc(100% + 3.8125rem);
    padding: 0.6875rem 1.25rem;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0px 10px 20px 0px rgba(51, 51, 51, 0.2);
    opacity: 0;
    transition: all 0.5s linear;
    transform: translateX(-20px);
}

.schema-tooltip:before {
    content: "";
    background: url("/local/templates/main/css/../img/schema-arrow.svg");
    position: absolute;
    left: -0.4375rem;
    width: 0.5625rem;
    height: 0.6875rem;
}

.schema-tooltip.active {
    opacity: 1;
    transform: translateX(0px);
}

.model-schema-face {
    margin-right: -7.5rem;
    width: 60rem;
}

.model-schema-face:before {
    position: absolute;
    background: #FAF7F5;
    height: 44.9375rem;
    width: 300%;
    left: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    transition: all 0.25s linear;
}

@media (max-width: 61.99875em) {
    .model-block {
        display: none;
    }
}

.model-bottom {
    margin-top: 6.25rem;
    display: flex;
    align-items: flex-start;
    margin-left: 3.75rem;
}

.model-bottom .model-logo {
    margin: 0 7.5rem 0 3.75rem;
    position: relative;
}

.model-bottom .model-logo:before {
    content: "";
    background: url("/local/templates/main/css/../img/model-i.svg");
    background-size: cover;
    width: 10.75rem;
    height: 10.9375rem;
    position: absolute;
    top: -2.875rem;
    left: -13.8125rem;
}

.model-schema-body {
    width: 48.8125rem;
    flex-shrink: 0;
}

.model-schema-body:before {
    content: "";
    background: #FAF7F5;
    position: absolute;
    right: 0;
    width: 300%;
    top: 12.25rem;
    height: 36.1875rem;
    z-index: -1;
    transition: all 0.25s linear;
}

.model-pic-body {
    position: relative;
    z-index: 1;
}

.model-bottom__text {
    margin-top: 11.75rem;
}

.model-bottom__text p {
    max-width: 31.25rem;
    margin-top: 3.625rem;
}

.model-bottom__text .line {
    position: relative;
}

.model-bottom__text .line:after {
    width: 300%;
    position: absolute;
    left: 2.375rem;
}

.model-bottom__text .model-video {
    margin-top: 10.625rem;
}

.model-block-mobile {
    display: none;
    overflow: hidden;
    font-family: Montserrat;
    position: relative;
}

@media (max-width: 61.99875em) {
    .model-block-mobile {
        display: flex;
    }
}

.model-block-mobile p {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.model-block-mobile .title-54 {
    margin-bottom: 20px;
}

.model-slide-top {
    margin-top: 40px;
    margin-bottom: 40px;
}

.model-slide-top.active .model-slide-content {
    transform: translateX(-54.6%);
}

.model-slide-top.active .model-switcher-line {
    left: 50px;
    width: calc(100% - 70px);
}

.model-slide-top.active .model-slide-top-arrow-left {
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
}

.model-slide-top.active .model-slide-switcher-right {
    opacity: 0;
    pointer-events: auto;
    transform: translateX(10px);
}

.model-slide-content {
    display: flex;
    width: calc(200% + 20px);
    transition: all 0.5s linear;
    padding: 0 20px;
}

.model-slide-content img {
    width: 100%;
}

.model-slide-left {
    display: flex;
    flex-basis: calc(50% + 10px);
    flex-shrink: 0;
    align-items: flex-end;
}

.model-slide-logo {
    flex-shrink: 0;
    flex-basis: 11.7%;
    margin-right: 20px;
}

.model-slide-right {
    display: flex;
    flex-basis: calc(50% + 10px);
    flex-shrink: 0;
}

.model-slide-video {
    flex-shrink: 0;
    flex-basis: 11.7%;
    margin-left: 20px;
}

.model-slide-video {
    flex-direction: column;
    margin-top: 0;
    justify-content: flex-end;
}

.model-slide-video .model-video__content {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: -2px;
}

.model-slide-video .model-video__icon {
    margin-top: 10px;
    width: 40px;
    height: 40px;
}

.model-slide-video .model-video__icon:before {
    width: 10px;
    height: 10px;
    margin-left: 1px;
    animation: icon-animation 0.5s linear 1s infinite alternate;
}

.model-slide-video .model-video__icon:after {
    width: 32px;
    height: 32px;
    animation: circle-animation 0.5s linear 1s infinite alternate;
}

@keyframes circle-animation {
    from {
        width: 32px;
        height: 32px;
    }
    to {
        width: 40px;
        height: 40px;
    }
}

@keyframes icon-animation {
    to {
        transform: scale(1.15);
    }
}

.model-slide {
    overflow: hidden;
    margin-left: -20px;
    margin-right: -20px;
}

.model-slide-switcher {
    height: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    padding: 0 20px;
}

.model-slide-top-arrow-left {
    position: absolute;
    height: 6px;
    display: flex;
    align-items: center;
    width: 20px;
    transition: all 0.5s linear;
    left: 20px;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}

.model-slide-top-arrow-left:before {
    background: #E5252D;
    animation: arrow-animation 1s linear 1s infinite alternate;
    position: absolute;
    right: 0;
    width: 6px;
    height: 12px;
}

.model-slide-switcher-right {
    position: absolute;
    right: 20px;
    transform: translateX(0);
    transition: all 0.5s linear;
}

.model-slide-top-arrow-right {
    margin-left: 5px;
    position: relative;
    height: 6px;
    display: flex;
    align-items: center;
    width: 20px;
    transition: all 0.5s linear;
}

.model-slide-top-arrow-right:before {
    background: #E5252D;
    animation: arrow-animation-right 1s linear 1s infinite alternate;
    position: absolute;
    right: auto;
    left: 0;
    width: 6px;
    height: 12px;
}

.model-switcher-line {
    position: absolute;
    width: calc(100% - 180px);
    transition: all 0.5s linear;
    height: 1px;
    background: black;
    left: 20px;
}

@keyframes arrow-animation {
    from {
        right: 0;
    }
    to {
        right: 14px;
    }
}

@keyframes arrow-animation-right {
    from {
        left: 0;
    }
    to {
        left: 14px;
    }
}

.model-slide-switcher-right {
    transition: all 0.5s linear;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.model-slide-pic {
    width: calc(100% - 20px - 11.7%);
}

.model-slide-bottom {
    overflow: hidden;
    margin-top: 20px;
}

.model-slide-bottom .model-slide-left {
    flex-direction: row-reverse;
}

.model-slide-bottom .model-slide-left .model-slide-logo {
    margin-right: 0;
    margin-left: 20px;
}

.model-slide-bottom .model-slide-right {
    flex-direction: row-reverse;
}

.model-slide-bottom .model-slide-right .model-video {
    margin-left: 0;
    margin-right: 20px;
}

.model-slide-bottom .model-slide-content {
    transform: translateX(-50.6%);
    flex-direction: row-reverse;
}

.model-slide-bottom .model-slide-top-arrow-left {
    transform: rotate(180deg) translateX(-10px);
    right: 20px;
    left: auto;
}

.model-slide-bottom .model-switcher-line {
    left: 160px;
}

.model-slide-bottom .model-slide-switcher-right {
    flex-direction: row-reverse;
    left: 0;
    right: auto;
}

.model-slide-bottom .model-slide-switcher-right .icon {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 5px;
}

.model-slide-bottom.active .model-slide-content {
    transform: translateX(2%);
}

.model-slide-bottom.active .model-slide-top-arrow-left {
    opacity: 1;
    transform: rotate(180deg) translateX(0px);
}

.model-slide-bottom.active .model-slide-switcher-right {
    opacity: 0;
    transform: translateX(-10px);
}

.model-slide-bottom.active .model-switcher-line {
    left: 20px;
    width: calc(100% - 70px);
}

.modal-success {
    font-family: Montserrat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-success .button {
    box-shadow: 0px 20px 30px 0px rgba(240, 73, 65, 0.2);
    margin-top: 2.5rem;
}

@media (max-width: 61.99875em) {
    .modal-success .button {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

.modal-success .button:hover {
    background: #E5252D;
    color: white;
}

.modal-success .button:active {
    background: #CC2128;
    color: white;
}

@media (max-width: 61.99875em) {
    .modal-success {
        height: calc(100% - 20px);
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

.modal-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-success__title {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 2.25rem;
}

.breadcrumb-items {
    display: flex;
    flex-flow: row wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin: 3px 0;
}

.breadcrumb-item:after {
    content: "";
    width: 4px;
    height: 4px;
    background: #D9D9D9;
    margin: 0 0.625rem;
    border-radius: 50%;
}

.breadcrumb-item:last-child:after {
    display: none;
}

.breadcrumb-link {
    border-bottom: 1px solid;
    color: #E5252D;
}

.breadcrumb-link:hover {
    border-bottom: 1px solid transparent;
}

.start-luxe-text {
    position: relative;
    padding-left: 4.875rem;
}

@media (max-width: 991px) {
    .start-luxe-text {
        padding-left: 0;
        margin: 20px 0 46px;
        width: 100%;
    }
}

.start-luxe-flex {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .start-luxe-flex {
        justify-content: center;
    }
}

.start-luxe-pic {
    display: flex;
    align-items: center;
    margin-left: 0.875rem;
    padding-left: 0.875rem;
    border-left: 1px solid rgba(51, 51, 51, 0.1);
}

.start-luxe-pic img {
    height: auto;
}

@media (max-width: 991px) {
    .start-luxe-pic {
        width: 80px;
        margin-left: 10px;
        padding-left: 10px;
    }
}

.start-luxe-absolute {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    top: 0;
}

.start-luxe-absolute .icon-plus {
    flex-shrink: 0;
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .start-luxe-absolute .icon-plus {
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        background: white;
        padding: 0 5px;
    }
}

.start-luxe-absolute:after {
    content: "";
    width: 0.1rem;
    background: #333333;
    height: 100%;
}

@media (max-width: 991px) {
    .start-luxe-absolute:after {
        width: 100%;
        height: 1px;
        position: absolute;
        top: 50%;
    }
}

@media (max-width: 991px) {
    .start-luxe-absolute {
        width: 100%;
        pointer-events: auto;
        top: auto;
        bottom: -26px;
        height: 14px;
    }
}

.start-flex {
    display: flex;
    align-items: flex-end;
}

.start-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 100%;
}

@media (max-width: 991px) {
    .start-content_zones {
        align-items: center;
        flex-basis: auto;
    }

    .start-content_zones .breadcrumbs {
        display: none;
    }

    .start-content_zones .size-74 {
        margin-bottom: 0;
        width: 100%;
    }
}

.start-pic {
    width: 60rem;
    flex-shrink: 0;
    margin-right: -7.5rem;
    margin-left: 1.25rem;
}

.start-pic img {
    height: auto;
}

@media (max-width: 991px) {
    .start-pic {
        display: none;
    }
}

.start-pic-mobile {
    display: none;
}

@media (max-width: 991px) {
  .start-pic-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    background: #FAF7F5;
    margin-top: 100px;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    width: calc(100% + 40px);
  }
}

.start-pic-mobile-pic {
    position: absolute;
    bottom: 0;
    width: 360px;
}

.start-pic-mobile-pic img {
    height: auto;
}

.swiper-schema .swiper-arrow-container {
    width: auto;
    margin-top: 0;
}

.swiper-schema .arrow-left {
    margin-left: 0;
    margin-right: 0.625rem;
}

.swiper-schema-title {
    display: flex;
    align-items: center;
}

.swiper-schema-title__number {
    margin-right: 1.25rem;
    flex-shrink: 0;
    flex-basis: 5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .swiper-schema-title__number {
        flex-basis: 44px;
        margin-right: 16px;
    }
}

.line-plus {
    display: flex;
    align-items: center;
}

.line-plus .icon-plus {
    flex-shrink: 0;
    margin-right: 20px;
}

.line-plus:after {
    content: "";
    height: 0.1rem;
    width: 100%;
    background: #333333;
}

@media (max-width: 991px) {
    .swiper-schema__advantages {
        display: flex;
        overflow: auto;
        margin: 0 -20px;
        padding: 0 20px 20px;
    }

    .swiper-schema__advantages::-webkit-scrollbar {
        display: none;
    }
}

.swiper-schema__advantages-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.swiper-schema__advantages-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .swiper-schema__advantages-item {
        margin-bottom: 0;
        flex-shrink: 0;
        font-size: 10px;
        margin-right: 20px;
    }

    .swiper-schema__advantages-item:nth-child(1) {
        width: 143px;
    }

    .swiper-schema__advantages-item:nth-child(2) {
        width: 106px;
    }

    .swiper-schema__advantages-item:nth-child(3) {
        width: 134px;
    }
}

.swiper-schema__advantages-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 1px solid rgba(229, 37, 45, 0.3);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
}

.swiper-schema__advantages-icon img {
    width: 3.125rem;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(240, 73, 65, 0.3);
}

@media (max-width: 991px) {
    .swiper-schema__advantages-icon img {
        width: 35px;
    }
}

@media (max-width: 991px) {
    .swiper-schema__advantages-icon {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }
}

.swiper-schema-item {
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .swiper-schema-item {
        padding-bottom: 0;
        flex-direction: column;
    }
}

.swiper-schema__head {
    flex-basis: 28.75rem;
    flex-shrink: 0;
    margin-right: 7.375rem;
}

@media (max-width: 1500px) {
    .swiper-schema__head {
        flex-basis: 22.5rem;
        margin-right: 2.5rem;
    }
}

@media (max-width: 991px) {
    .swiper-schema__head {
        margin-right: 0;
        flex-basis: auto;
        width: 100%;
    }

    .swiper-schema__head .mb-60 {
        margin-bottom: 20px;
    }
}

.swiper-schema-position {
    width: 83.625rem;
    margin-right: -7.5rem;
    padding-right: 7.5rem;
    margin-top: -7.5rem;
    padding-top: 7.5rem;
    position: relative;
}

.swiper-schema-position .swiper-arrow-container {
    left: 40.625rem;
    width: auto;
    margin-top: 0;
    bottom: 3.75rem;
}

@media (max-width: 1200px) {
    .swiper-schema-position .swiper-arrow-container {
        bottom: 1.875rem;
    }
}

@media (max-width: 1150px) {
    .swiper-schema-position .swiper-arrow-container {
        padding: 0;
    }
}

.swiper-schema-position .swiper-slide {
    display: flex;
    align-items: flex-start;
    background: white;
    opacity: 0;
    position: relative;
    transition: all 0.25s linear;
}

.swiper-schema-position .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-schema-position .swiper-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    left: 100%;
}

@media (max-width: 991px) {
    .swiper-schema-position .swiper-slide:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .swiper-schema-position .swiper-slide {
        flex-basis: auto;
        align-items: center;
        flex-direction: column;
        background: transparent;
        justify-content: center;
    }
}

.swiper-schema-position .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .swiper-schema-position .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.swiper-schema-position .swiper-pagination-bullet {
    background: rgb(205, 202, 201);
}

.swiper-schema-position .swiper-pagination-bullet-active {
    background: rgb(229, 37, 45);
}

@media (max-width: 991px) {
    .swiper-schema-position {
        margin-right: -20px;
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: -50px;
        padding-top: 100px;
        width: calc(100% + 40px);
    }
}

.swiper-schema__title-mobile {
    display: none;
}

@media (max-width: 991px) {
    .swiper-schema__title-mobile {
        text-align: center;
        display: block;
        line-height: 1.3;
        font-size: 28px;
        font-weight: 700;
        margin-top: 20px;
    }
}

.button-schema {
    display: none;
}

@media (max-width: 991px) {
    .button-schema {
        width: 100%;
        margin-top: 20px;
        display: flex;
    }
}

.swiper-schema__pic {
    position: relative;
    width: 32.5rem;
    height: 32.5rem;
}

.swiper-schema__pic:before {
    content: "";
    position: absolute;
    top: -3.75rem;
    right: -3.75rem;
    background: #F7F7F7;
    width: calc(100% + 7.5rem);
    height: calc(100% + 7.5rem);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .swiper-schema__pic:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .swiper-schema__pic {
        width: 240px;
        height: 240px;
    }
}

.swiper-schema__pic-circle {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-schema__pic-circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4.375rem;
    background: #F7F7F7;
    height: 4.375rem;
}

@media (max-width: 991px) {
    .swiper-schema__pic-circle:before {
        display: none;
    }
}

.swiper-schema__pic-circle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4.375rem;
    background: #F7F7F7;
    height: 4.375rem;
}

@media (max-width: 991px) {
    .swiper-schema__pic-circle:after {
        display: none;
    }
}

.swiper-schema__pic-circle img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

.swiper-schema__description-method-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.swiper-schema__description-method-item:last-child {
    margin-bottom: 0;
}

.swiper-schema__description-method-item-label {
    flex-basis: 18.75rem;
}

.swiper-schema__description {
    flex-basis: 28.75rem;
    padding-top: 3.75rem;
    margin-left: 7.5rem;
}

.swiper-schema__description .swiper-arrow-container {
    position: relative;
    width: auto;
    margin-top: 3.125rem;
    justify-content: flex-start;
}

.swiper-schema__description .swiper-arrow:after {
    box-shadow: none;
}

.swiper-schema__description .arrow-left {
    margin-left: 0;
}

.swiper-schema__description .arrow-right {
    margin-right: 0;
    margin-left: 10px;
}

@media (max-width: 991px) {
    .swiper-schema__description {
        display: none;
    }
}

.swiper-schema__mobile {
    display: none;
    text-align: center;
}

@media (max-width: 991px) {
    .swiper-schema__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 70px;
    }
}

@media (max-width: 991px) {
    .swiper-schema__description-title {
        margin-bottom: 30px;
        font-size: 28px;
    }
}

.swiper-schema__price-label {
    line-height: 1.1;
    color: rgb(229, 37, 45);
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 30px;
}

.swiper-schema__price {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.swiper-schema__description-line {
    width: 100%;
    height: 0.1rem;
    background: rgba(51, 51, 51, 0.2);
}

.block-methodology {
    background-image: url("/local/templates/main/css/../img/forehead/bg-red.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    padding: 2.5rem 5rem;
    color: white;
    margin-top: -11.25rem;
}

@media (max-width: 991px) {
    .block-methodology {
        margin-top: -40px;
        padding: 40px 20px;
        background-image: url("/local/templates/main/css/../img/forehead/bg-red-2.png");
    }
}

.methodology-items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.methodology-item {
    flex-basis: calc(33.3% - 20px);
}

@media (max-width: 991px) {
    .methodology-item {
        flex-basis: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .methodology-item:last-child {
        margin-bottom: 0;
    }
}

.methodology-number {
    color: rgba(255, 255, 255, 0.5);
    font-size: 3.75rem;
}

@media (max-width: 991px) {
    .methodology-number {
        font-size: 30px;
    }
}

.title-line_white:before {
    background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 991px) {
    .advantages-slider .swiper-wrapper {
        display: flex;
        flex-flow: row wrap;
        margin-right: -2.5rem;
        margin-bottom: -4.375rem;
    }

    .advantages-slider .swiper-slide {
        flex-basis: calc(33.3% - 2.5rem);
        margin-right: 2.5rem;
        padding-bottom: 4.375rem;
        margin-bottom: 4.375rem;
        border-bottom: 1px solid #333333;
    }

    .advantages-slider .swiper-slide:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

@media (max-width: 991px) {
    .advantages-slider {
        margin: 0 -20px;
        padding: 0 20px;
    }
}

.advantages-item_slide {
    display: flex;
    height: 100%;
    align-items: center;
    line-height: 1.4;
}

.advantages-item_slide .advantages-item__pic {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-right: 2.5rem;
}

@media (max-width: 991px) {
    .advantages-item_slide .advantages-item__pic {
        margin-right: 0;
        margin-bottom: 10px;
        width: 80px;
        height: 80px;
    }

    .advantages-item_slide .advantages-item__pic img {
        width: 34px;
        height: auto;
    }

    .advantages-item_slide .advantages-item__pic:after {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 991px) {
    .advantages-item_slide {
        text-align: center;
    }
}

@media (min-width: 991px) {
    .advantages-slider .swiper-slide_advantages-cta {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .advantages-slider .swiper-slide_advantages-cta {
        display: none;
    }
}

.advantages-cta {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 11.25rem;
    background-color: #E5252D;
    background-image: url("/local/templates/main/css/../img/forehead/ampersand.png");
    background-size: auto 120%;
    background-position: 120% center;
    background-repeat: no-repeat;
    color: #fff;
    box-shadow: 0 1.25rem 2.5rem rgba(229, 37, 45, 0.35);
    overflow: hidden;
}
.advantages-cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    padding: 1.875rem 0 1.875rem 1.875rem;
    position: relative;
    z-index: 1;
}

.advantages-cta__title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 3.125rem;
    max-width: 13.75rem;
}

.advantages-cta__content .button {
    width: auto;
    min-width: 13.75rem;
    text-align: center;
}

.advantages-cta__pic {
    display: flex;
    align-items: flex-end;
    margin-right: -10px;
}

.advantages-cta__pic img {

}

@media (max-width: 991px) {
    .advantages-cta__content {
        padding: 16px 14px;
    }

    .advantages-cta__content .button {
        min-width: 0;
        height: 36px;
        padding: 0 16px;
        font-size: 10px;
    }

    .advantages-cta__pic {
        flex-basis: 42%;
        max-width: 42%;
    }
}

.technology-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .technology-container {
        flex-direction: column;
    }

    .technology-container .size-50 {
        line-height: 1.2;
    }
}

.technology-pic {
    flex-basis: 42.5rem;
    margin-left: 6.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-pic img {
    height: auto;
}

@media (max-width: 991px) {
    .technology-pic img {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .technology-pic {
        flex-basis: auto;
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
        justify-content: center;
    }
}

.zones-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zones-pic svg {
    max-width: 100%;
}

.zones-pic path[fill-opacity] {
    transition: all 0.25s linear;
}

.zones-pic path[fill-opacity]:hover {
    fill-opacity: 0.7;
}

@media (max-width: 991px) {
    .zones-pic {
        display: none;
    }
}

.zones-pic__mask {
    position: absolute;
    width: 25%;
    top: -13px;
    transform: translatex(12px);
}

.zones-pic__mask svg {
    max-width: 100%;
}

.zones-pic-mobile {
    display: none;
}

@media (max-width: 991px) {
    .zones-pic-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 320px;
        margin: 0 auto;
    }
}

.zones-pic-mobile img {
    height: auto;
}

.zones-pic-mobile-schema-item {
    position: relative;
}

.zones-pic-mobile-schema-item rect, .zones-pic-mobile-schema-item ellipse, .zones-pic-mobile-schema-item g {
    transition: all 0.25s linear;
}

.zones-pic-mobile-schema-item.active rect {
    background: rgba(255, 255, 255, 0.5);
}

.zones-pic-mobile-schema-item.active ellipse {
    fill: #E5252D;
}

.zone-tooltip {
    position: absolute;
    background: white;
    padding: 10px 20px;
    z-index: 22;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.15);
    border-radius: 30px;
    color: #333333;
    line-height: 1.2;
    font-size: 10px;
    font-weight: 600;
}

.zone-tooltip:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: calc(50% - 6px);
    top: -6px;
    background: white;
    transform: rotate(45deg);
}

.zones-pic-mobile-schema {
    position: absolute;
    width: 146px;
    height: 237px;
    transform: translate(6px, -11px);
}

.technology-age {
    display: flex;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .technology-age {
        justify-content: center;
    }

    .technology-age .size-40 {
        font-size: 18px;
        flex-shrink: 0;
        width: 126px;
    }
}

.technology-age__pic {
    display: flex;
    margin-right: 2.8125rem;
}

.technology-age__pic img {
    height: auto;
}

@media (max-width: 991px) {
    .technology-age__pic {
        margin-right: 20px;
        max-width: 161px;
    }
}

.procedure-container {
    margin-top: -10rem;
    background-color: #E5252D;
    background-image: url("/local/templates/main/css/../img/forehead/bg-procedure.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.125rem 5rem;
    color: white;
}

@media (max-width: 991px) {
    .procedure-container {
        padding: 40px 20px;
        margin-top: 0px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.procedure-place {
    display: flex;
}

@media (max-width: 991px) {
    .procedure-place {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .procedure-place {
        flex-direction: column;
    }
}

.procedure-place__item {
    display: flex;
    align-items: center;
    margin-right: 1.875rem;
}

@media (max-width: 560px) {
    .procedure-place__item {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 1.875rem;
    }
}

.procedure-place__item:before {
    width: 1.875rem;
    height: 1.875rem;
    flex-shrink: 0;
    background: white;
    margin-right: 0.625rem;
}

@media (max-width: 560px) {
    .procedure-place__item:before {
        margin-right: 0;
        margin-bottom: 0.625rem;
    }
}

.procedure-place__item:last-child {
    margin-right: 0;
}

@media (max-width: 560px) {
    .procedure-place__item:last-child {
        margin-bottom: 0;
    }
}

.procedure-place__label {
    color: rgba(255, 255, 255, 0.5);
}

.procedure-text {
    position: relative;
    margin-top: 3.75rem;
}

.procedure-text:before {
    content: "";
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    left: 0;
    top: -1.875rem;
    width: 2.5rem;
    height: 2px;
}

@media (max-width: 991px) {
    .procedure-text:before {
        width: 20px;
        left: calc(50% - 10px);
    }
}

@media (max-width: 991px) {
    .procedure-text {
        line-height: 1.2;
        margin-bottom: 30px;
    }
}

.procedure-steps {
    position: relative;
}

.procedure-steps:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    background: #1E1E1E;
    height: 100%;
}

@media (max-width: 991px) {
    .procedure-steps {
        margin-top: 40px;
    }
}

.procedure-step {
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.procedure-step:nth-child(2n) {
    flex-direction: row-reverse;
}

.procedure-step:nth-child(2n) .procedure-step__pic {
    justify-content: flex-start;
}

.procedure-step:nth-child(2n) .procedure-step__pic:before {
    right: auto;
    left: 18.75rem;
    background: linear-gradient(to right, #F7F7F7, transparent);
}

@media (max-width: 991px) {
    .procedure-step:nth-child(2n) .procedure-step__pic {
        justify-content: flex-end;
    }
}

.procedure-step:nth-child(2n) .procedure-step__content {
    text-align: right;
}

@media (max-width: 991px) {
    .procedure-step:nth-child(2n) .procedure-step__content {
        text-align: left;
    }
}

.procedure-step:first-child .procedure-step__icon:before {
    background: white;
}

@media (max-width: 991px) {
    .procedure-step:first-child {
        padding-top: 0;
    }
}

.procedure-step:last-child .procedure-step__icon:after {
    background: white;
}

@media (max-width: 991px) {
    .procedure-step:last-child {
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .procedure-step {
        padding: 14px 0;
    }
}

.procedure-step__icon {
    flex-shrink: 0;
    flex-basis: 1.25rem;
    margin: 0 5rem;
    position: relative;
    height: inherit;
    display: flex;
    align-items: center;
}

.procedure-step__icon:before {
    content: "";
    background: linear-gradient(to top, white 30%, transparent);
    height: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
}

.procedure-step__icon:after {
    content: "";
    background: linear-gradient(to bottom, white 30%, transparent);
    height: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
}

@media (max-width: 991px) {
    .procedure-step__icon {
        width: 10px;
        margin: 0 20px;
    }
}

.procedure-step__icon-plus {
    background: white;
    position: relative;
    z-index: 1;
}

.procedure-step__icon-plus:before {
    width: 1.25rem;
    height: 1.25rem;
    background: #E5252D;
}

.procedure-step__pic {
    flex-basis: calc(50% - 5.625rem);
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.procedure-step__pic:before {
    content: "";
    position: absolute;
    top: 2.625rem;
    right: 18.75rem;
    height: calc(100% - 5.25rem);
    width: calc(100% - 18.75rem);
    background: linear-gradient(to left, #F7F7F7, transparent);
}

@media (max-width: 991px) {
    .procedure-step__pic:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .procedure-step__pic {
        flex-basis: calc(50% - 25px);
        justify-content: flex-start;
    }
}

.procedure-step__pic__element {
    position: relative;
    z-index: 1;
    border: 2.625rem solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.procedure-step__pic__element img {
    height: auto;
    border-radius: 50%;
}

.procedure-step__pic__element:hover .procedure-step__pic__element-default {
    opacity: 0;
}

.procedure-step__pic__element:hover .procedure-step__pic__element-hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .procedure-step__pic__element {
        border: none;
        justify-content: flex-start;
    }
}

.procedure-step__pic__element-default {
    transition: all 0.25s linear;
}

@media (max-width: 991px) {
    .procedure-step__pic__element-default {
        max-width: 200px;
    }
}

.procedure-step__pic__element-hover {
    position: absolute;
    transition: all 0.25s linear;
    opacity: 0;
}

@media (max-width: 991px) {
    .procedure-step__pic__element-hover {
        max-width: 200px;
    }
}

.procedure-step__content {
    flex-basis: calc(50% - 5.625rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .procedure-step__content {
        flex-basis: calc(50% - 25px);
        text-align: right;
    }

    .procedure-step__content .size-24 {
        font-size: 12px;
    }
}

.reviews-slide {
    display: flex;
    padding: 6.25rem 3.75rem;
    background: #F7F7F7;
}

@media (max-width: 991px) {
    .reviews-slide {
        flex-direction: column;
        padding: 20px;
        align-items: center;
    }
}

.reviews-slide__person {
    flex-basis: 31.75rem;
    margin-right: 3.75rem;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(51, 51, 51, 0.2);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .reviews-slide__person {
        flex-basis: auto;
        width: 100%;
        margin-right: 0;
        border-right: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .reviews-slide__person-content {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
    }

    .reviews-slide__person-content .size-30 {
        margin-bottom: 6px;
    }

    .reviews-slide__person-content:before {
        content: "";
        width: 20px;
        height: 2px;
        background: #F04941;
        position: absolute;
        bottom: -10px;
        left: calc(50% - 10px);
    }
}

@media (max-width: 991px) {
    .reviews-slide__content {
        text-align: center;
        font-size: 12px;
        line-height: 1.2;
    }
}

.reviews-slide__person-pic {
    width: 8.125rem;
    height: 8.125rem;
    border-radius: 50%;
    margin-right: 1.875rem;
}

.reviews-slide__person-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .reviews-slide__person-pic {
        margin-bottom: 10px;
    }
}

.reviews-slide__person-line {
    display: inline-block;
    margin: 1.25rem 0;
    height: 3px;
    width: 2.5rem;
    background: #E5252D;
}

@media (max-width: 991px) {
    .reviews-slide__person-line {
        display: none;
    }
}

.swiper-arrow-container-reviews {
    top: 50%;
    margin-top: -2.5rem;
}

.about-project_zones .about-project__info-content {
    color: white;
    background: #E5252D;
}

.about-project_zones .about-project__name span {
    color: white;
}

.about-project_zones .about-project__info:before {
    background: #E5252D;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee {
    display: flex;
    gap: 2.5rem;
    animation: marquee 10s linear infinite;
}

@media (max-width: 991px) {
    .marquee {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .section-smi .size-54 {
        font-size: 24px;
    }
}

.smi-item {
    width: 18.75rem;
    height: auto;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.smi-item:before {
    content: "";
    width: 1px;
    height: 6.25rem;
    background: rgba(51, 51, 51, 0.2);
    position: absolute;
    left: -2.5rem;
}

@media (max-width: 991px) {
    .smi-item:before {
        height: 40px;
        left: -10px;
    }
}

.smi-item img {
    height: auto;
}

@media (max-width: 991px) {
    .smi-item {
        width: 180px;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-wrapper {
    display: flex;
    width: max-content;
}

.art-container_sign {
    min-height: 59rem;
    background-image: url("/local/templates/main/css/../img/sign-bg.jpg");
    background-size: cover;
    background-position: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.art-container_sign .art-flex {
    height: auto;
    margin-top: 0;
    width: 46.375rem;
}

@media (max-width: 991px) {
    .art-container_sign .art-flex {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .art-container_sign {
        min-height: auto;
        padding: 40px 20px;
    }

    .art-container_sign .line {
        display: flex !important;
        margin-right: 20px;
    }
}

.art-info {
    display: flex;
    align-items: center;
    margin-top: 3.75rem;
}

@media (max-width: 991px) {
    .art-info {
        flex-direction: column;
        margin-top: 4px;
        align-items: flex-start;
    }
}

.art-info__item {
    display: flex;
    align-items: center;
    margin-right: 1.375rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .art-info__item {
        margin-right: 0;
        margin-top: 10px;
        align-items: center;
    }
}

.art-info__pic {
    flex-shrink: 0;
    width: 5rem;
    margin-right: 0.625rem;
}

.art-info__pic img {
    height: auto;
}

@media (max-width: 991px) {
    .art-info__pic {
        width: 60px;
        margin-right: 10px;
        height: 60px;
    }
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
}

.accordion_full {
    max-width: 100%;
}

.accordion-item {
    padding: 1.875rem 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.accordion-item:first-child {
    padding-top: 0;
}

.accordion-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.accordion-item.active .accordion-header span:before {
    transform: rotate(45deg);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.accordion-header span {
    flex-shrink: 0;
    margin-left: 1.25rem;
    width: 3.75rem;
    height: 3.75rem;
    background: #F7F7F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header span:before {
    width: 1.375rem;
    height: 1.375rem;
    background: #333333;
}

@media (max-width: 991px) {
    .accordion-header span:before {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 991px) {
    .accordion-header span {
        width: 34px;
        height: 34px;
    }
}

.accordion-content__main {
    max-width: 81.25rem;
    display: flex;
    flex-direction: column;
}

.accordion-content__main ul {
    padding-left: 1.25rem;
}

.accordion-content__main ul li {
    list-style: disc;
}

.accordion-content__main .fw-600 {
    margin-bottom: 10px;
}

.accordion-content__main ul {
    margin-bottom: 10px;
}

.swiper-arrow-container_schema {
    top: 38% !important;
}

@media (max-width: 991px) {
    .section-how {
        padding-top: 80px;
    }
}

.content-section {
    margin-top: 50px;
}

.title-hidden {
    display: none;
}

.advantages-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

@media (max-width: 991px) {
    .advantages-block {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        overflow: auto;
        gap: 20px;
    }

    .advantages-block::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 991px) {
    .advantages-block__item {
        min-width: 200px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advantages-block__item .size-30 {
        font-size: 12px;
    }
}

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

.list-dot-red li {
    position: relative;
    padding-left: 20px;
}

.list-dot-red li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #E5252D;
    position: absolute;
    border-radius: 50%;
    top: 7px;
    left: 0;
}

.about-project_model:before {
    left: -200%;
    width: 400%;
}

.about-project_model .about-project__content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-project_model .about-project__content:before {
    display: none;
}

@media (max-width: 991px) {
    .about-project_model .about-project__content {
        padding: 20px;
        background: #F7F7F7;
        margin-left: -20px;
        margin-right: -20px;
        width: auto;
    }
}

.about-project_model .about-project__pic {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-project_model .about-project__pic {
        margin-top: 0;
        width: 100%;
    }

    .about-project_model .about-project__pic img {
        max-width: 100%;
    }
}

.about-project_model .about-project__person:before {
    content: "";
    right: -120px;
    bottom: 0;
    position: absolute;
    background: #E5252D;
    width: 515px;
    height: 588px;
}

@media (max-width: 1400px) {
    .about-project_model .about-project__person:before {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    .about-project_model .about-project__person:before {
        width: calc(100% + 40px);
        right: -20px;
        height: 100px;
    }
}

@media (max-width: 991px) {
    .about-project_model .about-project__person {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.about-project_model .about-project__pic {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-project_model {
        flex-direction: column-reverse;
        text-align: left;
    }

    .about-project_model:before {
        display: none;
    }

    .about-project_model .title-54, .about-project_model p {
        text-align: left;
    }

    .about-project_model .size-30 {
        font-size: 16px;
    }
}

.advantages-slider-model .advantages-item_slide {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .advantages-slider-model .advantages-item_slide {
        align-items: center;
        gap: 10px;
    }
}

.advantages-slider-model .swiper-slide:nth-child(4), .advantages-slider-model .swiper-slide:nth-child(5), .advantages-slider-model .swiper-slide:nth-child(6) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

@media (min-width: 991px) {
    .advantages-slider-model .swiper-wrapper {
        margin-bottom: 0;
    }
}

.section-advantages-model {
    padding-bottom: 555px;
}

@media (max-width: 991px) {
    .section-advantages-model {
        padding-bottom: 40px;
    }
}

.format-block {
    background: #E5252D;
    color: white;
    margin-top: -395px;
}

@media (max-width: 991px) {
    .format-block {
        margin-top: 40px;
    }
}

.format-block__flex {
    display: flex;
}

.format-block__column {
    width: 50%;
    padding: 60px 80px;
}

.format-block__column:nth-child(2) {
    background: #D82229;
}

.format-block__column a {
    text-decoration: underline;
}

.format-block__column .button {
    width: max-content;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .format-block__column {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .format-block__column {
        padding: 20px 14px;
        display: none;
        width: 100%;
    }

    .format-block__column.active {
        display: block;
    }
}

.format-block__head {
    position: relative;
}

.format-block__title {
    position: relative;
    z-index: 1;
    font-size: 44px;
}

@media (max-width: 1400px) {
    .format-block__title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .format-block__title {
        display: none;
    }
}

.format-block__number {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1400px) {
    .format-block__number {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .format-block__number {
        position: relative;
        font-size: 40px;
        right: auto;
        bottom: auto;
    }
}

.format-block-clicker {
    display: none;
}

@media (max-width: 991px) {
    .format-block-clicker {
        display: flex;
    }
}

.format-block-clicker-trigger {
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    background: #D82229;
    font-family: RFDewiExpanded;
    padding: 20px 14px;
    width: 50%;
    text-align: left;
}

.format-block-clicker-trigger.active {
    background: #E5252D;
}

.format-block__info {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
    padding-top: 60px;
}

.format-block__info:before {
    content: "";
    height: 2px;
    width: 40px;
    background: rgba(255, 255, 255, 0.24);
    position: absolute;
    top: 30px;
    left: 0;
}

@media (max-width: 991px) {
    .format-block__info:before {
        top: 15px;
        width: 20px;
        height: 1px;
    }
}

@media (max-width: 991px) {
    .format-block__info {
        padding-top: 30px;
        gap: 14px;
    }
}

.format-block__info-label {
    color: rgba(255, 255, 255, 0.5);
}

.callback-form-model {
    background: #EBE2DB url("/local/templates/main/css/../img/model/callback.webp") center;
    background-size: cover;
    position: relative;
}

@media (max-width: 991px) {
    .callback-form-model {
        background: #EBE2DB url("/local/templates/main/css/../img/model/callback-m.webp") bottom right no-repeat;
        background-size: contain;
    }
}

.callback-form-model-main {
    padding: 80px 600px 80px 100px;
}

@media (max-width: 1400px) {
    .callback-form-model-main {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .callback-form-model-main {
        padding: 20px 14px;
    }

    .callback-form-model-main .size-54 {
        margin-bottom: 10px;
    }
}

.callback-pic {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
}

@media (max-width: 1400px) {
    .callback-pic {
        display: none;
    }
}

.callback-form-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callback-form-flex .form-input {
    color: #333333;
    border-bottom: 1px solid #333333;
}

.callback-form-flex .form-input::placeholder {
    color: #333333;
}

.callback-form-flex .form-input.error {
    border-bottom: 1px solid red;
}

@media (max-width: 991px) {
    .callback-form-flex {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .callback-form-flex .form-input {
        margin-bottom: 0;
        text-align: left;
    }
}

.callback-form-flex-end {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

.callback-form-flex-end .button {
    width: 360px;
}

@media (max-width: 991px) {
    .callback-form-flex-end .button {
        width: 100%;
    }
}

.callback-form-flex-end a {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .callback-form-flex-end {
        flex-direction: column;
        align-items: flex-start;
    }
}

.callback-disclaimer {
    margin-top: 20px;
    font-size: 0.875rem;
}

.callback-disclaimer li {
    margin-bottom: 10px;
}

.callback-disclaimer li:last-child {
    margin-bottom: 0;
}

.licenses-section {
    overflow: hidden;
}

.licenses-section .swiper-licenses {
    position: relative;
    padding: 0 80px;
}

.licenses-section .swiper-licenses .swiper-slide {
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .licenses-section .swiper-licenses {
        padding: 0;
    }
}

.licenses-section .swiper-arrow-container {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.licenses-section .swiper-pagination-licenses {
    display: none;
}

@media (max-width: 991px) {
    .licenses-section .swiper-pagination-licenses {
        display: flex;
        margin-top: 20px;
    }
}

.license-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    color: #333333;
    box-shadow: 0px 20px 40px rgba(26, 26, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 24px 50px rgba(26, 26, 26, 0.12);
}

.license-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #F7F7F7;
    aspect-ratio: 0.72;
    padding: 16px;
}

.license-card__image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    cursor: pointer;
}

.license-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
}

@media (max-width: 991px) {
    .license-card__footer {
        padding: 18px 20px;
        gap: 12px;
    }
}

.license-card__title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

@media (max-width: 991px) {
    .license-card__title {
        font-size: 16px;
    }
}

.license-card__action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #E5252D;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.author-container {
    display: flex;
    gap: 60px;
}

@media (max-width: 1300px) {
    .author-container {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .author-container {
        flex-direction: column;
        gap: 20px;
    }
}

.author-avatar {
    width: 560px;
    flex-shrink: 0;
}

@media (max-width: 1300px) {
    .author-avatar {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .author-avatar {
        width: 100%;
        max-width: 400px;
    }
}

.author-content {
    width: 100%;
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (max-width: 991px) {
    .experience-items {
        gap: 20px;
    }
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}

.experience-item:after {
    content: "";
    position: absolute;
    left: 67px;
    top: 50px;
    border-radius: 50%;
    width: 6px;
    height: calc(100% - 10px);
    background: radial-gradient(circle at center, #e53935 0 1px, transparent 1px) center top/6px 8px repeat-y;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, #000 35%, #000 65%, rgba(0, 0, 0, 0.2) 100%);
}

@media (max-width: 991px) {
    .experience-item:after {
        display: none;
    }
}

.experience-item:last-child:after {
    display: none;
}

@media (max-width: 991px) {
    .experience-item {
        font-size: 14px;
        flex-direction: column;
        gap: 10px;
    }
}

.experience-item-date {
    flex-shrink: 0;
    width: 140px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #E5252D;
    color: white;
}

@media (max-width: 991px) {
    .experience-item-date {
        width: 110px;
        height: 28px;
    }
}

.cert-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 1600px) {
    .cert-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .cert-items {
        display: flex;
        margin: 0 -20px;
        padding: 0 20px;
        overflow: auto;
    }

    .cert-items::-webkit-scrollbar {
        display: none;
    }
}

.cert-item img {
    transition: all 0.25s linear;
}

.cert-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .cert-item {
        width: 120px;
        flex-shrink: 0;
    }
}

.header-flex {
    padding: 3.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Montserrat;
}

@media (max-width: 61.99875em) {
    .header-flex {
        padding: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
        margin: 0 -20px 40px;
    }
}

.header-logo {
    flex-basis: 14.625rem;
    flex-shrink: 0;
    display: flex;
    margin-right: 2.5rem;
}

@media (max-width: 1520px) {
    .header-logo {
        flex-basis: 12.5rem;
    }
}

@media (max-width: 1400px) {
    .header-logo {
        flex-basis: 11.25rem;
    }
}

@media (max-width: 61.99875em) {
    .header-logo {
        flex-basis: auto;
        width: 117px;
        margin-right: 0;
    }
}

.header-contact {
    margin-left: 5px;
}

@media (max-width: 61.99875em) {
    .header-contact {
        display: none;
    }
}

.header-contact__link {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.125rem;
    margin-bottom: 0.375rem;
    white-space: nowrap;
}

.header-contact__link .red {
    margin-right: 3px;
}

.header-contact__link:last-child {
    margin-bottom: 0;
}

.header-contact__link .icon:before {
    background: #E5252D;
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.375rem;
}

.header-contact__link:hover {
    color: #E5252D;
}

@media (max-width: 1400px) {
    .header-contact__link {
        font-size: 10px;
    }
}

.header-mail {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 5px;
}

.header-mail:hover {
    color: #E5252D;
}

@media (max-width: 1400px) {
    .header-mail {
        font-size: 10px;
    }
}

@media (max-width: 61.99875em) {
    .header-mail {
        font-size: 12px;
        margin-top: 20px;
    }
}

@media (max-width: 61.99875em) {
    .header-menu {
        flex-basis: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.header-menu__items {
    display: flex;
    align-items: center;
    text-align: center;
}

@media (max-width: 61.99875em) {
    .header-menu__items {
        flex-direction: column;
    }
}

.header-menu__item {
    margin: 0 0.9375rem;
    line-height: 1.2;
}

@media (max-width: 1520px) {
    .header-menu__item {
        margin: 0 0.625rem;
    }
}

@media (max-width: 1400px) {
    .header-menu__item {
        margin: 0 10px;
    }
}

@media (max-width: 61.99875em) {
    .header-menu__item {
        margin: 15px 0;
    }
}

.header-menu__link {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.header-menu__link:hover {
    color: #E5252D;
}

@media (max-width: 1520px) {
    .header-menu__link {
        font-size: 0.75rem;
    }
}

@media (max-width: 1400px) {
    .header-menu__link {
        font-size: 10px;
    }
}

@media (max-width: 61.99875em) {
    .header-menu__link {
        font-size: 12px;
        line-height: 16px;
    }
}

.button-header {
    white-space: nowrap;
    margin-left: 5px;
}

@media (max-width: 61.99875em) {
    .button-header {
        flex-shrink: 0;
        margin-top: 10px;
    }
}

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

@media (max-width: 61.99875em) {
    .header-block {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        height: 100dvh;
        right: 0;
        background: white;
        z-index: 10;
        padding: 20px 20px 40px;
        transition: 0.5s;
        left: -100%;
    }
}

.header-block.active {
    left: 0;
}

.header-burger {
    display: none;
}

@media (max-width: 61.99875em) {
    .header-burger {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FAF7F5;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
    }

    .header-burger:before {
        width: 18px;
        height: 13px;
        background: #333333;
    }
}

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

@media (max-width: 61.99875em) {
    .header-contact-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: #E5252D;
        width: 44px;
        height: 44px;
        border-radius: 50%;
    }

    .header-contact-mobile:before {
        width: 20px;
        height: 18px;
    }
}

.header-block__close {
    display: none;
}

@media (max-width: 61.99875em) {
    .header-block__close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        align-items: center;
        justify-content: center;
        background: #FAF7F5;
        border-radius: 50%;
        width: 44px;
        height: 44px;
    }

    .header-block__close:before {
        background: black;
        width: 14px;
        height: 14px;
    }
}

.header-contact-tel-m {
    display: none;
}

@media (max-width: 61.99875em) {
    .header-contact-tel-m {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        height: 44px;
        width: 100%;
        margin-top: 10px;
        font-weight: 600;
        border-radius: 30px;
        flex-shrink: 0;
        border: 1px solid rgba(51, 51, 51, 0.1);
    }
}

.header-contact-tel-m .red {
    margin-right: 4px;
}

.header-contact-wh-m {
    display: none;
}

@media (max-width: 61.99875em) {
    .header-contact-wh-m {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        height: 44px;
        width: 100%;
        flex-shrink: 0;
        margin-top: 10px;
        font-weight: 600;
        border-radius: 30px;
        border: 1px solid #E5252D;
    }

    .header-contact-wh-m .icon {
        margin-right: 10px;
    }

    .header-contact-wh-m .icon:before {
        width: 18px;
        height: 18px;
        background: #E5252D;
    }
}

.header-modal-contact-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40%;
    text-align: center;
    justify-content: center;
}

.menu-mobile-active {
    overflow: hidden;
}

.menu-mobile-active .header-block {
    left: 0;
}

.contact-mobile-active {
    overflow: hidden;
}

.contact-mobile-active .header-modal-contact {
    left: 0;
}

.modal-success-active .header-modal-success {
    left: 0;
}

.header-modal-contact, .header-modal-success {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100dvh;
    transition: 0.5s;
    width: 100%;
    z-index: 10;
    padding: 80px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    justify-content: space-between;
}

.header-modal-contact .form-input, .header-modal-success .form-input {
    border-bottom: 1px solid #333333;
}

.header-modal-contact .form-input::placeholder, .header-modal-success .form-input::placeholder {
    color: rgba(51, 51, 51, 0.29);
}

.header-modal-contact .agreed-message, .header-modal-success .agreed-message {
    color: rgba(51, 51, 51, 0.6);
    margin-top: 10px;
    text-align: center;
}

.form-header-block {
    margin: 0 -20px;
    background: #FAF7F5;
    padding: 40px;
    margin-top: 40px;
}

.form-header-block input {
    color: #333333;
}

footer {
    color: white;
    background: #333333;
    font-family: Montserrat, sans-serif;
    overflow: hidden;
    max-width: 100%;
}

.footer-top {
    display: flex;
}

@media (max-width: 61.99875em) {
    .footer-top {
        flex-direction: column-reverse;
    }
}

.footer-info {
    padding-top: 10rem;
    flex-basis: 50%;
    padding-right: 5rem;
}

@media (max-width: 1400px) {
    .footer-info {
        padding-right: 3.25rem;
        padding-top: 6.25rem;
    }
}

@media (max-width: 61.99875em) {
    .footer-info {
        padding: 40px 0 0;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 47.99875em) {
    .footer-links {
        flex-direction: column;
    }
}

.footer-logo {
    width: 14.625rem;
}

@media (max-width: 47.99875em) {
    .footer-logo {
        width: 11.25rem;
    }
}

.footer-social {
    display: flex;
    align-items: center;
}

@media (max-width: 47.99875em) {
    .footer-social {
        margin-top: 1.75rem;
    }
}

.footer-social__item {
    width: 3.75rem;
    height: 3.75rem;
    background: #383B3D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 0.625rem;
}

.footer-social__item:hover {
    background: #E5252D;
}

@media (max-width: 47.99875em) {
    .footer-social__item {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
}

.footer-social__item-facebook:before {
    width: 0.8125rem;
    height: 1.375rem;
}

.footer-social__item-wt:before {
    width: 1.6875rem;
    height: 1.875rem;
}

.footer-contact {
    margin-top: 12rem;
    display: flex;
    justify-content: space-between;
    font-style: normal;
}

@media (max-width: 1400px) {
    .footer-contact {
        margin-top: 6.25rem;
    }
}

@media (max-width: 47.99875em) {
    .footer-contact {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 47.99875em) {
    .footer-contact__column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-contact__link {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.625rem;
}

.footer-contact__link > span {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    color: #999999;
    margin-left: 0.625rem;
}

.footer-contact__link:hover {
    color: #989898;
}

@media (max-width: 1400px) {
    .footer-contact__link {
        font-size: 1rem;
    }
}

.icon-whats {
    margin-right: 0.25rem;
}

.icon-whats:before {
    background: #999999;
    width: 0.875rem;
    height: 0.875rem;
}

@media (max-width: 1400px) {
    .icon-whats:before {
        width: 1.125rem;
        height: 1.125rem;
    }
}

@media (max-width: 1400px) {
    .icon-whats {
        margin-right: 0.5rem;
    }
}

.footer-contact__column:nth-child(2) {
    margin-right: 1.875rem;
}

@media (max-width: 1400px) {
    .footer-contact__column:nth-child(2) {
        margin-right: 0;
    }
}

.footer-contact__street {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
    margin-bottom: 0.625rem;
}

@media (max-width: 1400px) {
    .footer-contact__street {
        font-size: 1rem;
    }
}

.footer-contact__link-mail {
    font-size: 1rem;
}

.requisites {
    margin-top: 5.625rem;
    display: flex;
    width: 100%;
    background: #383838;
}

.requisites:hover {
    background: #383B3D;
}

.requisites:hover .requisites-icon {
    background: #CC2128;
}

@media (max-width: 47.99875em) {
    .requisites {
        margin-top: 10px;
    }
}

.requisites-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 7.5rem;
    background: #E5252D;
    transition: 0.25s;
}

.requisites-icon:before {
    width: 2.5rem;
    height: 2.5rem;
}

@media (max-width: 47.99875em) {
    .requisites-icon {
        flex-basis: 50px;
    }
}

.requisites-content {
    padding: 1.875rem 2.5rem;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1400px) {
    .requisites-content {
        padding: 1.25rem 1.875rem;
    }
}

@media (max-width: 47.99875em) {
    .requisites-content {
        padding: 10px 20px;
    }
}

.requisites-content__label {
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
    line-height: 1.25rem;
}

@media (max-width: 1400px) {
    .requisites-content__label {
        margin-bottom: 0.375rem;
    }
}

@media (max-width: 47.99875em) {
    .requisites-content__label {
        font-size: 8px;
    }
}

.requisites-content__title {
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

@media (max-width: 1400px) {
    .requisites-content__title {
        margin-bottom: 0.375rem;
    }
}

@media (max-width: 47.99875em) {
    .requisites-content__title {
        font-size: 12px;
        line-height: 1.3;
    }
}

.requisites-content__size {
    color: #989898;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (max-width: 47.99875em) {
    .requisites-content__size {
        font-size: 8px;
    }
}

.footer-line {
    margin-top: 3.75rem;
    display: flex;
    align-items: center;
}

.footer-line .icon-plus {
    margin-right: 1.25rem;
}

.footer-line:after {
    content: "";
    width: 100%;
    height: 0.125rem;
    background: white;
}

@media (max-width: 1400px) {
    .footer-line {
        margin-top: 3.25rem;
    }
}

@media (max-width: 47.99875em) {
    .footer-line {
        margin-top: 20px;
    }
}

.icon-plus {
    flex-shrink: 0;
}

.icon-plus:before {
    width: 1.125rem;
    height: 1.125rem;
    background: #E5252D;
}

.footer-search {
    flex-basis: 50%;
    position: relative;
}

.footer-search:before {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 500%;
    background: #383838;
    position: absolute;
}

@media (max-width: 61.99875em) {
    .footer-search:before {
        left: -20px;
    }
}

.footer-search__container {
    position: relative;
    z-index: 1;
    padding-top: 10rem;
    padding-left: 5rem;
}

@media (max-width: 1400px) {
    .footer-search__container {
        padding-left: 3.25rem;
        padding-top: 6.25rem;
    }
}

@media (max-width: 61.99875em) {
    .footer-search__container {
        padding: 40px 0;
    }
}

@media (max-width: 47.99875em) {
    .footer-search__container {
        text-align: center;
    }
}

.form-line {
    margin-top: 6.3125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-line .form-item {
    width: calc(50% - 1.25rem);
}

@media (max-width: 47.99875em) {
    .form-line .form-item {
        width: 100%;
    }
}

.form-line .agreed-message {
    flex-basis: calc(50% - 1.25rem);
}

@media (max-width: 1400px) {
    .form-line .agreed-message {
        flex-basis: calc(62% - 1.25rem);
        padding-right: 6%;
        font-size: 1rem;
    }
}

@media (max-width: 47.99875em) {
    .form-line .agreed-message {
        flex-basis: auto;
        padding-right: 0;
        margin-top: 1rem;
        font-size: 0.875rem;
    }
}

.form-line .button {
    flex-basis: calc(50% - 1.25rem);
}

@media (max-width: 1400px) {
    .form-line .button {
        flex-basis: calc(38% - 1.25rem);
    }
}

@media (max-width: 47.99875em) {
    .form-line .button {
        flex-basis: auto;
    }
}

@media (max-width: 1400px) {
    .form-line {
        margin-top: 3.4375rem;
    }
}

@media (max-width: 47.99875em) {
    .form-line {
        margin-top: 1.875rem;
        flex-direction: column;
    }
}

.footer-search__title {
    font-family: RFDewiExtended, sans-serif;
    font-size: 1.875rem;
    line-height: 2.5rem;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .footer-search__title {
        font-size: 1.6875rem;
    }
}

@media (max-width: 47.99875em) {
    .footer-search__title {
        font-size: 1.3125rem;
        line-height: 1.3;
    }
}

.footer-search__description {
    font-weight: 500;
    line-height: 1.625rem;
    margin-top: 1.25rem;
}

@media (max-width: 1400px) {
    .footer-search__description {
        font-size: 1.125rem;
        line-height: 1.875rem;
        margin-top: 1.375rem;
    }
}

@media (max-width: 47.99875em) {
    .footer-search__description {
        font-size: 0.8125rem;
        line-height: 1.3;
        margin-top: 1.875rem;
    }
}

.form-line-bottom {
    margin-top: 5.25rem;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1400px) {
    .form-line-bottom {
        margin-top: 5rem;
    }
}

@media (max-width: 47.99875em) {
    .form-line-bottom {
        margin-top: 0;
    }
}

.form-line-bottom .button {
    flex-basis: auto;
}

.form-line-bottom .check-element {
    margin-top: 20px;
}

.footer-bottom {
    padding: 3.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .footer-bottom {
        font-size: 0.8125rem;
    }
}

@media (max-width: 61.99875em) {
    .footer-bottom {
        padding: 40px 0;
    }
}

@media (max-width: 47.99875em) {
    .footer-bottom {
        flex-direction: column-reverse;
    }
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 47.99875em) {
    .footer-copy {
        margin-top: 10px;
    }
}

.footer-politic {
    text-decoration: underline;
}

.phone-input-wrapper {
    align-items: center;
    display: flex;
    font-family: system-ui, sans-serif;
    gap: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #333333;
    height: 60px;
}

.country-dropdown {
    position: relative;
}

.current-country {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 0.35rem;
    padding: 0 20px 0 0;
    text-transform: uppercase;
}

.current-country:after {
    border-color: transparent #000 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 5px 0;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.current-country svg {
    background: #eee;
    border-radius: 2px;
    height: 15px;
    object-fit: cover;
    width: 20px;
}

.country-options {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    left: -10px;
    max-height: 200px;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 14px);
    transform: scaleY(0.95);
    transform-origin: top;
    transition: all 0.2s ease;
    width: 220px;
    z-index: 10;
}

.country-options.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
}

.country-option {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 0.5rem;
    padding: 6px 10px;
    text-align: left;
    transition: background-color 0.2s ease;
    width: 100%;
}

.country-option.selected {
    background-color: #e6f0ff;
    font-weight: 600;
}

.country-option:hover {
    background-color: #f5f5f5;
}

.country-option svg {
    background: #eee;
    border-radius: 2px;
    height: 15px;
    width: 20px;
}

.clue-input {
    background: #fff;
    border-radius: 6px;
    bottom: 100%;
    display: inline-flex;
    max-width: 100%;
    opacity: 0;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    position: absolute;
    transition: all 0.25s linear;
}

.clue-input.active {
    opacity: 1;
    transform: translateY(-5px);
}

input[type=tel] {
    background-color: transparent;
    border: none;
    color: #333;
    flex: 1;
    font-size: 14px;
    outline: none;
}

.phone-input.error .phone-input-wrapper {
    border-bottom: 1px solid red;
}

.form-flex .phone-input {
    height: 100%;
}

.form-flex .phone-input-wrapper {
    height: 100%;
    padding: 14px;
    border: 1px solid #EBEDEB;
    background: white;
    border-radius: 30px;
}

.form-modal-main .phone-input-wrapper {
    height: 44px;
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid #EBEDEB;
}

.check-element {
    display: flex;
    position: relative;
}

.check-element input:checked + label .check-main {
    border: 1px solid #E5252D;
}

.check-element input:checked + label .check-main:before {
    opacity: 1;
    background: #E5252D;
}

.check-element input.error + label .check-main {
    border: 1px solid red !important;
}

.check-element label {
    display: flex;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
}

.input-absolute {
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
}

.check-main {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E5E4;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-main:before {
    opacity: 0;
    background: #6BD677;
}

.presentation-form__line-bottom .check-main, .form-line-bottom .check-main {
    border: 1px solid #E4E5E4 !important;
}

.presentation-form__line-bottom .check-main:before, .form-line-bottom .check-main:before {
    background: #E4E5E4 !important;
}

.swiper {
    overflow: hidden;
}

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

.swiper-vertical .swiper-wrapper {
    flex-direction: column;
}

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

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

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

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

.form-disclaimer {
    margin-top: 20px;
}

.form-disclaimer__item {
    display: block;
    font-size: 12px;
}

.footer-contraindications img {
    width: 100%;
    opacity: 0.5;
}

/* End */


/* Start:/local/templates/main/css/style_1.css?1781173438315*/
.form-content {
  width:400px;
}

@media (max-width: 1400px) {
  .form-content {
     width:300px;
  }
}

@media (max-width: 1200px) {
  .form-content {
   width:100%;
  }
}

.location-map {
  overflow-x: auto;
}

.presentation-form__errors
{
    margin-top: 20px;
    font-weight: bold;
}

/* End */


/* Start:/local/templates/main/css/style_3.css?177799078530371*/
.breadcrumbs ul {
    display: flex;
    list-style: none;
    color: unset;
    padding: 0;
    margin: 0;
}

.breadcrumbs ul li:not(:first-child)::before {
    content: "\2022";
    margin: 0 5px 0 8px;
    color: #d9d9d9;
}

.breadcrumbs ul li {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
}

.breadcrumbs .previous a {
    color: #E5252D;
}

.breadcrumbs .previous a:hover {
    text-decoration: underline;
    color: #E5252D;
}
.breadcrumbs .inactive a {
    pointer-events: none;
    cursor: default;
}

.main-blog_box {
    margin: 0 -15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}

.main-blog h1 {
    font-family: Montserrat;
    font-size: 54px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 20px;
}

.main-blog_card {
    width: calc(100% / 3 - 30px);
    box-sizing: border-box;
    min-width: 400px;
    padding: 15px;
}

.blog_card-img {
    height: 340px ;
    width: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog_card-info {
    transition: all 0.3s ease;
    padding: 40px;
}

.blog_card-info-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #33333380;
    margin-bottom: 10px;
    font-family: Montserrat;
}

.blog_card-info-date.date {

}
.blog_card-info-date .info {
    /* display: none;*/
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.blog_card-info-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: #333333;
    font-family: Montserrat;

}

.blog_card-info:hover {
    background: #E5252D;
}

.blog_card-info:hover .blog_card-info-date {
    color: #FFFFFF80;

}
.blog_card-info:hover .blog_card-info-title {
    color: #ffffff;
}

.pagination_blog {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination_blog li {
    margin: 5px;
}

.bottom_blog {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #FAF7F5;
    color: black;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination_blog .active a {
    background-color: #FF4D4D; 
    color: white;
}

.pagination_blog .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    width: 60px;
    height: 60px;
    font-size: 18px;
}

.bottom_blog{
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    padding: 10px 20px;
    width: auto;
    height: auto;
}

.pagination_blog a:hover:not(.active a) {
    background-color: #f0f0f0;
}

.reload_icon {
    background-image: url("/local/templates/main/css/../img/icon/reload.svg");
    min-height: 20px;
    min-width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.pagination_blog-box {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

@media (max-width: 1300px) {
    .main-blog_card {
        min-width: 340px;
    }

}

@media (max-width: 1150px) {
    .main-blog_box {
        margin: 0;
        justify-content: start;
    }
    .main-blog_card {
        width: calc(100% / 2 - 30px);
        box-sizing: border-box;
        min-width: 340px;
        padding: 15px;
    }

}

@media (max-width: 750px) {
    .main-blog_box {
        margin: 0;
        justify-content: start;
    }
    .main-blog_card {
        width: 100%;
        box-sizing: border-box;
        min-width: 340px;
        padding: 15px;
    }
    .blog_card-info {
        padding: 30px;
    }
    .blog_card-info-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }
    .blog_card-info-date {
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .pagination_blog a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .pagination_blog .load-more a {
        line-height: 15px;
        font-size: 10px;
        border-radius: 25px;
        padding: 10px 20px;
        width: auto;
        height: auto;
    }
    .reload_icon {
        min-width: 10px;
        min-height: 10px;
    }
    .pagination_blog .dots {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    .main-blog h1 {
         font-size: 45px;
         line-height: 50px;
     }
     .load-more {
        display: none;
     }
}

/* detail */
.main-bd-article h2{
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    margin: 40px 0;
}
.main-bd-article h3{
    font-size: 18px;
    font-weight: 900;
    margin-top: 1em;
}
.main-bd-article ul, ol{
    padding-left:20px;
}
.main-bd-article li{
    position: relative;
    padding-left: 20px;
}

.main-bd-article ul li::before {
    content: '•';
    color: red;
    position: absolute;
    left: 0;
    font-size: 30px;
    line-height: 1;
}

.blog-d_top h1 {
    font-family: Montserrat;
    font-size: 54px;
    font-weight: 600;
    line-height: 60px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 20px;
}

.blog-d_data {
    margin-top: 30px;
    display: flex;
}
.blog-d_data-item {
    display: flex;
    margin-right: 20px;
    align-items: center
}
.bddi-icon {
    margin-right: 5px;
    min-width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.bddi-text {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
}
.cross-line {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
}

.cross {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 20px;
    margin-left: 10px;
}



.cross:before,
.cross:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 18px;
    background: #E5252D;
}

.cross:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.cross:after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.line-1 {
    position: relative;
    width: 100%;
    height: 2px;
}
.line-1:after {
    content: "";
    position: absolute;
    width: auto;
    min-width: 95%;
    background: #333333;
    min-height: 2px;
}

.main-bd-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main-bd-article {
    width: 65%;
    min-width: 600px;
    margin-right: 60px;
}
.main-bd-right {
    width: 35%;
    min-width: 400px;
}

.content_list {
    counter-reset: formList;
}
.content_list ul{
    padding-left:0px;
}
.content_list ul li {
    position: relative;
    padding: 0 0 0 60px;
    margin: 25px 0;
    list-style:none;
}
.content_list ul li::before {
    counter-increment: formList;
    content: counter(formList);
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: #ffffff;
    background-color: #E5252D;
    font-family: Montserrat;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
}

.content_list li a {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #333333;
}


.article-subtitle {
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    margin: 40px 0;
}

.main-bd-article p {
    margin-top: 1em;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}


.article_box {
    position: relative;
    box-sizing: border-box;
    margin: 40px 0;
}

.article_box .line {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article_box .line .icon {
    margin-bottom: 1.25rem;
    margin-right: 0;
}

.article_box .line:after{
    height: 100%;
    width: 2px;
}


.article_box p{
    margin-left: 30px;
}

.article_quote-box {
    position: relative;
    background: #F7F7F7;
    padding: 40px;
    box-sizing: border-box;
    margin: 40px 0;
}

.article_quote-box::before {
    margin-left: 40px;
    position: absolute;
    top:0;
    left: 0;
    width: 15px;
    height: 100%;
    content: '';
    background-image: url('/local/templates/main/img/red-sign_1.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.article_quote-box-red {
    position: relative;
    background: #E5252D0D;
    padding: 40px;
    box-sizing: border-box;
    margin: 40px 0;
}

.article_quote-box-red::before {
    margin-left: 40px;
    position: absolute;
    top:0;
    left: 0;
    width: 30px;
    height: 100%;
    content: '';
    background-image: url('/local/templates/main/img/feedback.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.article_quote {
    margin-left: 70px;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    text-align: left;
}

.article_quote_author {
    margin-left: 70px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 25.6px;
    text-align: left;
    margin-top: 10px;
}

.article_img-100 img{
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.article_img-n-text {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
    align-items: center;
}

.article_img-50 {
    max-width: 50%;
    max-height: 560px;
    object-fit: cover
}
.article_img-n-text p {
    width: 45%;
    margin-left: 40px;
}

.article-checked_box,
.article-share_box {
    background: #FAF7F5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.main-bd-right h3 {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
}

.cb-photo {
    min-width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.cb-text {
    margin-left: 20px;
}

.cb-text_name {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin-bottom: 6px;
}

.cb-text_desc {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #2F3133BF;

}



.checker-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.acb-white-line {
    width: 100%;
    height: 2px;
    background: white;
    margin: 20px 0;
}

.share-items {
    display: flex;
    flex-direction: row;
}
.share-item {
    width: 60px;
    min-height: 60px;
    background-color: #383B3D;
    border-radius: 50%;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}


.blog-kinds-slider .kinds:before {
    content: "";
    background: #faf7f5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-other_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.blog-other_head .swiper-arrow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    width: 10.625rem;
    margin-top: 0;
}
.blog-other_box {
    margin: 100px 0;
}
.blog-other_box-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.blog-other_box-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    text-align: left;
}
.blog-other_box-arrows {
    display: flex;
    margin-left: -100px;
}

.blog-other_box-arrow  {
    width: 60px;
    background-color: #2F3133;
    height: 60px;
    border-radius: 50%;
}

.blog-other_box-items {
    display: flex;
    justify-content: space-between;
    height: fit-content;
}

.blog-other_box-item {
    box-sizing: border-box;
    width: 30%;
    height: fit-content;
}

.blog-other_box-items .slick-slide {
    margin: 0 10px; 
}

.blog-other_box-items .slick-arrow {
    position: absolute;
    top: -100px;
    width: 5rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(229, 37, 45, .3);
    cursor: pointer;
    background-color: aqua;
}
.blog-other_box-items .slick-arrow:after {
    position: absolute;
    background: #e5252d;
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    content: "";
    -webkit-transition: .25s;
    transition: .25s;
    -webkit-box-shadow: 0 20px 30px 0 rgba(240, 73, 65, .3);
    box-shadow: 0 20px 30px 0 rgba(240, 73, 65, .3);
}

.blog-other_box-items .slick-arrow:hover::after {
    width: 5rem;
    height: 5rem;
}

.blog-other_box-items .slick-prev {
    background-color: #2F3133;
    left: 91%;
    background-size: contain;
    background-image: url('https://swf-aa-luxefaceluxebody-test-1.swforge.ru/local/templates/main/img/icon/icon-arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.blog-other_box-items .slick-next {
    background-size: contain;
    background-image: url('https://swf-aa-luxefaceluxebody-test-1.swforge.ru/local/templates/main/img/icon/icon-arrow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 950px) {
    .blog-other_box-items .slick-prev {
        left: 85%;
    }
}


.blog-other_bi-text {
    padding: 30px 5px 40px;
    transition: all 0.3s ease;
}
.blog-other_bi-text:hover {
    background-color: #E5252D;
}

.blog-other_bi-text:hover .blog-other_bi-title {
    color: #ffffff;
}

.blog-other_bi-date {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #33333380;
    margin-bottom: 10px;
}
.blog-other_bi-title {
    font-family: RFDewiExtended, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: #333333;
}

.blog-other_bi-photo {
    height: 300px;
    min-height: 300px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media (max-width: 1200px) { 
    .container {
        overflow-x: hidden;
    }
    .main-bd-box { 
        flex-wrap: wrap; 
    } 
    .main-bd-article {
        width: 100%;
        min-width: 100%;
    }
    .main-bd-right {
        margin-top: 30px;
        width: 100%;
        min-width: auto;
    }
    .main-bd-right h3 {
        text-align: center;
    }
    .share-items {
        justify-content: center;
    }
    .blog-other_head .swiper-arrow-container {
        padding: 0;
    }
}

@media (max-width: 750px) { 
    .blog-d_top h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .cross-line {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .main-bd-article p {
        margin-top: 1em;
        font-family: Montserrat;
        font-size: 16px;
        line-height: 26px;
    }
    .article-subtitle {
        font-size: 24px;
        line-height: 30px;
        margin: 30px 0;
    }
    .breadcrumbs ul {
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .nav {
        display: none!important;
    }
    .blog-other_box-item {
        width: 100%;
    }
    .blog-other_box-items {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .blog-other_head .swiper-arrow-container{
        display: none;
    }
}

.hidden{
    display: none !important;
}

.main-blog_card.hidden{
    display: none !important;
}

.pag_blog_block_action.hidden{
    display: none !important;
}
/* Отзывы */

.reviews-page h1 {
    font-family: Montserrat;
    font-size: 54px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #333333;
    text-transform: uppercase;
    margin-top: 40px;
}
.reviews-page_main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 100px 0;
}
.reviews-page_menu {
    width: 30%;
    min-width: 300px;
    margin-right: 20px;
}
.reviews-page_menu-i {
    min-height: 80px;
    display: flex;
    align-items: center;
    border-bottom: hsla(0, 0%, 20%, 0.2) 1px solid;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    transition: all 0.3 ease;
}

.reviews-page_menu-i a {
    display: inline-block;
    transition: transform 0.2s;
}

.reviews-page_menu-i a:hover {
    transform: translateY(-2px);
}

.reviews-page_menu-i.active {
    background-color: #E5252D;
    color: #ffffff;
    padding-left: 20px;
}

.reviews-page_items {
    width: 100%;
}

.reviews-page_items {
    display: flex;
    flex-direction: column;
}
.reviews-page_item {
    background-color: #FAF7F5;
    padding: 40px;
    margin-bottom: 10px;
}
.reviews-page_item-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.reviews-page_item-top-left {
    display: flex;
    flex-direction: row;
}
.reviews-page_item-photo {
    min-width: 80px;
    width: 80px;
    max-height: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.reviews-page_item-text {

}
.reviews-page_item-name {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;

}
.reviews-page_item-desc {

    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #2F3133BF;

}
.reviews-page_item-top-date {
    color: #2F313380;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: right;

}
.reviews-page_item-line {
    width: 40px;
    min-width: 40px;
    height: 2px;
    background-color: #E5252D;
    margin: 20px 0 20px 110px;
}
.reviews-page_item-review-text {
    margin-left: 110px;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    text-align: left;
    color: #2F3133;

}
.reviews-page_item-review-from {
    margin-top: 20px;
    margin-left: 110px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.reviews-page_item-review-from-i {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    border-radius: 50%;
}

.reviews-page_item-review-from-i.google {
    background: url('/local/templates/main/img/icon/google.svg') no-repeat center,
    #ffffff;
}

.reviews-page_item-review-from-i.yandex {
    background: url('/local/templates/main/img/icon/yandex.svg') no-repeat center,
    #ffffff;
}

.reviews-page_item-review-from a {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    text-decoration: underline;
    color: #2F3133;
    transition: all 1s ease-out;
}
.reviews-page_item-review-from a:hover {
    text-decoration: none;
}

.pagination_s {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 900px) {
    .reviews-page_main {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin: 20px 0 40px;
        align-items: center;
    }
    .reviews-page_menu {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .eviews-page_menu-i {
        min-height: 60px;
    }
    .reviews-page_items {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .reviews-page h1 {
        font-size: 30px;
        line-height: 36px;
        margin: 20px 0;
    }
    .reviews-page_menu-i {
        min-height: 60px;
        font-size: 16px;
        line-height: 20px;
    }
    .reviews-page_item-photo {
        min-width: 60px;
        width: 60px;
        max-height: 60px;
    }
    .reviews-page_item-review-text {
        margin: 0;
    }
    .reviews-page_item-review-from {
        margin: 20px 0 0;
    }
    .reviews-page_item-line {
        margin: 20px 0;
    }
    .reviews-page_item-desc {
        font-size: 14px;
        line-height: 17px;
    }
    .reviews-page_item-name {
        font-size: 18px;
        line-height: 24px;
    }
    .reviews-page_item-review-text {
        font-size: 16px;
        line-height: 26px;
    }
    .reviews-page_item-top-date {
        font-size: 12px;
    }
}


body {
    overflow-x: hidden;
}

@media (max-width: 400px) {
    .reviews-page h1 {
        font-weight: bold;
        font-size: 24px;
        line-height: 30px;
        margin: 20px 0;
    }
    .reviews-page_item-top-left {
        display: flex;
        flex-direction: column;
    }
    .reviews-page_item-top {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .reviews-page_item-top-date {
        margin: 15px 0 0;
        font-size: 11px;
    }
    .reviews-page_item-review-text,
    .reviews-page_item-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .reviews-page_item-photo {
        height: 60px;
        margin-bottom: 10px;
    }
    .reviews-page_menu-i {
        min-height: 40px;
        font-size: 14px;
        line-height: 16px;
    }
    .reviews-page_item-review-from-i {
        min-width: 24px;
        min-height: 24px;
        width: 24px;
        height: 24px;
    }
    .reviews-page_item-review-from a {
        font-size: 13px;
        font-weight: 400;
        line-height: 16px;
    }
    .blog-other_box-title {
        font-size: 25px;
        line-height: 30px;
    }
    .blog-other_box {
        margin: 50px 0;
    }
}

.nav {
    display: flex;
    flex-direction: column;
    width: 100px;
    margin-left: 10px;
}

.language {
    position: absolute;
    max-height: 0;
    overflow: hidden;
    width: 100px;
    top:6.65em;
    z-index: 2;
}

.language__main-item {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #F7F7F7;
    width: 76px;
    height: 3.75rem;
    border-radius: 30px;
    transition: 0.9s cubic-bezier(1, 0, 1, 0);
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-transform:uppercase;
}
.language__main-item__item:hover {
    background-color: #E6E6E6;
    cursor: pointer;
}

.language-list {
    position: absolute;
    height: 420px;
    padding: 0;
    margin: 0;
    max-height: 100%;
}
.language-list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F7F7;
    width: 76px;
    height: 44px;
}
.language-list__item-btn {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    background-color: transparent;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}
.language-list__item:last-child {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.language-list__item:hover {
    background-color: #E6E6E6;
    cursor: pointer;
}

.active_lang {
    height: 300px;
    max-height: 420px;
    transition: max-height 1s;
    overflow: hidden;
}

.hidden-language {
    max-height: 0;
    height: 221px;
    overflow: hidden;
    transition: max-height 1s;
}

.language__main-item-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: 0.01s cubic-bezier(0, 0, 0, 0);
}

.arrow-svg--active {
    height: 10px;
    transform: translate(24px, 18px) rotate(180deg);
}

.language-block {
    display: none;
}

.language-mobile-active {
    overflow: hidden;
}
.language-mobile-active .language-block{
    left: 0;
}
.language-choice-m  {
    display: none;
}

@media (max-width: 990px) {
.language {
    top:4.65em;
}
}
@media (max-width: 61.99875em) {
    .language-block {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        height: 100dvh;
        right: 0;
        background: white;
        z-index: 10;
        padding: 20px 20px 40px;
        transition: 0.5s;
        left: -100%;
    }

    .language-choice-m {
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        height: 44px;
        width: 100%;
        margin-top: 10px;
        font-weight: 600;
        border-radius: 30px;
        flex-shrink: 0;
        border: 1px solid rgba(51, 51, 51, 0.1);
        margin-bottom: 80px;
        text-transform: uppercase;
    }
    .language-choice-m .icon:before {
        width: 12px;
        height: 12px;
        background: #E5252D;
    }
}

/* detail modile */

@media (max-width: 420px) { 
    .blog-d_top h1 {
        font-size: 25px;
        line-height: 30px;
    }
    .blog-other_box {
        margin: 50px 0;
    }
    .blog-other_box-title {
        font-size: 25px;
        line-height: 30px;
    }
    .blog-other_box-top {
        margin: 0 0 20px 0;
    }
    .bddi-text {
        font-size: 12px;
    }
    .bddi-icon {
        margin-right: 5px;
        min-width: 12px;
        height: 12px;
    }
    .cross-line {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .content_list li::before {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 17px;
    }
    .content_list li a {
        font-size: 14px;
        line-height: 20px;
    }
    .content_list li {
        position: relative;
        padding: 0 0 0 40px;
        margin: 15px 0;
    }
    .main-bd-article p {
        margin-top: 1em;
        font-family: Montserrat;
        font-size: 16px;
        line-height: 26px;
    }
    .article-subtitle {
        font-size: 16px;
        line-height: 20px;
        margin: 20px 0;
    }
    .breadcrumbs ul {
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .article_img-n-text {
        flex-direction: column;
        align-items: normal;
    }
    .article_img-50 {
        max-width: 100%;
    }
    .article_img-n-text p {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        text-align: justify;
    }
    .article-checked_box, .article-share_box {
        padding: 20px;
        margin-bottom: 20px;
    }
    .cb-photo {
        min-width: 50px;
        height: 50px;
    }
    .cb-text_name {
        font-size: 15px;
        line-height: 20px;

    }
    .cb-text {
        word-break: break-word;
    }
    .share-item {
        width: 50px;
        min-height: 50px;
    }
    .blog-other_bi-photo {
        height: 255px;
        min-height: 255px;
    }

}

/* detail modile */

@media (max-width: 420px) { 
    .main-blog_card {
        width: 100%;
        box-sizing: border-box;
        min-width: fit-content;
        padding: 5px;
        margin: 5px 0;
    }
    .blog_card-info {
        padding: 10px;
    }
}

.main-bd-box img {
    object-fit: cover;
}

@media (max-width: 1200px) { 
    .main-bd-box img {
        width: 100%;
    }
}

@media (max-width: 750px) { 
    .main-bd-box img {
        height: 400px;
    }
}

@media (max-width: 350px) { 
    .main-bd-box img {
        height: 200px;
    }
    .main-bd-box {
        max-width: 280px;
    }
}

.article_quote-box{
    padding-left: 120px;
}
.article_quote-box::before{
    margin-top: 60px;
    background-position: top;
    background-size: contain;
}
@media(max-width: 991px) {
    .article_quote-box{
        padding: 20px 20px 20px 40px;
    }
    .article_quote-box::before{
        margin-left: 10px;
        margin-top: 42px;
    }
}
/* End */
/* /local/templates/main/css/style.css?1786460776178771 */
/* /local/templates/main/css/style_1.css?1781173438315 */
/* /local/templates/main/css/style_3.css?177799078530371 */
