.service-solution__item::before, .service-seo__content ul li::before, .service-list li::before, .service-choose__head::before, .turn::before, .map-wrap::before, .heros::before, .services-item__back::before, .services-item__front::before, .callback-item::before, .about::after, .about::before, .hero::before, .btn-move::before, .btn-green::before, .btn-green::after, .phone::before, .main-list > li > a::before, .main-list > li .sub-menu a::before {
    content: "";
    position: absolute;
}

.service-video__play, .turn-box {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.map .callback, .services-video, .blur-4, .blur-3, .main-list > li .sub-menu {
    transform: translateX(-50%);
    left: 50%;
}

@font-face {
    font-family: "CirceRegular";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/CirceRegular/CirceRegular.eot");
    src: url("../fonts/CirceRegular/CirceRegular.woff") format("woff"), url("../fonts/CirceRegular/CirceRegular.woff2") format("woff2");
}
@font-face {
    font-family: "CirceBold";
    font-weight: bold;
    font-style: normal;
    src: url("../fonts/CirceBold/CirceBold.eot");
    src: url("../fonts/CirceBold/CirceBold.woff") format("woff"), url("../fonts/CirceBold/CirceBold.woff2") format("woff2");
}
: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 0.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: 0.75;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-fadeFastOut {
    100% {
        opacity: 0;
    }
}
.f-fadeSlowIn {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
    z-index: 2;
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
    z-index: 1;
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-fadeSlowOut {
    100% {
        opacity: 0;
    }
}
.f-crossfadeIn {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
    z-index: 2;
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
    z-index: 1;
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes f-crossfadeOut {
    100% {
        opacity: 0;
    }
}
.f-slideIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%);
    }
}
@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%);
    }
}
.f-classicIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
    z-index: 2;
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
    z-index: 2;
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
    z-index: 1;
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
    z-index: 1;
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-75px);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes f-classicInPrev {
    0% {
        transform: translateX(75px);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes f-classicOutNext {
    100% {
        transform: translateX(-75px);
        opacity: 0;
    }
}
@keyframes f-classicOutPrev {
    100% {
        transform: translateX(75px);
        opacity: 0;
    }
}
:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition);
}

@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 0.15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none;
}

.f-button[disabled] {
    cursor: default;
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
    pointer-events: none;
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto;
}

html.with-fancybox body {
    touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none;
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: none;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
    box-sizing: inherit;
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity;
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip;
}

.fancybox__viewport {
    width: 100%;
    height: 100%;
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab;
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing;
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
    overflow: hidden;
}

.fancybox__slide.has-image {
    overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
    overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
    display: block;
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20;
}

.is-loading .fancybox__content {
    opacity: 0;
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab;
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
    cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
    will-change: transform, width, height;
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none;
    filter: blur(0px);
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden;
}

.is-compact .fancybox__caption {
    padding-bottom: 0;
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
    opacity: 1;
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative;
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px;
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1;
}

.is-idle .fancybox__nav {
    animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
    z-index: 30;
    cursor: pointer;
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none;
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none;
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
    animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
    animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, 0.9);
    color: #fff;
}

.has-map .fancybox__content {
    background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0);
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1;
}

.f-thumbs .f-spinner svg {
    display: none;
}

.f-thumbs.is-vertical {
    height: 100%;
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
    display: flex;
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer;
}

.f-thumbs__slide.is-loading img {
    opacity: 0;
}

.is-classic .f-thumbs__viewport {
    height: 100%;
}

.is-modern .f-thumbs__track {
    width: max-content;
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
    width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
    cursor: pointer;
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transition: none;
    pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100% 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none;
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
    clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn 0.2s ease-out;
    z-index: 10;
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
    transition: none !important;
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    z-index: 20;
}

.fancybox__toolbar :focus-visible {
    z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none;
}

.fancybox__infobar span {
    padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
    position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex;
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none;
}

/**
 * Swiper 11.1.12
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 1, 2024
 */
@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-cube-shadow, .swiper-3d .swiper-slide {
    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-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    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-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .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-next, .swiper-button-prev {
    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-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev 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-next:after, .swiper-button-prev: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: 0.3s 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-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    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-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s 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: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s 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-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    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-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
    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 > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    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: 0.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-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    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-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    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;
}

/*!
 * Bootstrap Grid v5.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 1140px;
    }
}
@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 1150px;
    }
}
@media (min-width: 1023px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 1160px;
    }
}
@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1430px;
    }
}
:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 1023px;
    --bs-breakpoint-xl: 1200px;
}

.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333333%;
    }
    .offset-sm-2 {
        margin-left: 16.66666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333333%;
    }
    .offset-sm-5 {
        margin-left: 41.66666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333333%;
    }
    .offset-sm-8 {
        margin-left: 66.66666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333333%;
    }
    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }
    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }
    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }
    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }
    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }
    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333333%;
    }
    .offset-md-2 {
        margin-left: 16.66666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333333%;
    }
    .offset-md-5 {
        margin-left: 41.66666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333333%;
    }
    .offset-md-8 {
        margin-left: 66.66666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333333%;
    }
    .offset-md-11 {
        margin-left: 91.66666667%;
    }
    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }
    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }
    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }
    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }
    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }
    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1023px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333333%;
    }
    .offset-lg-2 {
        margin-left: 16.66666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333333%;
    }
    .offset-lg-5 {
        margin-left: 41.66666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333333%;
    }
    .offset-lg-8 {
        margin-left: 66.66666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333333%;
    }
    .offset-lg-11 {
        margin-left: 91.66666667%;
    }
    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }
    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }
    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }
    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }
    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }
    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xl-11 {
        margin-left: 91.66666667%;
    }
    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }
    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }
    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }
    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }
    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }
    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}
.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-inline-grid {
    display: inline-grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

.column-gap-0 {
    column-gap: 0 !important;
}

.column-gap-1 {
    column-gap: 0.25rem !important;
}

.column-gap-2 {
    column-gap: 0.5rem !important;
}

.column-gap-3 {
    column-gap: 1rem !important;
}

.column-gap-4 {
    column-gap: 1.5rem !important;
}

.column-gap-5 {
    column-gap: 3rem !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-grid {
        display: grid !important;
    }
    .d-sm-inline-grid {
        display: inline-grid !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
    .d-sm-none {
        display: none !important;
    }
    .flex-sm-fill {
        flex: 1 1 auto !important;
    }
    .flex-sm-row {
        flex-direction: row !important;
    }
    .flex-sm-column {
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }
    .justify-content-sm-start {
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        justify-content: center !important;
    }
    .justify-content-sm-between {
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        justify-content: space-around !important;
    }
    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-sm-start {
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        align-items: center !important;
    }
    .align-items-sm-baseline {
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        align-items: stretch !important;
    }
    .align-self-sm-auto {
        align-self: auto !important;
    }
    .align-self-sm-start {
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        align-self: center !important;
    }
    .align-self-sm-baseline {
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        align-self: stretch !important;
    }
    .order-sm-first {
        order: -1 !important;
    }
    .order-sm-0 {
        order: 0 !important;
    }
    .order-sm-1 {
        order: 1 !important;
    }
    .order-sm-2 {
        order: 2 !important;
    }
    .order-sm-3 {
        order: 3 !important;
    }
    .order-sm-4 {
        order: 4 !important;
    }
    .order-sm-5 {
        order: 5 !important;
    }
    .order-sm-last {
        order: 6 !important;
    }
    .gap-sm-0 {
        gap: 0 !important;
    }
    .gap-sm-1 {
        gap: 0.25rem !important;
    }
    .gap-sm-2 {
        gap: 0.5rem !important;
    }
    .gap-sm-3 {
        gap: 1rem !important;
    }
    .gap-sm-4 {
        gap: 1.5rem !important;
    }
    .gap-sm-5 {
        gap: 3rem !important;
    }
    .row-gap-sm-0 {
        row-gap: 0 !important;
    }
    .row-gap-sm-1 {
        row-gap: 0.25rem !important;
    }
    .row-gap-sm-2 {
        row-gap: 0.5rem !important;
    }
    .row-gap-sm-3 {
        row-gap: 1rem !important;
    }
    .row-gap-sm-4 {
        row-gap: 1.5rem !important;
    }
    .row-gap-sm-5 {
        row-gap: 3rem !important;
    }
    .column-gap-sm-0 {
        column-gap: 0 !important;
    }
    .column-gap-sm-1 {
        column-gap: 0.25rem !important;
    }
    .column-gap-sm-2 {
        column-gap: 0.5rem !important;
    }
    .column-gap-sm-3 {
        column-gap: 1rem !important;
    }
    .column-gap-sm-4 {
        column-gap: 1.5rem !important;
    }
    .column-gap-sm-5 {
        column-gap: 3rem !important;
    }
    .text-sm-start {
        text-align: left !important;
    }
    .text-sm-end {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-grid {
        display: grid !important;
    }
    .d-md-inline-grid {
        display: inline-grid !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
    .d-md-none {
        display: none !important;
    }
    .flex-md-fill {
        flex: 1 1 auto !important;
    }
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-column {
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        justify-content: center !important;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        justify-content: space-around !important;
    }
    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-md-start {
        align-items: flex-start !important;
    }
    .align-items-md-end {
        align-items: flex-end !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
    .align-items-md-baseline {
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        align-items: stretch !important;
    }
    .align-self-md-auto {
        align-self: auto !important;
    }
    .align-self-md-start {
        align-self: flex-start !important;
    }
    .align-self-md-end {
        align-self: flex-end !important;
    }
    .align-self-md-center {
        align-self: center !important;
    }
    .align-self-md-baseline {
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        align-self: stretch !important;
    }
    .order-md-first {
        order: -1 !important;
    }
    .order-md-0 {
        order: 0 !important;
    }
    .order-md-1 {
        order: 1 !important;
    }
    .order-md-2 {
        order: 2 !important;
    }
    .order-md-3 {
        order: 3 !important;
    }
    .order-md-4 {
        order: 4 !important;
    }
    .order-md-5 {
        order: 5 !important;
    }
    .order-md-last {
        order: 6 !important;
    }
    .gap-md-0 {
        gap: 0 !important;
    }
    .gap-md-1 {
        gap: 0.25rem !important;
    }
    .gap-md-2 {
        gap: 0.5rem !important;
    }
    .gap-md-3 {
        gap: 1rem !important;
    }
    .gap-md-4 {
        gap: 1.5rem !important;
    }
    .gap-md-5 {
        gap: 3rem !important;
    }
    .row-gap-md-0 {
        row-gap: 0 !important;
    }
    .row-gap-md-1 {
        row-gap: 0.25rem !important;
    }
    .row-gap-md-2 {
        row-gap: 0.5rem !important;
    }
    .row-gap-md-3 {
        row-gap: 1rem !important;
    }
    .row-gap-md-4 {
        row-gap: 1.5rem !important;
    }
    .row-gap-md-5 {
        row-gap: 3rem !important;
    }
    .column-gap-md-0 {
        column-gap: 0 !important;
    }
    .column-gap-md-1 {
        column-gap: 0.25rem !important;
    }
    .column-gap-md-2 {
        column-gap: 0.5rem !important;
    }
    .column-gap-md-3 {
        column-gap: 1rem !important;
    }
    .column-gap-md-4 {
        column-gap: 1.5rem !important;
    }
    .column-gap-md-5 {
        column-gap: 3rem !important;
    }
    .text-md-start {
        text-align: left !important;
    }
    .text-md-end {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 1023px) {
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-grid {
        display: grid !important;
    }
    .d-lg-inline-grid {
        display: inline-grid !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
    .d-lg-none {
        display: none !important;
    }
    .flex-lg-fill {
        flex: 1 1 auto !important;
    }
    .flex-lg-row {
        flex-direction: row !important;
    }
    .flex-lg-column {
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        justify-content: center !important;
    }
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        justify-content: space-around !important;
    }
    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-lg-start {
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        align-items: center !important;
    }
    .align-items-lg-baseline {
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        align-items: stretch !important;
    }
    .align-self-lg-auto {
        align-self: auto !important;
    }
    .align-self-lg-start {
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        align-self: center !important;
    }
    .align-self-lg-baseline {
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        align-self: stretch !important;
    }
    .order-lg-first {
        order: -1 !important;
    }
    .order-lg-0 {
        order: 0 !important;
    }
    .order-lg-1 {
        order: 1 !important;
    }
    .order-lg-2 {
        order: 2 !important;
    }
    .order-lg-3 {
        order: 3 !important;
    }
    .order-lg-4 {
        order: 4 !important;
    }
    .order-lg-5 {
        order: 5 !important;
    }
    .order-lg-last {
        order: 6 !important;
    }
    .gap-lg-0 {
        gap: 0 !important;
    }
    .gap-lg-1 {
        gap: 0.25rem !important;
    }
    .gap-lg-2 {
        gap: 0.5rem !important;
    }
    .gap-lg-3 {
        gap: 1rem !important;
    }
    .gap-lg-4 {
        gap: 1.5rem !important;
    }
    .gap-lg-5 {
        gap: 3rem !important;
    }
    .row-gap-lg-0 {
        row-gap: 0 !important;
    }
    .row-gap-lg-1 {
        row-gap: 0.25rem !important;
    }
    .row-gap-lg-2 {
        row-gap: 0.5rem !important;
    }
    .row-gap-lg-3 {
        row-gap: 1rem !important;
    }
    .row-gap-lg-4 {
        row-gap: 1.5rem !important;
    }
    .row-gap-lg-5 {
        row-gap: 3rem !important;
    }
    .column-gap-lg-0 {
        column-gap: 0 !important;
    }
    .column-gap-lg-1 {
        column-gap: 0.25rem !important;
    }
    .column-gap-lg-2 {
        column-gap: 0.5rem !important;
    }
    .column-gap-lg-3 {
        column-gap: 1rem !important;
    }
    .column-gap-lg-4 {
        column-gap: 1.5rem !important;
    }
    .column-gap-lg-5 {
        column-gap: 3rem !important;
    }
    .text-lg-start {
        text-align: left !important;
    }
    .text-lg-end {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-grid {
        display: grid !important;
    }
    .d-xl-inline-grid {
        display: inline-grid !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: inline-flex !important;
    }
    .d-xl-none {
        display: none !important;
    }
    .flex-xl-fill {
        flex: 1 1 auto !important;
    }
    .flex-xl-row {
        flex-direction: row !important;
    }
    .flex-xl-column {
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }
    .justify-content-xl-start {
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        justify-content: center !important;
    }
    .justify-content-xl-between {
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        justify-content: space-around !important;
    }
    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-xl-start {
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        align-items: center !important;
    }
    .align-items-xl-baseline {
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        align-items: stretch !important;
    }
    .align-self-xl-auto {
        align-self: auto !important;
    }
    .align-self-xl-start {
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        align-self: center !important;
    }
    .align-self-xl-baseline {
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        align-self: stretch !important;
    }
    .order-xl-first {
        order: -1 !important;
    }
    .order-xl-0 {
        order: 0 !important;
    }
    .order-xl-1 {
        order: 1 !important;
    }
    .order-xl-2 {
        order: 2 !important;
    }
    .order-xl-3 {
        order: 3 !important;
    }
    .order-xl-4 {
        order: 4 !important;
    }
    .order-xl-5 {
        order: 5 !important;
    }
    .order-xl-last {
        order: 6 !important;
    }
    .gap-xl-0 {
        gap: 0 !important;
    }
    .gap-xl-1 {
        gap: 0.25rem !important;
    }
    .gap-xl-2 {
        gap: 0.5rem !important;
    }
    .gap-xl-3 {
        gap: 1rem !important;
    }
    .gap-xl-4 {
        gap: 1.5rem !important;
    }
    .gap-xl-5 {
        gap: 3rem !important;
    }
    .row-gap-xl-0 {
        row-gap: 0 !important;
    }
    .row-gap-xl-1 {
        row-gap: 0.25rem !important;
    }
    .row-gap-xl-2 {
        row-gap: 0.5rem !important;
    }
    .row-gap-xl-3 {
        row-gap: 1rem !important;
    }
    .row-gap-xl-4 {
        row-gap: 1.5rem !important;
    }
    .row-gap-xl-5 {
        row-gap: 3rem !important;
    }
    .column-gap-xl-0 {
        column-gap: 0 !important;
    }
    .column-gap-xl-1 {
        column-gap: 0.25rem !important;
    }
    .column-gap-xl-2 {
        column-gap: 0.5rem !important;
    }
    .column-gap-xl-3 {
        column-gap: 1rem !important;
    }
    .column-gap-xl-4 {
        column-gap: 1.5rem !important;
    }
    .column-gap-xl-5 {
        column-gap: 3rem !important;
    }
    .text-xl-start {
        text-align: left !important;
    }
    .text-xl-end {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}
@media print {
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-grid {
        display: grid !important;
    }
    .d-print-inline-grid {
        display: inline-grid !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: flex !important;
    }
    .d-print-inline-flex {
        display: inline-flex !important;
    }
    .d-print-none {
        display: none !important;
    }
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 26px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 24px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -7px;
}
.hamburger-inner::after {
    bottom: -7px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 1px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 14px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 7px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -52px;
    top: -52px;
    transform: translate3d(52px, 52px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -52px;
    top: -52px;
    transform: translate3d(-52px, 52px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

html, body {
    height: 100%;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

path, rect, circle {
    transition: all 0.35s ease;
}

body {
    font-size: 16px;
    line-height: 1.5;
    min-width: 375px;
    position: relative;
    font-family: "Inter", sans-serif;
    color: #fff;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    display: flex;
    flex-direction: column;
    background: #142849;
    font-weight: 400;
    font-optical-sizing: auto;
}

::placeholder {
    color: #666;
    opacity: 1;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

address {
    font-style: normal;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

input, select, button, textarea {
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
}

a {
    color: inherit;
    transition: all 0.3s linear;
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    background: none;
}

select {
    appearance: none;
}
select::-ms-expand {
    display: none;
}

textarea {
    resize: none;
}

body.hidden {
    overflow: hidden;
}

.logo img, .logo svg {
    display: block;
}

.header {
    padding: 32px 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 150;
}
.header .container {
    max-width: 1672px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home .header {
    position: absolute;
    width: 49.4%;
    top: 26px;
    z-index: 100;
    padding: 16px 42px 16px 22px;
}
.home .header-row {
    gap: 24px;
}
.home .header .container {
    max-width: 100%;
    padding: 0;
}
.home .header .logo {
    display: none;
}

.main-nav {
    margin-left: auto;
}
.main-list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-list > li {
    position: relative;
    padding-bottom: 10px;
}
.main-list > li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
}
.main-list > li:hover > a {
    background: #F7FAFC;
}
.main-list > li:hover > a span {
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-list > li:hover > a path {
    stroke: #083A67;
}
.main-list > li:hover > a::before {
    left: -21px;
    opacity: 0;
}
.main-list > li .sub-menu {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 12px;
    top: calc(100% + 15px);
    min-width: 220px;
    box-shadow: -2px 4px 8px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.main-list > li .sub-menu li {
    margin-bottom: 10px;
}
.main-list > li .sub-menu li:last-child {
    margin-bottom: 0;
}
.main-list > li .sub-menu a {
    font-size: 14px;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.main-list > li .sub-menu a::before {
    height: 1px;
    left: 0;
    bottom: 0;
    width: 0;
    transition: all 0.35s ease;
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
}
.main-list > li .sub-menu a:hover::before {
    width: 100%;
}
.main-list > li.current-menu-item > a {
    background: #F7FAFC;
}
.main-list > li.current-menu-item > a span {
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-list > li.current-menu-item > a path {
    stroke: #083A67;
}
.main-list > li.current-menu-item > a::before {
    left: -21px;
    opacity: 0;
}
.main-list > li > a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #DDDDDD;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    font-family: "Lexend", sans-serif;
    padding: 12px 34px;
    border-radius: 48px;
    white-space: nowrap;
    width: 180px;
    overflow: hidden;
}
.main-list > li > a svg {
    flex-shrink: 0;
}
.main-list > li > a span {
    background: linear-gradient(0deg, #fff 20.82%, #fff 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-list > li > a path {
    transition: none;
}
.main-list > li > a::before {
    left: -370px;
    border-radius: 100px 0 0 100px;
    width: 370px;
    height: 72px;
    top: -11px;
    background: linear-gradient(263.71deg, #49C7ED 20.82%, #002957 80.97%);
    transition: left 0.45s linear, opacity 0.45s linear;
    z-index: -1;
}
.main-list > li:nth-child(3) > a {
    background: rgba(255, 255, 255, 0.2);
}
.main-list > li:nth-child(3) > a span {
    background: linear-gradient(0deg, #fff 20.82%, #fff 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-list > li:nth-child(3) > a path {
    stroke: #fff;
}
.main-list > li:nth-child(3) > a::before {
    left: -370px;
    opacity: 1;
}
.main-list > li:nth-child(3):hover > a {
    background: #F7FAFC;
}
.main-list > li:nth-child(3):hover > a span {
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-list > li:nth-child(3):hover > a path {
    stroke: #083A67;
}
.main-list > li:nth-child(3):hover > a::before {
    left: -21px;
    opacity: 0;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.phone {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.phone::before {
    left: -200%;
    border-radius: 100px 0 0 100px;
    width: 200%;
    height: 72px;
    top: -11px;
    background: linear-gradient(263.71deg, #49C7ED 20.82%, #002957 80.97%);
    transition: left 0.3s linear, opacity 0.3s linear;
    z-index: -1;
}
.phone:hover {
    background: #F7FAFC;
}
.phone:hover path {
    stroke: #083A67;
}
.phone:hover::before {
    left: -100%;
    opacity: 0;
}

.footer {
    padding: 64px 0 32px;
    background: #121212;
    margin-top: auto;
}
.footer-logo {
    margin-bottom: 22px;
}
.footer-logo img, .footer-logo svg {
    display: block;
}
.footer-contacts__box {
    margin-bottom: 0;
}
.footer-contacts__box .footer-head {
    margin-bottom: 16px;
}
.footer-contacts__row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-contacts__row:last-child {
    margin-bottom: 0;
}
.footer-contacts__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contacts__icon svg, .footer-contacts__icon img {
    flex-shrink: 0;
}
.footer-contacts__link, .footer-contacts address {
    line-height: 1.21;
}
.footer-contacts__link:hover {
    color: #D6EA00;
}
.footer-additional{
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    margin: 0 -24px;
}
.footer-item {
    width: calc(63% - 26px);
    padding: 0 24px;
}
.footer-item .socials {
    display: block;
    padding: 0;
    position: relative;
    top: -6px;
}
.footer-item .socials li {
    margin-bottom: 8px;
}
.footer-item .socials li:last-child {
    margin-bottom: 0;
}
.footer-item .socials li:last-child a:hover path {
    fill: transparent;
    stroke: #D6EA00;
}
.footer-item .socials a {
    border-radius: 0;
    background: transparent;
}
.footer-item .socials a:hover {
    background: transparent;
}
.footer-item .socials a:hover path {
    fill: #D6EA00;
}
.footer-item:first-child {
    display: flex;
    flex-direction: column;
}
.footer-item:nth-child(2) {
    width: calc(36.5% - 26px);
}
.footer-item:last-child {
    width: 76px;
    flex-shrink: 0;
    padding: 0;
    padding-right: 24px;
}
.footer-badges{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-badge{
    max-height: 125px;
    position: relative;
}
.footer-badge img{
    width: auto;
    max-height: inherit;
}
.footer-badge.svg img{
    width: 100%;
}
.footer-head {
    margin-bottom: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.04em;
}
.footer-list {
    max-width: 453px;
    width: 100%;
    gap: 8px 24px;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 48px;
}
.footer-list li {
    width: calc(50% - 12px);
}
.footer-list a {
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: 18px;
    line-height: 1.555;
}
.footer-list a:hover {
    color: #D6EA00;
}
.footer-services {
    margin-top: auto;
    max-width: 692px;
    width: 100%;
    margin-bottom: 8px;
}
.footer-services__list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 24px;
}
.footer-services__list li {
    width: calc(33.333% - 16px);
}
.footer-services__list li a {
    font-weight: 300;
    color: #EFEFEF;
    letter-spacing: 0.06em;
    line-height: 1.21;
}
.footer-services__list li a:hover {
    color: #D6EA00;
}

.copyright {
    font-size: 16px;
    line-height: 1.21;
    text-align: center;
}

.form-input, .form-textarea {
    display: block;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #fff;
    transition: all 0.35s ease;
    -webkit-appearance: none;
    border-radius: 48px;
    padding: 13px 16px;
    background: #fff;
    letter-spacing: 0.01em;
    border: 1px solid #0077C8;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 400;
}
.form-input::placeholder, .form-textarea::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #A6A6A6;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.01em;
}
.form-input:focus, .form-textarea:focus {
    background: #fff;
    color: #000;
}
.form-textarea {
    min-height: 93px;
    border-radius: 8px;
    max-height: 93px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    text-align: center;
    border-radius: 100px;
    font-weight: 600;
    padding: 17px 15px;
    position: relative;
    z-index: 1;
    line-height: 1;
    cursor: pointer;
}
.btn-green {
    background-color: #D6EA00;
    color: #121212;
}
.btn-green::before, .btn-green::after {
    border-radius: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.35s ease;
    z-index: -1;
}
.btn-green::before {
    background: rgba(214, 234, 0, 0.4);
}
.btn-green::after {
    background: rgba(214, 234, 0, 0.1);
}
.btn-green:hover::before {
    top: 6px;
}
.btn-green:hover::after {
    top: 12px;
}
.btn-move {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid #DDDDDD;
    overflow: hidden;
    padding: 11px 15px;
    transition: all 0.35s linear;
}
.btn-move span {
    background: linear-gradient(0deg, #fff 20.82%, #fff 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-move path {
    transition: none;
}
.btn-move::before {
    left: -200%;
    border-radius: 100px 0 0 100px;
    width: 200%;
    height: 72px;
    top: -11px;
    background: linear-gradient(263.71deg, #49C7ED 20.82%, #002957 80.97%);
    transition: left 0.45s linear, opacity 0.45s linear;
    z-index: -1;
}
.btn-move:hover {
    background: #F7FAFC;
}
.btn-move:hover span {
    background: linear-gradient(263.71deg, #49C7ED -164%, #002957 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-move:hover path {
    stroke: #083A67;
}
.btn-move:hover::before {
    left: -100%;
    opacity: 0;
}
.btn-320 {
    width: 100%;
    max-width: 320px;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 8px;
}
.socials li img, .socials li svg {
    display: block;
}
.socials a {
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}
.socials a:hover {
    background: #D6EA00;
}
.socials-dark a path {
    fill: #121212;
}
.socials-dark li:last-child a path {
    fill: transparent;
    stroke: #121212;
}

.blur {
    border-radius: 50%;
    width: 500px;
    height: 500px;
    background: #0077C8;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: blur(220px);
    will-change: filter;
}
.blur-1 {
    left: -100px;
    top: -400px;
}
.blur-2 {
    right: 0;
    top: -240px;
    z-index: initial;
    width: 450px;
    height: 450px;
}
.blur-3 {
    width: 400px;
    height: 400px;
    top: 400px;
    z-index: initial;
}
.blur-4 {
    top: -50px;
}
.blur-5 {
    left: 0;
    top: 0;
}
.blur-6 {
    top: 774px;
    right: 0;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-button {
    width: 52px;
    height: 52px;
    transform: none;
    opacity: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D6EA00;
    border-radius: 50%;
    position: relative;
    left: 0;
    top: 0;
    transition: all 0.35s ease;
}
.swiper-button svg {
    width: auto;
    height: auto;
}
.swiper-button:after, .swiper-button:before {
    content: "" !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.35s ease;
    z-index: -1;
}
.swiper-button:before {
    background: rgba(214, 234, 0, 0.4);
}
.swiper-button:after {
    background: rgba(214, 234, 0, 0.1);
}
.swiper-button-prev:hover {
    left: -12px;
}
.swiper-button-prev:hover:before {
    left: 6px;
}
.swiper-button-prev:hover:after {
    left: 12px;
}
.swiper-button-next:hover {
    left: 12px;
}
.swiper-button-next:hover:before {
    left: -6px;
}
.swiper-button-next:hover:after {
    left: -12px;
}
.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.float-left {
    float: left;
    margin-right: 24px;
    margin-bottom: 12px;
}

.modal {
    display: none;
    max-width: 500px;
    padding: 30px 30px;
    border-radius: 20px;
}
.modal-close {
    position: absolute;
    right: -24px;
    top: -24px;
    cursor: pointer;
    transition: all 0.35s ease;
}
.modal-close svg {
    display: block;
    width: 24px;
    height: 24px;
}

.h1 {
    font-size: 56px;
}

.h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2102;
    margin-bottom: 12px;
}
.h2--52 {
    font-size: 52px;
}

.h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2103;
}

.h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.41666;
    margin-bottom: 16px;
}

.green {
    color: #D6EA00;
}

.hero {
    position: relative;
    z-index: 3;
    height: 1194px;
}
.hero-video {
    position: absolute;
    right: 0;
    top: 0;
    width: 50.6%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    opacity: 0.5;
}
.hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -3;
    object-fit: cover;
}
.hero::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 6.4%, rgba(0, 0, 0, 0) 44.97%);
    pointer-events: none;
}
.hero-box {
    width: 50.6%;
    margin-left: auto;
    padding: 62px 42px 25px;
    background: rgba(0, 32, 91, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.hero-logo img {
    display: block;
    margin: 0 auto;
    max-width: 294px;
}
.hero-content {
    text-align: center;
    max-width: 772px;
    margin: 0 auto;
    margin-top: -17px;
}
.hero-content p {
    font-size: 20px;
    line-height: 1.4;
    max-width: 724px;
    margin: 0 auto;
}
@media only screen and (max-width: 1180px) {
    .hero-content p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1023px) {
    .hero-content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-content p {
        font-size: 14px;
    }
}
.hero-footer .btn {
    width: 100%;
    max-width: 332px;
}
.hero-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}
.hero-contacts__address {
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: -0.04em;
    max-width: 240px;
    gap: 6px;
}
.hero-contacts__address svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 12px;
}
.hero-contacts__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: -0.04em;
}
.hero-contacts__phone span {
    transition: all 0.35s ease;
}
.hero-contacts__phone:hover span {
    color: #D6EA00;
}

.ticking {
    padding: 98px 0 92px;
    position: relative;
    z-index: 2;
}
.ticking-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ticking-slider > div {
    display: flex;
    align-items: center;
}
.ticking-slider .js-marquee {
    display: flex;
    align-items: center;
}
.ticking li {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    padding: 0 16px;
}
.ticking li:hover a {
    color: #D6EA00;
}
.ticking li:hover::before, .ticking li:hover::after {
    color: #D6EA00;
}
.ticking li::before {
    content: "[";
    margin-right: 3px;
    transition: all 0.35s ease;
}
.ticking li::after {
    margin-left: 3px;
    content: "]";
    transition: all 0.35s ease;
}

.about {
    position: relative;
    z-index: 1;
    padding: 178px 0 198px;
}
.about-bg {
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.about::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.about::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -2;
}
.about-content {
    max-width: 886px;
    margin: 0 auto;
    text-align: center;
}
.about-content .h2 {
    margin-bottom: 16px;
}
.about-content p {
    font-size: 20px;
    letter-spacing: -0.04em;
    margin-bottom: 42px;
    line-height: 1.4;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
}
.stars svg {
    flex-shrink: 0;
}

.reviews-info{
    max-width: 600px;
    margin: 24px auto 0;
    text-align: center;
}

.reviews {
    position: relative;
    padding: 164px 0 176px;
}
.reviews-box .row {
    margin-bottom: -24px;
}
.reviews-box .row > div {
    margin-bottom: 24px;
}
.reviews-header {
    margin-bottom: 48px;
}
.reviews-header img {
    display: block;
    margin: 0 auto 24px;
    max-width: 335px;
}
.reviews-item {
    background: rgba(0, 136, 206, 0.1);
    border: 1px solid #0077C8;
    border-radius: 12px;
    padding: 19px 23px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reviews-item__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}
.reviews-item__img img {
    display: block;
    max-width: 67px;
}
.reviews-item__date {
    font-size: 12px;
    line-height: 1;
    color: #D6EA00;
}
.reviews-item__name {
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: 600;
    line-height: 1.555;
    margin-bottom: 10px;
}
.reviews-item .stars {
    margin-bottom: 10px;
}
.reviews-item p {
    letter-spacing: -0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.reviews-item p.active {
    display: block;
}
.reviews-item__more {
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 3px;
    width: fit-content;
    transition: all 0.35s ease;
    display: block;
}
.reviews-item__more:hover {
    color: #D6EA00;
    border-bottom-color: #D6EA00;
}
.reviews-inner {
    padding: 105px 0 124px;
}
.reviews-inner .reviews-header img {
    max-width: 257px;
    margin-bottom: 27px;
}

.callback {
    background: rgba(0, 136, 206, 0.1);
    border: 1px solid #0077C8;
    border-radius: 12px;
    padding: 25px 24px;
}
.callback .h3 {
    margin-bottom: 26px;
}
.callback-item {
    margin-bottom: 32px;
    position: relative;
}
.callback-item::before {
    width: 20px;
    height: 20px;
    top: 14px;
    right: 14px;
    background: url("../img/invalid.svg") no-repeat center center;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 20;
}
.callback-item.not-valid::before {
    opacity: 1;
    visibility: visible;
}
.callback-item.valid::before {
    background: url("../img/valid.svg") no-repeat center center;
    background-size: contain;
    opacity: 1;
    visibility: visible;
}
.callback-item:last-child {
    margin-bottom: 0;
}
.callback-item:nth-last-child(3) {
    margin-bottom: 26px;
}
.callback-item:nth-last-child(2) {
    margin-bottom: 0;
}
.callback-item:nth-last-child(2)::before {
    display: none !important;
}
.callback-item .btn {
    width: 100%;
}
.callback-dark {
    max-width: 502px;
    margin: 25px auto 0;
    background: #121212;
    border-color: #fff;
    border-width: 0.5px;
    padding: 0;
}
.callback-dark .h3 {
    margin-bottom: 31px;
}
.callback-dark .form-input, .callback-dark .form-textarea {
    border-color: rgba(255, 255, 255, 0.1);
}
.callback-dark .form-textarea {
    min-height: 180px;
    padding: 16px 16px;
    max-height: 180px;
}
.callback-dark .btn {
    max-width: 406px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    cursor: pointer;
    transition: all 0.35s ease;
}
.callback-dark .callback-item:nth-last-child(3) {
    margin-bottom: 26px;
}
.callback-dark .callback-item:nth-last-child(2) {
    margin-bottom: 0;
}

.brands-top {
    margin-top: -95px;
    position: relative;
    z-index: 5;
}
.brands .h2 {
    margin-bottom: 32px;
}
.brands-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
    background: #fff;
    padding: 8px;
}
.brands-item img {
    max-height: 100%;
    max-width: 100%;
}

.services {
    padding: 218px 0 191px;
    position: relative;
    background: #142849;
}
.services-inner {
    padding-bottom: 212px;
    padding-top: 0;
}
.services-video {
    position: absolute;
    top: -250px;
    width: 100%;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}
.services .h2 {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.services-slider {
    padding: 0 12.9vw;
    -webkit-backface-visibility: hidden;
    position: relative;
    z-index: 2;
}
.services-slider .swiper-wrapper {
    padding: 42px 0 42px;
}
.services-slider .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.35s ease;
    -webkit-backface-visibility: hidden;
}
.services-slider .swiper-slide-prev, .services-slider .swiper-slide-next {
    opacity: 0.8;
}
.services-slider .swiper-slide-active {
    opacity: 1;
}
.services-item {
    position: relative;
    height: 100%;
    z-index: 1;
    border-radius: 12px;
    perspective: 1000px;
    transform-style: preserve-3d;
    padding-top: 131%;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    display: block;
}
.services-item:hover .services-item__front {
    transform-style: preserve-3d;
    transform: rotateY(-180deg);
}
.services-item:hover .services-item__back {
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}
.services-item__front, .services-item__back {
    -webkit-backface-visibility: hidden;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 12px;
    position: absolute;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    box-shadow: -2px 4px 8px 0px rgba(0, 0, 0, 0.3);
    transform-origin: center center;
    will-change: transform;
}
.services-item__front {
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}
.services-item__front::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 30, 63, 0.7) 15.49%, rgba(0, 30, 63, 0) 100%);
    z-index: 1;
}
.services-item__back {
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}
.services-item__back::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(0, 32, 91, 0.7);
    z-index: 1;
}
.services-item__logo {
    letter-spacing: 0.77em;
    color: #BDBDBD;
    font-size: 10px;
    margin-bottom: 26px;
    line-height: 1.21;
    text-transform: uppercase;
}
.services-item__footer {
    display: flex;
    gap: 21px;
    position: absolute;
    z-index: 10;
    right: 32px;
    bottom: 24px;
}
.services-item__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.35s ease;
}
.services-item__btn:hover {
    background: #D6EA00;
}
.services-item__info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 42px 24px;
    text-align: center;
    z-index: 2;
}
.services-item__info p {
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 1.36;
    margin-bottom: 30px;
}
.services-item__info p:last-child {
    margin-bottom: 0;
}
.services-item__img {
    display: block;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-item__head {
    font-weight: 600;
    margin-bottom: 24px;
}
.services-item__close {
    display: none;
}

.why {
    position: relative;
    background: #142849;
}
.why-quote {
    position: absolute;
    bottom: -16px;
    pointer-events: none;
}
.why-quote--left {
    left: -16px;
}
.why-quote--right {
    right: -16px;
}
.why-bg {
    position: absolute;
    top: 6px;
    right: 0;
    width: 100%;
    max-width: 56.2%;
    z-index: 1;
}
.why-row {
    position: relative;
    z-index: 5;
}
.why-row .col {
    width: 234px;
    min-height: 192px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
}
.why-row .row {
    margin-bottom: 52px;
    gap: 32px 0;
    justify-content: center;
    flex-wrap: nowrap;
}
.why-row .row > div:nth-child(4) .why-item__content {
    top: -8px;
}
.why-logo {
    margin-bottom: 75px;
}
.why-logo img {
    display: block;
    width: 310px;
}
.why-content {
    max-width: 700px;
    margin-bottom: 93px;
    position: relative;
    z-index: 2;
}
.why-content p {
    line-height: 1.75;
}
.why-item {
    background: url("../img/why-item-bg.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 28px 20px;
    height: 100%;
    width: 100%;
    max-width: 210px;
    margin-left: auto;
    margin-right: auto;
}
.why-item__img {
    position: relative;
    top: -19px;
}
.why-item__img img {
    display: block;
    margin: 0 auto;
}
.why-item__head {
    font-size: 14px;
    font-family: "Lexend", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.5714;
    text-align: center;
}
.why-item__content {
    position: relative;
    top: 3px;
}

.heros {
    padding-top: 325px;
    position: relative;
    z-index: 1;
    padding-bottom: 207px;
}
.heros::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.heros-content {
    text-align: center;
    max-width: 886px;
    margin: 0 auto 33px;
}
.heros-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2102;
    margin-bottom: 12px;
    color: #D6EA00;
}
.heros-content p {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}
@media only screen and (max-width: 1180px) {
    .heros-content p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1023px) {
    .heros-content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .heros-content p {
        font-size: 14px;
    }
}
.heros .why-quote {
    display: none !important;
}
.heros .why-row {
    padding: 0;
    margin-bottom: 169px;
}
.heros .why-row .row {
    margin: 0;
}
.heros .why-item {
    background: url("../img/why-item-bg-dark.png") no-repeat center center;
    background-size: 100% 100%;
}
.heros-bg {
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map {
    position: relative;
}
.map iframe {
    width: 100%;
    display: block;
    height: 700px;
    border: none !important;
    outline: none !important;
}
.map-wrap {
    position: relative;
}
.map-wrap::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}
.map.active .map-wrap::before {
    opacity: 0;
    visibility: hidden;
}
.map .callback {
    position: absolute;
    z-index: 20;
    top: -732px;
    width: 100%;
}

.contacts {
    height: auto;
    padding-bottom: 58px !important;
}
.contacts .heros-content {
    margin-bottom: 52px;
}
.contacts .socials {
    gap: 24px;
}
.contacts .form-space{
    margin-bottom: 580px;
}
.contacts .container {
    position: relative;
}
.contacts .footer-contacts__row {
    margin-bottom: 29px;
}
.contacts .footer-contacts__row:last-child {
    margin-bottom: 0;
}
.contacts .footer-contacts__box {
    margin: 0;
}
.contacts .footer-contacts__link, .contacts .footer-contacts address {
    font-weight: 500;
}

.turn {
    height: 100vh;
    position: relative;
    z-index: 2;
}
.turn::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}
.turn.o0::before{
    background: transparent;
}
.turn.o5::before{
    background: rgba(0, 0, 0, 0.5);
}
.turn.o10::before{
    background: rgba(0, 0, 0, 0.1);
}
.turn.o15::before{
    background: rgba(0, 0, 0, 0.15);
}
.turn.o20::before{
    background: rgba(0, 0, 0, 0.2);
}
.turn.o25::before{
    background: rgba(0, 0, 0, 0.25);
}
.turn.o30::before{
    background: rgba(0, 0, 0, 0.3);
}
.turn.o35::before{
    background: rgba(0, 0, 0, 0.35);
}
.turn.o40::before{
    background: rgba(0, 0, 0, 0.4);
}
.turn.o45::before{
    background: rgba(0, 0, 0, 0.45);
}
.turn.o50::before{
    background: rgba(0, 0, 0, 0.5);
}
.turn.o55::before{
    background: rgba(0, 0, 0, 0.55);
}
.turn.o60::before{
    background: rgba(0, 0, 0, 0.6);
}
.turn.o65::before{
    background: rgba(0, 0, 0, 0.65);
}
.turn.o70::before{
    background: rgba(0, 0, 0, 0.7);
}
.turn.o75::before{
    background: rgba(0, 0, 0, 0.75);
}
.turn.o80::before{
    background: rgba(0, 0, 0, 0.8);
}
.turn.o85::before{
    background: rgba(0, 0, 0, 0.85);
}
.turn.o90::before{
    background: rgba(0, 0, 0, 0.9);
}
.turn.o95::before{
    background: rgba(0, 0, 0, 0.95);
}
.turn .ticking {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 23px 0;
}
.turn-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.turn-box {
    position: absolute;
    text-align: center;
    z-index: 20;
    width: 100%;
    padding: 24px;
}
.turn-box h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2102;
    margin-bottom: 20px;
}
.turn-box p {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.service {
    position: relative;
    padding: 120px 0 225px;
    overflow: hidden;
}
.service-video {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 50.5%;
}
.service-video__play {
    position: absolute;
    z-index: 10;
}
.service-video:hover .service-video__play rect {
    fill-opacity: 1;
}
.service-video:hover .service-video__play path {
    fill: #D6EA00;
}
.service-video video {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.service-wrap {
    max-width: 1408px;
    margin: 0 auto;
}
.service-box {
    padding-top: 72px;
    margin-top: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-box:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
.service-box.not_section{
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}
.service-box--top {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
.service-box--video {
    padding-top: 0;
    border-top: 0;
}
.service-box:last-child {
    padding-top: 72px;
    margin-top: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-choose__row {
    margin-bottom: 24px;
}
.service-choose__row:last-child {
    margin-bottom: 0;
}
.service-choose__row p {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    letter-spacing: -0.04em;
    font-weight: 500;
}
.service-choose__head {
    font-weight: 500;
    line-height: 1.75;
    color: #D6EA00;
    padding: 7px 0;
    padding-left: 19px;
    position: relative;
}
.service-choose__head::before {
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 56px;
    background: #D6EA00;
}
.service-head {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}
.service-head__num {
    font-weight: 900;
    color: #D6EA00;
    font-size: 78px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.service-head__text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.6153;
    max-width: 1050px;
}
.service-list li {
    margin-bottom: 12px;
    line-height: 1.75;
    font-weight: 500;
    padding-left: 19px;
    position: relative;
}
.service-list li::before {
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 56px;
    background: #D6EA00;
}
.service-list li:last-child {
    margin-bottom: 0;
}
.service-seo__content + .row {
    margin-top: 42px;
}
.service-seo__content ul {
    margin-bottom: 24px;
}
.service-seo__content ul:last-child {
    margin-bottom: 0;
}
.service-seo__content ul li {
    font-size: 20px;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 12px;
    position: relative;
    padding-left: 31px;
}
.service-seo__content ul li:last-child {
    margin-bottom: 0;
}
.service-seo__content ul li::before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 5px;
    background: url("../img/service-list-icon.svg") no-repeat center center;
    background-size: contain;
}
.service-seo__content p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 2;
    margin-bottom: 37px;
}
.service-seo__content p:last-child {
    margin-bottom: 0;
}
.service-seo__content p:only-child {
    margin-bottom: 0;
}
.service-seo__content p img {
    display: block;
    width: 100%;
}
.service-solution .row {
    margin: 0 -17px -34px;
}
.service-solution .row > div {
    padding: 0 17px;
    margin-bottom: 34px;
}
.service-solution__item {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    height: 100%;
    min-height: 330px;
}
.service-solution__item::before {
    left: 0;
    top: 0;
    border-radius: 12px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(3, 9, 22, 0.7);
}
.service-solution__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    border-radius: 12px;
    object-fit: cover;
}
.service-solution__content {
    text-align: center;
    padding: 24px 20px;
}
.service-solution__head {
    min-height: 68px;
    max-width: 255px;
    margin-left: auto;
    margin-right: auto;
}
.service-solution__content p {
    margin: 0;
    font-size: 14px;
    letter-spacing: -0.04em;
    line-height: 1.5714;
}
.service-feature .row {
    margin-bottom: -32px;
}
.service-feature .row > div {
    margin-bottom: 32px;
}
.service-feature__icon {
    margin-bottom: 16px;
}
.service-feature__icon img {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
}
.service-feature__content p {
    text-align: center;
    font-family: "Lexend", sans-serif;
    max-width: 214px;
    margin: 0 auto;
}

.request-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.request-info .footer-contacts__box {
    margin-top: auto;
    margin-bottom: 0;
}
.request-info__head {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.04em;
    display: flex;
    align-items: flex-start;
}
.request-info__head span {
    color: #D6EA00;
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-right: 24px;
}
.request-info p {
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: 600;
    margin-bottom: 0;
}

.inner {
    padding: 220px 0 120px;
}
.inner-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2102;
    margin-bottom: 36px;
}
.inner-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2102;
    margin-bottom: 24px;
}
.inner-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    letter-spacing: -0.01em;
    font-size: 14px;
    line-height: 1.7142;
    font-style: italic;
    margin-top: 2px;
    display: block;
}

.wpcf7-response-output {
    display: none !important;
}

.fancybox__content video {
    outline: none !important;
}

.c-404 .h2 {
    margin-bottom: 32px;
}
.c-404 .btn {
    width: 100%;
    max-width: 280px;
}

@media only screen and (max-width: 1780px) {
    /**/
    .home .header {
        padding: 0 16px;
    }
    .home .header .main-nav {
        margin-left: 0;
    }
    .home .header .main-list {
        gap: 12px;
    }
    .home .header .main-list > li > a {
        width: 140px;
        font-size: 16px;
    }
    .home .header .header-row {
        gap: 12px;
        justify-content: space-between;
    }
}
@media only screen and (max-width: 1500px) {
    /**/
    .why-row {
        padding: 0 15px;
    }
    .why-quote--left {
        left: -5px;
    }
    .why-quote--right {
        right: -5px;
    }
    .footer-row {
        margin: 0 -12px;
    }
    .footer-item {
        padding: 0 12px;
    }
    .footer-item:last-child {
        padding-right: 12px;
    }
    .services-slider {
        padding: 0 8vw;
    }
}
@media only screen and (max-width: 1439px) {
    /**/
    .why-row .row {
        flex-wrap: wrap;
    }
    .why-row .row > .col {
        width: 25%;
    }
    .why-quote--left {
        display: none;
    }
    .why-quote--right {
        display: none;
    }
    .hero-video {
        width: 49%;
    }
    .hero-box {
        width: 49%;
    }
    .home .header {
        width: 51%;
    }
    .heros .footer-contacts__box {
        max-width: 240px;
    }
}
@media only screen and (max-width: 1350px) {
    /**/
    .container {
        padding: 0 24px;
    }
    .header {
        width: 100%;
    }
    .home .header {
        padding: 32px 24px;
        top: 0;
        width: 100%;
    }
    .home .header .main-nav {
        margin-left: auto;
    }
    .home .header .main-list > li > a {
        width: 180px;
    }
    .home .header .logo {
        display: block;
    }
    .hero {
        height: 100vh;
        min-height: 760px;
    }
    .hero-logo {
        display: none;
    }
    .hero-video {
        width: 100%;
    }
    .hero-box {
        width: 100%;
        padding-top: 100px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-bg {
        width: 100%;
    }
    .hero-content {
        margin: auto;
    }
    .hero-contacts {
        margin-top: 7vh;
    }
    .why-quote--left, .why-quote--right {
        display: none;
    }
    .why-row {
        padding: 0;
    }
    .services-slider {
        padding: 0 2vw;
    }
}
@media only screen and (max-width: 1180px) {
    /**/
    .inner-content h1 {
        font-size: 56px;
    }
    .h2 {
        font-size: 56px;
    }
    .services-item__close {
        display: block;
    }
    .services-item:hover .services-item__front {
        transform: rotateY(0deg);
    }
    .services-item:hover .services-item__back {
        transform: rotateY(180deg);
    }
    .services-item.active .services-item__front {
        transform-style: preserve-3d;
        transform: rotateY(-180deg);
    }
    .services-item.active .services-item__back {
        transform-style: preserve-3d;
        transform: rotateY(0deg);
    }
    .main-list {
        gap: 12px;
    }
    .main-list > li > a {
        width: 140px;
        font-size: 16px;
    }
    .home .header .main-list {
        gap: 12px;
    }
    .home .header .main-list > li > a {
        width: 140px;
        font-size: 16px;
    }
    .heros {
        padding-top: 260px;
    }
    .heros-content h1 {
        font-size: 56px;
    }
    .heros .why-row {
        margin-bottom: 60px;
    }
}
@media only screen and (max-width: 1023px) {
    /**/
    .turn-box h1 {
        font-size: 56px;
    }
    .turn-box p {
        font-size: 24px;
    }
    .service {
        padding-bottom: 150px;
    }
    .service .callback {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .service-box--content .row > div {
        margin-bottom: 42px;
    }
    .service-box--content .row > div:last-child {
        margin-bottom: 0;
    }
    .service-box .row-cols-5 {
        row-gap: 32px;
    }
    .request-info {
        margin-top: 42px;
        height: auto;
    }
    .request-info .footer-contacts__box {
        margin-top: 0;
    }
    .h2 {
        font-size: 48px;
    }
    .inner-content h1 {
        font-size: 48px;
    }
    .inner-content h2 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-contacts__address {
        font-size: 16px;
        line-height: 1.5;
    }
    .hero-contacts__phone {
        font-size: 16px;
    }
    .phone {
        margin-right: 24px;
        margin-left: auto;
    }
    .why-row .row .col {
        width: 33.333%;
    }
    .why-bg {
        position: static;
        width: 100%;
        padding: 0 24px;
        max-width: 100%;
        margin-bottom: 60px;
    }
    .why-logo {
        margin-bottom: 40px;
    }
    .hamburger {
        display: inline-block;
        position: relative;
        z-index: 200;
    }
    .header .logo {
        position: relative;
        z-index: 200;
    }
    .header .phone {
        position: relative;
        z-index: 200;
    }
    .main-list {
        flex-direction: column;
        gap: 24px !important;
    }
    .main-list > li {
        padding-bottom: 0;
    }
    .main-list > li .sub-menu {
        opacity: 1;
        visibility: visible;
        position: static;
        transform: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 220px;
        margin-top: 24px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        pointer-events: initial;
        display: none;
        transition: none;
    }
    .main-list > li .sub-menu li {
        text-align: center;
    }
    .main-list > li .sub-menu a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid #DDDDDD;
        line-height: 1;
        font-weight: 600;
        font-family: "Lexend", sans-serif;
        padding: 12px 34px;
        border-radius: 48px;
        font-size: 12px;
        white-space: nowrap;
        width: 180px;
        overflow: hidden;
        color: #fff;
        -webkit-text-fill-color: initial;
    }
    .main-list > li .sub-menu a span {
        position: relative;
        z-index: 2;
    }
    .main-list > li .sub-menu a::before {
        display: none;
    }
    .main-list > li > a {
        font-size: 18px !important;
        width: 180px !important;
        display: flex;
        margin: 0 auto;
    }
    .main-nav {
        position: absolute;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        background-color: #142849;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        padding: 120px 30px 60px;
        z-index: 100;
        overflow-y: auto;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .services-inner {
        padding-bottom: 150px;
    }
    .services-video {
        top: 0;
    }
    .services-item__info p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .reviews {
        padding: 100px 0;
    }
    .reviews-box {
        margin-bottom: 60px;
    }
    .about {
        padding: 125px 0;
    }
    .footer {
        padding-bottom: 4px;
    }
    .footer-row {
        flex-wrap: wrap;
    }
    .footer-item {
        margin-bottom: 30px;
    }
    .footer-item:first-child {
        width: calc(100% - 76px);
    }
    .footer-item:nth-child(2) {
        width: 100%;
        order: -1;
    }
    .footer-list {
        margin-bottom: 24px;
    }
    .heros {
        padding-top: 200px;
    }
    .heros-content h1 {
        font-size: 48px;
    }
    .heros-content p {
        font-size: 18px;
    }
    .heros .why-row {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    .map .callback {
        position: static;
        margin-top: 0;
        transform: none;
        margin: 60px auto;
        background: rgba(0, 136, 206, 0.1);
        border-color: #0077C8;
    }
    .map .callback .form-input, .map .callback .form-textarea {
        border: 1px solid #0077C8;
    }
    .contacts .form-space{
        margin-bottom: 75px;
    }
    .contacts .footer-contacts__box {
        max-width: 100%;
    }
    .contacts .footer-contacts__row {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    /**/
    .map iframe {
        height: 420px;
    }
    .map .callback {
        width: calc(100% - 40px);
        padding: 0;
    }
    .contacts .socials {
        gap: 16px;
    }
    .contacts .form-space{
        margin-bottom: 60px;
    }
    .contacts .heros-content {
        margin-bottom: 30px;
    }
    body {
        font-size: 14px;
    }
    .blur {
        display: none;
    }
    .container {
        padding: 0 20px;
    }
    .header {
        padding: 20px 0;
    }
    .header .logo img {
        max-width: 220px;
    }
    .home .header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ticking {
        padding: 40px 0;
    }
    .why-content {
        margin-bottom: 60px;
    }
    .why-item {
        padding-left: 10px;
        padding-right: 10px;
        background-position: center bottom;
        padding-top: 5vw;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-item__img {
        top: -15px;
    }
    .why-item__img img {
        width: 60px;
        height: 60px;
    }
    .why-item__content {
        top: -5px;
    }
    .why-item__head {
        font-size: 13px;
    }
    .why-row {
        position: relative;
        left: -12px;
        width: calc(100% + 24px);
    }
    .why-row .row {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 42px;
    }
    .why-row .row .col {
        padding: 0 10px;
        width: 50%;
        min-height: 170px;
    }
    .why-bg {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .why-logo {
        margin-bottom: 20px;
    }
    .why-logo img {
        max-width: 260px;
    }
    .request-info p {
        font-size: 16px;
    }
    .request-info__head {
        font-size: 20px;
    }
    .request-info__head span {
        font-size: 28px;
        margin-right: 16px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero-box {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }
    .hero-contacts {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 24px;
        max-width: 322px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-contacts__address {
        width: 100%;
    }
    .phone {
        margin-right: 10px;
    }
    .service {
        padding-top: 75px;
        padding-bottom: 100px;
    }
    .service-video__play {
        width: 72px;
        height: 72px;
    }
    .service-solution .row {
        margin-bottom: -20px;
    }
    .service-solution .row > div {
        margin-bottom: 20px;
    }
    .service-box {
        margin-top: 32px;
        padding-top: 32px;
    }
    .service-box:last-child {
        margin-top: 32px;
        padding-top: 32px;
    }
    .service-box--top {
        padding-top: 0;
        margin-top: 0;
    }
    .service-box--video {
        padding-top: 0;
    }
    .service-choose__row p {
        font-size: 16px;
        line-height: 1.5;
    }
    .service-choose__row ul li {
        font-size: 16px;
    }
    .service-seo__content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .service-seo__content ul li {
        font-size: 16px;
    }
    .service-head {
        gap: 16px;
    }
    .service-head__text {
        font-size: 18px;
    }
    .service-head__num {
        font-size: 24px;
    }
    .h2 {
        font-size: 36px;
    }
    .turn {
        min-height: 700px;
    }
    .turn-box h1 {
        font-size: 36px;
    }
    .turn-box p {
        font-size: 18px;
    }
    .inner {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .inner-content h1 {
        font-size: 36px;
    }
    .inner-content h2 {
        font-size: 24px;
    }
    .h3 {
        font-size: 24px;
    }
    .footer {
        padding: 50px 0;
    }
    .footer-item:last-child {
        width: 100%;
        margin-bottom: 0;
    }
    .footer-item:last-child .socials {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        top: 0;
    }
    .footer-item:nth-child(1) {
        width: 100%;
    }
    .services {
        padding: 120px 0;
    }
    .services-inner {
        padding-top: 0;
        padding-bottom: 75px;
    }
    .services-slider {
        padding: 0 12%;
    }
    .services-slider .swiper-slider {
        padding-bottom: 30px;
    }
    .services-item {
        padding: 240px 12px;
    }
    .services-item__footer {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .services-item__info p {
        font-size: 14px;
    }
    .about {
        padding: 75px 0;
    }
    .about-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .reviews {
        padding: 75px 0;
    }
    .reviews-header img {
        max-width: 275px;
    }
    .reviews-box {
        margin-bottom: 24px;
    }
    .heros {
        padding-top: 140px;
        padding-bottom: 180px;
        height: auto;
    }
    .heros-content h1 {
        font-size: 36px;
    }
    .heros-content p {
        font-size: 14px;
    }
    .brands-top {
        margin-top: -118px;
    }
    .brands-top .h2 {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 480px) {
    /**/
    .services-slider {
        padding: 0 20px;
    }
    .why-item {
        padding-bottom: 10px;
    }
    .why-item__img {
        top: -10px;
    }
    .why-row .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .why-row .col {
        padding: 0 5px;
    }
    .footer-services__list li{
        width: calc(50% - 12px);
    }
}

/* Pop Up */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.contact-form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    /* overflow-y: auto; */
    background-color: #fff;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.contact-form-popup .contact-form-content{
    overflow-y: auto;
    max-height: 90vh;
}

.contact-form-popup .popup-close{
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    background: url('data:image/svg+xml,<svg height="512px" id="Layer_1" style="enable-background:new 0 0 512 512;" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4 L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1 c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1 c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/></svg>');
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

body.modal-open {
    overflow: hidden;
}

.mt-50{
    margin-top: 50px;
}

.mtb-25{
    margin-top: 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .contact-form-popup, .contact-form-popup .contact-form-content{
        max-height: 100dvh;
    }
}
html {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
.hero-bg{
    width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-item .socials li{
    margin-bottom: 0;
  }
}

.socials-dark li:last-child a path{
  fill: #121212;
}

.service-solution__content{
  padding: 40px;
}

.footer-badge.have-title:hover:after{
  content: attr(title);
  background: #121212;
  padding: 5px 12px;
  border: solid 1px #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .footer-badge.have-title:hover:after{
    white-space: normal;
    width: 100%;
  }
}

.footer-contacts-wrap{
  position: relative;
}

@media screen and (min-width: 1024px) {
  .social_box{
    position: absolute;
    bottom: 0;
    left: calc(50% + 250px);
  }
  .footer-contacts__box .socials{
    flex-direction: column;
    width: 240px;
  }
}
@media screen and (max-width: 1023px) {
  .contacts .socials{
    justify-content: flex-start;
  }
  .footer-contacts-wrap{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

:root{
  --flip-card-height: 350px;
  --flip-card-height-md: 500px;
}

.service-solution .flip-card {
  background-color: transparent;
  height: var(--flip-card-height);
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

@media screen and (min-width: 1023px) and (max-width: 1300px) {
  .service-solution .flip-card {
    height: var(--flip-card-height-md);
  }
}

.service-solution .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  z-index: 2;
}

.service-solution .flip-card:focus {
    outline: 0;
}

.service-solution .flip-card:hover .flip-card-inner,
.service-solution .flip-card:focus .flip-card-inner{
  transform: rotateY(180deg);
}

.service-solution .flip-card-front,
.service-solution .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.service-solution .flip-card-front {
  /* z-index: 2; */
}

.service-solution .flip-card-back {
  transform: rotateY(180deg);
  /* z-index: 1; */
}

.service-solution .flip-card-front, .service-solution .flip-card-back {
  -webkit-backface-visibility: hidden;
} 

/* .service-solution .flip-card:hover .flip-card-front,
.service-solution .flip-card:focus .flip-card-front{
  z-index: 1;
}

.service-solution .flip-card:hover .flip-card-back,
.service-solution .flip-card:focus .flip-card-back{
  z-index: 2;
} */

.service-solution .flip-card-front, .service-solution .flip-card-back{
  background-color: #142949;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 40px;
  border: 2px solid #D6EA00;
  background-size: cover;
  background-position: center;
  color: white;
  z-index: 2;
}

.service-solution .flip-card-front:before, .service-solution .flip-card-back:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 12px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(3, 9, 22, 0.7);
}

.service-solution .card-content{
  /* z-index: 2; */
}

.service-solution__head{
  margin: 0;
  padding: 0;
  min-height: unset;
  text-align: center;
}

.main-list > li{
  padding-bottom: 0;
}

.main-list > li > a{
  padding: 10px 15px;
}

.flex-items-center {
    justify-content: center;
}

.turn-box p{
  line-height: 1.5;
  font-weight: 600;
}

.service-head__text{
  max-width: 100%;
}

.service-box h3{
  font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.6153;
}

.grecaptcha-badge { visibility: hidden; }

.wpcf7-response-output{
  display: block!important;
    padding: 10px 15px !important;
    border-radius: 15px;
    text-align: center;
}

.wpcf7-response-output:empty{
  display: none!important;
}

@media screen and (min-width: 1024px) {
  .turn-box h1{
    font-size: 60px;
  }
  .turn-box p{
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
    .turn-box h1 {
        font-size: 35px;
    }
  .service-choose__head{
    margin-bottom: 20px;
  }
  .service-box h3{
    font-size: 17px;
  }
}