

/* Start:/local/templates/longidaza/css/main_new.css?1782720429157018*/
: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
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/44*27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-vertical>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}

@font-face {
    font-family: "Circe";
    src: url("/local/templates/longidaza/assets/fonts/Circe-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: "Circe";
    src: url("/local/templates/longidaza/assets/fonts/Circe-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "BebasNeue";
    src: url("/local/templates/longidaza/assets/fonts/BebasNeue-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: "BebasNeue";
    src: url("/local/templates/longidaza/assets/fonts/BebasNeue-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased
}

html {
    --w: 1920;
    font-size: calc(100vw/var(--w));
    font-family: "Circe";
    font-style: normal;
    font-weight: normal;
    -webkit-animation: bugfix infinite 1s;
    line-height: 1.2;
    margin: 0;
    padding: 0
}

body {
    font-style: normal;
    font-weight: normal;
    -webkit-animation: bugfix infinite 1s;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #fff
}

iframe {
    pointer-events: fill !important
}

input,
textarea,
fieldset {
    -webkit-animation: bugfix infinite 1s;
    line-height: inherit;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: inherit
}

a {
    color: unset
}

a,
a:hover {
    text-decoration: none
}

button,
input,
a,
textarea {
    outline: none;
    cursor: pointer;
    font: inherit
}

button:focus,
input:focus,
a:focus,
textarea:focus {
    outline: none
}

button:active,
input:active,
a:active,
textarea:active {
    outline: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
    margin: 0;
    padding: 0
}

p {
    margin-top: 0;
    margin-bottom: 0
}

img,
picture,
svg,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

button {
    border: none;
    color: inherit;
    font: inherit;
    text-align: inherit;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

ul {
    padding: 0;
    margin: 0
}

ul li {
    margin: 0;
    padding: 0;
    list-style: none
}

.container {
    width: 1752rem;
    margin: 0 auto
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

sup {
    line-height: 40%
}

:root {
    --theme-primary: #dc034c;
    --theme-dark: #ae0a3d;
    --theme-light-2: #e491ac
}

main.page-urologiya {
    --theme-primary: #017e90;
    --theme-dark: #00515d;
    --theme-light-2: #73c1cc
}

body {
    color: #000;
    background: linear-gradient(180deg, #d4d4d4 0%, #f4f4f4 100%);
    font-family: "Circe"
}

.lock body {
    overflow: hidden;
    touch-action: none
}

body.no-scroll {
    overflow: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    position: relative
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: 124rem
}

.desktop {
    display: flex
}

.mobile {
    display: none
}

.flex {
    display: flex
}

.grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.grid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.grid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

.cv {
    align-items: center
}

.ch {
    justify-content: center
}

.ev {
    align-items: flex-end
}

.sv {
    align-items: flex-start
}

.sb {
    justify-content: space-between
}

.jfe {
    justify-content: flex-end
}

.dc {
    flex-direction: column
}

.flex-cc {
    display: flex;
    align-items: center;
    justify-content: center
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.center {
    text-align: center
}

sup {
    font-weight: 700;
    font-size: 14rem !important;
    line-height: 80%;
    letter-spacing: .01em;
    text-transform: uppercase;
    position: relative;
    top: -2rem
}

.h1 {
    font-weight: 700;
    font-size: 52rem;
    line-height: 130%;
    letter-spacing: .01em;
    text-transform: uppercase
}

.h2 {
    font-weight: 700;
    font-size: 44rem;
    line-height: 140%;
    letter-spacing: .01em;
    text-transform: uppercase
}

.h2 sup {
    top: -10rem
}

.h4 {
    font-weight: 700;
    font-size: 24rem;
    line-height: 120%;
    letter-spacing: .01em;
    text-transform: uppercase
}

.h5 {
    font-weight: 700;
    font-size: 22rem;
    line-height: 140%;
    letter-spacing: .01em;
    text-transform: uppercase
}

.h6 {
    font-weight: 700;
    font-size: 20rem;
    line-height: 140%;
    text-transform: uppercase
}

.h7 {
    font-weight: 400;
    font-size: 18rem;
    line-height: 120%;
    text-transform: uppercase
}

.txt54 {
    font-size: 54rem
}

.txt54 sup {
    top: -10rem
}

.txt40 {
    font-weight: 700;
    font-size: 40rem;
    line-height: 130%;
    letter-spacing: .01em
}

.txt36 {
    font-size: 36rem;
    line-height: 140%
}

.txt32 {
    font-weight: 400;
    font-size: 32rem;
    line-height: 140%;
    letter-spacing: .01em
}

.txt30 {
    font-size: 30rem;
    line-height: 120%
}

.txt28 {
    font-size: 28rem;
    line-height: 120%
}

.txt24 {
    font-weight: 400;
    font-size: 24rem;
    line-height: 120%;
    letter-spacing: .01em
}

.txt22 {
    font-size: 22rem;
    line-height: 140%;
    letter-spacing: .01em
}

.txt20 {
    font-weight: 400;
    font-size: 20rem;
    line-height: 120%;
    letter-spacing: .04em
}

.txt18 {
    font-weight: 400;
    font-size: 18rem
}

.txt16 {
    font-weight: 400;
    font-size: 16rem;
    line-height: 150%
}

.txt14 {
    font-size: 14rem
}

.txt12 {
    font-size: 12rem
}

.regular {
    font-weight: 400
}

.medium {
    font-weight: 500
}

.semibold {
    font-weight: 600
}

.bold {
    font-weight: 700
}

.upper {
    text-transform: uppercase
}

.pink {
    color: var(--theme-primary) !important
}

.white {
    color: #fff !important
}

.grey {
    color: #686868 !important
}

.light-grey {
    color: silver !important
}

.btn-primary {
    border-radius: 60rem;
    position: relative;
    transition: opacity .3s
}

.btn-primary[disabled] {
    opacity: .5;
    cursor: default;
    pointer-events: none
}

.btn-primary--white.btn-primary.isActive span,
.btn-primary--white.btn-primary:hover span {
    background: rgba(0, 0, 0, 0);
    color: #fff
}

.btn-primary--white.btn-primary span {
    background: #fff;
    color: var(--theme-primary)
}

.btn-primary--blue.btn-primary::before {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.btn-primary--blue.btn-primary:hover span {
    background: #017e90
}

.btn-primary:hover span {
    background: var(--theme-primary)
}

.btn-primary span {
    border-radius: inherit;
    position: relative;
    z-index: 1;
    padding: 24rem 32rem;
    font-weight: 700;
    font-size: 20rem;
    line-height: 140%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    background: rgba(0, 0, 0, 0);
    transition: background .3s
}

.btn-primary::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    border-radius: inherit;
    transition: opacity .3s
}

.page-urologiya .btn-primary::before {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.btn-border {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16rem 24rem;
    cursor: pointer;
    z-index: 1;
    border: none;
    background: rgba(0, 0, 0, 0)
}

.btn-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60rem;
    padding: 2rem;
    background: var(--theme-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity .3s linear;
    z-index: -1
}

.btn-border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60rem;
    padding: 2rem;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s linear;
    z-index: -1
}

.page-urologiya .btn-border::after {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.btn-border:not(.btn-border--white):hover::before {
    opacity: 0
}

.btn-border:not(.btn-border--white):hover::after {
    opacity: 1
}

.btn-border:not(.btn-border--white):hover span {
    color: rgba(0, 0, 0, 0)
}

.btn-border:not(.btn-border--white):hover span::after {
    opacity: 1
}

.btn-border span {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 20rem;
    line-height: 140%;
    text-transform: uppercase;
    color: var(--theme-primary);
    transition: color .3s linear
}

.btn-border span::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity .3s linear
}

.page-urologiya .btn-border span::after {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.btn-border--white:hover::before {
    background: var(--theme-primary)
}

.btn-border--white::before {
    background: #fff;
    transition: background .3s
}

.btn-border--white span {
    color: #fff
}

.btn-border--white span::after {
    background: #fff
}

.page-urologiya .btn-border--white span::after {
    background: #fff
}

.circle-link {
    position: relative;
    width: 60rem;
    height: 60rem;
    border-radius: 50%
}

.circle-link:hover .footer__social-svg-box {
    background: var(--theme-primary)
}

.circle-link::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    border-radius: inherit
}

.page-urologiya .circle-link::before {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.circle-link__svg-box {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
    transition: background .3s
}

.circle-link__svg {
    width: 24rem;
    height: 24rem
}

.form__label {
    position: relative;
    width: 100%;
    display: block
}

.form__label-inner {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem
}

.form__label-inner._form-error input,
.form__label-inner._form-error~.form__error {
    visibility: visible;
    opacity: 1
}

.form__input {
    width: 100%;
    border-radius: 60rem;
    padding: 16rem 24rem;
    font-weight: 400;
    font-size: 18rem;
    color: #000;
    background: #fff;
    cursor: text
}

.form__input::placeholder {
    color: #686868
}

.form__placeholder {
    font-weight: 400;
    font-size: 16rem;
    line-height: 120%;
    color: #686868;
    opacity: .5;
    padding-left: 24rem
}

.form__error {
    position: absolute;
    bottom: -20rem;
    left: 24rem;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    color: var(--theme-primary);
    visibility: hidden;
    opacity: 0;
    text-transform: none;
    transition: opacity .3s, visibility .3s
}

.form__error.active {
    visibility: visible;
    opacity: 1;
    line-height: normal
}

.form__btn-box {
    display: flex;
    flex-direction: column;
    gap: 22rem
}

.form__textarea-wrap {
    position: relative;
    border-radius: 20rem;
    padding: 16rem 24rem;
    display: block;
    height: 126rem;
    background: #fff;
    font-weight: 500;
    font-size: 18rem;
    color: #000
}

.form__textarea {
    resize: none;
    width: 100%;
    height: 100%
}

.form__textarea::placeholder {
    color: #686868
}

.form__textarea::-webkit-scrollbar,
.form__textarea::-webkit-scrollbar-thumb,
.form__textarea::-webkit-scrollbar-track {
    display: none
}

.form__textarea-count {
    position: absolute;
    z-index: 5;
    bottom: 16rem;
    color: #686868;
    opacity: .5;
    right: 24rem
}

.form__check-label {
    display: flex;
    gap: 16rem;
    position: relative;
    cursor: pointer
}

.form__check-label input {
    position: absolute;
    opacity: 0;
    display: block;
    z-index: -1
}

.form__check-label input:checked~.form__check-square {
    background: var(--theme-primary)
}

.form__check-label input:checked~.form__check-square:before {
    scale: 1
}

.form__check-label a {
    text-decoration: underline
}

.form__check-square {
    flex-shrink: 0;
    border: 2rem solid var(--theme-primary);
    background: rgba(0, 0, 0, 0);
    border-radius: 8rem;
    width: 32rem;
    height: 32rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    pointer-events: none
}

.form__check-square::before {
    position: absolute;
    content: "";
    scale: 0;
    transition: scale .3s;
    width: 19rem;
    height: 17rem;
    background: url(/local/templates/longidaza/assets/images/checked.svg) no-repeat top/cover
}

.form__check-text {
    font-weight: 400;
    font-size: 14rem;
    line-height: 140%;
    color: rgba(0, 0, 0, .7);
    opacity: .7
}

.fancybox__container {
    --fancybox-bg: transparent !important;
    transition: opacity .3s
}

.fancybox__container[aria-hidden=false] {
    opacity: 1
}

.fancybox__container[aria-hidden=false] .fancybox__carousel {
    opacity: 1
}

.fancybox__container[aria-hidden=false] .fancybox__backdrop {
    opacity: 1
}

.fancybox__container[aria-hidden=true] {
    opacity: 0
}

.fancybox__container[aria-hidden=true] .fancybox__backdrop {
    opacity: 0
}

.fancybox__container[aria-hidden=true] .fancybox__carousel {
    opacity: 0
}

.fancybox__backdrop {
    display: none
}

.fancybox__carousel {
    transition: opacity .3s
}

.f-button-close {
    border-radius: 1.6rem !important;
    width: 65rem !important;
    height: 65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0) !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: all !important;
    outline: unset !important;
    box-shadow: unset !important;
    cursor: pointer !important;
    transition: all .3s !important
}

.f-button-close svg {
    width: 100% !important;
    height: 100% !important;
    stroke: none !important;
    filter: none !important;
    transition: transform .3s !important
}

.f-button-close svg path {
    transition: stroke .3s
}

.is-close-btn {
    width: 65rem !important;
    height: 65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    top: -80rem !important;
    right: -80rem !important
}

.is-close-btn::before {
    position: absolute;
    inset: 0;
    content: ""
}

.fancybox__toolbar__column.is-right {
    margin: 60rem 100rem 0 0
}

.fancybox__footer {
    display: none
}

.has-image,
.has-html5video {
    gap: 20rem !important;
    padding: 0 180rem !important;
    display: flex;
    align-items: center;
    justify-content: center
}

.has-image::before,
.has-image::after,
.has-html5video::before,
.has-html5video::after {
    display: none
}

.has-image .fancybox__content,
.has-html5video .fancybox__content {
    width: auto !important;
    width: 1400rem !important;
    height: 100%;
    overflow: hidden !important;
    transform: none !important;
    cursor: default !important;
    margin: 60rem 0;
    border-radius: 32rem
}

.has-image .fancybox__content img,
.has-image .fancybox__content video,
.has-html5video .fancybox__content img,
.has-html5video .fancybox__content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 32rem;
    outline: none !important
}

.has-html5video .fancybox__content {
    overflow: visible !important
}

.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 {
    width: 65rem !important;
    height: 65rem !important;
    display: flex;
    align-items: center;
    justify-content: center
}

.is-horizontal .f-carousel__nav .f-button.is-prev svg,
.is-horizontal .f-carousel__nav .f-button.is-next svg,
.is-horizontal .fancybox__nav .f-button.is-prev svg,
.is-horizontal .fancybox__nav .f-button.is-next svg {
    width: 100%;
    height: 100%;
    stroke: none;
    filter: none;
    transition: transform .3s
}

.is-horizontal .f-carousel__nav .f-button.is-prev svg path,
.is-horizontal .f-carousel__nav .f-button.is-next svg path,
.is-horizontal .fancybox__nav .f-button.is-prev svg path,
.is-horizontal .fancybox__nav .f-button.is-next svg path {
    transition: fill .3s
}

.is-horizontal .f-carousel__nav .f-button.is-prev:hover,
.is-horizontal .f-carousel__nav .f-button.is-next:hover,
.is-horizontal .fancybox__nav .f-button.is-prev:hover,
.is-horizontal .fancybox__nav .f-button.is-next:hover {
    background: rgba(0, 0, 0, 0) !important
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: 100rem !important
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: 100rem !important
}

.fancybox__nav .f-button:before {
    inset: 0 !important
}

.fancybox-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1010;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, .1882352941);
    display: none
}

.section-wrap {
    border-radius: 60rem 60rem 0 0;
    position: relative
}

.swiper-btn-box {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20rem
}

.swiper-button {
    margin: 0 !important;
    width: 60rem !important;
    height: 60rem !important;
    border-radius: 50%;
    position: relative !important;
    inset: 0 !important;
    transition: all .3s
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none
}

.swiper-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    border-radius: inherit
}

.page-urologiya .swiper-button::before {
    background: linear-gradient(180deg, #017e90 0%, #00515d 100%) !important
}

.swiper-button::after {
    content: "" !important
}

.swiper-button:hover .swiper-button__svg-wrap {
    background: var(--theme-primary)
}

.swiper-button__svg-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background .3s;
    border-radius: inherit;
    position: relative;
    z-index: 2
}

.swiper-button__svg {
    width: 20rem;
    height: 20rem
}

.breadcrumbs {
    position: relative;
    z-index: 5
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 8rem;
    width: 100%
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8rem;
    color: #898b93;
    white-space: nowrap
}

.breadcrumbs li:last-child {
    color: #000;
    cursor: default;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    flex-shrink: 1
}

.breadcrumbs li:last-child::before {
    display: inline-block;
    content: "•";
    font-weight: 400;
    font-size: 18rem
}

.breadcrumbs li:last-child p {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%
}

.list-mark {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--theme-light-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.list-mark::after {
    position: absolute;
    content: "";
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: var(--theme-primary)
}

.footer {
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    padding: 57rem 0
}

.footer__bibliography {
    font-weight: 400;
    font-size: 11rem;
    line-height: 145%;
    width: 1056rem;
    margin: 0;
    color: #686868;
    padding-left: 12rem
}

.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 198rem
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 60rem
}

.footer__logo {
    width: 320rem;
    height: 49rem
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.footer__link {
    text-decoration: underline
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 237rem;
    padding-top: 5rem
}

.footer__nav-item {
    display: flex;
    flex-direction: column;
    gap: 26rem
}

.footer__nav-item-list {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    justify-content: space-between
}

.footer__social-info {
    display: flex;
    flex-direction: column;
    gap: 30rem
}

.footer__social-logo {
    width: 234rem;
    height: 45rem
}

.footer__social-adress {
    display: flex;
    flex-direction: column;
    gap: 30rem
}

.footer__social-list {
    display: flex;
    align-items: center;
    gap: 16rem
}

.footer__disclaimer-wrap {
    background: #fff;
    padding: 32rem 0 22rem
}

.footer a {
    transition: color .3s
}

.footer a:hover {
    color: var(--theme-primary)
}

.header:not(.isSearch) [data-trigger].isOpen .billets__btn-arr,
.header:not(.isSearch) [data-trigger].isOpen .billets__main-arr {
    transform: rotate(180deg)
}

.header:not(.isSearch) [data-modal].isOpen,
.header:not(.isSearch) [data-content].isOpen {
    pointer-events: fill;
    opacity: 1;
    visibility: visible
}

.header [data-modal],
.header [data-content] {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    visibility: hidden
}

.header [data-modal].isTransition,
.header [data-content].isTransition {
    transition: opacity .3s, visibility .3s, pointer-events .3s
}

.header [data-content] {
    transition: opacity .3s, visibility .3s, pointer-events .3s
}

.header--white .billets__main-text,
.header--white .nav__links {
    color: #fff
}

.header--white .links__img svg path {
    fill: #fff
}

.header--white .billets__main-arr svg path {
    stroke: #fff
}

.header--black .billets__main-text,
.header--black .nav__links {
    color: #000
}

.header--black .nav__logo .show {
    opacity: 0 !important
}

.header--black .nav__logo .hide {
    opacity: 1 !important
}

.header--black .links__img svg path {
    fill: var(--theme-primary)
}

.header--black .billets__main-arr svg path {
    stroke: #000
}

.header {
    position: absolute;
    top: 34rem;
    left: 50%;
    z-index: 999;
    transform: translateX(-50%)
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 13rem
}

.header .header__circle-btn-box {
    display: none
}

.header .header__circle-btn {
    width: 44rem;
    height: 44rem;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.header .header__circle-svg {
    width: 20rem;
    height: 20rem
}

.nav {
    position: relative;
    border-radius: 16rem;
    flex-grow: 1
}

.nav__inner-wrapp {
    border-radius: inherit
}

.nav__inner {
    border-radius: inherit;
    display: flex;
    align-items: center;
    gap: 44rem;
    justify-content: space-between;
    position: relative
}

.nav__logo {
    width: 252rem;
    height: 36rem;
    display: flex;
    flex-shrink: 0;
    display: grid
}

.nav__logo img {
    grid-row: 1/2;
    grid-column: 1/2;
    transition: opacity .3s
}

.nav__logo img.hide {
    opacity: 0
}

.isBurger .nav__logo img.hide {
    opacity: 1
}

.nav__logo img.show {
    opacity: 1
}

.isBurger .nav__logo img.show {
    opacity: 0
}

.nav__info-wrap {
    display: flex;
    align-items: center;
    gap: 49rem
}

.billets {
    border: 1rem solid #aeaeae;
    border-radius: 60rem;
    padding: 6rem 6rem 6rem 32rem;
    display: flex;
    align-items: center;
    gap: 35rem
}

.billets__btn-arr,
.billets__main-arr {
    width: 20rem;
    height: 20rem;
    transition: transform .3s
}

.billets__main {
    display: flex;
    align-items: center;
    gap: 8rem
}

.billets__btns {
    display: flex;
    align-items: center;
    gap: 8rem;
    position: relative
}

.billets__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 210rem;
    border-radius: 60rem;
    padding: 8rem 16rem
}

.billets__btn--ginecologia {
    background: #fe3b87
}

.billets__btn--urologia {
    background: #017e90
}

.billets__btn-text-box {
    display: flex;
    align-items: center;
    gap: 8rem
}

.billets__btn-svg {
    width: 24rem;
    height: 24rem;
    flex-shrink: 0
}

.billets__btn-modal {
    right: 0;
    top: calc(100% + 8rem);
    border-radius: 20rem;
    padding: 20rem;
    box-shadow: -2rem 3rem 8rem 0 rgba(127, 127, 127, .1), -22rem 26rem 20rem 0 rgba(127, 127, 127, .05);
    background: #fff;
    width: 430rem;
    left: 444rem
}

.billets__modal-list {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.billets__modal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60rem;
    padding: 19rem 20rem;
    background: #f4f4f4;
    gap: 10rem
}

.billets__modal-link:hover .billets__link-arr {
    opacity: 1
}

.billets__link-arr {
    width: 20rem;
    height: 20rem;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .3s
}

.links {
    display: flex;
    align-items: center;
    gap: 40rem
}

.links__link {
    display: flex;
    align-items: center;
    gap: 8rem;
    white-space: nowrap
}

.links__img {
    width: 24rem;
    height: 24rem;
    flex-shrink: 0
}

.search__head {
    overflow: hidden;
    border-radius: 60rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: width .3s
}

.search__head-inner {
    border-radius: inherit;
    background: #fff;
    display: flex;
    justify-content: space-between
}

.search__btn-wrap {
    border-radius: 50%;
    width: 72rem;
    height: 72rem;
    display: grid;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.isSearch .isFilled .search__btn-wrap .search__open {
    scale: 0;
    pointer-events: none
}

.isSearch .isFilled .search__btn-wrap .search__clear {
    scale: 1;
    pointer-events: fill
}

.search__close-btn {
    display: none
}

.search__close-btn-svg {
    width: 20rem;
    height: 20rem
}

.search__btn {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 72rem;
    height: 72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale .3s;
    position: relative;
    border-radius: 50%;
    z-index: 4;
    background: #fff
}

.search__open {
    scale: 1;
    pointer-events: fill
}

.search__clear {
    scale: 0;
    pointer-events: none
}

.search__btn-svg {
    width: 32rem;
    height: 32rem
}

.search__input-wrap {
    padding: 20rem 32rem;
    flex-grow: 1
}

.search__input {
    width: 100%
}

.search__modal {
    position: absolute;
    left: 292rem;
    top: calc(100% + 12rem);
    border-radius: 20rem;
    padding: 0 32rem;
    box-shadow: -2rem 3rem 8rem 0 rgba(127, 127, 127, .1), -22rem 26rem 20rem 0 rgba(127, 127, 127, .05);
    background: #fff;
    width: 1168rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden
}

.search__modal.isTransition {
    transition: opacity .3s, visibility .3s, pointer-events .3s
}

.isSearch .search__modal {
    pointer-events: fill;
    opacity: 1;
    visibility: visible
}

.search__modal-inner {
    max-height: calc(100vh - 185rem);
    overflow: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40rem;
    padding: 32rem 0
}

.search__modal-inner::-webkit-scrollbar,
.search__modal-inner::-webkit-scrollbar-thumb,
.search__modal-inner::-webkit-scrollbar-track {
    display: none
}

.search__modal-item {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.search__before-clear {
    color: #686868;
    border-bottom: 2rem solid #686868;
    padding: 0rem 0rem 2rem
}

.search__before-list {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.search__before-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.search__before-item-info {
    display: flex;
    align-items: center;
    gap: 12rem
}

.search__before-item-svg {
    width: 24rem;
    height: 24rem;
    flex-shrink: 0
}

.search__before-item-link {
    color: #686868
}

.search__before-item-remove {
    width: 24rem;
    height: 24rem;
    flex-shrink: 0
}

.search__full-count {
    color: #686868
}

.search__full-list {
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.search__full-link {
    border-radius: 12rem;
    padding: 12rem 20rem 16rem;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.search__full-link-info {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.search__full-link-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.search__full-link-cat {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: #686868
}

.search__full-link-arr {
    width: 72rem;
    height: 72rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0
}

.search__full-link-svg {
    width: 32rem;
    height: 32rem
}

.search__empty-text {
    color: #686868;
    line-height: 140%
}

.menu-modal {
    left: 0;
    right: 0;
    top: calc(100% + 8rem);
    border-radius: 20rem;
    padding: 32rem 32rem 32rem 24rem;
    box-shadow: -2rem 3rem 8rem 0 rgba(127, 127, 127, .1), -22rem 26rem 20rem 0 rgba(127, 127, 127, .05);
    background: #fff;
    width: 1336rem
}

.menu-modal__inner {
    display: grid;
    grid-template-columns: 440rem auto;
    gap: 20rem
}

.menu-modal__list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.menu-modal__list-box {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    justify-content: space-between;
    flex-grow: 1
}

.menu-modal__list {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    max-height: 420rem;
    overflow: auto
}

.menu-modal__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60rem;
    padding: 19rem 24rem;
    background: #f4f4f4
}

.menu-modal__link[data-tab] .menu-modal__link-arr,
.menu-modal__link:hover .menu-modal__link-arr {
    opacity: 1
}

.menu-modal__link-text {
    white-space: nowrap
}

.menu-modal__link-arr {
    width: 20rem;
    width: 20rem;
    transition: opacity .3s;
    opacity: 0
}

.menu-modal__content-wrap {
    display: grid
}

.menu-modal__content-item {
    grid-row: 1/2;
    grid-column: 1/2
}

.menu-modal .content-main {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    background: #fff;
    position: relative
}

.menu-modal .content-main__list {
    display: grid;
    grid-template-columns: repeat(2, 400rem);
    gap: 19rem
}

.menu-modal .content-main__link {
    border-radius: 20rem;
    overflow: hidden;
    position: relative
}

.menu-modal .content-main__photo {
    width: 400rem;
    height: 491rem;
    position: relative
}

.menu-modal .content-main__photo::before {
    background: linear-gradient(180deg, rgba(242, 243, 246, 0) 0%, #f2f3f6 100%);
    width: 100%;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 188rem
}

.menu-modal .content-main__name {
    position: absolute;
    bottom: 24rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3
}

.menu-modal .content-other {
    display: grid;
    grid-template-columns: 400rem 390rem;
    gap: 20rem;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 20
}

.menu-modal .content-other__list-box {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    height: 100%;
    position: relative
}

.menu-modal .content-other__list {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    max-height: 488rem;
    padding-right: 20rem;
    overflow: auto
}

.menu-modal .content-other__link {
    border: 1rem solid #686868;
    border-radius: 60rem;
    padding: 19rem 24rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem
}

.menu-modal .content-other__link:hover .content-other__link-arr {
    opacity: 1
}

.menu-modal .content-other__link-arr {
    width: 20rem;
    height: 20rem;
    opacity: 0;
    display: block;
    transition: opacity .3s
}

.menu-modal .content-other__img {
    border-radius: 20rem;
    height: 528rem;
    overflow: hidden
}

.burger {
    display: grid !important
}

.burger__svg {
    grid-row: 1/2;
    grid-column: 1/2
}

.burger__svg--close {
    scale: 1
}

.isBurger .burger__svg--close {
    scale: 0
}

.burger__svg--open {
    scale: 0
}

.isBurger .burger__svg--open {
    scale: 1
}

.burger__svg--open,
.burger__svg--close {
    transition: scale .3s
}

.burger-modal {
    position: absolute;
    width: 375rem;
    overflow: hidden;
    left: 0;
    border-radius: 12rem;
    padding: 0 12rem;
    top: calc(100% + 12rem);
    transform: translateX(110%);
    transition: transform .3s;
    height: calc(100vh - 100rem);
    height: calc(100dvh - 100rem)
}

.isBurger .burger-modal {
    transform: translateX(0%)
}

.burger-modal__inner {
    height: 100%;
    top: 0;
    gap: 32rem;
    overflow: auto;
    display: flex
}

.burger-modal__main {
    display: flex
}

.burger-modal__menu {
    background: rgba(0, 0, 0, 0);
    transition: background .3s;
    flex-grow: 1;
    display: flex
}

.isSearch .burger-modal__menu,
.isBurger .burger-modal__menu {
    background: #dbdbdb
}

.burger-modal__main-inner {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    flex-grow: 1
}

.burger-modal__list-box {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.burger-modal__list {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.burger-modal__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 60rem;
    width: 100%;
    padding: 14rem 16rem
}

.burger-modal__link-arr {
    width: 20rem;
    height: 20rem;
    display: block
}

.burger-modal__list-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11rem
}

.burger-modal__list-btn {
    border-radius: 8rem;
    width: 170rem;
    height: 181rem;
    overflow: hidden;
    position: relative
}

.burger-modal__photo::before {
    background: linear-gradient(180deg, rgba(242, 243, 246, 0) 0%, #f2f3f6 100%);
    width: 100%;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 69rem
}

.burger-modal__name {
    position: absolute;
    bottom: 14rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3
}

.burger-modal__aside {
    display: flex;
    position: absolute;
    inset: 0;
    top: -2rem;
    padding-top: 2rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0);
    transition: background .3s;
    transform: translateX(110%);
    transition: transform .3s
}

.isSearch .burger-modal__aside,
.isBurger .burger-modal__aside {
    background: #dbdbdb
}

.burger-modal__aside.isOpen {
    transform: translateX(0)
}

.burger-modal__aside-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20rem;
    padding: 0 12rem;
    width: 100%
}

.burger-modal__aside-content {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.burger-modal__back {
    display: flex;
    align-items: center;
    gap: 8rem
}

.burger-modal__back-arr {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

.burger-modal__back-svg {
    width: 20rem;
    height: 20rem
}

body::before {
    content: "";
    position: fixed;
    z-index: 2500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease 0s;
    -webkit-backdrop-filter: blur(20rem);
    backdrop-filter: blur(20rem);
    background: rgba(124, 135, 149, .1)
}

.hero {
    background: #686868;
    position: relative;
    padding-bottom: 44rem
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 70rem
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 70rem
}

.hero__billet {
    position: relative;
    border: 3rem solid #aeaeae;
    border-radius: 16rem;
    padding: 12rem;
    width: 570rem;
    padding: 54rem 30rem 19rem
}

.hero__billet-img {
    width: 90rem;
    height: 90rem;
    background: #686868;
    position: absolute;
    left: 50%;
    top: -36rem;
    transform: translateX(-50%)
}

.hero__billet-text {
    letter-spacing: normal
}

.hero__title {
    width: 839rem
}

.hero__img {
    width: 1142rem;
    height: 568rem;
    position: absolute;
    top: -100rem;
    right: 24rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero__img::before {
    content: "";
    position: absolute;
    background: url(/local/templates/longidaza/assets/images/heroBlur.svg) no-repeat top/cover;
    width: 1165rem;
    height: 822rem
}

.hero__img img {
    position: relative;
    z-index: 2
}

.hero__adv {
    border: 5rem solid #aeaeae;
    border-radius: 24rem;
    padding: 24rem 23rem;
    height: 100%
}

.hero__adv-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20rem;
    height: 100%;
    letter-spacing: .04em
}

.hero__adv-title {
    padding-right: 30rem
}

.hero__adv-num {
    position: absolute;
    font-weight: 700;
    font-size: 24rem;
    line-height: 120%;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50%;
    width: 45rem;
    height: 45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 24rem;
    right: 24rem;
    background: var(--theme-primary)
}

.hero__nav-box {
    margin: 0 auto;
    position: static;
    width: fit-content
}

.hero__swiper-btn {
    margin-top: 40rem !important
}

.wherefore {
    background: #686868;
    padding: 60rem 0 120rem
}

.wherefore__inner {
    display: flex;
    flex-direction: column;
    gap: 70rem
}

.wherefore__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem
}

.wherefore__item {
    border: 4rem solid #aeaeae;
    border-radius: 32rem;
    padding: 12rem;
    padding-left: 350rem;
    position: relative
}

.wherefore__img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 352rem;
    height: 485rem;
    border-radius: 0 0 0 32rem;
    overflow: hidden
}

.wherefore__info {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    position: relative;
    z-index: 1
}

.wherefore__list {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.wherefore__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68rem;
    padding: 12rem 24rem;
    background: #fff;
    color: #000;
    border-radius: 60rem;
    transition: color .3s, background .3s
}

.pack {
    position: relative;
    overflow: hidden
}

.pack--earlier .pack__img {
    width: 1076rem;
    margin-left: -150rem;
    margin-right: -120rem
}

.pack__container {
    position: relative;
    z-index: 1
}

.pack__inner {
    display: flex;
    flex-direction: column;
    gap: 56rem;
    padding: 110rem 0
}

.pack__title {
    text-align: center;
    align-self: center
}

.pack__content {
    display: flex;
    align-items: center
}

.pack__info {
    display: flex;
    flex-direction: column;
    gap: 32rem
}

.pack__img {
    flex-shrink: 0;
    margin-right: -220rem;
    width: 1286rem;
    height: 463rem
}

.help {
    overflow: hidden;
    position: relative
}

.help .help__wrap {
    border-radius: 60rem;
    overflow: hidden;
    margin: 0 auto;
    width: 1856rem;
    position: relative;
    background: #fff
}

.help .help__wrap::before {
    position: absolute;
    width: 100%;
    height: 454rem;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background: var(--theme-dark)
}

.help__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40rem;
    align-items: center;
    padding: 80rem 0 120rem
}

.help__title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 20rem
}

.help__trigger-list {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16rem
}

.help__trigger {
    border: 1rem solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 20rem;
    white-space: nowrap;
    line-height: 140%;
    background: rgba(0, 0, 0, 0);
    transition: background .3s, color .3s;
    border-radius: 60rem;
    padding: 12rem 20rem
}

.help__trigger:hover,
.help__trigger.isActive {
    background: #fff;
    color: var(--theme-primary)
}

.help__content-wrap {
    width: 100%;
    display: grid
}

.help__content {
    grid-column: 1/2;
    grid-row: 1/2;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(140rem);
    transition: opacity .3s, visibility .3s, pointer-events .3s, transform .3s
}

.help__content.isActive,
.help__content.isVisible {
    transform: translateY(0rem);
    opacity: 1;
    visibility: visible;
    pointer-events: fill
}

.help__swiper-box {
    position: relative;
    width: 100%
}

.help__swiper {
    width: 100% !important
}

.help__slide {
    height: auto !important
}

.help__btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20rem
}

.help__btn-wrap:has(.swiper-button-lock) {
    justify-content: center
}

.help__nav-box {
    position: static !important
}

.history {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10rem;
    min-height: 568rem
}

.history__content {
    display: flex;
    flex-direction: column;
    gap: 28rem
}

.history__img {
    width: 571rem;
    height: 265rem;
    border-radius: 20rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.history__img:hover::after {
    scale: 1.1
}

.history__img::after {
    width: 72rem;
    height: 72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    background: url(/local/templates/longidaza/assets/images/play.svg) no-repeat top/cover;
    transition: scale .3s;
    content: ""
}

.page-urologiya .history__img::after {
    background: url(/local/templates/longidaza/assets/images/playGreen.svg) no-repeat top/cover
}

.history__title-box {
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.history__info {
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.history__pos {
    display: flex;
    flex-direction: column
}

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    align-items: center;
    padding: 112rem 0 80rem
}

.faq__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40rem
}

.faq__accordion {
    display: grid;
    grid-template-columns: repeat(2, 866rem);
    gap: 20rem
}

.faq__accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.acc {
    border-radius: 24rem;
    padding: 32rem;
    background: #fff;
    cursor: pointer
}

.acc.isOpen .acc__arr {
    transform: rotate(-180deg)
}

.acc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 74rem
}

.acc__arr {
    width: 24rem;
    height: 24rem;
    transition: transform .3s;
    flex-shrink: 0
}

.acc__info {
    margin-top: 32rem;
    display: none
}

.acc__info-inner {
    display: flex;
    flex-direction: column;
    gap: 32rem
}

.acc__author {
    display: flex;
    align-items: center;
    gap: 12rem
}

.acc__author-photo {
    width: 66rem;
    height: 66rem;
    flex-shrink: 0;
    border-radius: 50%
}

.acc__author-info {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.acc__author-pos {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.order__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    align-items: center;
    padding: 80rem 0 60rem
}

.order__list-box {
    display: flex;
    flex-direction: column;
    gap: 42rem;
    align-items: center
}

.order__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20rem
}

.order__list li {
    overflow: hidden;
    border-radius: 32rem
}

.order__link {
    background: #fff;
    padding: 50rem;
    display: block;
    width: 100%;
    height: 100%;
    transition: scale .5s;
    display: block;
    width: 100%;
    height: 100%
}

.order__link:hover {
    scale: 1.1
}

.order__link img {
    object-fit: scale-down
}

.find__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    align-items: center;
    padding: 60rem 0 120rem
}

.uteka-widget {
    width: 100%;
    height: 700px;
    outline: 1px solid #e0e0e0;
    border-radius: 40rem;
    overflow: hidden;
    background: #fff
}

.uteka-widget iframe {
    border: none;
    width: 100%;
    height: calc(100% - 140rem)
}

.uteka-widget__container {
    margin: 0 auto;
    padding: 0 16rem
}

.uteka-widget-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0
}

.uteka-widget-header__inner {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 56rem
}

.uteka-widget-header__title {
    background: url("https://widget.uteka.ru/static/img/widgets/title_2@mobile.svg") no-repeat top/contain;
    background-position: center;
    width: 230rem;
    height: 24rem
}

.uteka-widget-header__logo {
    height: 16rem
}

.uteka-widget-header__logo img {
    height: 100%;
    object-fit: contain
}

.uteka-widget-footer__inner {
    display: flex;
    align-items: center;
    gap: 16rem;
    padding: 10rem 0
}

.uteka-widget-footer__img {
    width: 56rem;
    height: 56rem;
    flex-shrink: 0
}

.uteka-widget-footer__text {
    font-weight: 400;
    font-size: 16rem;
    line-height: 150%
}

[class$=copyright] {
    display: none !important
}

.where-arr {
    position: fixed;
    right: -368rem;
    top: 70%;
    z-index: 500;
    transform: translateY(-50%);
    transition: right .3s;
    padding-right: var(--fancybox-scrollbar-compensate)
}

.where-arr.isShow {
    right: 0
}

.where-arr.isShow .where-arr__show {
    opacity: 0;
    visibility: hidden
}

.where-arr.isShow .where-arr__hide {
    opacity: 1;
    visibility: visible
}

.where-arr.isShow .where-arr__arr-svg {
    transform: rotate(-180deg)
}

.where-arr__arr {
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    justify-content: center;
    z-index: 2
}

.where-arr__arr-svg {
    width: 20rem;
    height: 20rem;
    transition: transform .3s
}

.where-arr__content {
    width: 464rem;
    height: 264rem;
    border-radius: 12rem 0 0 12rem;
    display: flex;
    backdrop-filter: blur(10rem);
    -webkit-backdrop-filter: blur(60rem);
    background: rgba(255, 255, 255, .6);
    display: grid;
    box-shadow: -2rem 3rem 8rem 0 rgba(208, 128, 161, .1), -10rem 12rem 15rem 0 rgba(208, 128, 161, .09), -22rem 26rem 20rem 0 rgba(208, 128, 161, .05), -39rem 46rem 24rem 0 rgba(208, 128, 161, .01), -61rem 72rem 26rem 0 rgba(208, 128, 161, 0)
}

.where-arr__show {
    width: 100%;
    height: 100%;
    position: relative;
    grid-row: 1/2;
    grid-column: 1/2;
    transition: opacity .3s, visibility .3s
}

.where-arr__btn {
    position: absolute;
    transform-origin: center center;
    transform: rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    top: 50%;
    left: -40rem;
    white-space: nowrap;
    border-radius: 60rem;
    padding: 8rem 40rem;
    font-weight: 700;
    font-size: 18rem;
    line-height: 120%;
    text-transform: uppercase;
    color: #f2f3f6;
    background: var(--theme-primary);
    transition: scale .3s
}

.where-arr__hide {
    grid-row: 1/2;
    grid-column: 1/2;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    padding: 100rem 28rem 32rem 36rem
}

.where-arr .where-arr__img {
    position: absolute;
    width: 464rem;
    height: 233rem;
    left: 0;
    right: 0;
    top: -134rem
}

.where-arr .where-arr__hide-btn-box {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.where-arr .where-arr__hide-btn {
    width: 400rem;
    height: 64rem
}

.where-arr .where-arr__hide-btn.btn-primary span {
    height: 100%;
    padding: 0
}

.application {
    background: #f4f4f4
}

.application__inner {
    display: grid;
    grid-template-columns: repeat(2, 866rem);
    align-items: center;
    gap: 20rem;
    padding-top: 80rem;
    padding-bottom: 120rem
}

.application__img {
    width: 866rem;
    height: 733rem;
    border-radius: 32rem;
    overflow: hidden
}

.application__content {
    display: flex;
    flex-direction: column;
    gap: 40rem
}

.application__form {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.application__form .form__label-box {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    margin-top: 24rem
}

.tabs__head {
    display: flex;
    flex-direction: column;
    gap: 40rem
}

.tabs__tabs-wrap {
    display: flex;
    flex-direction: column;
    gap: 28rem
}

.tabs__trigger-list {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16rem
}

.tabs__trigger::before {
    opacity: 0
}

.tabs__trigger:hover::before,
.tabs__trigger.isActive::before {
    opacity: 1
}

.tabs__lists {
    display: grid;
    position: relative
}

.tabs__list-item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, visibility .3s
}

.tabs__list-item.isActive {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: fill
}

.tabs__list {
    display: flex;
    gap: 20rem 40rem;
    flex-wrap: wrap
}

.tabs__link {
    white-space: nowrap;
    transition: color .3s, border-bottom .3s;
    position: relative;
    padding-bottom: 4rem
}

.tabs__link::before {
    position: absolute;
    bottom: 0;
    content: "";
    width: 0;
    transition: width .3s;
    height: 1.5rem;
    background: var(--theme-primary)
}

.tabs__link.isActive {
    color: var(--theme-primary)
}

.tabs__link.isActive::before {
    width: 100%
}

.tabs .section-wrap,
.tabs.section-wrap {
    background: #f4f4f4;
    margin-top: 26rem
}

.tabs__tabs {
    padding: 60rem 0 40rem;
    display: grid;
    position: relative
}

.tabs__tab {
    position: absolute;
    grid-row: 1/2;
    grid-column: 1/2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 0;
    top: 0;
    right: 0;
    transition: opacity .3s, visibility .3s
}

.tabs__tab.isActive {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: fill
}

.faq-acc {
    display: flex;
    flex-direction: column;
    gap: 16rem
}

.faq-acc__item {
    cursor: pointer
}

.faq-acc__item.isOpen .faq-acc__head::before {
    opacity: 0
}

.faq-acc__item.isOpen .faq-acc__title {
    color: #fff
}

.faq-acc__item.isOpen .faq-acc__arr {
    transform: rotate(-180deg)
}

.faq-acc__item.isOpen .faq-acc__arr svg path {
    stroke: #fff
}

.faq-acc__head {
    border-radius: 16rem;
    padding: 24rem 32rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20rem;
    background: linear-gradient(180deg, #e0004b 0%, #b0073f 100%);
    transition: background .3s;
    position: relative
}

.faq-acc__head::before {
    position: absolute;
    inset: -1rem;
    content: "";
    background: #fff;
    opacity: 1;
    transition: opacity .3s;
    border-radius: inherit
}

.faq-acc__title {
    position: relative;
    z-index: 2;
    transition: color .3s
}

.faq-acc__arr {
    position: relative;
    z-index: 2;
    width: 24rem;
    height: 24rem;
    transition: transform .3s;
    flex-shrink: 0
}

.faq-acc__arr svg path {
    transition: stroke .3s
}

.faq-acc__info {
    margin-top: 12rem;
    display: none
}

.faq-acc__info-inner {
    border-radius: 20rem;
    padding: 24rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 24rem
}

.faq-acc__info-text {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.faq-acc__info-list {
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.faq-acc__info-item {
    display: flex;
    align-items: center;
    gap: 8rem
}

.imp-art {
    padding-bottom: 80rem
}

.gear {
    overflow: hidden
}

.gear__inner {
    display: flex;
    flex-direction: column;
    gap: 56rem;
    padding: 110rem 0 220rem
}

.gear__title {
    text-align: center
}

.gear__content {
    display: flex;
    flex-direction: column;
    gap: 80rem
}

.gear__triggers {
    align-self: center
}

.gear__trigger-list {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16rem
}

.gear__trigger {
    min-width: 240rem;
    text-transform: unset
}

.gear__trigger span {
    padding: 12rem;
    text-transform: unset
}

.gear__trigger::before {
    opacity: 0
}

.gear__trigger:hover::before,
.gear__trigger.isActive::before {
    opacity: 1
}

.gear__tabs {
    display: grid;
    width: 100%
}

.gear__tabitem {
    grid-column: 1/2;
    grid-row: 1/2;
    min-width: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: relative;
    transition: opacity .3s, visibility .3s, pointer-events .3s
}

.gear__tabitem.isActive,
.gear__tabitem.isVisible {
    opacity: 1;
    visibility: visible;
    pointer-events: fill
}

.gear__list {
    display: flex;
    flex-direction: column;
    gap: 40rem
}

.gear__item {
    display: flex;
    align-items: center;
    gap: 20rem;
    width: 694rem
}

.gear__svg {
    width: 131rem;
    height: 131rem;
    flex-shrink: 0
}

.gear__text {
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.gear__bg {
    position: absolute;
    width: 1150rem;
    height: 830rem;
    top: -180rem;
    right: -84rem;
    pointer-events: none
}

.both__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    padding: 175rem 0 65rem
}

.both__header {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    align-items: center;
    text-align: center
}

.both__header .txt30 {
    width: 1020rem
}

.both__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem
}

.both__item {
    background: #fff;
    padding: 44rem;
    border-radius: 20rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 345rem
}

.both__img {
    width: 429rem;
    height: 429rem;
    right: -114rem;
    top: -36rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center
}

.both__img-text {
    position: absolute;
    font-weight: 700;
    font-size: 66rem;
    line-height: 120%;
    letter-spacing: .01em;
    color: #fff
}

.both__text {
    width: 460rem;
    display: flex;
    flex-direction: column;
    gap: 12rem
}

.infertility-hero__inner {
    padding: 130rem 0 234rem;
    position: relative
}

.infertility-hero__info {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    width: 906rem
}

.infertility-hero__important {
    border-radius: 20rem;
    padding: 20rem 24rem;
    background: #fff
}

.infertility-hero__disclaimer {
    display: flex;
    gap: 20rem;
    align-items: center
}

.infertility-hero__disclaimer-svg {
    width: 62rem;
    height: 62rem;
    flex-shrink: 0
}

.infertility-hero__img {
    width: 1170rem;
    height: 1046rem;
    position: absolute;
    top: -150rem;
    right: -134rem
}

.reasons {
    padding: 100rem 0 134rem;
    background: #686868
}

.reasons__inner {
    display: flex;
    flex-direction: column;
    gap: 70rem
}

.reasons__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54rem 20rem
}

.reasons__item {
    padding: 40rem 20rem 30rem;
    padding-left: 396rem;
    position: relative;
    border: 2rem solid #dbdbdb;
    border-radius: 32rem
}

.reasons__item--big {
    grid-column: span 2;
    padding-left: 772rem
}

.reasons__item--big .reasons__photo {
    width: 772rem;
    height: 484rem
}

.reasons__photo {
    position: absolute;
    width: 394rem;
    height: 545rem;
    left: 0;
    bottom: 0;
    border-radius: 32rem;
    overflow: hidden
}

.reasons__photo img {
    object-position: right bottom
}

.reasons__info {
    display: flex;
    flex-direction: column;
    gap: 23rem;
    position: relative;
    z-index: 10
}

.reasons__info .txt28 {
    max-width: 804rem
}

.reasons__inner-content {
    display: flex;
    flex-direction: column;
    gap: 23rem
}

.reasons__inner-list {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.reasons__inner-item {
    display: flex;
    align-items: center;
    gap: 16rem
}

.reasons__important {
    border-radius: 20rem;
    padding: 0 24rem 0 10rem;
    display: flex;
    align-items: center;
    gap: 10rem;
    background: #fff;
    color: #000;
    min-height: 105rem;
    max-width: 785rem
}

.reasons__num {
    font-weight: 700;
    font-size: 76rem;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    background: var(--theme-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: flex-end
}

.reasons__num span {
    font-size: 44rem;
    line-height: 160%
}

.overview {
    padding-top: 172rem;
    padding-top: 200rem;
    margin-top: -124rem;
    background: #686868
}

.overview__inner {
    padding: 0 0 110rem
}

.overview__main {
    min-height: 345rem;
    display: grid;
    grid-template-columns: auto 380rem;
    position: relative
}

.overview__main::before {
    position: absolute;
    inset: -6rem;
    display: block;
    content: "";
    border: 6rem solid #f4f4f4;
    filter: blur(25rem);
    border-radius: 45rem
}

.overview__swiper-box {
    border-radius: 45rem 0 0 45rem;
    background: linear-gradient(90deg, #5a5c5b 0%, #949494 100%);
    position: relative;
    display: grid;
    grid-template-columns: 360rem auto
}

.overview__swiper-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.overview__swiper-bg::before {
    content: "";
    display: block;
    width: 1553rem;
    height: 345rem;
    border-radius: 100%;
    background: rgba(199, 199, 199, .9);
    filter: blur(100rem);
    position: absolute;
    left: 599rem;
    top: 0
}

.overview__swiper-left-box {
    height: 100%;
    flex-shrink: 0;
    position: relative
}

.overview__swiper-left-box .swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important
}

.overview__swiper-left-box .swiper .swiper-slide {
    position: relative
}

.overview__slide-left {
    position: absolute;
    bottom: 0;
    left: 0
}

.overview__slide-left picture {
    border-radius: 0 0 0 45rem;
    overflow: hidden
}

.overview__slide-left--man {
    width: 342rem;
    height: 396rem
}

.overview__slide-left--woman {
    width: 374rem;
    height: 400rem
}

.overview__slide-left--infertility {
    width: 400rem;
    height: 437rem
}

.overview__slide-left--items {
    padding: 20rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 10rem
}

.overview__slide-left--items .overview__fancybox {
    display: flex;
    width: 366rem
}

.overview__slide-left--items .overview__fancybox:hover .overview__fancybox-img::after {
    scale: 1.1
}

.overview__slide-left--items .overview__fancybox-img {
    width: 117rem;
    min-height: 138rem;
    height: 100%;
    flex-shrink: 0;
    border-radius: 20rem 0 0 20rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.overview__slide-left--items .overview__fancybox-img::after {
    width: 32rem;
    height: 32rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    background: url(/local/templates/longidaza/assets/images/play.svg) no-repeat top/cover;
    transition: scale .3s;
    content: ""
}

.page-urologiya .overview__slide-left--items .overview__fancybox-img::after {
    background: url(/local/templates/longidaza/assets/images/playGreen.svg) no-repeat top/cover
}

.overview__slide-left--items .overview__fancybox-content {
    border-radius: 0 20rem 20rem 0;
    overflow: hidden;
    border: 1rem solid #fff;
    border-left: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem;
    gap: 12rem
}

.overview__slide-left--items .overview__fancybox-title {
    font-family: "BebasNeue"
}

.overview__slide-left--items .overview__fancybox-info {
    display: flex;
    flex-direction: column;
    gap: 8rem
}

.overview__swiper-right-box {
    min-width: 0;
    overflow: hidden;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    margin-left: 40rem
}

.overview__swiper-right-box::before {
    width: 40rem;
    height: 100%;
    display: block;
    position: absolute;
    left: -20rem;
    top: 0;
    bottom: 0;
    background: #6b6c6b;
    content: "";
    filter: blur(8rem);
    z-index: 20
}

.overview__swiper-right-box .swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important
}

.overview__swiper-right-box .swiper .swiper-slide {
    position: relative
}

.overview__slide-right {
    padding: 20rem 50rem 20rem 50rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.overview__slide-right--man,
.overview__slide-right--woman,
.overview__slide-right--infertility {
    display: flex;
    flex-direction: column;
    gap: 30rem
}

.overview__slide-right--man .overview__slide-content,
.overview__slide-right--woman .overview__slide-content,
.overview__slide-right--infertility .overview__slide-content {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.overview__slide-right--man .overview__slide-list,
.overview__slide-right--woman .overview__slide-list,
.overview__slide-right--infertility .overview__slide-list {
    display: flex;
    flex-direction: column;
    gap: 20rem
}

.overview__slide-right--man .overview__slide-item,
.overview__slide-right--woman .overview__slide-item,
.overview__slide-right--infertility .overview__slide-item {
    display: flex;
    align-items: center;
    gap: 20rem
}

.overview__slide-right--man .overview__slide-btn-box,
.overview__slide-right--woman .overview__slide-btn-box,
.overview__slide-right--infertility .overview__slide-btn-box {
    display: flex;
    align-items: center;
    gap: 20rem
}

.overview__slide-right--man .overview__slide-btn-box .btn-primary span,
.overview__slide-right--man .overview__slide-btn-box .btn-border,
.overview__slide-right--woman .overview__slide-btn-box .btn-primary span,
.overview__slide-right--woman .overview__slide-btn-box .btn-border,
.overview__slide-right--infertility .overview__slide-btn-box .btn-primary span,
.overview__slide-right--infertility .overview__slide-btn-box .btn-border {
    padding: 19rem 34rem
}

.overview__slide-right--items {
    display: flex;
    flex-direction: column;
    gap: 10rem
}

.overview__slide-right--items .overview__slide-billet {
    font-family: "BebasNeue";
    background: var(--theme-primary);
    border-radius: 4rem;
    padding: 4rem 6rem 2rem;
    width: fit-content
}

.overview__slide-right--items .overview__slide-list {
    display: flex;
    flex-direction: column;
    gap: 6rem
}

.overview__slide-right--items .overview__slide-link {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-left: 36rem;
    position: relative;
    width: fit-content
}

.overview__slide-right--items .overview__slide-link::before {
    position: absolute;
    left: 0;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5524_27144)'%3E%3Cpath d='M4.68067 4.28816C4.6931 2.6643%206.53338 1.73142%207.8505 2.68132L16.9922 9.27426C18.2074 10.1507%2018.063%2012.0029%2016.7266 12.6803L7.49861 17.3581C6.16221%2018.0356%204.58292%2017.0572%204.59439%2015.5589L4.68067 4.28816Z' fill='%23DC034C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5524_27144'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20rem;
    height: 20rem
}

.overview__slide-right--items .overview__slide-link:hover p:after {
    width: 100%
}

.overview__slide-right--items .overview__slide-link p {
    position: relative
}

.overview__slide-right--items .overview__slide-link p:after {
    position: absolute;
    bottom: 0;
    width: 0;
    left: 0;
    height: 1rem;
    background: #fff;
    content: "";
    width: 0;
    transition: width .5s
}

.overview__slide-right--items .overview__slide-svg {
    width: 20rem;
    height: 20rem
}

.overview__slide-right .overview__slide-title {
    font-family: "BebasNeue";
    line-height: 110%
}

.overview .swiper-pagination {
    bottom: 20rem !important
}

.overview .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-primary) !important
}

.overview__info-box {
    border-radius: 0 45rem 45rem 0;
    background: #fff;
    padding: 30rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    font-family: "BebasNeue"
}

.overview__info-img {
    width: 420rem;
    height: 215rem;
    position: absolute;
    left: -32rem;
    top: -80rem
}

.overview__info-items {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    width: 100%
}

.overview__info-item {
    display: flex;
    align-items: center;
    gap: 20rem
}

.overview__info-item:not(:last-of-type) {
    position: relative
}

.overview__info-item:not(:last-of-type)::after {
    position: absolute;
    width: 100%;
    content: "";
    height: 2rem;
    background: #f4f4f4;
    bottom: -16rem
}

.overview__info-circle {
    width: 56rem;
    height: 56rem;
    flex-shrink: 0
}

@media (min-width: 48.01em) {
    .breadcrumbs {
        margin-top: 20rem
    }

    .footer__nav-item {
        white-space: nowrap
    }

    .nav__inner-wrapp {
        width: 1336rem;
        transition: width .3s;
        overflow: hidden
    }

    .isSearch .nav__inner-wrapp {
        width: 278rem
    }

    .nav__inner {
        width: 1336rem
    }

    .search__head {
        width: 72rem
    }

    .isSearch .search__head {
        width: 1168rem
    }

    .search__head-inner {
        width: 1168rem
    }

    .burger-modal {
        display: none
    }

    .hero__slide {
        height: auto
    }

    .wherefore__link:hover {
        color: #fff;
        background: var(--theme-primary)
    }

    .pack--earlier .pack__btn {
        min-width: 415rem
    }

    .pack__btn {
        width: fit-content
    }

    .help__trigger-list {
        flex-wrap: wrap
    }

    .where-arr.isShow .where-arr__arr:hover .where-arr__arr-svg {
        transform: translateX(5rem) rotate(-180deg)
    }

    .where-arr__arr:hover .where-arr__arr-svg {
        transform: translateX(-5rem)
    }

    .where-arr__btn:hover {
        scale: 1.04
    }

    .application__form .btn-primary {
        width: 283rem
    }

    .tabs__trigger-list {
        flex-wrap: wrap
    }

    .gear__trigger-list {
        flex-wrap: wrap
    }

    .gear__desk {
        width: 439rem
    }

    .infertility-hero {
        overflow: hidden;
        margin-top: -124rem;
        padding-top: 124rem
    }
}

@media (min-width: 600px) {
    .uteka-widget__container {
        padding: 0 20rem
    }
}

@media (min-width: 768px) {
    .uteka-widget__container {
        padding: 0 40rem
    }
}

@media (min-width: 1024px) {
    .uteka-widget__container {
        padding: 0 44rem
    }

    .uteka-widget-header__inner {
        flex-direction: row
    }

    .uteka-widget-header__title {
        background-image: url("https://widget.uteka.ru/static/img/widgets/title_2.svg") no-repeat top/cover;
        width: 264rem;
        height: 24rem
    }

    .uteka-widget-header__logo {
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        height: 32rem
    }
}

@media (min-width: 1440px) {
    .uteka-widget__container {
        padding: 0 60rem
    }
}

@media (max-width: 48em) {
    html {
        --w: 375;
        -webkit-text-size-adjust: none
    }

    body {
        -webkit-text-size-adjust: none
    }

    .container {
        padding: 0 12rem;
        width: 100%
    }

    .wrapper {
        overflow: hidden
    }

    main {
        margin-top: 84rem
    }

    .desktop {
        display: none
    }

    .mobile {
        display: flex
    }

    sup {
        font-size: 10rem !important
    }

    .h1 {
        font-size: 24rem
    }

    .h2 sup {
        top: -6rem
    }

    .h2 {
        font-size: 22rem
    }

    .h4 {
        font-size: 16rem
    }

    .h5 {
        font-size: 16rem
    }

    .h6 {
        font-size: 16rem
    }

    .h7 {
        font-size: 16rem;
        line-height: 130%
    }

    .txt54 sup {
        top: -6rem
    }

    .txt54 {
        font-size: 32rem
    }

    .txt40 {
        font-size: 18rem
    }

    .txt36 {
        font-size: 22rem
    }

    .txt32 {
        font-size: 18rem
    }

    .txt30 {
        font-size: 18rem
    }

    .txt28 {
        font-size: 18rem
    }

    .txt24 {
        font-size: 16rem
    }

    .txt24_upper {
        font-size: 20rem;
        font-weight: 700;
        text-transform: uppercase
    }

    .txt22 {
        font-size: 14rem
    }

    .txt20 {
        font-size: 16rem
    }

    .txt18 {
        font-size: 16rem
    }

    .txt16 {
        font-size: 14rem
    }

    .btn-primary {
        width: 100%
    }

    .btn-primary span {
        padding: 16rem 24rem;
        font-size: 16rem;
        line-height: 130%
    }

    .btn-border {
        padding: 13.5rem
    }

    .btn-border span {
        font-size: 16rem
    }

    .circle-link {
        width: 44rem;
        height: 44rem
    }

    .circle-link__svg {
        width: 16rem;
        height: 16rem
    }

    .form__input {
        padding: 14rem 16rem;
        min-height: 48rem;
        font-size: 16rem;
        line-height: 120%
    }

    .form__placeholder {
        font-size: 12rem;
        padding-left: 16rem
    }

    .form__error {
        font-size: 10rem;
        bottom: -16rem;
        left: 16rem
    }

    .form__btn-box {
        gap: 20rem
    }

    .form__textarea-wrap {
        padding: 16rem 16rem 40rem;
        height: 143rem;
        border-radius: 12rem
    }

    .form__textarea-count {
        right: 16rem
    }

    .form__check-label {
        gap: 8rem
    }

    .form__check-square {
        width: 24rem;
        height: 24rem;
        border-radius: 6rem
    }

    .form__check-square::before {
        width: 15rem;
        height: 13rem
    }

    .form__check-text {
        font-size: 12rem
    }

    .f-button-close {
        width: 52rem !important;
        height: 52rem !important
    }

    .is-close-btn {
        width: 52rem !important;
        height: 52rem !important;
        top: -100rem !important;
        right: 0 !important
    }

    .fancybox__toolbar__column.is-right {
        margin: 16rem 16rem 0 0
    }

    .has-image,
    .has-html5video {
        padding: 0 16rem !important
    }

    .has-image .fancybox__content,
    .has-html5video .fancybox__content {
        width: 343rem !important;
        height: auto !important;
        border-radius: 12rem
    }

    .has-image .fancybox__content img,
    .has-image .fancybox__content video,
    .has-html5video .fancybox__content img,
    .has-html5video .fancybox__content video {
        width: 100%;
        height: auto;
        border-radius: 12rem
    }

    .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 {
        width: 52rem !important;
        height: 52rem !important
    }

    .is-horizontal .f-carousel__nav .f-button.is-prev,
    .is-horizontal .fancybox__nav .f-button.is-prev {
        top: auto !important;
        bottom: 40rem !important;
        left: 50% !important;
        transform: translate(-110%) !important
    }

    .is-horizontal .f-carousel__nav .f-button.is-next,
    .is-horizontal .fancybox__nav .f-button.is-next {
        top: auto !important;
        bottom: 40rem !important;
        right: 50% !important;
        transform: translate(110%) !important
    }

    .section-wrap {
        border-radius: 24rem 24rem 0 0
    }

    .swiper-btn-box {
        gap: 12rem
    }

    .swiper-button {
        display: none;
        width: 44rem !important;
        height: 44rem !important
    }

    .swiper-button__svg {
        width: 16rem;
        height: 16rem
    }

    .breadcrumbs__list {
        gap: 8rem
    }

    .breadcrumbs li {
        gap: 8rem;
        font-size: 14rem
    }

    .list-mark {
        width: 12rem;
        height: 12rem
    }

    .list-mark::after {
        width: 5.45rem;
        height: 5.45rem
    }

    .footer {
        margin-bottom: 0;
        padding-bottom: 0
    }

    .footer__inner {
        padding: 40rem 0 30rem;
        gap: 30rem
    }

    .footer__bibliography {
        width: 100%;
        font-size: 12rem
    }

    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 30rem
    }

    .footer__info {
        gap: 20rem
    }

    .footer__logo {
        width: 190rem;
        height: 25rem
    }

    .footer__links {
        display: none
    }

    .footer__nav {
        grid-template-columns: 170rem 141rem;
        gap: 40rem
    }

    .footer__nav-item {
        display: flex;
        flex-direction: column;
        gap: 26.4rem
    }

    .footer__nav-link {
        font-size: 14rem
    }

    .footer__nav-item-list {
        gap: 16rem
    }

    .footer__nav-item-link {
        font-size: 14rem
    }

    .footer__social {
        gap: 24rem
    }

    .footer__social-logo {
        width: 180rem;
        height: 35rem
    }

    .footer__social-adress {
        gap: 24rem;
        margin-right: -7rem
    }

    .footer__social-adress br {
        display: none
    }

    .footer__social-list {
        gap: 10rem
    }

    .footer__disclaimer-wrap {
        padding: 12rem 0
    }

    .header {
        top: 12rem;
        width: 100%
    }

    .header::before {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        position: absolute;
        left: 0;
        top: -12rem;
        pointer-events: none;
        background: #dbdbdb;
        content: "";
        opacity: 0;
        transition: opacity .3s
    }

    .header.isSearch::before,
    .header.isBurger::before {
        opacity: 1
    }

    .header__btn {
        display: none
    }

    .header .header__circle-btn-box {
        display: flex;
        align-items: center;
        gap: 8rem
    }

    .nav {
        border-radius: 12rem;
        width: 100%
    }

    .nav__inner-wrapp {
        width: 100%
    }

    .nav__inner {
        width: 100%;
        padding: 8rem
    }

    .nav__logo {
        width: 190rem;
        height: 25rem;
        transition: opacity .3s
    }

    .isSearch .nav__logo {
        opacity: 0
    }

    .nav__info-wrap {
        display: none
    }

    .billets__btn-modal {
        display: none
    }

    .search__btn-wrap {
        width: 44rem;
        height: 44rem
    }

    .search__close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44rem;
        height: 44rem;
        background: #f4f4f4;
        position: absolute;
        z-index: 4;
        right: 8rem;
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    .isSearch .search__close-btn {
        transition: opacity .3s, visibility .3s, pointer-events .3s;
        opacity: 1;
        visibility: visible;
        pointer-events: fill
    }

    .search__btn {
        width: 44rem;
        background: #f4f4f4;
        height: 44rem
    }

    .search__btn-svg {
        width: 20rem;
        height: 20rem
    }

    .search__input-wrap {
        padding: 13.5rem 12rem;
        position: absolute;
        background: #f4f4f4;
        height: 44rem;
        z-index: 2;
        left: 8rem;
        border-radius: 60rem;
        width: 44rem;
        transition: width .3s, left .3s;
        left: 247rem
    }

    .isSearch .search__input-wrap {
        width: 282rem;
        left: 8rem
    }

    .search__modal {
        width: 100%;
        left: 0;
        border-radius: 12rem;
        padding: 0 12rem
    }

    .search__modal-inner {
        max-height: calc(100vh - 100rem);
        max-height: calc(100dvh - 100rem);
        padding: 20rem 0;
        gap: 32rem
    }

    .search__before-clear {
        border-bottom: 1rem solid #686868;
        padding: 0rem 0rem 1rem
    }

    .search__before-list {
        gap: 15rem
    }

    .search__before-item-info {
        gap: 10rem
    }

    .search__before-item-svg {
        width: 20rem;
        height: 20rem
    }

    .search__before-item-link {
        font-size: 14rem
    }

    .search__before-item-remove {
        width: 20rem;
        height: 20rem
    }

    .search__full-count {
        font-size: 14rem
    }

    .search__full-list {
        gap: 8rem
    }

    .search__full-link {
        border-radius: 8rem;
        padding: 8rem 12rem 12rem
    }

    .search__full-link-info {
        gap: 4rem
    }

    .search__full-link-info .h7 {
        font-size: 12rem
    }

    .search__full-link-info .h6 {
        font-size: 14rem
    }

    .search__full-link-arr {
        width: 44rem;
        height: 44rem
    }

    .search__full-link-svg {
        width: 20rem;
        height: 20rem
    }

    .search__empty-text {
        font-size: 14rem
    }

    .menu-modal {
        display: none
    }

        .hero__inner {
        gap: 0
    }

    .hero__billet {
        display: none
    }

    .hero__title {
        width: 100%;
        text-align: center
    }

    .hero__img {
        position: relative;
        top: 0;
        right: 0;
        width: 507rem;
        height: 252rem;
        margin-left: -92rem
    }

    .hero__swiper-box button {
        display: flex !important
    }

    .hero__swiper {
        overflow: visible !important
    }

    .hero__adv {
        border: 3rem solid #aeaeae;
        border-radius: 12rem;
        padding: 16rem 12rem
    }

    .hero__adv-content {
        gap: 12rem
    }

    .hero__adv-num {
        top: 12rem;
        right: 12rem;
        width: 32rem;
        height: 32rem;
        font-size: 16rem
    }

    .wherefore {
        padding: 60rem 0;
        margin-top: -1rem
    }

    .wherefore__inner {
        gap: 32rem
    }

    .wherefore__content {
        display: flex;
        flex-direction: column;
        gap: 24rem
    }

    .wherefore__item {
        padding: 16rem 12rem;
        display: flex;
        flex-direction: column
    }

    .wherefore__img {
        width: 237rem;
        height: 327rem;
        border: unset;
        align-self: center;
        position: static;
        margin-top: -40rem;
        position: relative;
        overflow: visible
    }

    .wherefore__img::after,
    .wherefore__img::before {
        content: "";
        position: absolute;
        width: 322rem;
        bottom: -45rem;
        left: 50%;
        transform: translateX(-50%)
    }

    .wherefore__img::before {
        background: rgba(104, 104, 104, .7529411765);
        filter: blur(14rem);
        height: 100rem
    }

    .wherefore__img::after {
        background: #686868;
        filter: blur(10rem);
        height: 100rem;
        height: 80rem
    }

    .wherefore__img--gino {
        margin-top: -60rem
    }

    .wherefore__info {
        gap: 12rem
    }

    .wherefore__subtitle {
        text-align: center
    }

    .wherefore__list {
        text-align: center
    }

    .wherefore__link {
        min-height: 48rem;
        padding: 3rem;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .pack--earlier .pack__img {
        width: 395rem;
        height: 171rem;
        margin-left: -20rem;
        align-self: flex-start;
        margin-right: 0
    }

    .pack__inner {
        padding: 60rem 0;
        gap: 12rem
    }

    .pack__content {
        flex-direction: column;
        gap: 15rem
    }

    .pack__info {
        flex-direction: column;
        gap: 15rem
    }

    .pack__text {
        text-align: center;
        font-size: 22rem
    }

    .pack__img {
        width: 474rem;
        height: 171rem;
        margin-left: -48rem;
        align-self: flex-start;
        margin-right: 0
    }

    .help .help__wrap {
        width: 351rem;
        border-radius: 24rem
    }

    .help .help__wrap::before {
        height: 375rem
    }

    .help__inner {
        padding: 40rem 0;
        gap: 20rem
    }

    .help__title-box {
        gap: 12rem
    }

    .help__title br {
        display: none
    }

    .help__triggers {
        margin: 0 -12rem;
        padding: 0 24rem;
        width: 375rem;
        overflow: auto
    }

    .help__triggers::-webkit-scrollbar,
    .help__triggers::-webkit-scrollbar-thumb,
    .help__triggers::-webkit-scrollbar-track {
        display: none
    }

    .help__trigger-list {
        gap: 8rem
    }

    .help__content {
        gap: 20rem
    }

    .help__swiper {
        overflow: visible !important
    }

    .help__btn-wrap {
        flex-direction: column-reverse
    }

    .help__nav-box {
        display: flex
    }

    .help__swiper-btn {
        display: flex
    }

    .history {
        min-height: unset;
        gap: 24rem
    }

    .history__content {
        gap: 16rem
    }

    .history__img {
        border-radius: 16rem;
        width: 327rem;
        height: 205rem
    }

    .history__img::after {
        width: 48rem;
        height: 48rem
    }

    .faq__inner {
        padding: 60rem 0;
        gap: 20rem
    }

    .faq__content {
        gap: 20rem
    }

    .faq__accordion {
        display: flex;
        flex-direction: column;
        gap: 12rem
    }

    .faq__accordion-list {
        gap: 12rem
    }

    .acc {
        border-radius: 16rem;
        padding: 12rem
    }

    .acc__head {
        gap: 22rem;
        align-items: flex-start
    }

    .acc__arr {
        width: 16rem;
        height: 16rem
    }

    .acc__info {
        width: 100%;
        margin-top: 24rem
    }

    .acc__info-inner {
        gap: 24rem
    }

    .acc__author-photo {
        width: 54rem;
        height: 54rem
    }

    .acc__author-name {
        font-size: 14rem
    }

    .order__inner {
        padding: 60rem 0;
        gap: 20rem
    }

    .order__list-box {
        gap: 20rem
    }

    .order__list li {
        border-radius: 12rem
    }

    .order__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12rem
    }

    .order__link {
        padding: 26rem 16rem;
        height: auto
    }

    .find__inner {
        gap: 20rem;
        padding: 60rem 0
    }

    .where-arr {
        bottom: 100rem;
        top: auto;
        transform: translateY(0);
        right: -225rem
    }

    .where-arr__content {
        width: 294rem;
        height: 177rem
    }

    .where-arr__btn {
        font-size: 14rem;
        padding: 11rem 34rem
    }

    .where-arr__hide {
        padding: 61rem 6rem 12rem 26rem
    }

    .where-arr .where-arr__img {
        width: 294rem;
        height: 147rem;
        top: -81rem;
        right: -10rem
    }

    .where-arr .where-arr__hide-btn {
        width: 262rem;
        white-space: nowrap;
        height: 48rem
    }

    .application__inner {
        display: flex;
        padding-bottom: 60rem;
        padding-top: 40rem
    }

    .application__img {
        display: none
    }

    .application__content {
        gap: 20rem
    }

    .application__form .form__label-box {
        gap: 16rem
    }

    .tabs {
        gap: 20rem
    }

    .tabs__head {
        gap: 20rem
    }

    .tabs__tabs-wrap {
        gap: 16rem
    }

    .tabs__triggers {
        margin: 0 -12rem;
        padding: 0 12rem;
        width: 375rem;
        overflow: auto
    }

    .tabs__triggers::-webkit-scrollbar,
    .tabs__triggers::-webkit-scrollbar-thumb,
    .tabs__triggers::-webkit-scrollbar-track {
        display: none
    }

    .tabs__trigger-list {
        gap: 8rem
    }

    .tabs__list {
        gap: 16rem 20rem
    }

    .tabs__link {
        padding-bottom: 2rem
    }

    .tabs__link::before {
        height: 1rem
    }

    .tabs__link {
        text-overflow: ellipsis;
        max-width: 351rem;
        overflow: hidden
    }

    .tabs .section-wrap,
    .tabs.section-wrap {
        margin-top: 20rem
    }

    .tabs__tabs {
        padding: 40rem 0 20rem
    }

    .faq-acc {
        gap: 12rem
    }

    .faq-acc__head {
        border-radius: 8rem;
        padding: 12rem;
        gap: 12em
    }

    .faq-acc__arr {
        width: 16rem;
        height: 16rem
    }

    .faq-acc__info {
        margin-top: 8rem
    }

    .faq-acc__info-inner {
        border-radius: 8rem;
        padding: 20rem 12rem;
        gap: 16rem
    }

    .imp-art {
        padding-bottom: 20rem
    }

    .gear__inner {
        gap: 20rem;
        padding: 60rem 0
    }

    .gear__content {
        gap: 24rem
    }

    .gear__triggers {
        margin: 0 -12rem;
        padding: 0 12rem;
        width: 375rem;
        overflow: auto
    }

    .gear__triggers::-webkit-scrollbar,
    .gear__triggers::-webkit-scrollbar-thumb,
    .gear__triggers::-webkit-scrollbar-track {
        display: none
    }

    .gear__trigger-list {
        gap: 8rem
    }

    .gear__trigger {
        min-width: 172rem
    }

    .gear__list {
        gap: 20rem
    }

    .gear__item {
        width: 100%;
        flex-direction: column;
        text-align: center
    }

    .gear__item .txt24 {
        font-size: 18rem
    }

    .gear__svg {
        width: 112rem;
        height: 112rem
    }

    .gear__bg {
        display: none
    }

    .both__inner {
        gap: 20rem;
        padding: 60rem 0
    }

    .both__header {
        gap: 20rem
    }

    .both__header .txt30 {
        width: 100%
    }

    .both__content {
        display: flex;
        flex-direction: column;
        gap: 12rem
    }

    .both__item {
        border-radius: 12rem;
        flex-direction: column;
        gap: 16rem;
        padding: 16rem 12rem
    }

    .both__img {
        position: static;
        width: 148rem;
        height: 148rem
    }

    .both__img-text {
        font-size: 22rem
    }

    .both__text {
        width: 100%;
        text-align: center
    }

    .infertility-hero__inner {
        padding: 28rem 0 0;
        text-align: center
    }

    .infertility-hero__inner .h1 {
        padding: 0 20rem
    }

    .infertility-hero__info {
        width: 100%;
        gap: 20rem
    }

    .infertility-hero__important {
        border-radius: 12rem;
        padding: 16rem 12rem
    }

    .infertility-hero__disclaimer {
        flex-direction: column;
        gap: 8rem;
        padding: 0 20rem
    }

    .infertility-hero__disclaimer-svg {
        width: 40rem;
        height: 40rem
    }

    .infertility-hero__img {
        position: static;
        width: 407rem;
        height: 364rem;
        margin-left: -44rem;
        margin-top: -30rem
    }

    .reasons {
        padding: 40rem 0 65rem
    }

    .reasons__inner {
        gap: 32rem
    }

    .reasons__list {
        display: flex;
        flex-direction: column;
        gap: 24rem
    }

    .reasons__item {
        padding: 16rem 12rem;
        display: flex;
        flex-direction: column;
        border-radius: 12rem
    }

    .reasons__item--big .reasons__photo {
        width: 348rem;
        height: 280rem
    }

    .reasons__photo img {
        object-position: center top
    }

    .reasons__photo {
        width: 248rem;
        height: 317rem;
        border: unset;
        align-self: center;
        position: static;
        margin-top: -40rem;
        position: relative;
        overflow: hidden;
        object-fit: 0% 100%
    }

    .reasons__photo::after,
    .reasons__photo::before {
        content: "";
        position: absolute;
        width: 400rem;
        bottom: -45rem;
        left: 50%;
        transform: translateX(-50%)
    }

    .reasons__photo::before {
        background: rgba(104, 104, 104, .7529411765);
        filter: blur(14rem);
        height: 100rem
    }

    .reasons__photo::after {
        background: #686868;
        filter: blur(10rem);
        height: 100rem;
        height: 80rem
    }

    .reasons__photo--gino {
        margin-top: -60rem
    }

    .reasons__info .txt28 {
        max-width: unset
    }

    .reasons__info {
        gap: 12rem;
        margin-top: -16rem
    }

    .reasons__title {
        text-align: center
    }

    .reasons__inner-content {
        gap: 12rem
    }

    .reasons__inner-content>p {
        text-align: center
    }

    .reasons__inner-list {
        gap: 12rem
    }

    .reasons__inner-item {
        gap: 8rem
    }

    .reasons__important {
        min-height: 73rem;
        max-width: unset;
        border-radius: 12rem
    }

    .reasons__num {
        font-size: 52rem
    }

    .reasons__num span {
        font-size: 24rem
    }

    .overview {
        margin-top: -84rem;
        padding-top: 140rem
    }

    .overview__inner {
        padding: 0 0 60rem
    }

    .overview__main {
        display: flex;
        flex-direction: column
    }

    .overview__main::before {
        border-radius: 12rem
    }

    .overview__swiper-box {
        border-radius: 12rem 12rem 0 0;
        display: flex;
        flex-direction: column
    }

    .overview__swiper-bg {
        display: none
    }

    .overview__swiper-left-box {
        min-height: 286rem
    }

    .overview__swiper-left-box .swiper .swiper-slide {
        height: auto
    }

    .overview__slide-left picture {
        border-radius: unset
    }

    .overview__slide-left--man {
        width: 335rem;
        height: 330rem;
        bottom: 38rem
    }

    .overview__slide-left--woman {
        width: 335rem;
        height: 325rem;
        bottom: 38rem;
        left: 20rem
    }

    .overview__slide-left--infertility {
        width: 379rem;
        height: 340rem;
        bottom: 41rem;
        left: -8rem
    }

    .overview__slide-left--items {
        padding: 16rem 16rem 44rem
    }

    .overview__slide-left--items .overview__fancybox {
        width: 100%
    }

    .overview__slide-left--items .overview__fancybox-img {
        width: 96rem;
        min-height: 104rem;
        border-radius: 12rem 0 0 12rem
    }

    .overview__slide-left--items .overview__fancybox-content {
        border-radius: 0 12rem 12rem 0;
        gap: 8rem
    }

    .overview__slide-left--items .overview__fancybox-title {
        font-size: 18rem
    }

    .overview__slide-left--items .overview__fancybox-info {
        gap: 4rem
    }

    .overview__swiper-right-box {
        margin-left: unset
    }

    .overview__swiper-right-box::before {
        display: none
    }

    .overview__slide-right {
        padding: 0 16rem 28rem
    }

    .overview__slide-right--man,
    .overview__slide-right--woman,
    .overview__slide-right--infertility {
        gap: 16rem
    }

    .overview__slide-right--man .overview__slide-content,
    .overview__slide-right--woman .overview__slide-content,
    .overview__slide-right--infertility .overview__slide-content {
        gap: 13rem
    }

    .overview__slide-right--man .overview__slide-list,
    .overview__slide-right--woman .overview__slide-list,
    .overview__slide-right--infertility .overview__slide-list {
        gap: 11rem
    }

    .overview__slide-right--man .overview__slide-item,
    .overview__slide-right--woman .overview__slide-item,
    .overview__slide-right--infertility .overview__slide-item {
        gap: 12rem
    }

    .overview__slide-right--man .overview__slide-btn-box,
    .overview__slide-right--woman .overview__slide-btn-box,
    .overview__slide-right--infertility .overview__slide-btn-box {
        gap: 12rem;
        flex-direction: column
    }

    .overview__slide-right--man .overview__slide-btn-box button,
    .overview__slide-right--man .overview__slide-btn-box a,
    .overview__slide-right--woman .overview__slide-btn-box button,
    .overview__slide-right--woman .overview__slide-btn-box a,
    .overview__slide-right--infertility .overview__slide-btn-box button,
    .overview__slide-right--infertility .overview__slide-btn-box a {
        width: 100%
    }

    .overview__slide-right--items {
        gap: 12rem
    }

    .overview__slide-right--items .overview__slide-billet {
        padding: 4rem 4rem 2rem
    }

    .overview__slide-right--items .overview__slide-link {
        padding-left: 16rem
    }

    .overview__slide-right--items .overview__slide-link::before {
        width: 12rem;
        height: 12rem
    }

    .overview .swiper-pagination {
        bottom: 12rem !important
    }

    .overview__info-box {
        border-radius: 0 0 12rem 12rem;
        padding: 0 15rem 25rem;
        flex-direction: column;
        gap: 28rem
    }

    .overview__info-img {
        position: static;
        width: 285rem;
        height: 146rem;
        margin: 0 auto
    }

    .overview__info-item .txt24 {
        font-size: 20rem
    }

    .overview__info-circle {
        width: 52rem;
        height: 52rem
    }
}

@media (max-width: 1280px) {
    .uteka-widget {
        height: 750px
    }
}

@media (max-width: 768px) {
    .uteka-widget {
        height: 650px;
        border-radius: 18px;
        width: 343rem
    }

    .uteka-widget iframe {
        height: calc(100% - 200rem)
    }

    .uteka-widget-footer__img {
        width: 44rem;
        height: 44rem
    }

    .uteka-widget-footer__text {
        font-size: 14rem
    }
}


/* End */


/* Start:/local/templates/longidaza/css/style_new.css?178272128111427*/
@font-face {
  font-family: "Bebas Neue";
  src: url("/local/templates/longidaza/css/../font/bebasneue_regular.woff2") format("woff2"), url("/local/templates/longidaza/css/../font/bebasneue_regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/local/templates/longidaza/css/../font/bebasneue_bold.woff2") format("woff2"), url("/local/templates/longidaza/css/../font/bebasneue_bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

.order__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20rem
}
.overview__info-item{
    z-index: 99;
}
.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup_hidden {
    display: none;
}

.popup__wrapper {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    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;
}

.popup__block {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    margin: 15px;
    padding: 40px 25px;
    background-color: #E4E4E4;
}

@media all and (min-width: 769px) {
    .popup__block {
        padding: 55px;
    }
}

.popup__close-btn {
    position: absolute;
    right: 14px;
    top: 17px;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url("/local/templates/longidaza/css/../img/svg-sprite/sprite.view.svg#cross-gray");
    background-position: 8px 8px;
    background-size: 14px 14px;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease 0s;
    transition: opacity 0.2s ease 0s;
    z-index: 2;
}

@media all and (min-width: 769px) {
    .popup__close-btn {
        width: 40px;
        height: 40px;
        background-position: 13px 13px;
    }
}

.popup__close-btn:hover {
    opacity: 0.5;
}

.popup__title {
    margin: 0 0 25px;
    font-size: 30px;
    line-height: 1;
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

@media all and (min-width: 769px) {
    .popup__title {
        margin: 0 0 41px;
        font-size: 48px;
    }
}

.popup__text {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.5;
}

@media all and (min-width: 769px) {
    .popup__text {
        font-size: 22px;
        margin: 0 0 30px;
    }
}

.popup__info-text {
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    color: #cd1137;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    text-align: center;
}

.popup__btns-wrap {
    margin: 20px 0 0;
    text-align: center;
}

@media all and (min-width: 769px) {
    .popup__btns-wrap {
        margin: 30px 0 0;
    }
}

.popup_popup-quiz .popup__block {
    width: 784px;
    padding: 0;
    overflow: hidden;
}

.popup_popup-quiz .popup-quiz__wrap-top {
    background: #E4E4E4;
    padding: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 70px;
}

@media all and (max-width: 768px) {
    .popup_popup-quiz .popup-quiz__wrap-top {
        grid-gap: 25px;
        padding: 40px;
    }
}

.popup_popup-quiz .popup-quiz__title {
    position: relative;
    font-weight: 700;
    font-size: 56px;
    line-height: 0.9;
    color: #000000;
    margin: 0;
    z-index: 1;
}

.popup_popup-quiz .popup-quiz__title--color {
    color: #CD1137;
    font-weight: 700;
    font-size: 100px;
}

@media all and (max-width: 768px) {
    .popup_popup-quiz .popup-quiz__title {
        font-size: 35px;
    }

    .popup_popup-quiz .popup-quiz__title--color {
        font-size: 60px;
    }
}

@media all and (min-width: 769px) and (max-width: 1000px) {
    .popup_popup-quiz .popup-quiz__title {
        font-size: 50px;
    }

    .popup_popup-quiz .popup-quiz__title--color {
        font-size: 86px;
    }
}

.popup_popup-quiz .popup-quiz__wrap-text {
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 60px 40px;
}

@media all and (max-width: 768px) {
    .popup_popup-quiz .popup-quiz__wrap-text {
        padding: 30px 20px 20px;
    }
}

.popup_popup-quiz .popup-quiz__name {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
    color: #cd1137;
    margin: 0;
    position: relative;
    z-index: 1;
}

.popup_popup-quiz .popup-quiz__name span {
    font-weight: 700;
}

@media all and (max-width: 768px) {
    .popup_popup-quiz .popup-quiz__name {
        font-size: 22px;
    }
}

@media all and (min-width: 769px) and (max-width: 1000px) {
    .popup_popup-quiz .popup-quiz__name {
        font-size: 28px;
    }
}

.popup-quiz__block-img {
    position: absolute;
    top: -80px;
    left: 160px;
    width: 700px;
    pointer-events: none;
}

@media all and (max-width: 768px) {
    .popup-quiz__block-img {
        top: -70px;
        left: 40px;
        width: 500px;
    }
}

.popup_popup-quiz .popup-quiz__text {
    color: #000;
    font-size: 14px;
    line-height: 1.1;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 15px 0px;
}

@media all and (max-width: 768px) {
    .popup_popup-quiz .popup-quiz__text {
        font-size: 12px;
    }
}

@media all and (max-width: 376px) {
    .popup_popup-quiz .popup-quiz__text {
        font-size: 9px;
    }
}

.popup_popup-quiz .popup-quiz__btn {
    position: relative;
    z-index: 1;
}

.popup_popup-quiz .popup-quiz__img {
    width: 100%;
}

@media all and (max-width: 500px) {
    .popup_popup-quiz .popup-quiz__wrap-top {
        padding: 40px 20px;
    }

    .popup-quiz__block-img {
        top: -30px;
        left: 30px;
        width: 350px;
    }

    .popup_popup-quiz .popup-quiz__title {
        font-size: 32px;
    }

    .popup_popup-quiz .popup-quiz__title--color {
        font-size: 48px;
    }
}

@media all and (max-width: 360px) {
    .popup-quiz__block-img {
        top: -20px;
        left: 28px;
        width: 300px;
    }

    .popup_popup-quiz .popup-quiz__title {
        font-size: 26px;
    }

    .popup_popup-quiz .popup-quiz__title--color {
        font-size: 42px;
    }
}

.popup_popup-quiz .popup-type-2 .popup__block {
    overflow: visible;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__img {
    width: 470px;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__block-img {
    top: 10px;
    left: 230px;
    width: auto;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__title {
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__name>span {
    font-size: 54px;
    color: #000;
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__name>span>span {
    color: #cd1137;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__wrap-text {
    padding: 40px 30px;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__title--color {
    position: relative;
}

.popup_popup-quiz .popup-type-2 .popup-quiz__title--color:before {
    content: "-";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30%;
}

.popup_popup-quiz .popup-type-1 .popup-quiz__wrap-top {
    min-height: 265px;
    padding: 0;
}

.popup_popup-quiz .popup-type-1 .popup-quiz__name {
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.popup_popup-quiz .popup-type-1 .popup-quiz__block-img {
    position: absolute;
    top: -48px;
    width: 530px;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

.popup_popup-video-by-url {
    z-index: 21;
}

@media (min-width: 769px) and (max-width: 1000px) {
    .popup_popup-quiz .popup-type-2 .popup-quiz__img {
        width: 445px;
    }
}

@media (max-width: 768px) {
    .popup_popup-quiz .popup-type-2 .popup-quiz__name>span {
        font-size: 35px;
    }

    .popup_popup-quiz .popup-type-2 .popup-quiz__img {
        width: 265px;
    }

    .popup_popup-quiz .popup-type-2 .popup-quiz__block-img {
        left: 160px;
    }

    .popup_popup-quiz .popup-type-2 .popup-quiz__wrap-text {
        padding: 20px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__wrap-top {
        min-height: 215px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__name {
        font-size: 42px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__block-img {
        top: -44px;
        width: 440px;
    }
}

@media (max-width: 500px) {
    .popup_popup-quiz .popup-quiz__wrap-top {
        padding: 40px 20px;
    }

    .popup_popup-quiz .popup-type-2 .popup-quiz__block-img {
        left: 100px;
        top: 20px;
    }

    .popup_popup-quiz .popup-type-2 .popup-quiz__img {
        width: 215px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__wrap-top {
        min-height: 180px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__name {
        font-size: 36px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__block-img {
        top: -30px;
        width: 350px;
    }
}

@media all and (max-width: 360px) {
    .popup_popup-quiz .popup-type-2 .popup-quiz__block-img {
        left: 84px;
        top: 22px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__wrap-top {
        min-height: 160px;
    }

    .popup_popup-quiz .popup-type-1 .popup-quiz__block-img {
        top: -20px;
        width: 300px;
    }
}
.popup .visually-hidden {
display:none;
}
.popup_popup-quiz .btn {
    color: #ffffff;
    background-color: #cd1137;
    border: 2px solid #cd1137;
    padding: 12px 22px 10px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 0;
    font-family: Circe, Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
}
/* End */
/* /local/templates/longidaza/css/main_new.css?1782720429157018 */
/* /local/templates/longidaza/css/style_new.css?178272128111427 */
