

/* Start:/local/templates/plafen/assets/css/app.css?1774521247318096*/
@import url(https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap);

: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-shadow: none;
    --f-button-transition: all .15s ease;
    --f-button-transform: none;
    --f-button-outline-width: 1px;
    --f-button-outline-color: rgba(0, 0, 0, .7);
    --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-opacity: 1;
    --f-button-svg-disabled-opacity: .5;
    --f-button-svg-transition: opacity .15s ease;
    --f-button-svg-transform: none
}

.f-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: var(--f-button-backdrop-filter);
    backdrop-filter: var(--f-button-backdrop-filter);
    background: var(--f-button-bg);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    -webkit-box-shadow: var(--f-button-shadow);
    box-shadow: var(--f-button-shadow);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: var(--f-button-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--f-button-height);
    justify-content: center;
    margin: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: all;
    position: relative;
    -webkit-transform: var(--f-button-transform);
    transform: var(--f-button-transform);
    -webkit-transition: var(--f-button-transition);
    transition: var(--f-button-transition);
    width: var(--f-button-width)
}

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

.f-button:active:not([aria-disabled]) {
    background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
    color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)))
}

.f-button:focus {
    outline: none
}

.f-button:focus-visible {
    outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
    outline-offset: var(--f-button-outline-offset);
    position: relative;
    z-index: 1
}

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

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

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

:root {
    --f-spinner-color-1: rgba(0, 0, 0, .1);
    --f-spinner-color-2: rgba(17, 24, 28, .8);
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-border-radius: 50%;
    --f-spinner-border-width: 4px
}

.f-spinner {
    -webkit-animation: f-spinner .75s linear infinite, f-fadeIn .2s ease .2s both;
    animation: f-spinner .75s linear infinite, f-fadeIn .2s ease .2s both;
    border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
    border-radius: var(--f-spinner-border-radius);
    border-top-color: var(--f-spinner-color-2);
    height: var(--f-spinner-height);
    left: 50%;
    margin: calc(var(--f-spinner-width)*-.5) 0 0 calc(var(--f-spinner-height)*-.5);
    padding: 0;
    position: absolute;
    top: 50%;
    width: var(--f-spinner-width)
}

@-webkit-keyframes f-spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes f-spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.f-panzoom,
.f-zoomable {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    position: relative
}

.f-panzoom:after,
.f-panzoom:before,
.f-zoomable:after,
.f-zoomable:before {
    content: "";
    display: block
}

.f-panzoom:not(.has-controls):before,
.f-zoomable:not(.has-controls):before {
    margin-bottom: auto
}

.f-panzoom:after,
.f-zoomable:after {
    margin-top: auto
}

.f-panzoom__wrapper {
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    position: relative
}

.f-panzoom__wrapper.will-zoom-out {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.f-panzoom__wrapper.can-drag {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.f-panzoom__wrapper.will-zoom-in {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.f-panzoom__wrapper.is-dragging {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.f-panzoom__wrapper.has-error {
    display: none
}

.f-panzoom__content {
    display: block;
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0
}

.f-panzoom__content.has-lazyerror,
.f-panzoom__content.is-lazyloading {
    visibility: hidden
}

img.f-panzoom__content {
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: none;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: top
}

.f-panzoom__wrapper>.f-panzoom__content {
    visibility: hidden
}

.f-panzoom__viewport {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.f-panzoom__viewport>.f-panzoom__content {
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    width: 100%
}

picture.f-panzoom__content img {
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: none;
    transition: none;
    vertical-align: top;
    width: 100%
}

.f-panzoom__protected,
picture.f-panzoom__content img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.f-panzoom__protected {
    inset: 0;
    position: absolute;
    z-index: 1
}

.f-fadeIn {
    -webkit-animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2
}

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

@-webkit-keyframes f-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes f-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes f-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes f-fadeOut {
    to {
        opacity: 0
    }
}

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

.f-crossfadeOut {
    -webkit-animation: calc(var(--f-transition-duration, .2s)*.2) ease calc(var(--f-transition-duration, .2s)*.8) both f-crossfadeOut;
    animation: calc(var(--f-transition-duration, .2s)*.2) ease calc(var(--f-transition-duration, .2s)*.8) both f-crossfadeOut;
    z-index: 1
}

@-webkit-keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes f-crossfadeOut {
    to {
        opacity: 0
    }
}

@keyframes f-crossfadeOut {
    to {
        opacity: 0
    }
}

.is-horizontal .f-slideIn.from-next {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX
}

.is-horizontal .f-slideIn.from-prev {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX
}

.is-horizontal .f-slideOut.to-next {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX
}

.is-horizontal .f-slideOut.to-prev {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX
}

@-webkit-keyframes f-slideInPrevX {
    0% {
        -webkit-transform: translate(calc(100% + var(--f-carousel-gap, 0)));
        transform: translate(calc(100% + var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes f-slideInPrevX {
    0% {
        -webkit-transform: translate(calc(100% + var(--f-carousel-gap, 0)));
        transform: translate(calc(100% + var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes f-slideInNextX {
    0% {
        -webkit-transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes f-slideInNextX {
    0% {
        -webkit-transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes f-slideOutNextX {
    to {
        -webkit-transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
    }
}

@keyframes f-slideOutNextX {
    to {
        -webkit-transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
    }
}

@-webkit-keyframes f-slideOutPrevX {
    to {
        -webkit-transform: translate(calc(100% + var(--f-carousel-gap, 0)));
        transform: translate(calc(100% + var(--f-carousel-gap, 0)))
    }
}

@keyframes f-slideOutPrevX {
    to {
        -webkit-transform: translate(calc(100% + var(--f-carousel-gap, 0)));
        transform: translate(calc(100% + var(--f-carousel-gap, 0)))
    }
}

.is-vertical .f-slideIn.from-next {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY
}

.is-vertical .f-slideIn.from-prev {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY
}

.is-vertical .f-slideOut.to-next {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY
}

.is-vertical .f-slideOut.to-prev {
    -webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY;
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY
}

@-webkit-keyframes f-slideInPrevY {
    0% {
        -webkit-transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
        transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes f-slideInPrevY {
    0% {
        -webkit-transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
        transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes f-slideInNextY {
    0% {
        -webkit-transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes f-slideInNextY {
    0% {
        -webkit-transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes f-slideOutNextY {
    to {
        -webkit-transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
    }
}

@keyframes f-slideOutNextY {
    to {
        -webkit-transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
        transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
    }
}

@-webkit-keyframes f-slideOutPrevY {
    to {
        -webkit-transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
        transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
    }
}

@keyframes f-slideOutPrevY {
    to {
        -webkit-transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
        transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
    }
}

.f-zoomInUp {
    -webkit-animation: var(--f-transition-duration, .3s) ease both f-zoomInUp;
    animation: var(--f-transition-duration, .3s) ease both f-zoomInUp
}

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

@-webkit-keyframes f-zoomInUp {
    0% {
        opacity: var(--f-zoomInUp-opacity, 0);
        -webkit-transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
        transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0)
    }
}

@keyframes f-zoomInUp {
    0% {
        opacity: var(--f-zoomInUp-opacity, 0);
        -webkit-transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
        transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0)
    }
}

@-webkit-keyframes f-zoomOutDown {
    to {
        opacity: 0;
        -webkit-transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
        transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0)
    }
}

@keyframes f-zoomOutDown {
    to {
        opacity: 0;
        -webkit-transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
        transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0)
    }
}

.f-throwOutUp {
    -webkit-animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp;
    animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp
}

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

@-webkit-keyframes f-throwOutUp {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px)*-1), 0);
        transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px)*-1), 0)
    }
}

@keyframes f-throwOutUp {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px)*-1), 0);
        transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px)*-1), 0)
    }
}

@-webkit-keyframes f-throwOutDown {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
        transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0)
    }
}

@keyframes f-throwOutDown {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
        transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0)
    }
}

.has-gmap .f-html,
.has-iframe .f-html,
.has-pdf .f-html {
    height: 100%;
    min-height: 1px;
    overflow: visible;
    width: 100%
}

.has-gmap .f-html,
.has-pdf .f-html {
    padding: 0
}

.f-html {
    background: var(--f-html-bg);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--f-html-color, currentColor);
    margin: var(--f-html-margin, 0);
    padding: var(--f-html-padding, 2rem);
    position: relative
}

.f-html.is-error {
    text-align: center
}

.f-iframe {
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    width: 100%
}

.f-caption {
    -ms-flex-item-align: center;
    -ms-flex-negative: 0;
    align-self: center;
    background: var(--f-caption-bg);
    color: var(--f-caption-color);
    flex-shrink: 0;
    line-height: var(--f-caption-line-height);
    font: var(--f-caption-font);
    margin: var(--f-caption-margin);
    max-height: calc(80vh - 100px);
    max-width: 100%;
    overflow: auto;
    overflow-wrap: anywhere;
    padding: var(--f-caption-padding, 16px 8px)
}

.has-html5video .f-html,
.has-vimeo .f-html,
.has-youtube .f-html {
    aspect-ratio: var(--f-video-aspect-ratio);
    background: var(--f-video-bg, rgba(0, 0, 0, .9));
    height: 100%;
    max-height: var(--f-video-height, 540px);
    max-width: var(--f-video-width, 960px);
    min-height: 1px;
    overflow: visible;
    padding: 0;
    width: 100%
}

.f-html5video {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    width: 100%
}

.f-button.is-arrow {
    --f-button-width: var(--f-arrow-width, 46px);
    --f-button-height: var(--f-arrow-height, 46px);
    --f-button-svg-width: var(--f-arrow-svg-width, 24px);
    --f-button-svg-height: var(--f-arrow-svg-height, 24px);
    --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
    --f-button-border-radius: var(--f-arrow-border-radius, unset);
    --f-button-bg: var(--f-arrow-bg, transparent);
    --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
    --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
    --f-button-shadow: var(--f-arrow-shadow);
    --f-button-color: var(--f-arrow-color);
    --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
    --f-button-active-color: var(--f-arrow-active-color, var(--f-arrow-hover-color));
    overflow: visible
}

.f-button.is-arrow.is-next,
.f-button.is-arrow.is-prev {
    position: absolute;
    -webkit-transform: translate(0);
    transform: translate(0);
    z-index: 20
}

.is-horizontal .f-button.is-arrow.is-next,
.is-horizontal .f-button.is-arrow.is-prev {
    inset: 50% auto auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
    left: var(--f-arrow-pos, 0)
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
    right: var(--f-arrow-pos, 0)
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
    right: var(--f-arrow-pos, 0);
    -webkit-transform: translateY(-50%) rotateY(180deg);
    transform: translateY(-50%) rotateY(180deg)
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
    left: var(--f-arrow-pos, 0);
    -webkit-transform: translateY(-50%) rotateY(180deg);
    transform: translateY(-50%) rotateY(180deg)
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev,
.is-vertical.is-rtl .f-button.is-arrow.is-prev {
    bottom: auto;
    left: 50%;
    right: auto;
    top: var(--f-arrow-pos, 0);
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.is-vertical.is-ltr .f-button.is-arrow.is-next,
.is-vertical.is-rtl .f-button.is-arrow.is-next {
    bottom: var(--f-arrow-pos, 0);
    left: 50%;
    right: auto;
    top: auto;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

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

.f-carousel__toolbar {
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-backdrop-filter: var(--f-toolbar-backdrop-filter);
    backdrop-filter: var(--f-toolbar-backdrop-filter);
    background: var(--f-toolbar-bg, none);
    -webkit-box-shadow: var(--f-toolbar-shadow, none);
    box-shadow: var(--f-toolbar-shadow, none);
    color: var(--f-toolbar-color, currentColor);
    display: grid;
    font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
    font-size: var(--f-toolbar-font-size, 17px);
    font-variant-numeric: tabular-nums;
    font-weight: var(--f-toolbar-font-weight, inherit);
    grid-template-columns: 1fr auto 1fr;
    line-height: var(--f-toolbar-line-height);
    margin: var(--f-toolbar-margin, 0);
    padding: var(--f-toolbar-padding, 8px);
    pointer-events: none;
    position: relative;
    text-align: center;
    text-shadow: var(--f-toolbar-text-shadow);
    white-space: nowrap;
    z-index: 20
}

.f-carousel__toolbar.is-absolute {
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.f-carousel__toolbar__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--f-toolbar-gap, 0);
    pointer-events: none
}

.f-carousel__toolbar__column.is-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    justify-self: flex-start
}

.f-carousel__toolbar__column.is-middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.f-carousel__toolbar__column.is-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    justify-content: flex-end;
    justify-self: flex-end
}

.f-carousel__toolbar__column>* {
    pointer-events: all
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action=toggleFull] g {
    display: none
}

[data-autoplay-action=toggle] svg g:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child,
[data-autoplay-action=toggle] svg g:last-child {
    display: none
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
    display: -webkit-box;
    display: flex
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
    display: -ms-flexbox;
    display: flex
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.f-counter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    background: var(--f-counter-bg);
    border-radius: var(--f-counter-border-radius);
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    line-height: var(--f-counter-line-height);
    margin: var(--f-counter-margin, 0);
    padding: var(--f-counter-padding, 4px);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.f-counter span {
    padding: 0 var(--f-counter-gap, 4px)
}

:root {
    --f-thumbs-gap: 8px;
    --f-thumbs-margin: 0;
    --f-thumbs-padding-x: 8px;
    --f-thumbs-padding-y: 8px;
    --f-thumbs-z-index: 1;
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-clip-width: 46px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-fit: cover;
    --f-thumb-opacity: 1;
    --f-thumb-transition: opacity .3s ease, transform .15s ease;
    --f-thumb-border: none;
    --f-thumb-border-radius: 4px;
    --f-thumb-transfors: none;
    --f-thumb-shadow: none;
    --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
    --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
    --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff
}

.f-thumbs {
    -ms-flex-negative: 0;
    -webkit-tap-highlight-color: transparent;
    background: var(--f-thumbs-bg);
    flex-shrink: 0;
    margin: var(--f-thumbs-margin);
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-transition: max-height .3s ease, max-width .3s ease;
    transition: max-height .3s ease, max-width .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: var(--f-thumbs-z-index)
}

.f-thumbs.is-horizontal {
    max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y)*2 + var(--f-thumbs-gap)*2)
}

.f-thumbs.is-vertical {
    max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)*2 + var(--f-thumbs-gap)*2)
}

.f-thumbs.is-ltr {
    direction: ltr
}

.f-thumbs.is-rtl {
    direction: rtl
}

.f-thumbs__viewport {
    display: grid;
    margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
    overflow: visible
}

.f-thumbs.is-vertical .f-thumbs__viewport {
    height: calc(100% - var(--f-thumbs-padding-y)*2)
}

.f-thumbs__slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-area: 1/1;
    height: var(--f-carousel-slide-height);
    margin: 0;
    overflow: visible;
    padding: 0;
    position: relative;
    width: var(--f-carousel-slide-width)
}

.f-thumbs__slide:hover button {
    opacity: var(--f-thumb-hover-opacity, 1);
    -webkit-transform: var(--f-thumb-hover-transform, none);
    transform: var(--f-thumb-hover-transform, none)
}

.f-thumbs__slide:hover button:after {
    border: var(--f-thumb-hover-border, none);
    -webkit-box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
    box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide button {
    all: unset;
    background: var(--f-thumb-bg);
    border-radius: var(--f-thumb-border-radius);
    height: 100%;
    margin: auto;
    opacity: var(--f-thumb-opacity);
    outline: none;
    overflow: visible;
    padding: 0;
    position: relative;
    -webkit-transform: var(--f-thumb-transform);
    transform: var(--f-thumb-transform);
    -webkit-transition: var(--f-thumb-transition);
    transition: var(--f-thumb-transition);
    width: 100%
}

.f-thumbs__slide button:after {
    border: var(--f-thumb-border);
    border-radius: inherit;
    -webkit-box-shadow: var(--f-thumb-shadow);
    box-shadow: var(--f-thumb-shadow);
    content: "";
    inset: 0;
    position: absolute;
    -webkit-transition: none;
    transition: none;
    z-index: 1
}

.f-thumbs__slide button:focus-within {
    opacity: var(--f-thumb-focus-opacity, 1);
    -webkit-transform: var(--f-thumb-focus-transform, none);
    transform: var(--f-thumb-focus-transform, none)
}

.f-thumbs__slide button:focus-within:after {
    border: var(--f-thumb-focus-border, none);
    -webkit-box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
    box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide:active {
    opacity: var(--f-thumb-active-opacity, 1);
    -webkit-transform: var(--f-thumb-active-transform, none);
    transform: var(--f-thumb-active-transform, none)
}

.f-thumbs__slide:active:after {
    border: var(--f-thumb-active-border, none);
    -webkit-box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
    box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide.is-selected {
    z-index: 2
}

.f-thumbs__slide.is-selected button {
    opacity: var(--f-thumb-selected-opacity, 1);
    -webkit-transform: var(--f-thumb-selected-transform, none);
    transform: var(--f-thumb-selected-transform, none)
}

.f-thumbs__slide.is-selected button:after {
    border: var(--f-thumb-selected-border, none);
    -webkit-box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
    box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide img {
    border-radius: inherit;
    display: block;
    height: 100%;
    -o-object-fit: var(--f-thumb-fit);
    object-fit: var(--f-thumb-fit);
    pointer-events: none;
    width: 100%
}

.f-thumbs__slide img.has-lazyerror {
    display: none
}

.f-thumbs.is-classic {
    --f-carousel-slide-width: var(--f-thumb-width);
    --f-carousel-slide-height: var(--f-thumb-height);
    --f-carousel-gap: var(--f-thumbs-gap)
}

.f-thumbs.is-modern {
    --f-carousel-slide-width: calc(var(--f-thumb-clip-width) + var(--f-thumbs-gap));
    --f-carousel-slide-height: var(--f-thumb-height);
    --f-carousel-gap: 0;
    --width-diff: calc(var(--f-thumb-width) - var(--f-thumb-clip-width))
}

.f-thumbs.is-modern .f-thumbs__viewport {
    margin-inline: calc(var(--f-carousel-slide-width)*-1);
    width: calc(100% + var(--f-carousel-slide-width)*2)
}

.f-thumbs.is-modern .f-thumbs__slide {
    --clip-shift: calc(var(--width-diff)*0.5*var(--progress));
    --clip-path: inset(0 var(--clip-shift) round var(--f-thumb-border-radius, 0));
    left: var(--shift, 0);
    overflow: visible;
    padding: 0;
    -webkit-transition: left var(--f-transition-duration) var(--f-transition-easing);
    transition: left var(--f-transition-duration) var(--f-transition-easing);
    will-change: left
}

.f-thumbs.is-modern .f-thumbs__slide button {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-clip-path: var(--clip-path);
    clip-path: var(--clip-path);
    display: block;
    margin-inline: 50%;
    -webkit-transition: opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
    transition: opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
    transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease);
    transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
    width: var(--f-thumb-width)
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
    display: none
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
    outline: none
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
    border: var(--f-thumb-focus-border, none);
    border-radius: inherit;
    bottom: 0;
    -webkit-box-shadow: var(--f-thumb-focus-shadow, none);
    box-shadow: var(--f-thumb-focus-shadow, none);
    content: "";
    left: var(--clip-shift);
    position: absolute;
    right: var(--clip-shift);
    top: 0;
    -webkit-transition: border var(--f-transition-duration) var(--f-transition-easing), -webkit-box-shadow var(--f-transition-duration) var(--f-transition-easing);
    transition: border var(--f-transition-duration) var(--f-transition-easing), -webkit-box-shadow var(--f-transition-duration) var(--f-transition-easing);
    transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
    transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing), -webkit-box-shadow var(--f-transition-duration) var(--f-transition-easing);
    z-index: 1
}

.f-thumbs.is-modern {
    --f-transition-duration: .25s;
    --f-transition-easing: ease-out
}

.f-thumbs.is-modern.is-syncing {
    --f-transition-duration: 0s
}

:root {
    --f-progressbar-height: 3px;
    --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
    --f-progressbar-opacity: 1;
    --f-progressbar-z-index: 30
}

.f-progressbar {
    -webkit-animation-name: f-progressbar;
    animation-name: f-progressbar;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: var(--f-progressbar-color);
    height: var(--f-progressbar-height);
    left: 0;
    opacity: var(--f-progressbar-opacity);
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: var(--f-progressbar-z-index)
}

button>.f-progressbar {
    --f-progressbar-height: 100%;
    --f-progressbar-opacity: .2
}

@-webkit-keyframes f-progressbar {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes f-progressbar {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

[data-fullscreen-action=toggle] svg g:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

[data-fullscreen-action=toggle] svg g:last-child {
    display: none
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
    display: none
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg g:last-child {
    display: -webkit-box;
    display: flex
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg g:last-child {
    display: -ms-flexbox;
    display: flex
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.in-fullscreen-mode>.f-carousel {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 0 !important;
    min-width: 0 !important
}

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

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

.fancybox__dialog {
    background: transparent;
    border: 0;
    height: 100vh;
    margin: 0;
    max-height: unset;
    max-width: unset;
    overflow: hidden;
    padding: 0;
    -ms-touch-action: none;
    touch-action: none;
    width: 100%
}

.fancybox__dialog:focus {
    outline: none
}

.fancybox__dialog::-webkit-backdrop {
    opacity: 0
}

.fancybox__dialog::backdrop {
    opacity: 0
}

@supports(height:100dvh) {
    .fancybox__dialog {
        height: 100dvh
    }
}

div.fancybox__dialog {
    inset: 0;
    position: fixed;
    z-index: 1050
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
    --f-toolbar-margin: 0;
    --f-toolbar-padding: 8px;
    --f-toolbar-gap: 0;
    --f-toolbar-color: #ddd;
    --f-toolbar-font-size: 16px;
    --f-toolbar-font-weight: 500;
    --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    --f-toolbar-line-height: var(--f-button-height);
    --f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
    --f-toolbar-shadow: none;
    --f-toolbar-bg: none;
    --f-counter-margin: 0;
    --f-counter-padding: 0px 10px;
    --f-counter-gap: 4px;
    --f-counter-line-height: var(--f-button-height);
    --f-carousel-gap: 17px;
    --f-carousel-slide-width: 100%;
    --f-carousel-slide-height: 100%;
    --f-carousel-slide-padding: 0;
    --f-carousel-slide-bg: unset;
    --f-html-color: #222;
    --f-html-bg: #fff;
    --f-error-color: #fff;
    --f-error-bg: #333;
    --f-caption-margin: 0;
    --f-caption-padding: 16px 8px;
    --f-caption-color: var(--fancybox-color, #dbdbdb);
    --f-caption-bg: transparent;
    --f-caption-font: inherit;
    --f-caption-line-height: 1.375;
    --f-spinner-color-1: hsla(0, 0%, 100%, .2);
    --f-spinner-color-2: hsla(0, 0%, 100%, .8);
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-border-radius: 50%;
    --f-spinner-border-width: 4px;
    --f-progressbar-color: #fff;
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: #ddd;
    --f-button-hover-color: #fff;
    --f-button-outline-width: 1px;
    --f-button-outline-color: hsla(0, 0%, 100%, .75);
    --f-button-outline-offset: 0px;
    --f-button-bg: rgba(54, 54, 54, .75);
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-shadow: none;
    --f-button-transition: all .2s ease;
    --f-button-transform: none;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.75;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: .5;
    --f-arrow-pos: 32px;
    --f-arrow-width: 50px;
    --f-arrow-height: 50px;
    --f-arrow-svg-width: 24px;
    --f-arrow-svg-height: 24px;
    --f-arrow-svg-stroke-width: 2;
    --f-arrow-border-radius: 50%;
    --f-arrow-bg: rgba(54, 54, 54, .65);
    --f-arrow-color: #ddd;
    --f-arrow-hover-color: #fff;
    --f-thumbs-margin: 0px;
    --f-thumbs-padding-x: 8px;
    --f-thumbs-padding-y: 8px;
    --f-thumbs-bg: none;
    --f-thumb-transition: all .2s ease;
    --f-thumb-width: 94px;
    --f-thumb-height: 76px;
    --f-thumb-opacity: 1;
    --f-thumb-border: none;
    --f-thumb-shadow: none;
    --f-thumb-transform: none;
    --f-thumb-focus-opacity: 1;
    --f-thumb-focus-border: none;
    --f-thumb-focus-shadow: inset 0 0 0 2px hsla(0, 0%, 100%, .65);
    --f-thumb-focus-transform: none;
    --f-thumb-hover-opacity: 1;
    --f-thumb-hover-border: none;
    --f-thumb-hover-transform: none;
    --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
    --f-thumb-active-border: var(--f-thumb-hover-border);
    --f-thumb-active-transform: var(--f-thumb-hover-transform);
    --f-thumb-selected-opacity: 1;
    --f-thumb-selected-border: none;
    --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
    --f-thumb-selected-transform: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    inset: 0;
    outline: none;
    overflow: hidden;
    position: absolute
}

.fancybox__container[theme=light] {
    --fancybox-color: #222;
    --fancybox-backdrop-bg: hsla(0, 0%, 100%, .97);
    --f-toolbar-color: var(--fancybox-color, #222);
    --f-toolbar-text-shadow: none;
    --f-toolbar-font-weight: 400;
    --f-html-color: var(--fancybox-color, #222);
    --f-html-bg: #fff;
    --f-error-color: #555;
    --f-error-bg: #fff;
    --f-video-bg: #fff;
    --f-caption-color: #333;
    --f-spinner-color-1: rgba(0, 0, 0, .2);
    --f-spinner-color-2: rgba(0, 0, 0, .8);
    --f-spinner-border-width: 3.5px;
    --f-progressbar-color: #6f6f74;
    --f-button-color: #333;
    --f-button-hover-color: #000;
    --f-button-outline-color: rgba(0, 0, 0, .85);
    --f-button-bg: hsla(0, 0%, 100%, .85);
    --f-button-svg-stroke-width: 1.3;
    --f-button-svg-filter: none;
    --f-arrow-bg: hsla(0, 0%, 100%, .85);
    --f-arrow-color: #333;
    --f-arrow-hover-color: #000;
    --f-arrow-svg-stroke-width: 1.3;
    --f-close-button-color: #555;
    --f-close-button-hover-color: #000;
    --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
    --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
    --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000
}

.fancybox__container::-webkit-backdrop {
    background-color: transparent
}

.fancybox__container::backdrop {
    background-color: transparent
}

.fancybox__container.has-vertical-thumbs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
    overflow-x: clip;
    overflow-y: visible
}

.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>:not(.f-html, .f-panzoom__wrapper, .f-spinner),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container>:not(.fancybox__carousel) {
    opacity: var(--f-drag-opacity, 1)
}

.fancybox__container:not(.is-ready, .is-hiding) {
    visibility: hidden
}

.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>:not(.f-html, .f-panzoom__wrapper, .f-spinner),
.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container.is-revealing .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-revealing>:not(.fancybox__carousel) {
    -webkit-animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn;
    animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn
}

.fancybox__container.is-hiding .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>:not(.f-html, .f-panzoom__wrapper),
.fancybox__container.is-hiding .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container.is-hiding .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-hiding>:not(.fancybox__carousel) {
    -webkit-animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut;
    animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut
}

.fancybox__container.is-idle .f-carousel__toolbar {
    opacity: 0;
    pointer-events: none
}

.fancybox__container.is-idle .f-button.is-arrow {
    opacity: 0
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
    pointer-events: none
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow,
.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
    -webkit-animation: f-fadeOut .15s ease-out both;
    animation: f-fadeOut .15s ease-out both
}

.fancybox__backdrop {
    background: var(--fancybox-backdrop-bg);
    inset: 0;
    position: fixed;
    z-index: -1
}

.fancybox__carousel {
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    z-index: 10
}

.fancybox__carousel.is-vertical {
    --f-carousel-slide-height: 100%
}

.fancybox__carousel.is-ltr {
    direction: ltr
}

.fancybox__carousel.is-rtl {
    direction: rtl
}

.fancybox__carousel>.f-button.is-arrow:before {
    content: "";
    inset: -30px;
    position: absolute;
    z-index: 1
}

.fancybox__viewport {
    -webkit-box-flex: 1;
    display: grid;
    -ms-flex: 1;
    flex: 1;
    min-height: 0;
    min-width: 0;
    overflow: visible;
    position: relative;
    -webkit-transform: translate3d(0, var(--f-drag-offset, 0), 0);
    transform: translate3d(0, var(--f-drag-offset, 0), 0)
}

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

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

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

.fancybox__slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--f-carousel-slide-bg);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-area: 1/1;
    height: var(--f-carousel-slide-height);
    margin: 0;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    padding: var(--f-carousel-slide-padding);
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: var(--f-carousel-slide-width);
    will-change: transform
}

.fancybox__slide:after,
.fancybox__slide:before {
    content: "";
    display: block
}

.fancybox__slide:before {
    margin-bottom: auto
}

.fancybox__slide:after {
    margin-top: auto
}

.fancybox__slide.is-selected {
    z-index: 1
}

.fancybox__slide.f-zoomable {
    overflow: visible
}

.fancybox__slide.has-error {
    --f-html-color: var(--f-error-color, --f-html-color);
    --f-html-bg: var(--f-error-bg, --f-html-bg)
}

.fancybox__slide.has-html {
    overflow: auto;
    padding: 8px
}

.fancybox__slide.has-close-btn {
    padding-top: 34px
}

.fancybox__slide .f-button[data-fancybox-close] {
    --f-button-width: var(--f-close-button-width, 34px);
    --f-button-height: var(--f-close-button-height, 34px);
    --f-button-border-radius: var(--f-close-border-radius, 4px);
    --f-button-color: var(--f-close-button-color, #fff);
    --f-button-hover-color: var(--f-close-button-hover-color, #fff);
    --f-button-bg: var(--f-close-button-bg, transparent);
    --f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
    --f-button-active-bg: var(--f-close-button-active-bg, transparent);
    --f-button-svg-width: var(--f-close-button-svg-width, 22px);
    --f-button-svg-height: var(--f-close-button-svg-height, 22px);
    position: absolute;
    right: 0;
    top: calc(var(--f-button-height)*-1);
    z-index: 40
}

.fancybox__slide .f-spinner {
    cursor: pointer
}

.fancybox__container.is-closing .f-caption,
.fancybox__slide.is-loading .f-caption {
    visibility: hidden
}

.fancybox__container.is-closing .fancybox__carousel {
    overflow: visible
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    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")
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: 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 {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    -ms-scroll-snap-type: none;
    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 {
    -ms-flex-negative: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    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 {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    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 {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.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 {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-lazy-preloader {
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.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 {
    height: var(--swiper-virtual-size);
    width: 1px
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    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 {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 100%
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 10px)
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    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);
    left: 0;
    top: var(--swiper-pagination-top, auto);
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    left: var(--swiper-pagination-left, auto);
    right: var(--swiper-pagination-right, 8px);
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-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;
    -webkit-transition: top .2s, -webkit-transform .2s;
    transition: top .2s, -webkit-transform .2s;
    transition: transform .2s, top .2s;
    transition: transform .2s, top .2s, -webkit-transform .2s
}

.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%;
    -webkit-transform: translateX(-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 {
    -webkit-transition: left .2s, -webkit-transform .2s;
    transition: left .2s, -webkit-transform .2s;
    transition: transform .2s, left .2s;
    transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: right .2s, -webkit-transform .2s;
    transition: right .2s, -webkit-transform .2s;
    transition: transform .2s, right .2s;
    transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    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 {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%
}

.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 {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px)
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    -ms-touch-action: none;
    touch-action: none
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
    z-index: 50
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50
}

.swiper-scrollbar-drag {
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    -ms-touch-action: none;
    touch-action: none
}

.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    margin: 0 auto;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-grid>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-fade.swiper-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    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 {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    background: #000;
    bottom: 0;
    content: "";
    -webkit-filter: blur(50px);
    filter: blur(50px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.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 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    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 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transition-property: opacity, height, -webkit-transform;
    transition-property: opacity, height, -webkit-transform;
    transition-property: transform, opacity, height;
    transition-property: transform, opacity, height, -webkit-transform
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

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

@media(prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align)
}

hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {
    h1 {
        font-size: 2.5rem
    }
}

h2 {
    font-size: calc(1.325rem + .9vw)
}

@media(min-width:1200px) {
    h2 {
        font-size: 2rem
    }
}

h3 {
    font-size: calc(1.3rem + .6vw)
}

@media(min-width:1200px) {
    h3 {
        font-size: 1.75rem
    }
}

h4 {
    font-size: calc(1.275rem + .3vw)
}

@media(min-width:1200px) {
    h4 {
        font-size: 1.5rem
    }
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

abbr[data-bs-original-title],
abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: .875em
}

mark {
    background-color: #fcf8e3;
    padding: .2em
}

sub,
sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    direction: ltr;
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    font-size: .875em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal
}

code {
    word-wrap: break-word;
    color: #d63384;
    font-size: .875em
}

a>code {
    color: inherit
}

kbd {
    background-color: #212529;
    border-radius: .2rem;
    color: #fff;
    font-size: .875em;
    padding: .2rem .4rem
}

kbd kbd {
    font-size: 1em;
    font-weight: 700;
    padding: 0
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    border-collapse: collapse;
    caption-side: bottom
}

caption {
    color: #6c757d;
    padding-bottom: .5rem;
    padding-top: .5rem;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

textarea {
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    float: left;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit;
    margin-bottom: .5rem;
    padding: 0;
    width: 100%
}

@media(min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    cursor: pointer;
    display: list-item
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

button {
    background: transparent;
    border: none;
    padding: 0
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none
}

html {
    overflow-x: hidden
}

@media(max-width:991.98px) {
    html {
        font-size: 14px
    }
}

@media(max-width:767.98px) {
    html {
        font-size: 13px
    }
}

@media(max-width:575.98px) {
    html {
        font-size: 12px
    }
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

h1 {
    font-weight: 700
}

.contacts-more__btn,
.cookie__submit,
.footer__btn,
.header__top-btn,
.hero__profiles,
.mobnav__sys-btn,
.modal-call__submit,
.modal-success__btn,
.page404__tohome,
.partners-naladka-order__download,
.partners-service__presentation-buttons a,
.signme__submit,
.vakanty-modal__form-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 48rem;
    color: var(--Blue, #1a64ae);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-weight: 400;
    height: 54rem;
    justify-content: center;
    letter-spacing: 0;
    line-height: 19rem;
    padding-left: 24rem;
    padding-right: 24rem;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-more__btn:hover,
.cookie__submit:hover,
.footer__btn:hover,
.header__top-btn:hover,
.hero__profiles:hover,
.mobnav__sys-btn:hover,
.modal-call__submit:hover,
.modal-success__btn:hover,
.page404__tohome:hover,
.partners-naladka-order__download:hover,
.partners-service__presentation-buttons a:hover,
.signme__submit:hover,
.vakanty-modal__form-btn:hover {
    background: #1a64ae;
    color: #fff
}

.contacts-more__btn:active,
.cookie__submit:active,
.footer__btn:active,
.header__top-btn:active,
.hero__profiles:active,
.mobnav__sys-btn:active,
.modal-call__submit:active,
.modal-success__btn:active,
.page404__tohome:active,
.partners-naladka-order__download:active,
.partners-service__presentation-buttons a:active,
.signme__submit:active,
.vakanty-modal__form-btn:active {
    background: #0a125c
}

.commblock__toggle,
.hero__call {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(12rem);
    backdrop-filter: blur(12rem);
    background: hsla(0, 0%, 100%, .08);
    border: 1rem solid var(--light, #c0c1c5);
    border-radius: 48rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-weight: 500;
    height: 54rem;
    justify-content: center;
    letter-spacing: 0;
    line-height: 19rem;
    padding-left: 24rem;
    padding-right: 24rem;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 290rem
}

.commblock__toggle:hover,
.hero__call:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.commblock__toggle:active,
.hero__call:active {
    background: #0a125c
}

.modal__close {
    position: absolute;
    right: 25px;
    top: 25px
}

@media(max-width:575.98px) {
    .modal__close {
        right: 15px;
        top: 15px
    }
}

.breadcrumbs__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding: 0
}

.form__group {
    margin-bottom: 1.25rem
}

.images-form--has-files .images-form__noimages {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(-6rem);
    transform: translateY(-6rem)
}

.images-form--has-files .images-form__list {
    max-height: 520rem;
    opacity: 1
}

.images-form.is-dragover .images-form__noimages {
    background: rgba(26, 100, 174, .06);
    border-color: #1a64ae;
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem)
}

.images-form__noimages {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: center;
    background: var(--Background, #f2f3f7);
    border-radius: 32rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12rem;
    max-height: 144rem;
    opacity: 1;
    overflow: hidden;
    padding: 24rem 16rem;
    position: relative;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: max-height .25s ease, opacity .18s ease, background .2s ease, border-color .2s ease, -webkit-transform .25s ease;
    transition: max-height .25s ease, opacity .18s ease, background .2s ease, border-color .2s ease, -webkit-transform .25s ease;
    transition: max-height .25s ease, opacity .18s ease, transform .25s ease, background .2s ease, border-color .2s ease;
    transition: max-height .25s ease, opacity .18s ease, transform .25s ease, background .2s ease, border-color .2s ease, -webkit-transform .25s ease
}

.images-form__noimages svg {
    width: 40rem
}

.images-form__noimages p {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: center
}

.images-form__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height .25s ease, opacity .18s ease;
    transition: max-height .25s ease, opacity .18s ease
}

.images-form__list,
.images-form__list-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.images-form__list-wrap {
    margin-right: 8rem;
    overflow: auto
}

.images-form__addmore {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Light-white, #fafafa);
    border: 1px solid var(--Sroke, #f2f3f7);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 64rem;
    justify-content: center;
    min-width: 96rem;
    width: 96rem
}

.images-form__addmore svg {
    margin-bottom: 8rem;
    width: 24rem
}

.images-form__addmore p {
    color: var(--Black, #31383a);
    font-size: 10rem;
    font-style: normal;
    font-weight: 700;
    line-height: 124%
}

.imitem {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Background, #f2f3f7);
    border: 1px solid var(--Sroke, #f2f3f7);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16rem;
    margin-right: 8rem;
    opacity: 1;
    padding: 8rem 28rem 8rem 8rem;
    position: relative;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity .18s ease, -webkit-transform .18s ease;
    transition: opacity .18s ease, -webkit-transform .18s ease;
    transition: opacity .18s ease, transform .18s ease;
    transition: opacity .18s ease, transform .18s ease, -webkit-transform .18s ease;
    width: 216rem
}

.imitem.is-enter {
    opacity: 0;
    -webkit-transform: translateY(8rem);
    transform: translateY(8rem)
}

.imitem.is-leave {
    opacity: 0;
    -webkit-transform: translateY(-8rem);
    transform: translateY(-8rem)
}

.imitem__close {
    position: absolute;
    right: 12rem;
    top: 8rem
}

.imitem__close svg {
    width: 8rem
}

.imitem__img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(26, 100, 174, .06);
    border-radius: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    min-width: 40rem;
    width: 40rem
}

.imitem__img svg {
    height: 24rem;
    width: 24rem
}

.imitem__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    color: var(--Gray, #494949);
    display: -webkit-box;
    font-size: 10rem;
    font-style: normal;
    font-weight: 600;
    line-height: 124%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word
}

.imitem__file {
    color: rgba(73, 73, 73, .64);
    font-size: 12rem;
    line-height: 140%;
    margin: 2rem 0 0
}

.header {
    background-color: transparent;
    left: 0;
    padding-top: 16rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10
}

.header .container {
    position: relative
}

.header__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12rem
}

.header__top,
.header__top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__top-nav {
    list-style: none;
    margin: 0;
    padding: 0
}

.header__top-nav li {
    margin-right: 16rem
}

.header__top-nav a {
    color: #fff;
    font-size: 14rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16rem;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header__top-nav a:hover {
    color: #467ebc
}

.header__top-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__top-btn {
    height: 46rem;
    margin-left: 24rem
}

.header__top-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28rem;
    margin-left: 24rem;
    text-align: left;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header__top-link:hover {
    color: #1a64ae
}

.header__top-link i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border-radius: 50%;
    height: 32rem;
    justify-content: center;
    margin-right: 12rem;
    width: 32rem
}

.header__row,
.header__top-link i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-radius: 62rem;
    justify-content: space-between;
    padding: 12rem 16rem 12rem 24rem
}

.header__logo img {
    width: 206rem
}

.header__group,
.header__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__list {
    list-style: none;
    margin: 0 16rem 0 0;
    padding: 0
}

.header__list li {
    margin-right: 24rem
}

.header__list li:last-child {
    margin-right: 0
}

.header__list a {
    color: var(--Black, #161b2c);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header__list a:hover {
    color: #1a64ae
}

.header__catalog {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: var(--liner, linear-gradient(180deg, #3376c4, #467ebc 100%));
    border-radius: 58rem;
    color: var(--White, #fff);
    font-size: 16rem;
    font-weight: 400;
    height: 46rem;
    justify-content: center;
    letter-spacing: 0;
    line-height: 19rem;
    margin-right: 24rem;
    padding: 12rem 20rem;
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header__catalog,
.header__catalog i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__catalog i {
    margin-left: 8rem
}

.header__catalog i svg {
    width: 22rem
}

.header__catalog:hover {
    opacity: .8
}

.header__search {
    background: rgba(239, 240, 244, .72);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 58rem;
    height: 46rem;
    overflow: hidden;
    position: relative;
    width: 344rem
}

.header__search-devider {
    background: #e3e4e8;
    display: block;
    height: 48rem;
    margin-left: 16rem;
    margin-right: 16rem;
    width: 1px
}

.header__search-field {
    background: transparent;
    border: none;
    font-size: 16rem;
    font-weight: 400;
    height: 100%;
    letter-spacing: 0;
    line-height: 19rem;
    padding-left: 42rem;
    text-align: left;
    width: 100%
}

.header__search-field::-webkit-input-placeholder {
    color: var(--ligh, #c0c1c5)
}

.header__search-field::-moz-placeholder {
    color: var(--ligh, #c0c1c5)
}

.header__search-field:-ms-input-placeholder {
    color: var(--ligh, #c0c1c5)
}

.header__search-field::-ms-input-placeholder {
    color: var(--ligh, #c0c1c5)
}

.header__search-field::placeholder {
    color: var(--ligh, #c0c1c5)
}

.header__search-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 16rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.header__search-btn svg {
    height: 18rem;
    width: 18rem
}

.header__ava {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--liner, linear-gradient(180deg, #3376c4, #467ebc 100%));
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 40rem
}

.header__ava:hover {
    opacity: .8
}

.header__ava svg {
    width: 20rem
}

.profmodal {
    background: var(--White, #fff);
    border-radius: 32rem;
    -webkit-box-shadow: 0 506rem 142rem 0 transparent, 0 324rem 129rem 0 transparent, 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 20rem 44rem 0 rgba(0, 0, 0, .02);
    box-shadow: 0 506rem 142rem 0 transparent, 0 324rem 129rem 0 transparent, 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 20rem 44rem 0 rgba(0, 0, 0, .02);
    opacity: 0;
    padding: 8rem;
    pointer-events: none;
    position: absolute;
    right: 44rem;
    top: calc(100% + 12rem);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 941rem
}

.profmodal.open {
    opacity: 1;
    pointer-events: auto
}

.profmodal .profiles-item__img img {
    max-width: 157rem
}

.profmodal .profiles-item {
    padding-top: 171rem
}

.profmodal .profiles-item__title {
    font-size: 48rem
}

.profmodal__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.cookie {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%;
    z-index: 999
}

.cookie.open {
    opacity: 1;
    pointer-events: auto
}

.cookie__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70rem;
    justify-content: center
}

.cookie__txt {
    color: var(--White, #fff);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-right: 24rem
}

.cookie__txt a {
    color: var(--White, #fff);
    text-decoration: underline
}

.cookie__submit {
    width: 160rem
}

@media(max-width:991px) {
    .cookie__row {
        height: auto;
        padding-bottom: 20px;
        padding-top: 20px
    }
}

.footer {
    background: var(--Black, #161b2c);
    border-radius: 24rem 24rem 0 0;
    margin-top: -24rem;
    padding-bottom: 16rem;
    padding-top: 64rem;
    position: relative;
    z-index: 3
}

.footer__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.footer__left {
    border-right: 1rem solid var(--Gray, #494949);
    padding-right: 77.6rem;
    width: 323rem
}

.footer__logo {
    display: block;
    margin-bottom: 77rem
}

.footer__logo img {
    width: 246rem
}

.footer__txt {
    color: var(--White, #fff);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 14rem;
    text-align: left
}

.footer__btn {
    background: #1a64ae;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.footer__btn:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.footer__btn:active {
    background: #0a125c
}

.footer__center {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-left: 77rem;
    padding-right: 77rem;
    width: 100%
}

.footer-nav__main {
    color: var(--White, #fff);
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23rem;
    margin-bottom: 24rem;
    text-align: left;
    text-decoration: none
}

.footer-nav__main,
.footer-nav__main i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer-nav__main i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1px solid #fff;
    border-radius: 3px;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.footer-nav__main i svg {
    height: 10rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.footer-nav__main:hover {
    color: #1a64ae;
    text-decoration: underline
}

.footer-nav__main:hover path {
    stroke: #1a64ae
}

.footer-nav__main:hover i {
    border-color: #1a64ae
}

.footer-nav__main:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.footer-nav__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer-nav__list {
    list-style: none;
    margin: 0 24rem 0 0;
    padding: 0
}

.footer-nav__list li {
    margin-bottom: 12rem
}

.footer-nav__list a {
    color: var(--light, #c0c1c5);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left;
    text-decoration: none
}

.footer-nav__list a:hover {
    color: var(--light, #c0c1c5);
    text-decoration: underline
}

.footer__right {
    border-left: 1rem solid var(--Gray, #494949);
    min-width: 336rem;
    padding-left: 77rem;
    width: 336rem
}

.footer__right-title {
    color: #fff;
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 23rem;
    margin-bottom: 24rem;
    text-align: left
}

.footer-contacts__item {
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 16rem;
    text-align: left;
    text-decoration: none
}

.footer-contacts__item i {
    margin-right: 12rem;
    min-width: 24rem;
    width: 24rem
}

.footer-contacts__item i svg {
    width: 100%
}

.footer-contacts a:hover {
    color: #fff;
    text-decoration: underline
}

.footer-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32rem
}

.footer-socials a {
    margin-right: 13rem;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.footer-socials a:hover {
    opacity: .7
}

.footer-socials a svg {
    width: 32rem
}

.footer__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-top: 1rem solid var(--Gray, #494949);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 32rem;
    padding-top: 16rem
}

.footer__bottom p {
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 14rem;
    text-align: left
}

.footer__bottom p,
.footer__bottom p a {
    color: var(--light, #c0c1c5);
    text-decoration: none
}

.footer__bottom p a:hover {
    color: var(--light, #c0c1c5);
    text-decoration: underline
}

.footer__bottom p:hover {
    text-decoration: underline
}

.backdrop {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, .48);
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 99
}

.backdrop.open {
    opacity: 1;
    pointer-events: auto
}

.modal-success {
    background: var(--White, #fff);
    border-radius: 24rem;
    left: 50%;
    opacity: 0;
    padding: 32rem;
    pointer-events: none;
    position: fixed;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 495rem;
    z-index: 102
}

.modal-success.open {
    opacity: 1;
    pointer-events: auto
}

.modal-success__close {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    position: absolute;
    right: -32rem;
    top: -32rem;
    width: 32rem
}

.modal-success__close svg {
    width: 20rem
}

.modal-success__ico {
    margin-bottom: 16rem
}

.modal-success__ico svg {
    width: 96rem
}

.modal-success__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-bottom: 12rem
}

.modal-success__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 16rem;
    text-align: center
}

.modal-success__btn {
    background: #1a64ae;
    color: #fff;
    height: 62rem;
    width: 176rem
}

.modal-success__btn:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.modal-success__btn:active {
    background: #0a125c
}

.modal-success__btn-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.modal-call {
    background: var(--White, #fff);
    border-radius: 24rem;
    height: 542rem;
    left: 50%;
    max-width: 95vw;
    opacity: 0;
    padding: 40rem 32rem 40rem 430rem;
    pointer-events: none;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 893rem;
    z-index: 100
}

.modal-call.open {
    opacity: 1;
    pointer-events: auto
}

.modal-call__image {
    border-radius: 24rem;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: -39rem;
    width: 398rem
}

.modal-call__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.modal-call__close {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    position: absolute;
    right: -32rem;
    top: -32rem;
    width: 32rem
}

.modal-call__close img {
    width: 20rem
}

.modal-call__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-bottom: 12rem
}

.modal-call__txt {
    font-size: 16rem;
    font-weight: 300;
    margin-bottom: 24rem
}

.modal-call__field,
.modal-call__txt {
    color: var(--Gray, #494949);
    font-style: normal;
    line-height: 140%
}

.modal-call__field {
    background: #fff;
    border: 1px solid #dfe0e4;
    border-radius: 8rem;
    font-size: 14rem;
    font-weight: 400;
    height: 52rem;
    margin-bottom: 8rem;
    padding-left: 16rem;
    width: 100%
}

.modal-call__field::-webkit-input-placeholder {
    color: var(--Gray, #4949498c)
}

.modal-call__field::-moz-placeholder {
    color: var(--Gray, #4949498c)
}

.modal-call__field:-ms-input-placeholder {
    color: var(--Gray, #4949498c)
}

.modal-call__field::-ms-input-placeholder {
    color: var(--Gray, #4949498c)
}

.modal-call__field::placeholder {
    color: var(--Gray, #4949498c)
}

.modal-call__agree {
    color: var(--Gray, #494949);
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24rem;
    margin-top: 16rem;
    padding-left: 22rem;
    position: relative
}

.modal-call__agree input {
    display: none
}

.modal-call__agree input:checked+label:after {
    opacity: 1
}

.modal-call__agree label:before {
    background: #fff;
    border: 1rem solid #e3e4e8;
    height: 14rem;
    left: 0;
    top: 0;
    width: 14rem
}

.modal-call__agree label:after,
.modal-call__agree label:before {
    border-radius: 2rem;
    content: "";
    display: inline-block;
    position: absolute
}

.modal-call__agree label:after {
    background: #1a64ae;
    height: 8rem;
    left: 3rem;
    opacity: 0;
    top: 3rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 8rem
}

.modal-call__agree label a {
    color: #1a64ae;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.modal-call__agree label a:hover {
    color: #083a84;
    text-decoration: none
}

.modal-call__submit {
    background: #1a64ae;
    color: #fff;
    height: 62rem;
    width: 386rem
}

.modal-call__submit:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.modal-call__submit:active {
    background: #0a125c
}

html {
    font-size: 1px
}

main {
    min-height: 60vh
}

body {
    background: var(--Background, #f2f3f7);
    font-family: Roboto Flex, sans-serif;
    font-size: 16rem;
    min-height: 100vh
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320rem
}

.hero__wrap {
    padding-top: 226rem;
    position: relative
}

.hero__bg {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

.hero__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.hero .container {
    position: relative;
    z-index: 3
}

.hero__title {
    font-size: 56rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 110%;
    margin-bottom: 16rem;
    max-width: 447rem
}

.hero__title,
.hero__txt {
    color: var(--White, #fff);
    font-family: Exo\ 2, sans-serif;
    text-align: left
}

.hero__txt {
    font-size: 16rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 140%;
    margin-bottom: 32rem;
    max-width: 418rem
}

.hero__buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 80rem
}

.hero__profiles {
    color: #1a64ae;
    font-weight: 500;
    margin-right: 8rem;
    width: 290rem
}

.hero__features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem;
    -webkit-transform: translateY(50%);
    transform: translateY(50%)
}

.hero__features-col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 25%
}

.hero__features-item {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 16rem;
    -webkit-box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0);
    box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 16rem
}

.hero__features-img {
    margin-right: 16rem
}

.hero__features-img img {
    width: 48rem
}

.hero__features-title {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 23rem;
    margin-bottom: 4rem;
    text-align: left
}

.hero__features-txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left
}

.profiles__wrap {
    margin-bottom: 176rem;
    margin-top: 105rem
}

.profiles__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32rem
}

.profiles__content {
    max-width: 742rem
}

.profiles__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 114rem;
    margin-bottom: 16rem;
    text-align: left
}

.profiles__txt {
    color: #494949;
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 0;
    text-align: left
}

.profiles__link {
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 23rem;
    text-align: left;
    text-decoration: none
}

.profiles__link,
.profiles__link i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profiles__link i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 8rem;
    width: 20rem
}

.profiles__link i,
.profiles__link i path,
.profiles__link i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.profiles__link i svg {
    height: 10rem;
    width: 10rem
}

.profiles__link:hover {
    color: #083a84;
    text-decoration: underline
}

.profiles__link:hover i {
    border-color: #083a84
}

.profiles__link:hover path {
    stroke: #083a84
}

.profiles__link:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.profiles__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.profiles__col {
    margin-bottom: 12rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.profiles-item {
    background: var(--Background, #f2f3f7);
    border: 1px solid var(--Sroke-2, #e3e4e8);
    border-radius: 24rem;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    height: 100%;
    min-height: 348rem;
    overflow: hidden;
    padding: 303rem 24rem 24rem;
    position: relative;
    width: 100%
}

.profiles-item__img {
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.profiles-item__img img {
    max-width: 293rem
}

.profiles-item__title {
    -webkit-text-fill-color: transparent;
    background: var(--liner, linear-gradient(180deg, #3376c4, #467ebc 100%));
    -webkit-background-clip: text;
    background-clip: text;
    display: block;
    font-family: Exo\ 2, sans-serif;
    font-size: 96rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 110%;
    margin-bottom: 12rem;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.profiles-item__title:active,
.profiles-item__title:hover {
    color: #0a125c
}

.profiles-item__tags {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24rem
}

.profiles-item__tags,
.profiles-item__tags-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.profiles-item__tags-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1.2rem solid var(--Sroke, #e3e4e8);
    border-radius: 50rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 8rem;
    padding: 6rem 12rem 6rem 8rem
}

.profiles-item__tags-item i {
    margin-right: 8rem
}

.profiles-item__tags-item i img {
    width: 24rem
}

.profiles-item__tags-item p {
    color: var(--Blue, #1a64ae);
    font-size: 14rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16rem;
    text-align: left
}

.profiles-item__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--Gray, #494949);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    justify-content: center;
    line-height: 140%;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font
}

.profiles-item__links li,
.profiles-item__links li:last-child {
    margin-bottom: 0
}

.profiles-item__link {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 20rem;
    text-align: left;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.profiles-item__link,
.profiles-item__link i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.profiles-item__link i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.profiles-item__link i path,
.profiles-item__link i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.profiles-item__link i svg {
    height: 10rem;
    width: 10rem
}

.profiles-item__link:hover {
    color: #083a84;
    text-decoration: underline
}

.profiles-item__link:hover i {
    border-color: #083a84
}

.profiles-item__link:hover path {
    stroke: #083a84
}

.profiles-item__link:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects {
    position: relative;
    z-index: 2
}

.projects__wrap {
    background: #fff;
    border-radius: 40rem;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    margin-top: 176rem;
    padding-bottom: 100rem;
    padding-top: 1rem
}

.projects-main {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 24rem;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12rem;
    margin-top: -56rem;
    padding-left: 40rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.projects-main__img {
    border-radius: 24rem;
    height: 294rem;
    min-width: 719rem;
    overflow: hidden;
    width: 719rem
}

.projects-main__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.projects-main:hover {
    background: var(--White, #fff);
    border: 1rem solid var(--liner-2, #3376c4);
    -webkit-box-shadow: 0 12rem 20rem 0 rgba(36, 31, 63, .04);
    box-shadow: 0 12rem 20rem 0 rgba(36, 31, 63, .04)
}

.projects-main:hover .projects-main__title {
    color: var(--Blue, #1a64ae)
}

.projects-main:hover .projects-main__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.projects-main:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects-main:hover .projects-main__link {
    color: #083a84
}

.projects-main:hover .projects-main__link i {
    border-color: #083a84
}

.projects-main:hover .projects-main__link path {
    stroke: #083a84
}

.projects-main:hover .projects-main__link svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects-main:active {
    border: 1rem solid var(--liner-2, #3376c4)
}

.projects-main:active .projects-main__title {
    color: #0a125c
}

.projects-main__title {
    color: #161b2c;
    display: block;
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 114%;
    margin-bottom: 12rem;
    max-width: 476rem;
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.projects-main__title span {
    color: #3376c4
}

.projects-main__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 16rem;
    max-width: 521rem;
    text-align: left
}

.projects-main__link {
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 23rem;
    text-align: left
}

.projects-main__link,
.projects-main__link i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.projects-main__link i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.projects-main__link i path,
.projects-main__link i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.projects-main__link i svg {
    height: 10rem;
    width: 10rem
}

.projects__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.projects__col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.projects-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 16rem;
    -webkit-box-shadow: 0 20rem 44rem 0 rgba(0, 0, 0, .02), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 324rem 129rem 0 transparent, 0 506rem 142rem 0 transparent;
    box-shadow: 0 20rem 44rem 0 rgba(0, 0, 0, .02), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 324rem 129rem 0 transparent, 0 506rem 142rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding: 12rem;
    text-decoration: none;
    width: 100%
}

.projects-item__img {
    border-radius: 12rem;
    height: 159rem;
    min-width: 154rem;
    overflow: hidden;
    width: 154rem
}

.projects-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.projects-item:hover {
    background: var(--White, #fff);
    border: 1rem solid var(--liner-2, #3376c4);
    -webkit-box-shadow: 0 12rem 20rem 0 rgba(36, 31, 63, .04);
    box-shadow: 0 12rem 20rem 0 rgba(36, 31, 63, .04)
}

.projects-item:hover .projects-item__title {
    color: var(--Blue, #1a64ae)
}

.projects-item:hover .projects-item__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.projects-item:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects-item:hover .projects-item__more {
    color: #083a84
}

.projects-item:hover .projects-item__more i {
    border-color: #083a84
}

.projects-item:hover .projects-item__more path {
    stroke: #083a84
}

.projects-item:hover .projects-item__more svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects-item:active {
    border: 1rem solid var(--liner-2, #3376c4)
}

.projects-item:active .projects-main__title {
    color: #0a125c
}

.projects-item__title {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 23rem;
    margin-bottom: 8rem;
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.projects-item__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left
}

.projects-item__content {
    height: auto;
    padding-bottom: 38rem;
    position: relative
}

.projects-item__more {
    bottom: 0;
    color: var(--Blue, #1a64ae);
    font-size: 16rem;
    font-weight: 500;
    left: 0;
    letter-spacing: 0;
    line-height: 19rem;
    position: absolute;
    text-align: left
}

.projects-item__more,
.projects-item__more i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.projects-item__more i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.projects-item__more i svg {
    height: 10rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.about__wrap {
    background: url(/local/templates/plafen/assets/css/../../assets/img/about-bg.4e6360def7f1f4dff928.jpg.webp) top no-repeat;
    background-size: cover;
    margin-bottom: -130rem;
    margin-top: -65rem;
    padding-bottom: 230rem;
    padding-top: 165rem;
    z-index: 1
}

.about__title {
    color: var(--White, #fff);
    font-family: Exo\ 2, sans-serif;
    font-size: 48rem;
    letter-spacing: 1%;
    line-height: 114%;
    margin-bottom: 12rem
}

.about__title,
.about__txt {
    font-weight: 400;
    text-align: center
}

.about__txt {
    color: var(--Background, #f2f3f7);
    font-size: 16rem;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 64rem
}

.about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.about__col {
    margin-bottom: 12rem;
    padding-left: 6rem;
    padding-right: 6rem;
    position: relative;
    width: 33.333%
}

.about__scheme {
    position: absolute;
    right: 0;
    top: -51rem;
}

.about__scheme img {
    width: 346rem;
    z-index: -1
}

.about-img {
    border-radius: 24rem;
    -webkit-box-shadow: 0 20rem 44rem 0 rgba(0, 0, 0, .02), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 324rem 129rem 0 transparent, 0 506rem 142rem 0 transparent;
    box-shadow: 0 20rem 44rem 0 rgba(0, 0, 0, .02), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 324rem 129rem 0 transparent, 0 506rem 142rem 0 transparent;
    height: 100%;
    min-height: 377rem;
    overflow: hidden
}

.about-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.about-item {
    background: #fff;
    border-radius: 24rem;
    height: 100%;
    min-height: 377rem;
    padding: 40rem 24rem;
    width: 100%
}

.about-item__ico {
    margin-bottom: 24rem
}

.about-item__ico img {
    width: 48rem
}

.about-item__title {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 23rem;
    margin-bottom: 8rem;
    text-align: left
}

.about-item__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left
}

.about-item__link {
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 23rem;
    text-align: left;
    text-decoration: none
}

.about-item__link,
.about-item__link i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.about-item__link i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.about-item__link i svg {
    height: 10rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.about-item__link:hover {
    color: #083a84;
    text-decoration: underline
}

.about-item__link:hover i {
    border-color: #083a84
}

.about-item__link:hover path {
    stroke: #083a84
}

.about-item__link:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.about-item__link-wrap {
    margin-top: 20rem
}

.about-item__link-wrap,
.about__quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.about__quote {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(18rem);
    backdrop-filter: blur(18rem);
    background: hsla(0, 0%, 100%, .08);
    border: 1rem solid rgba(239, 240, 244, .24);
    border-radius: 24rem;
    color: var(--White, #fff);
    font-size: 20rem;
    font-weight: 400;
    height: 100%;
    justify-content: center;
    letter-spacing: 1%;
    line-height: 23rem;
    min-height: 377rem;
    padding-left: 23rem;
    padding-right: 23rem;
    text-align: center
}

.maingroup {
    background: #fff;
    border-radius: 40rem;
    padding-bottom: 120rem;
    padding-top: 120rem;
    position: relative;
    z-index: 3
}

.signme__wrap {
    margin-bottom: 120rem
}

.signme__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background: #fff;
    border-radius: 24rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    min-height: 458rem;
    overflow: hidden;
    padding-left: 566rem;
    padding-right: 56rem;
    position: relative
}

.signme__bg {
    bottom: 8rem;
    pointer-events: none;
    position: absolute;
    right: -12rem
}

.signme__bg img {
    width: 356rem
}

.signme__img {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 542rem
}

.signme__img img {
    width: 100%
}

.signme__content {
    padding-bottom: 56rem;
    padding-top: 56rem
}

.signme__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 94%;
    margin-bottom: 24rem;
    text-align: left
}

.signme__form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 8rem;
    margin-left: -4rem;
    margin-right: -4rem
}

.signme__col {
    margin-bottom: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 50%
}

.signme__col_4 {
    width: 33.333%
}

.signme__field {
    background: #fff;
    border: 1rem solid #dfe0e4;
    border-radius: 8rem;
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-weight: 400;
    height: 52rem;
    letter-spacing: 0;
    line-height: 16rem;
    padding-left: 16rem;
    text-align: left;
    width: 100%
}

.signme__field::-webkit-input-placeholder {
    color: var(--Gray, rgba(73, 73, 73, .64))
}

.signme__field::-moz-placeholder {
    color: var(--Gray, rgba(73, 73, 73, .64))
}

.signme__field:-ms-input-placeholder {
    color: var(--Gray, rgba(73, 73, 73, .64))
}

.signme__field::-ms-input-placeholder {
    color: var(--Gray, rgba(73, 73, 73, .64))
}

.signme__field::placeholder {
    color: var(--Gray, rgba(73, 73, 73, .64))
}

.signme-agree {
    margin-bottom: 24rem
}

.signme-agree input {
    display: none
}

.signme-agree input:checked+label:after {
    opacity: 1
}

.signme-agree label {
    color: #494949;
    cursor: pointer;
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 14rem;
    padding-left: 22rem;
    position: relative;
    text-align: left
}

.signme-agree label:before {
    background: #fff;
    border: 1rem solid #e3e4e8;
    height: 14rem;
    left: 0;
    top: 0;
    width: 14rem
}

.signme-agree label:after,
.signme-agree label:before {
    border-radius: 2rem;
    content: "";
    display: inline-block;
    position: absolute
}

.signme-agree label:after {
    background: #1a64ae;
    height: 8rem;
    left: 3rem;
    opacity: 0;
    top: 3rem;
    width: 8rem
}

.signme-agree label:after,
.signme-agree label a {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.signme-agree label a {
    color: #1a64ae
}

.signme-agree label a:hover {
    color: #083a84;
    text-decoration: none
}

.signme__submit {
    background: #1a64ae;
    color: #fff;
    height: 62rem;
    width: 386rem
}

.signme__submit:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.signme__submit:active {
    background: #0a125c
}

.newtech__wrap {
    margin-bottom: 120rem;
    margin-top: 120rem
}

.newtech__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -12rem;
    margin-right: -12rem
}

.newtech__col {
    padding-left: 12rem;
    padding-right: 12rem;
    width: 50%
}

.newtech__col iframe {
    border-radius: 24rem;
    height: 451rem;
    overflow: hidden;
    width: 100%
}

.newtech__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    letter-spacing: 1%;
    line-height: 94%;
    margin-bottom: 24rem
}

.newtech__title,
.newtech__txt {
    font-weight: 400;
    text-align: left
}

.newtech__txt {
    color: #4b4b4b;
    font-size: 16rem;
    letter-spacing: 0;
    line-height: 19rem;
    margin-bottom: 22rem
}

.newtech__more {
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 23rem;
    margin-bottom: 53rem;
    text-align: left;
    text-decoration: none
}

.newtech__more,
.newtech__more i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.newtech__more i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.newtech__more i svg {
    height: 10rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.newtech__more:hover {
    color: #083a84;
    text-decoration: underline
}

.newtech__more:hover i {
    border-color: #083a84
}

.newtech__more:hover path {
    stroke: #083a84
}

.newtech__more:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.newtech__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.newtech__gallery-col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.newtech__gallery-item {
    border-radius: 16rem;
    display: block;
    height: 196rem;
    overflow: hidden;
    width: 100%
}

.newtech__gallery-item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.lamination__wrap {
    margin-top: 120rem
}

.lamination__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    border-bottom: 1rem solid var(--Sroke, #e3e4e8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 35rem;
    padding-bottom: 24rem
}

.lamination__content {
    max-width: 784rem
}

.lamination__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 94%;
    margin-bottom: 16rem;
    text-align: left
}

.lamination__txt {
    color: #4b4b4b;
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    text-align: left
}

.lamination__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.lamination__col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 50%
}

.lamination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.lamination-list__col {
    margin-bottom: 21rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.lamination-list__item {
    display: block;
    height: 100%;
    text-decoration: none;
    width: 100%
}

.lamination-list__item-img {
    border-radius: 16rem 16rem 0 0;
    display: block;
    height: 157rem;
    overflow: hidden
}

.lamination-list__item-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.lamination-list__item-content {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 16rem;
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem;
    margin-top: -16rem;
    padding: 16rem;
    position: relative;
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2
}

.lamination__pic {
    border-radius: 24rem;
    overflow: hidden
}

.lamination__pic img {
    width: 100%
}

.blog__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.blog__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-bottom: 1rem solid var(--Sroke, #e3e4e8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32rem;
    padding-bottom: 24rem
}

.blog__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 114%;
    text-align: left
}

.blog-item {
    display: block;
    text-decoration: none;
    width: 100%
}

.blog-item:hover .blog-item__view {
    color: #083a84
}

.blog-item:hover .blog-item__view i {
    border-color: #083a84
}

.blog-item:hover .blog-item__view path {
    stroke: #083a84
}

.blog-item:hover .blog-item__view svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.blog-item:hover .blog-item__title {
    color: var(--Blue, #1a64ae)
}

.blog-item:focus .blog-item__view {
    color: #0a125c
}

.blog-item:focus .blog-item__view i {
    border-color: #0a125c
}

.blog-item:focus .blog-item__view path {
    stroke: #0a125c
}

.blog-item:focus .blog-item__view svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.blog-item:focus .blog-item__title {
    color: #0a125c
}

.blog-item__img {
    border-radius: 24rem 24rem 0 0;
    height: 245rem;
    overflow: hidden;
    position: relative
}

.blog-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.blog-item__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 12rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 12rem
}

.blog-item__tags li {
    background: var(--White, #fff);
    border-radius: 40rem;
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-right: 8rem;
    padding: 6rem 8rem
}

.blog-item__tags li,
.blog-item__tags li i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-item__tags li i {
    margin-right: 3rem
}

.blog-item__tags li i svg {
    width: 20rem
}

.blog-item__content {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 24rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -24rem;
    padding: 16rem 16rem 54rem;
    position: relative;
    z-index: 2
}

.blog-item__title {
    -webkit-line-clamp: 2;
    color: #161b2c;
    font-size: 20rem;
    letter-spacing: 1%;
    line-height: 124%;
    margin-bottom: 8rem;
    max-height: 75rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog-item__descr,
.blog-item__title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight: 400;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis
}

.blog-item__descr {
    -webkit-line-clamp: 3;
    color: #6f6f70;
    font-size: 16rem;
    letter-spacing: 0;
    line-height: 19rem
}

.blog-item__view {
    bottom: 16rem;
    color: var(--Blue, #1a64ae);
    font-size: 16rem;
    font-weight: 500;
    left: 16rem;
    letter-spacing: 0;
    line-height: 19rem;
    position: absolute;
    text-align: left
}

.blog-item__view,
.blog-item__view i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog-item__view i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 12rem;
    width: 20rem
}

.blog-item__view i path,
.blog-item__view i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog-item__view i svg {
    height: 10rem;
    width: 10rem
}

.blog__nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 24rem
}

.blog__pag span {
    background: #3376c4
}

.blog__prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem
}

.blog__prev svg {
    width: 18rem
}

.blog__prev path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog__prev:hover {
    border-color: #3376c4
}

.blog__prev:hover path {
    stroke: #3376c4
}

.blog__buttons,
.blog__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog__next {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    height: 40rem;
    justify-content: center;
    margin-left: 12rem;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem
}

.blog__next svg {
    width: 18rem
}

.blog__next path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog__next:hover {
    border-color: #3376c4
}

.blog__next:hover path {
    stroke: #3376c4
}

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

.contacts__wrap {
    background: var(--White, #fff);
    border-radius: 40rem 40rem 0 0;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    padding-bottom: 127rem;
    padding-top: 105rem
}

.contacts__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32rem
}

.contacts__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 114%;
    text-align: left
}

.contacts-item,
.contacts__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contacts-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Background, #f2f3f7);
    border-radius: 48rem;
    height: 56rem;
    margin-left: 12rem;
    padding: 8rem 24rem 8rem 16rem;
    text-decoration: none
}

.contacts-item,
.contacts-item span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-item:hover {
    background: #083a84;
    color: #fff
}

.contacts-item:hover span {
    color: #fff
}

.contacts-item:focus {
    background: #0a125c;
    color: #fff
}

.contacts-item i {
    margin-right: 12rem
}

.contacts-item i svg {
    width: 24rem
}

.contacts-item__info {
    color: var(--Black, #161b2c);
    font-size: 14rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16rem;
    text-align: left
}

.contacts-map {
    height: 600rem;
    position: relative;
    width: 100%
}

.contacts-map__frame {
    border-radius: 40rem;
    overflow: hidden
}

.contacts-map__frame,
.contacts-map__frame iframe {
    height: 100%;
    width: 100%
}

.contacts-map__window {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #e3e4e8);
    border-radius: 24rem;
    bottom: 40rem;
    -webkit-box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0);
    box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0);
    left: 40rem;
    max-width: 418rem;
    padding: 32rem 8rem 32rem 32rem;
    position: absolute;
    top: 40rem;
    width: 100%
}

.contacts-map__title {
    border-bottom: 1rem solid var(--Sroke, #eff0f4);
    color: #161b2c;
    font-size: 32rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 38rem;
    margin-bottom: 12rem;
    margin-right: 24rem;
    padding-bottom: 12rem;
    text-align: left
}

.contacts-map__item {
    background: var(--Background, #f2f3f7);
    border-radius: 12rem;
    cursor: pointer;
    margin-bottom: 12rem;
    padding: 12rem
}

.contacts-map__item,
.contacts-map__item-ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-map__item-ico {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--liner, linear-gradient(180deg, #3376c4, #467ebc 100%));
    border-radius: 50%;
    height: 40rem;
    justify-content: center;
    margin-right: 12rem;
    min-width: 40rem;
    width: 40rem
}

.contacts-map__item-ico rect {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-map__item-title {
    font-size: 18rem;
    font-weight: 500;
    letter-spacing: 1%;
    line-height: 21rem;
    margin-bottom: 6rem
}

.contacts-map__item-info,
.contacts-map__item-title {
    color: var(--Gray, #494949);
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-map__item-info {
    font-size: 16rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 19rem
}

.contacts-map__item.active {
    background: var(--liner, linear-gradient(180deg, #3376c4, #467ebc 100%));
    -webkit-box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0);
    box-shadow: 0 4rem 8rem 0 rgba(72, 135, 206, .04), 0 15rem 15rem 0 rgba(72, 135, 206, .03), 0 33rem 20rem 0 rgba(72, 135, 206, .02), 0 59rem 24rem 0 rgba(72, 135, 206, .01), 0 92rem 26rem 0 rgba(72, 135, 206, 0)
}

.contacts-map__item.active .contacts-map__item-info,
.contacts-map__item.active .contacts-map__item-title {
    color: #fff
}

.contacts-map__list {
    height: 396rem;
    overflow: auto;
    padding-right: 20rem
}

.breadcrumbs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32rem
}

.breadcrumbs a {
    -webkit-text-fill-color: transparent;
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-right: 30rem;
    position: relative
}

.breadcrumbs a:hover {
    -webkit-text-fill-color: transparent;
    background: #083a84;
    background-clip: text;
    -webkit-background-clip: text;
    color: #083a84;
    text-decoration: underline
}

.breadcrumbs a:after {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    content: "";
    display: inline-block;
    height: 6rem;
    position: absolute;
    right: -18rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6rem
}

.breadcrumbs span {
    color: var(--light-gray, #c0c1c5);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

.profiles_page .profiles__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.maingroup_profile {
    padding-top: 1rem
}

.maingroup_profile .newtech__wrap {
    margin-bottom: 0
}

.heropage__wrap {
    margin-top: 174rem
}

.heropage__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    border-radius: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 418rem;
    justify-content: flex-end;
    overflow: hidden;
    padding: 40rem;
    position: relative
}

.heropage__block-content {
    position: relative;
    z-index: 3
}

.heropage__block-title {
    color: var(--White, #fff);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 110%;
    margin-bottom: 16rem
}

.heropage__block-txt {
    color: var(--Background, #f2f3f7);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 400rem
}

.heropage__bg {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

.heropage__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.header_other .header__top-link,
.header_other .header__top-nav a {
    color: var(--Gray, #494949)
}

.header_other .header__top-link:hover,
.header_other .header__top-nav a:hover {
    color: #3376c4
}

.header_other .header__top-btn {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    color: #fff
}

.header_other .header__top-btn:hover {
    background: #fff;
    color: #3376c4
}

.syslines__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.syslines__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    letter-spacing: .56rem;
    line-height: 110%;
    margin-bottom: 12rem
}

.syslines__title,
.syslines__txt {
    font-style: normal;
    font-weight: 400
}

.syslines__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    line-height: 140%;
    margin-bottom: 32rem
}

.syslines__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.syslines__col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.syslines-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 32rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden;
    padding-bottom: 24rem;
    padding-top: 338rem;
    position: relative;
    text-decoration: none
}

.syslines-item__img {
    left: 50%;
    margin-bottom: 24rem;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.syslines-item__img img {
    max-height: 314rem;
    max-width: 293rem
}

.syslines-item i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 20rem;
    justify-content: center;
    margin-left: 8rem;
    width: 20rem
}

.syslines-item i,
.syslines-item i path,
.syslines-item i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.syslines-item i svg {
    height: 10rem;
    margin-left: 0;
    width: 10rem
}

.syslines-item:hover {
    color: #083a84;
    text-decoration: none
}

.syslines-item:hover i {
    border-color: #083a84
}

.syslines-item:hover path {
    stroke: #083a84
}

.syslines-item:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.syslines-item__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 32rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .32rem;
    line-height: 114%;
    margin-bottom: 16rem;
    padding-left: 80rem;
    padding-right: 80rem;
    text-align: center
}

.syslines-item__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--Blue, #1a64ae);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20rem;
    font-style: normal;
    font-weight: 500;
    justify-content: center;
    line-height: 140%;
    text-decoration: none
}

.syslines-item__link svg {
    margin-left: 8rem;
    width: 20rem
}

.seoblock__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.seoblock__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding-right: 72rem
}

.seoblock__img {
    height: 306rem;
    margin-right: 24rem;
    min-width: 531rem;
    width: 531rem
}

.seoblock__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.seoblock__content h1,
.seoblock__content h2,
.seoblock__content h3,
.seoblock__content h4,
.seoblock__content h5,
.seoblock__content h6 {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-bottom: 16rem
}

.seoblock__content p {
    color: #4b4b4b;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8rem
}

.cardpage {
    margin-bottom: 100rem;
    margin-top: 32rem
}

.cardpage__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.cardpage__gallery {
    background: #fff;
    border-radius: 40rem;
    -webkit-box-shadow: 0 506rem 142rem 0 transparent, 0 324rem 129rem 0 transparent, 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 20rem 44rem 0 rgba(0, 0, 0, .02);
    box-shadow: 0 506rem 142rem 0 transparent, 0 324rem 129rem 0 transparent, 0 182rem 109rem 0 rgba(0, 0, 0, .01), 0 81rem 81rem 0 rgba(0, 0, 0, .02), 0 20rem 44rem 0 rgba(0, 0, 0, .02);
    margin-right: 24rem;
    max-width: 753rem;
    width: 100%
}

.cardpage__gallery-swiper {
    max-width: 753rem
}

.cardpage__gallery-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    min-height: 486rem
}

.cardpage__gallery-item img {
    max-height: 430rem;
    max-width: 367rem
}

.cardpage__gallery-prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1rem solid var(--liner-2, #3376c4);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    left: 24rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 40rem;
    z-index: 3
}

.cardpage__gallery-prev svg {
    max-width: 17rem
}

.cardpage__gallery-prev path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cardpage__gallery-prev:hover {
    background: #3376c4
}

.cardpage__gallery-prev:hover path {
    stroke: #fff
}

.cardpage__gallery-next {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1rem solid var(--liner-2, #3376c4);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    position: absolute;
    right: 24rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 40rem;
    z-index: 3
}

.cardpage__gallery-next svg {
    max-width: 17rem
}

.cardpage__gallery-next path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cardpage__gallery-next:hover {
    background: #3376c4
}

.cardpage__gallery-next:hover path {
    stroke: #fff
}

.cardpage__content {
    min-width: 543rem;
    width: 543rem
}

.cardpage__title {
    color: #161b2c;
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-bottom: 24rem
}

.cardpage__subtitle {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 140%;
    margin-bottom: 8rem
}

.cardpage__window {
    background: var(--White, #fff);
    border-radius: 24rem;
    padding: 16rem
}

.cardpage__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 16rem
}

.cardpage__tech {
    border-bottom: 1rem solid #f2f3f7;
    border-top: 1rem solid #f2f3f7;
    padding-bottom: 16rem;
    padding-top: 16rem
}

.cardpage__tech-title {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 140%;
    margin-bottom: 8rem
}

.cardpage__tech-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.cardpage__tech-list,
.cardpage__tech-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.cardpage__tech-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Background, #f2f3f7);
    border-radius: 50rem;
    color: var(--Blue, #1a64ae);
    font-size: 14rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2rem;
    line-height: 140%;
    margin-right: 8rem;
    padding: 6rem 12rem 6rem 8rem
}

.cardpage__tech-list li svg {
    margin-right: 8rem;
    width: 24rem
}

.cardpage__all {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 16rem;
    text-decoration: none
}

.cardpage__all,
.cardpage__all-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.cardpage__all i {
    margin-left: 8rem
}

.cardpage__all i svg {
    width: 20rem
}

.cardpage__all:hover {
    color: var(--Blue, #1a64ae);
    text-decoration: underline
}

.cardscheme__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.cardscheme__block {
    /*background: #fff;
    border-radius: 40rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    padding-bottom: 40rem;
    padding-left: 32rem;
    padding-right: 32rem*/
    padding-bottom: 40rem;
}

.cardscheme__block-img {
    display: block;
    margin-bottom: 30rem;
    text-align: center;
    border-radius: 40rem;
    background: #fff;
    padding-bottom: 40rem;
    padding-left: 32rem;
    padding-right: 32rem;
}

.cardscheme__block-img img {
    max-width: 100%
}

.cardscheme__block-btn {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    border-radius: 32rem;
    color: var(--White, #fff);
    font-size: 20rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    padding: 16rem 32rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cardscheme__block-btn-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.cardscheme__block-btn i {
    margin-left: 8rem
}

.cardscheme__block-btn i svg {
    width: 20rem
}

.cardscheme__block-btn:hover {
    color: var(--White, #fff);
    opacity: .8
}

.cardtech {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.cardtech__nav {
    border-bottom: 1rem solid #e3e4e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 0 24rem
}

.cardtech__nav li {
    border-right: 1rem solid #e3e4e8;
    color: var(--light-gray, #c0c1c5);
    cursor: pointer;
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-right: 16rem;
    opacity: .72;
    padding-right: 16rem;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cardtech__nav li:after {
    background: -webkit-gradient(linear, left top, left bottom, from(#3376c4), to(#467ebc));
    background: linear-gradient(180deg, #3376c4, #467ebc);
    bottom: -25rem;
    content: "";
    display: inline-block;
    height: 1rem;
    left: 0;
    opacity: 0;
    position: absolute;
    width: calc(100% - 16rem)
}

.cardtech__nav li:hover {
    opacity: 1
}

.cardtech__nav li.active {
    color: #467ebc;
    opacity: 1
}

.cardtech__nav li.active:after {
    opacity: 1
}

.cardtech__tab {
    background: var(--White, #fff);
    border-radius: 40rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    display: none;
    margin-top: 24rem;
    padding: 32rem;
    position: relative
}

.cardtech__tab.active {
    display: block
}

.cardtech__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -48rem;
    margin-right: -48rem
}

.cardtech__col {
    border-right: 1rem solid #eff0f4;
    padding-left: 48rem;
    padding-right: 48rem;
    width: 100%
}

.cardtech__col:last-child {
    border: none
}

.cardtech__col_6 {
    width: 50%
}

.cardtech__col_3 {
    width: 25%
}

.cardtech__title {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    letter-spacing: .2rem;
    line-height: 140%;
    margin-bottom: 16rem
}

.cardtech__list,
.cardtech__title {
    font-style: normal;
    font-weight: 400
}

.cardtech__list {
    color: var(--Gray, #494949);
    font-size: 16rem;
    line-height: 120%;
    list-style: none;
    margin: 0;
    padding: 0
}

.cardtech__list-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.cardtech__list-row ul {
    width: calc(50% - 20rem)
}

.cardtech__list li {
    margin-bottom: 16rem;
    padding-left: 14rem;
    position: relative
}

.cardtech__list li:before {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    content: "";
    display: inline-block;
    height: 6rem;
    left: 0;
    position: absolute;
    top: 6.5rem;
    width: 6rem
}

.cardtech__list li:last-child {
    margin-bottom: 0
}

.cardtech__scheme {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 450rem;
    justify-content: center
}

.cardtech__scheme-img {
    margin-right: 32rem
}

.cardtech__scheme-img img {
    width: 329rem
}

.cardtech__scheme-title {
    color: var(--Black, #1a1a1a);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 4rem
}

.cardtech__scheme-size {
    color: rgba(71, 71, 72, .64);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
    margin-bottom: 12rem
}

.cardtech__scheme-download {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    border-radius: 48rem;
    color: var(--White, #fff);
    display: inline-block;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 12rem;
    padding: 12rem 24rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cardtech__scheme-download:hover {
    color: #fff;
    opacity: .8
}

.cardtech__scheme-left {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.cardtech__scheme-left img {
    width: 263rem
}

.cardtech__scheme-right {
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.cardtech__scheme-right img {
    width: 263rem
}

.pagelist {
    padding-bottom: 300rem;
    padding-top: 400rem
}

.page404__wrap {
    margin-bottom: 80rem;
    margin-top: 37rem
}

.page404__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.page404__img img {
    max-width: 481rem
}

.page404__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.page404__title,
.page404__txt {
    font-style: normal;
    font-weight: 400;
    text-align: center
}

.page404__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    line-height: 140%;
    margin-bottom: 24rem
}

.page404__tohome {
    background: var(--Blue, #1a64ae);
    border-radius: 58rem;
    color: var(--White, #fff);
    padding: 20rem 40rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.page404__tohome:hover {
    background: #083a84
}

.page404__tohome:focus {
    background: #0a125c
}

.politic__wrap {
    margin-bottom: 100rem;
    margin-top: 32rem
}

.politic__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 24rem
}

.politic__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.politic__aside {
    margin-right: 24rem;
    min-width: 420rem;
    width: 420rem
}

.politic__aside-window {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    padding: 16rem;
    position: sticky;
    top: 20px
}

.politic__aside-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.politic__aside-list li {
    margin-bottom: 12rem
}

.politic__aside-list li:last-child {
    margin-bottom: 0
}

.politic__aside-list li a {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.politic__aside-list li a span {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font
}

.politic__aside-list li a:hover {
    color: #467ebc
}

.politic__aside-title {
    color: var(--Gray, #494949);
    font-size: 24rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12rem
}

.politic__content {
    width: 100%
}

.politic__content h1,
.politic__content h2,
.politic__content h3,
.politic__content h4,
.politic__content h5 {
    color: var(--Gray, #494949);
    font-size: 26rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12rem
}

.politic__content ol,
.politic__content p,
.politic__content ul {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 32rem
}

.politic__content ol,
.politic__content ul {
    padding-left: 30rem
}

.searchpage__wrap {
    margin-bottom: 100rem;
    margin-top: 32rem
}

.searchpage__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 24rem
}

.searchpage__title span {
    color: var(--Gray, #494949);
    font-family: Roboto Flex, sans-serif;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.searchpage__form {
    position: relative
}

.searchpage__form-submit {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 24rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.searchpage__form-submit svg {
    width: 18rem
}

.searchpage__form-field {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke-2, #e3e4e8);
    border-radius: 58rem;
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    height: 62rem;
    line-height: 140%;
    padding-left: 50rem;
    width: 100%
}

.searchpage__form-field::-webkit-input-placeholder {
    color: var(--Gray, #494949)
}

.searchpage__form-field::-moz-placeholder {
    color: var(--Gray, #494949)
}

.searchpage__form-field:-ms-input-placeholder {
    color: var(--Gray, #494949)
}

.searchpage__form-field::-ms-input-placeholder {
    color: var(--Gray, #494949)
}

.searchpage__form-field::placeholder {
    color: var(--Gray, #494949)
}

.searchpage__form-reset {
    position: absolute;
    right: 24rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.searchpage__form-reset svg {
    width: 20rem
}

.searchpage__query-none {
    background: var(--White, #fff);
    border-radius: 32rem;
    color: var(--Gray, #494949);
    font-family: Exo\ 2, sans-serif;
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24rem;
    line-height: 114%;
    margin-top: 12rem;
    padding: 32rem
}

.searchpage__query-list {
    margin-top: 12rem
}

.searchpage-item {
    background: var(--White, #fff);
    border-radius: 32rem;
    display: block;
    margin-top: 12rem;
    padding: 32rem;
    text-decoration: none
}

.searchpage-item__title {
    color: var(--Blue, #1a64ae);
    font-size: 20rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.searchpage-item__title,
.searchpage-item__title i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.searchpage-item__title i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 16rem;
    width: 20rem
}

.searchpage-item__title i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.searchpage-item:hover .searchpage-item__title,
.searchpage-item:hover span {
    color: #0a125c
}

.searchpage-item:hover i svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.searchpage-item__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0;
    text-decoration: none
}

.pagination {
    border-top: 1rem solid #e3e4e8;
    margin-top: 32rem;
    padding-top: 24rem
}

.pagination,
.pagination__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.pagination__link {
    -webkit-font-feature-settings: "liga"off, "clig"off;
    font-feature-settings: "liga"off, "clig"off;
    border-radius: 20rem;
    color: var(--Gray, #494949);
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    height: 40rem;
    line-height: 140%;
    margin-left: 4rem;
    margin-right: 4rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 40rem
}

.pagination__link:hover {
    color: #3376c4
}

.pagination__link.active {
    background: #467ebc;
    color: #fff
}

.pagination__more {
    -webkit-font-feature-settings: "liga"off, "clig"off;
    font-feature-settings: "liga"off, "clig"off;
    border-radius: 20rem;
    color: var(--Gray, #494949);
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-left: 4rem;
    margin-right: 4rem;
    text-decoration: none
}

.pagination__btn,
.pagination__more {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 40rem
}

.pagination__btn {
    background: #fff;
    border: 1rem solid #eff0f4;
    border-radius: 20rem;
    margin-left: 20rem;
    margin-right: 20rem
}

.pagination__btn path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.pagination__btn:hover {
    border-color: #3376c4
}

.pagination__btn:hover path {
    stroke: #3376c4
}

.contactspage__wrap {
    margin-bottom: 100rem;
    margin-top: 32rem
}

.contactspage__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 32rem
}

.contactspage__top {
    background: var(--White, #fff);
    border-radius: 32rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    padding: 24rem 8rem 8rem
}

.contactspage__top-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16rem;
    padding-left: 24rem;
    padding-right: 24rem
}

.contactspage__top-title {
    color: var(--Gray, #494949);
    font-size: 26rem;
    margin-bottom: 0
}

.contactspage__top-btn,
.contactspage__top-title {
    font-style: normal;
    font-weight: 500;
    line-height: 140%
}

.contactspage__top-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 48rem;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    height: 50rem;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 195rem
}

.contactspage__top-btn:hover {
    background: #083a84;
    color: #fff
}

.contactspage__top-btn:focus {
    background: #0a125c
}

.contactspage__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -4rem;
    margin-right: -4rem
}

.contactspage__top-col {
    padding-left: 4rem;
    padding-right: 4rem;
    width: 25%
}

.contactspage-contact {
    background: var(--Background, #f2f3f7);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    height: 100%;
    padding: 24rem
}

.contactspage-contact__subtitle {
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 12rem
}

.contactspage-contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12rem
}

.contactspage-contact__item svg {
    margin-right: 12rem;
    width: 24rem
}

.contactspage-contact__item p,
.contactspage-contact__item p a {
    color: var(--Black, #161b2c);
    font-size: 18rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.contactspage-contact__item p a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contactspage-contact__item p a:hover {
    color: #467ebc
}

.contactspage-contact__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contactspage-contact__socials a {
    margin-right: 13rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contactspage-contact__socials a svg {
    width: 32rem
}

.contactspage-contact__socials a:hover {
    opacity: .8
}

.contactspage-filials {
    background: #fff;
    border-radius: 40rem;
    margin-top: 12rem;
    padding: 8rem
}

.contactspage-filials__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 16rem;
    padding-bottom: 8rem;
    padding-left: 32rem;
    padding-right: 32rem
}

.contactspage-filials__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0
}

.contactspage-filials__btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 48rem;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    line-height: 140%;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 210rem
}

.contactspage-filials__btn:hover {
    background: #083a84;
    color: #fff
}

.contactspage-filials__btn:focus {
    background: #0a125c
}

.partners__wrap {
    margin-bottom: 88rem;
    margin-top: 32rem
}

.partners__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.partners__aside {
    margin-right: 24rem;
    min-width: 309rem;
    width: 309rem
}

.partners__nav {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    list-style: none;
    margin: 0;
    padding: 16rem;
    position: sticky;
    top: 30rem
}

.partners__nav a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--Gray, #494949);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding: 12rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.partners__nav a:hover {
    color: #1a64ae
}

.partners__nav a i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1rem solid #1a64ae;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    margin-right: 12rem;
    min-width: 32rem;
    width: 32rem
}

.partners__nav a i svg {
    width: 18rem
}

.partners__nav a.active {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    border-radius: 12px;
    color: #fff
}

.partners__header-title {
    color: #161b2c;
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 94%;
    margin-bottom: 12rem
}

.partners__header-txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 24rem
}

.partners__header-banner {
    border-radius: 24rem;
    margin-bottom: 24rem;
    overflow: hidden
}

.partners__header-banner img {
    width: 100%
}

.partners .signme__row {
    background: #fff;
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    margin-top: 57rem;
    min-height: 425rem;
    padding-left: 345rem
}

.partners .signme__img {
    width: 313rem
}

.partners .signme__content {
    padding-bottom: 30rem;
    padding-top: 30rem
}

.partners-partners__list {
    margin-bottom: 16rem
}

.partners-partners__bottom {
    color: var(--Gray, #494949);
    margin-bottom: 8rem
}

.partners-partners__bottom,
.partners-partners__bottom a {
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%
}

.partners-partners__bottom a {
    color: #3376c4;
    text-decoration: underline
}

.partners-partners__bottom a:hover {
    color: #1a64ae
}

.partners-partners__subtitle,
.partners-partners__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.partners-partners__subtitle {
    margin-bottom: 16rem;
    margin-top: 24rem
}

.partners-partners__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1rem solid #e3e4e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    line-height: 120%;
    padding-bottom: 17.5rem;
    padding-top: 17.5rem
}

.partners-partners__item,
.partners-partners__item span {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal
}

.partners-partners__item span {
    font-weight: 300;
    line-height: 140%;
    min-width: 31rem;
    opacity: .56;
    width: 31rem
}

.partners-partners__item:last-child {
    border-bottom: 1rem solid #e3e4e8
}

.partners__header_tech {
    max-width: 616rem
}

.partners-tcontacts {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 16rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    padding: 24rem;
    position: relative
}

.partners-tcontacts__picture {
    bottom: 0;
    position: absolute;
    right: 0
}

.partners-tcontacts__picture img {
    width: 434rem
}

.partners-tcontacts__title {
    color: var(--Black, #161b2c);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24rem;
    line-height: 114%;
    margin-bottom: 6rem
}

.partners-tcontacts__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 24rem
}

.partners-tcontacts__contacts,
.partners-tcontacts__contacts a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.partners-tcontacts__contacts a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1rem solid #e3e4e8;
    color: var(--Gray, #494949);
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-right: 16rem;
    padding-right: 16rem;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.partners-tcontacts__contacts a:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0
}

.partners-tcontacts__contacts a i {
    margin-right: 12rem
}

.partners-tcontacts__contacts a i svg {
    height: 32rem;
    width: 32rem
}

.partners-tcontacts__contacts a:hover {
    color: #3376c4
}

.partners-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 110rem
}

.partners-service__left {
    margin-right: 24rem;
    width: 100%
}

.partners-service__right {
    min-width: 321rem;
    width: 321rem
}

.partners-service__presentation {
    border-radius: 24rem;
    height: 498rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.partners-service__presentation-bg {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.partners-service__presentation-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.partners-service__presentation-title {
    color: var(--White, #fff);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    left: 50rem;
    letter-spacing: .24rem;
    line-height: 114%;
    position: absolute;
    right: 50rem;
    text-align: center;
    top: 24rem
}

.partners-service__presentation-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    bottom: 28rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8rem;
    left: 16rem;
    position: absolute;
    right: 16rem
}

.partners-service__presentation-buttons a {
    font-weight: 500
}

.partners-service__presentation-buttons a.partners-service__presentation-btn2 {
    -webkit-backdrop-filter: blur(6rem);
    backdrop-filter: blur(6rem);
    background: hsla(0, 0%, 100%, .08);
    border: 1rem solid var(--light-gray, #c0c1c5);
    border-radius: 48rem;
    color: #fff
}

.partners-service__presentation-buttons a.partners-service__presentation-btn2:hover {
    background: #fff;
    color: var(--Blue, #1a64ae)
}

.partners-service__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.partners-service__col {
    margin-bottom: 12rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 50%
}

.partners-service__col_sm {
    width: 33.333%
}

.partners-service-item {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 16rem;
    height: 100%;
    padding: 24rem 16rem;
    width: 100%
}

.partners-service-item__icon {
    margin-bottom: 16rem
}

.partners-service-item__icon img {
    width: 32rem
}

.partners-service-item__txt,
.partners-service__bottom {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.partners-service__bottom {
    margin-bottom: 0
}

.partners-naladka {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100rem
}

.partners-naladka__left {
    margin-right: 24rem;
    width: 100%
}

.partners-naladka__right {
    min-width: 513rem;
    width: 513rem
}

.partners-naladka-order {
    border-radius: 24rem;
    height: 558rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.partners-naladka-order__bg {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.partners-naladka-order__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.partners-naladka-order__content {
    bottom: 32rem;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 242rem;
    z-index: 3
}

.partners-naladka-order__txt {
    color: var(--White, #fff);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24rem;
    line-height: 114%;
    margin-bottom: 12rem;
    text-align: center
}

.partners-naladka__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.partners-naladka__list li {
    border-top: 1rem solid #e3e4e8;
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding-bottom: 16rem;
    padding-left: 14rem;
    padding-top: 16rem;
    position: relative
}

.partners-naladka__list li:before {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    content: "";
    display: inline-block;
    height: 6rem;
    left: 0;
    position: absolute;
    top: 22.5rem;
    width: 6rem
}

.partners-naladka__list li:last-child {
    border-bottom: 1rem solid #e3e4e8
}

.partners-naladka__bottom {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 24rem
}

.sertificates__wrap {
    margin-bottom: 100rem;
    margin-top: 32rem
}

.sertificates__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 32rem
}

.sertificates__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.sertificates__col {
    margin-bottom: 32rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 25%
}

.sertificates-item {
    background: #fff;
    border: 1rem solid #e3e4e8;
    border-radius: 24rem;
    display: block;
    height: 459rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.sertificates-item__bottom {
    -webkit-backdrop-filter: blur(4rem);
    backdrop-filter: blur(4rem);
    background: rgba(18, 19, 46, .64);
    border-radius: 24rem;
    bottom: 0;
    left: 0;
    padding: 16rem 12rem;
    position: absolute;
    right: 0
}

.sertificates-item__title {
    color: var(--White, #fff);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8rem;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis
}

.sertificates-item__icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #467ebc;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 28rem;
    justify-content: center;
    left: 28rem;
    position: absolute;
    top: 28rem;
    width: 28rem
}

.sertificates-item__icon svg {
    width: 20rem
}

.sertificates-item__btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(8rem);
    backdrop-filter: blur(8rem);
    background: hsla(0, 0%, 100%, .54);
    border-radius: 8rem;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14rem;
    font-style: normal;
    font-weight: 500;
    height: 44rem;
    justify-content: center;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 297rem
}

.sertificates-item__btn i {
    margin-left: 8rem
}

.sertificates-item__btn i svg {
    width: 20rem
}

/*.sertificates-item:hover .sertificates-item__btn {
    background: #467ebc
}*/
.sertificates-item__btn:hover {
    background: #467ebc;
    color: #fff;
}

.sertificates-item:hover .sertificates-item__icon {
    background: #1a64ae;
}

.sertificates-item:hover .sertificates-item__img:after {
    opacity: 1
}

.sertificates-item:focus .sertificates-item__img:after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(10, 18, 92, .24)), to(rgba(10, 18, 92, .24)));
    background: linear-gradient(0deg, rgba(10, 18, 92, .24), rgba(10, 18, 92, .24));
    opacity: 1
}

.sertificates-item__img {
    bottom: 20rem;
    left: 20rem;
    position: absolute;
    right: 20rem;
    top: 20rem
}

.sertificates-item__img:after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(55, 119, 194, .24)), to(rgba(55, 119, 194, .24)));
    background: linear-gradient(0deg, rgba(55, 119, 194, .24), rgba(55, 119, 194, .24));
    bottom: 0;
    content: "";
    display: inline-block;
    left: 0;
    opacity: 0;
    /*position: absolute;*/
    right: 0;
    top: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.sertificates-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.heropage_projects .heropage__block {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.projects-list__wrap {
    margin-bottom: 130rem;
    margin-top: 32rem
}

.projects-list__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.projects-list__col {
    margin-bottom: 12rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 50%
}

.projects-list__item {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    color: var(--Black, #161b2c);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 12rem 12rem 12rem 24rem;
    text-decoration: none
}

.projects-list__item:hover .projects-list__more svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.projects-list__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    margin-right: 16rem;
    padding-bottom: 10rem
}

.projects-list__title {
    color: var(--Black, #161b2c);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24rem;
    line-height: 114%;
    margin-bottom: 8rem;
    padding-top: 15rem
}

.projects-list__more {
    color: var(--Blue, #1a64ae);
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%
}

.projects-list__more,
.projects-list__more i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.projects-list__more i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1rem solid #1a64ae;
    border-radius: 3rem;
    height: 20rem;
    justify-content: center;
    margin-left: 16rem;
    width: 20rem
}

.projects-list__more i svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 10rem
}

.projects-list__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    max-height: 112rem;
    overflow: hidden;
    text-overflow: ellipsis
}

.projects-list__img {
    border-radius: 16rem;
    height: auto;
    min-height: 246rem;
    min-width: 346rem;
    max-height: 100rem;
    overflow: hidden;
    width: 346rem
}

.projects-list__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.partners-logistic {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 16rem;
    margin-top: 24rem
}

.partners-lab__item {
    background: var(--White, #fff);
    border-radius: 24rem;
    margin-bottom: 12rem;
    padding: 24rem
}

.partners-lab__item:last-child {
    margin-bottom: 40rem
}

.partners-lab__header {
    border-bottom: 1rem solid #eff0f4;
    margin-bottom: 16rem;
    padding-bottom: 16rem
}

.partners-lab__header,
.partners-lab__header i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.partners-lab__header i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: #3376c4;
    border-radius: 50%;
    height: 40rem;
    justify-content: center;
    margin-right: 12rem;
    width: 40rem
}

.partners-lab__header p,
.partners-lab__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.partners-tender {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    margin-left: -6rem;
    margin-right: -6rem
}

.partners-tender__col {
    margin-bottom: 12rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 33.333%
}

.partners-tender__col_12 {
    width: 50%
}

.partners-tender-item {
    background: var(--White, #fff);
    border-radius: 16rem;
    height: 100%;
    padding: 24rem 16rem
}

.partners-tender-item__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24rem
}

.partners-tender-item__ico {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#3376c4), to(#467ebc));
    background: linear-gradient(180deg, #3376c4, #467ebc);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    width: 40rem
}

.partners-tender-item__ico img {
    width: 20rem
}

.partners-tender-item__count {
    font-weight: 300
}

.partners-tender-item__count,
.partners-tender-item__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    line-height: 140%
}

.partners-tender-item__txt {
    font-weight: 400
}

.laminationpage__wrap {
    margin-bottom: 88.5rem;
    margin-top: 32rem
}

.laminationpage__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12rem;
    margin-right: -12rem
}

.laminationpage__col {
    padding-left: 12rem;
    padding-right: 12rem;
    width: 50%
}

.laminationpage__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 16rem
}

.laminationpage__txt {
    color: var(--Gray, #494949);
    font-family: Roboto Flex, sans-serif;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.laminationpage__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.laminationpage__list li {
    background: var(--White, #fff);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12rem;
    padding: 24rem 42rem 24rem 16rem;
    position: relative
}

.laminationpage__list li span {
    font-weight: 300;
    line-height: 140%;
    opacity: .56;
    position: absolute;
    right: 16rem;
    top: 24rem
}

.laminationpage__list li p,
.laminationpage__list li span {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal
}

.laminationpage__list li p {
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0
}

.laminationpage__list li i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #467ebc;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    margin-right: 12rem;
    min-width: 40rem;
    width: 40rem
}

.laminationpage__list li i img {
    width: 20rem
}

.nocompromiss__wrap {
    background: var(--White, #fff);
    border-radius: 40rem 40rem 0 0;
    padding-bottom: 164rem;
    padding-top: 64rem
}

.nocompromiss__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.nocompromiss__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 32rem;
    max-width: 554rem
}

.nocompromiss__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.nocompromiss__col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 50%
}

.nocompromiss-form {
    background: var(--Background, #f2f3f7);
    border: 1rem solid var(--Sroke-2, #e3e4e8);
    border-radius: 32rem;
    padding: 32rem;
    position: sticky;
    top: 30rem;
    width: 100%
}

.nocompromiss-form__heading {
    height: 144rem;
    margin-bottom: 12rem;
    padding: 24rem;
    position: relative;
    width: 100%
}

.nocompromiss-form__heading-bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: -16rem;
    width: 100%
}

.nocompromiss-form__heading-bg img {
    width: 100%
}

.nocompromiss-form__heading-title {
    color: var(--White, #fff);
    font-family: Exo\ 2, sans-serif;
    font-size: 28rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .28rem;
    line-height: 114%;
    max-width: 250rem;
    position: relative;
    z-index: 3
}

.nocompromiss-form .signme__submit {
    width: 205rem
}

.partners-partners__txt a {
    color: #467ebc
}

.newspage__wrap {
    margin-bottom: 130rem
}

.newspage__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 32rem
}

.newspage__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -6rem;
    margin-right: -6rem
}

.newspage__col {
    margin-bottom: 32rem;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 25%
}

.singlenews__wrap {
    margin-bottom: 80rem;
    margin-top: 32rem
}

.singlenews-banner {
    border-radius: 40rem;
    height: 493rem;
    margin-bottom: 28rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.singlenews-banner__img {
    left: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.singlenews-banner__img:before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .16)), to(rgba(0, 0, 0, .16)));
    background: linear-gradient(0deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .16));
    bottom: 0;
    content: "";
    display: inline-block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3
}

.singlenews-banner__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.singlenews-banner .blog-item__tags {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    z-index: 5
}

.singlenews-banner__footer {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    bottom: 44rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    left: 44rem;
    position: absolute;
    right: 44rem;
    z-index: 5
}

.singlenews-banner__title {
    color: #fff;
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 118%;
    max-width: 565rem
}

.singlenews__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.singlenews__content {
    width: calc(100% - 428rem)
}

.singlenews__content blockquote {
    font-size: 20rem;
    font-weight: 500
}

.singlenews__content>p,
.singlenews__content blockquote {
    color: var(--Gray, #494949);
    font-style: normal;
    line-height: 140%;
    margin-bottom: 16rem
}

.singlenews__content>p {
    font-size: 16rem;
    font-weight: 400
}

.singlenews__content img {
    border-radius: 32rem;
    margin-bottom: 32rem;
    margin-top: 32rem;
    overflow: hidden;
    width: 100%
}

.singlenews__content>ol,
.singlenews__content>ul {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 16rem;
    padding-left: 20rem
}

.singlenews__content>ol li,
.singlenews__content>ul li {
    margin-bottom: 16rem
}

.singlenews__content>ol li:last-child,
.singlenews__content>ul li:last-child {
    margin-bottom: 0
}

.singlenews__aside {
    margin-left: 40rem;
    min-width: 388rem;
    width: 388rem
}

.singlenews__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 58rem;
    margin-left: -6rem;
    margin-right: -6rem
}

.singlenews__gallery-col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 50%
}

.singlenews__gallery-img {
    border-radius: 32rem;
    /*height: 374rem;*/
    overflow: hidden
}

.singlenews__gallery-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.singlenews h2 {
    font-size: 32rem;
    margin-bottom: 24rem;
    margin-top: 48rem
}

.singlenews h2,
.singlenews h3,
.singlenews h4,
.singlenews h5,
.singlenews h6 {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .32rem;
    line-height: 114%
}

.singlenews h3,
.singlenews h4,
.singlenews h5,
.singlenews h6 {
    font-size: 26rem;
    margin-bottom: 16rem;
    margin-top: 24rem
}

.singlenews-popular {
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101rem 28rem 0 transparent, 0 65rem 26rem 0 transparent, 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 4rem 9rem 0 rgba(0, 0, 0, .01);
    padding: 16rem;
    position: sticky;
    top: 20px;
    width: 100%
}

.singlenews-popular__title {
    color: var(--Gray, #494949);
    font-size: 24rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12rem
}

.singlenews-popular-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Background, #f2f3f7);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8rem;
    padding: 8rem;
    text-decoration: none
}

.singlenews-popular-item:last-child {
    margin-bottom: 0
}

.singlenews-popular-item__img {
    border-radius: 12rem;
    height: 82rem;
    margin-right: 12rem;
    min-width: 128rem;
    overflow: hidden;
    width: 128rem
}

.singlenews-popular-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.singlenews-popular-item__title {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.singlenews-popular-item:hover p {
    color: #467ebc
}

.controlssing .container {
    border-top: 1rem solid #e3e4e8;
    margin-top: 40rem;
    padding-top: 40rem
}

.controlssing__share {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 24rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 82rem;
    margin-bottom: 16rem;
    overflow: hidden;
    padding-left: 24rem;
    position: relative;
    width: 100%
}

.controlssing__share-bg {
    position: absolute;
    right: 24rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.controlssing__share-bg img {
    width: 356rem
}

.controlssing__share-title {
    color: var(--Gray, #494949);
    font-size: 24rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
    margin-right: 10rem
}

.controlssing__share-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none
}

.controlssing__share-list li {
    margin-right: 12rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.controlssing__share-list li svg {
    width: 32rem
}

.controlssing__share-list li:hover {
    opacity: .7
}

.commblock {
    background: var(--White, #fff);
    border-radius: 32rem
}

.commblock__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 24rem
}

.commblock__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.commblock__txt {
    color: var(--Gray, #494949);
    font-weight: 400;
    margin-bottom: 0
}

.commblock__toggle,
.commblock__txt {
    font-size: 16rem;
    font-style: normal;
    line-height: 140%
}

.commblock__toggle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Blue, #1a64ae);
    border-radius: 58rem;
    color: var(--Blue, #1a64ae);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    width: 258rem
}

.commblock__toggle i,
.commblock__toggle path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.commblock__toggle i {
    margin-left: 8rem;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.commblock__toggle i svg {
    width: 20rem
}

.commblock__toggle:hover path {
    stroke: #fff
}

.commblock__toggle.active i {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.commblock__body {
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.commblock__form {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background: var(--Background, #f2f3f7);
    border-radius: 32rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 16rem 24rem 24rem;
    padding: 12rem
}

.commblock__content {
    width: 100%
}

.commblock__col {
    width: calc(50% - 6rem)
}

.commblock__input {
    margin-bottom: 8rem
}

.commblock__input input {
    background: #fff;
    border: 1rem solid #dfe0e4;
    border-radius: 16rem;
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    height: 52rem;
    line-height: 140%;
    padding-left: 16rem;
    width: 100%
}

.commblock__input input::-webkit-input-placeholder {
    color: #49494981
}

.commblock__input input::-moz-placeholder {
    color: #49494981
}

.commblock__input input:-ms-input-placeholder {
    color: #49494981
}

.commblock__input input::-ms-input-placeholder {
    color: #49494981
}

.commblock__input input::placeholder {
    color: #49494981
}

.commblock textarea {
    background: #fff;
    border: 1rem solid #dfe0e4;
    border-radius: 16rem;
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    height: 298rem;
    line-height: 140%;
    padding-left: 24rem;
    padding-top: 24rem;
    resize: none;
    width: 100%
}

.commblock textarea::-webkit-input-placeholder {
    color: #49494981
}

.commblock textarea::-moz-placeholder {
    color: #49494981
}

.commblock textarea:-ms-input-placeholder {
    color: #49494981
}

.commblock textarea::-ms-input-placeholder {
    color: #49494981
}

.commblock textarea::placeholder {
    color: #49494981
}

.commblock__agree {
    margin-bottom: 16rem;
    margin-top: 16rem
}

.commblock__agree input {
    display: none
}

.commblock__agree input:checked+label:after {
    opacity: 1
}

.commblock__agree label {
    color: var(--Gray, #494949);
    cursor: pointer;
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding-left: 22rem;
    position: relative
}

.commblock__agree label:before {
    background: #fff;
    border: 1rem solid #e3e4e8;
    height: 14rem;
    left: 0;
    top: 0;
    width: 14rem
}

.commblock__agree label:after,
.commblock__agree label:before {
    border-radius: 2rem;
    content: "";
    display: inline-block;
    position: absolute
}

.commblock__agree label:after {
    background: #1a64ae;
    height: 8rem;
    left: 3rem;
    opacity: 0;
    top: 3rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 8rem
}

.commblock__agree label a {
    color: var(--Blue, #1a64ae);
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font
}

.commblock__submit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 58rem;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    line-height: 140%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 386rem
}

.commblock__submit:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.commlist {
    margin-top: 44.5rem
}

.commlist-item {
    border-bottom: 1rem solid #e3e4e8;
    margin-bottom: 24rem;
    padding-bottom: 24rem
}

.commlist-item:last-child {
    border: none
}

.commlist-item__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16rem
}

.commlist-item__name {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 114%
}

.commlist-item__date {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14rem;
    height: 32rem;
    justify-content: center;
    width: 96rem
}

.commlist-item__content,
.commlist-item__date {
    color: var(--Gray, #494949);
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.commlist-item__content {
    font-size: 16rem
}

.commlist-item__request {
    background: var(--White, #fff);
    border-left: 1.5rem solid var(--liner-2, #3376c4);
    border-radius: 24rem;
    margin-left: 32rem;
    margin-top: 24rem;
    padding: 16rem
}

.commlist-item__request .commlist-item__header i {
    margin-right: 12rem
}

.commlist-item__request .commlist-item__date {
    background: #f2f3f7
}

.commlist__more {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 58rem;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    line-height: 140%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 295rem
}

.commlist__more:hover {
    background: #0a125c
}

.commlist__more-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.open .contacts-more {
    opacity: 1;
    pointer-events: auto
}

.contacts-more {
    background: #fff;
    border-radius: 24rem;
    bottom: 0;
    -webkit-box-shadow: 0 92px 26px 0 rgba(72, 135, 206, 0), 0 59px 24px 0 rgba(72, 135, 206, .01), 0 33px 20px 0 rgba(72, 135, 206, .02), 0 15px 15px 0 rgba(72, 135, 206, .03), 0 4px 8px 0 rgba(72, 135, 206, .04);
    box-shadow: 0 92px 26px 0 rgba(72, 135, 206, 0), 0 59px 24px 0 rgba(72, 135, 206, .01), 0 33px 20px 0 rgba(72, 135, 206, .02), 0 15px 15px 0 rgba(72, 135, 206, .03), 0 4px 8px 0 rgba(72, 135, 206, .04);
    left: 0;
    opacity: 0;
    padding: 32rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.contacts-more,
.contacts-more__back {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-more__back {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eff0f4;
    color: var(--Blue, #1a64ae);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12rem;
    padding-bottom: 12rem;
    width: 100%
}

.contacts-more__back:hover {
    color: #1a64ae
}

.contacts-more__back i {
    margin-right: 6rem
}

.contacts-more__block {
    border-bottom: 1px solid #eff0f4;
    padding-bottom: 16rem;
    padding-top: 16rem
}

.contacts-more__title {
    color: var(--Gray, #494949);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8rem
}

.contacts-more__lg {
    font-size: 18rem;
    font-weight: 500;
    letter-spacing: .18rem;
    margin-bottom: 6rem
}

.contacts-more__lg,
.contacts-more__txt {
    color: var(--Gray, #494949);
    font-style: normal;
    line-height: 120%
}

.contacts-more__txt {
    font-size: 16rem;
    font-weight: 400
}

.contacts-more__link {
    color: #467ebc;
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .18rem;
    line-height: 114%;
    text-decoration: underline;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contacts-more__link:hover {
    color: #1a64ae
}

.contacts-more__btn {
    background: #1a64ae;
    color: #fff;
    height: 62rem;
    margin-top: 24rem;
    width: 100%
}

.contacts-more__btn:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.contacts-more__btn:active {
    background: #0a125c
}

@media(max-width:1400px) {
    html {
        font-size: .9px
    }
}

.blog_looked .blog__header {
    border: none;
    padding-bottom: 0
}

@media(max-width:1300px) {
    html {
        font-size: .8px
    }
}

@media(max-width:1100px) {
    html {
        font-size: .7px
    }
}

.mob {
    display: none
}

.heropage_line_hh {
    margin-bottom: 24rem
}

.heropage_line_hh .heropage__block-txt {
    max-width: 687rem
}

.vakantys-item {
    margin-bottom: 24rem
}

.vakantys-item:last-child {
    margin-bottom: 0
}

.vakantys-item__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 32px;
    -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 118rem;
    justify-content: space-between;
    padding-left: 24rem;
    padding-right: 24rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.vakantys-item__header.open {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%))
}

.vakantys-item__header.open .vakantys-item__txt,
.vakantys-item__header.open .vakantys-item__txt span {
    color: #fff
}

.vakantys-item__header.open .vakantys-item__plus {
    background: #fff
}

.vakantys-item__header.open .vakantys-item__plus span {
    background: #3376c4
}

.vakantys-item__header.open .vakantys-item__plus span:last-child {
    display: none
}

.vakantys-item__txt {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .24px;
    line-height: 114%;
    text-align: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.vakantys-item__txt span {
    color: var(--Gray, #494949);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-right: 8rem;
    opacity: .56
}

.vakantys-item__plus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #3376c4;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 48rem;
    justify-content: center;
    width: 48rem
}

.vakantys-item__plus,
.vakantys-item__plus span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.vakantys-item__plus span {
    background: #3376c4;
    display: block;
    height: 2rem;
    width: 14rem
}

.vakantys-item__plus span:nth-child(2) {
    margin-top: -2rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.vakantys-item__body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    background: var(--White, #fff);
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12rem;
    padding: 32rem
}

.vakantys-item__body-wrap {
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.vakantys-item__aside {
    background: var(--Background, #f2f3f7);
    border-radius: 24px;
    margin-right: 24rem;
    min-width: 320rem;
    padding: 16rem;
    width: 320rem
}

.vakantys-item__content {
    width: 100%
}

.vakantys-item__block {
    border-bottom: 1px solid #e3e4e8;
    margin-bottom: 24rem;
    padding-bottom: 24rem
}

.vakantys-item__block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.vakantys-item__block h2,
.vakantys-item__block h3,
.vakantys-item__block h4,
.vakantys-item__block h5,
.vakantys-item__block h6 {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .18px;
    line-height: 114%;
    margin-bottom: 16rem
}

.vakantys-item__block ul {
    color: var(--Gray, #494949);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    list-style: none;
    margin: 0;
    padding: 0
}

.vakantys-item__block ul li {
    margin-bottom: 12rem;
    padding-left: 14rem;
    position: relative
}

.vakantys-item__block ul li:before {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    content: "";
    height: 6rem;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6rem
}

.vakantys-item__block ul li:last-child {
    margin-bottom: 0
}

.vakantys-params__item {
    background: var(--White, #fff);
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8rem;
    padding: 12rem
}

.vakantys-params__item:last-child {
    margin-bottom: 0
}

.vakantys-params__icon {
    margin-right: 12rem
}

.vakantys-params__icon svg {
    width: 32rem
}

.vakantys-params__title {
    color: var(--Gray, #494949);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 2rem
}

.vakantys-params__info {
    color: var(--Black, #161b2c);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 114%;
    margin-bottom: 0
}

.vakantys-params__get {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 58px;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    line-height: 140%;
    margin-top: 16rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.vakantys-params__get:hover {
    background: #083a84
}

.vakantys-params__get:active {
    background: #0a125c
}

.notfoundhh__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.notfoundhh__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 32px;
    -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 40rem 32rem;
    position: relative
}

.notfoundhh__bg {
    position: absolute;
    right: 325rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.notfoundhh__bg img {
    width: 280rem
}

.notfoundhh__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4px;
    line-height: 114%;
    margin-bottom: 12rem
}

.notfoundhh__title span {
    color: var(--Blue, #1a64ae)
}

.notfoundhh__txt {
    color: var(--Gray, #494949);
    font-weight: 400;
    margin-bottom: 0
}

.notfoundhh__btn,
.notfoundhh__txt {
    font-size: 16px;
    font-style: normal;
    line-height: 140%
}

.notfoundhh__btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--Blue, #1a64ae);
    border-radius: 58px;
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    height: 62rem;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 253rem
}

.notfoundhh__btn:hover {
    background: #083a84
}

.notfoundhh__btn:active {
    background: #0a125c
}

.heropage_about {
    padding-bottom: 100rem
}

.heropage_about .heropage__bg img {
    -o-object-fit: cover;
    object-fit: cover
}

.heropage_about .heropage__block {
    height: 536rem;
    padding-top: 80rem
}

.heropage_about .heropage__block-txt {
    max-width: 614rem
}

.heropage_about .heropage__block-txt a {
    color: #fff;
    text-decoration: underline
}

.heropage_about-window {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(45, 50, 77, .64);
    border: 1px solid hsla(0, 0%, 100%, .32);
    border-radius: 32rem;
    bottom: 40rem;
    padding: 20rem;
    position: absolute;
    right: 77rem;
    width: 512rem;
    z-index: 3
}

.heropage_about-title {
    color: var(--White, #fff);
    font-size: 18rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12rem;
    text-align: center
}

.heropage_about-buttons {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.heropage_about-btn1,
.heropage_about-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.heropage_about-btn1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 48rem;
    color: var(--Blue, #1a64ae);
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    height: 54rem;
    justify-content: center;
    line-height: 140%;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: calc(50% - 4rem)
}

.heropage_about-btn1:hover {
    background: var(--Blue, #1a64ae);
    color: #fff
}

.heropage_about-btn2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: hsla(0, 0%, 100%, .08);
    border: 1px solid var(--light-gray, #c0c1c5);
    border-radius: 48rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    height: 54rem;
    justify-content: center;
    line-height: 140%;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: calc(50% - 4rem)
}

.heropage_about-btn2:hover {
    background: var(--Blue, #1a64ae);
    border-color: var(--Blue, #1a64ae);
    color: #fff
}

.about-history__wrap {
    margin-bottom: 100rem
}

.about-history__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 24rem
}

.about-history-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.about-history-item,
.about-history-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.about-history-item__content {
    border-top: 1px solid #e3e4e8;
    margin-right: 24rem;
    padding-top: 24rem;
    width: 100%
}

.about-history-item__year {
    border-right: 1px solid #e3e4e8;
    font-family: Exo\ 2, sans-serif;
    font-size: 32rem;
    letter-spacing: .32rem;
    margin-right: 16rem;
    min-width: 108rem;
    padding-right: 10rem;
    width: 108rem
}

.about-history-item__title,
.about-history-item__year {
    color: var(--Black, #161b2c);
    font-style: normal;
    font-weight: 400;
    line-height: 114%
}

.about-history-item__title {
    font-size: 20rem;
    letter-spacing: .2rem;
    margin-bottom: 12rem
}

.about-history-item__txt {
    color: #494949;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.about-history-item__img {
    border-radius: 24rem;
    height: 349rem;
    min-width: 531rem;
    overflow: hidden;
    width: 531rem
}

.about-history-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.about-history__thumbs-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    width: 60rem
}

.about-history__thumbs-year {
    color: var(--Black, #161b2c);
    font-size: 20rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.about-history__thumbs-ico {
    background: #e3e4e8;
    border-radius: 50%;
    display: block;
    height: 12rem;
    width: 12rem
}

.about-history__prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    bottom: 0;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    left: 0;
    position: absolute;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem;
    z-index: 3
}

.about-history__prev svg {
    width: 18rem
}

.about-history__prev path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.about-history__prev:hover {
    border-color: #3376c4
}

.about-history__prev:hover path {
    stroke: #3376c4
}

.about-history__next {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    bottom: 0;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    left: 48rem;
    position: absolute;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem;
    z-index: 3
}

.about-history__next svg {
    width: 18rem
}

.about-history__next path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.about-history__next:hover {
    border-color: #3376c4
}

.about-history__next:hover path {
    stroke: #3376c4
}

.about-history .swiper-button-disabled {
    opacity: .5;
    pointer-events: none
}

.about-history__slider {
    margin-bottom: 22rem
}

.about-history__pag {
    height: 1px !important;
    margin-bottom: 34rem;
    margin-left: 22rem;
    margin-right: 22rem;
    position: relative;
    width: calc(100% - 44rem) !important
}

.about-history .swiper-slide-thumb-active .about-history__thumbs-year {
    color: #3376c4
}

.about-history .swiper-slide-thumb-active .about-history__thumbs-ico {
    background: #3376c4
}

.about-best__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.about-best__row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    background: var(--White, #fff);
    border-radius: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    padding: 40rem;
    position: relative
}

.about-best__img {
    bottom: 0;
    left: 104rem;
    position: absolute
}

.about-best__img img {
    max-width: 458rem
}

.about-best__content {
    max-width: 630rem
}

.about-best__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 38rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 16rem
}

.about-best__title span {
    color: #3376c4
}

.about-best__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.manufacture__wrap {
    margin-top: 100rem;
    padding-bottom: 174rem;
    padding-top: 80rem;
    position: relative
}

.manufacture__wrap .container {
    position: relative;
    z-index: 3
}

.manufacture__bg {
    border-radius: 40rem 40rem 0 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

.manufacture__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.manufacture__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24rem
}

.manufacture__content {
    max-width: 435rem
}

.manufacture__title {
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.manufacture__title,
.manufacture__txt {
    color: var(--White, #fff);
    font-style: normal;
    font-weight: 400
}

.manufacture__txt {
    font-size: 16rem;
    line-height: 140%
}

.manufacture__nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.manufacture__pag {
    margin-left: 24rem;
    margin-right: 24rem
}

.manufacture__pag span {
    background: #3376c4;
    opacity: .6
}

.manufacture__pag .swiper-pagination-bullet-active {
    opacity: 1
}

.manufacture__prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    min-width: 40rem;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem
}

.manufacture__prev svg {
    width: 18rem
}

.manufacture__prev path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.manufacture__prev:hover {
    border-color: #3376c4
}

.manufacture__prev:hover path {
    stroke: #3376c4
}

.manufacture__next {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1rem solid var(--Sroke, #eff0f4);
    border-radius: 50%;
    -webkit-box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    box-shadow: 0 4rem 9rem 0 rgba(0, 0, 0, .01), 0 16rem 16rem 0 rgba(0, 0, 0, .01), 0 36rem 22rem 0 rgba(0, 0, 0, .01), 0 65rem 26rem 0 transparent, 0 101rem 28rem 0 transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    min-width: 40rem;
    -webkit-transition: all eaes .3s;
    transition: all eaes .3s;
    width: 40rem
}

.manufacture__next svg {
    width: 18rem
}

.manufacture__next path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.manufacture__next:hover {
    border-color: #3376c4
}

.manufacture__next:hover path {
    stroke: #3376c4
}

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

.manufacture-item {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: rgba(229, 234, 255, .16);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 195rem;
    overflow: hidden;
    padding: 8rem;
    width: 100%
}

.manufacture-item__img {
    border-radius: 8rem;
    height: 100%;
    overflow: hidden;
    width: 100%
}

.manufacture-item__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.manufacture-item__ico {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    bottom: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    left: 16rem;
    position: absolute;
    width: 32rem
}

.manufacture-item__ico,
.manufacture-item__ico path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.manufacture-item__ico svg {
    width: 20rem
}

.manufacture-item:hover .manufacture-item__ico {
    background: #3376c4
}

.manufacture-item:hover .manufacture-item__ico path {
    fill: #fff
}

.manufacture__row {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: rgba(229, 234, 255, .16);
    border-radius: 24rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12rem;
    padding: 24rem
}

.manufacture__left {
    border-right: 1px solid hsla(228, 4%, 76%, .32);
    margin-right: 24rem;
    min-width: 456rem;
    padding-right: 24rem;
    width: 456rem
}

.manufacture-block__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid hsla(228, 4%, 76%, .32);
    color: var(--White, #fff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 114%;
    margin-bottom: 16rem;
    padding-bottom: 16rem
}

.manufacture-block__header i {
    margin-right: 12rem;
    min-width: 40rem;
    width: 40rem
}

.manufacture-block__header i svg {
    width: 40rem
}

.manufacture-block__txt {
    color: var(--Sroke-2, #e3e4e8);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.projects_about .projects__wrap {
    margin-top: -30rem
}

.project-modal {
    background: var(--White, #fff);
    border-radius: 32rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 50%;
    max-width: 95vw;
    opacity: 0;
    padding: 32rem;
    pointer-events: none;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 1168rem;
    z-index: 101
}

.project-modal.open {
    opacity: 1;
    pointer-events: auto
}

.project-modal__close {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    position: absolute;
    right: -32rem;
    top: -32rem;
    width: 32rem
}

.project-modal__gallery {
    margin-right: 24rem;
    max-width: 619rem;
    min-width: 619rem;
    position: relative;
    width: 100%
}

.project-modal-img {
    border-radius: 16rem;
    height: 467rem;
    overflow: hidden;
    width: 100%
}

.project-modal-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.project-modal__prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #eff0f4;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    left: 24rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40rem;
    z-index: 3
}

.project-modal__prev path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.project-modal__prev:hover path {
    stroke: #000
}

.project-modal__next {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #eff0f4;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    justify-content: center;
    position: absolute;
    right: 24rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40rem;
    z-index: 3
}

.project-modal__next path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.project-modal__next:hover path {
    stroke: #000
}

.project-modal__pag {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    bottom: 24rem !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    position: absolute;
    text-align: center;
    z-index: 3
}

.project-modal__pag span {
    background: #fff
}

.project-modal__title {
    color: var(--Black, #161b2c);
    font-size: 24rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.project-modal__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 300;
    line-height: 140%
}

.sertificatespage__wrap {
    margin-bottom: 100rem;
    margin-top: 100rem
}

.sertificatespage__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32rem
}

.sertificatespage__content {
    max-width: 643rem
}

.sertificatespage__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, Sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.sertificatespage .sertificates-item {
    height: 360rem
}

.sertificatespage .sertificates-item__btn {
    width: 100%
}

.sertificatespage__txt {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 124%
}

.sertificatespage-inner {
    background: var(--White, #fff);
    border-radius: 24rem;
    -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    padding: 24rem
}

.sertificatespage__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -6rem;
    margin-right: -6rem
}

.sertificatespage__col {
    padding-left: 6rem;
    padding-right: 6rem;
    width: 20%
}

.newspage-bloghead {
    border-radius: 40rem;
    height: 493px;
    margin-bottom: 32rem;
    overflow: hidden;
    position: relative
}

.newspage-bloghead__content {
    bottom: 40rem;
    left: 40rem;
    position: absolute
}

.newspage-bloghead__title {
    color: var(--White, #fff);
    font-family: Exo\ 2, sans-serif;
    font-size: 56rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .56rem;
    line-height: 114%;
    margin-bottom: 12rem
}

.newspage-bloghead__txt {
    color: #fff;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 697rem
}

.newspage-bloghead__bg {
    border-radius: 40rem;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

.newspage-bloghead__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.newspage_blog .newspage__col {
    width: 33.333%
}

.newspage_blog .blog-item {
    border-radius: 32rem;
    height: 415rem;
    overflow: hidden;
    position: relative
}

.newspage_blog .blog-item__img {
    height: 100%
}

.newspage_blog .blog-item__content {
    bottom: 8rem;
    left: 8rem;
    position: absolute;
    right: 8rem
}

.vakanty-modal {
    background: var(--White, #fff);
    border-radius: 32rem;
    left: 50%;
    opacity: 0;
    padding: 40rem;
    pointer-events: none;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 782rem;
    z-index: 100
}

.vakanty-modal.open {
    opacity: 1;
    pointer-events: auto
}

.vakanty-modal__close {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32rem;
    justify-content: center;
    position: absolute;
    right: -26rem;
    top: -32rem;
    width: 32rem
}

.vakanty-modal__title {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 40rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .4rem;
    line-height: 114%;
    margin-bottom: 32rem;
    text-align: center
}

.vakanty-modal__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border: 1px solid var(--Blue, #1a64ae);
    border-radius: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    justify-content: space-between;
    margin-bottom: 16rem;
    padding: 0 24rem
}

.vakanty-modal__header select {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 18rem;
    font-style: normal;
    border: none;
    font-weight: 500;
    height: 73rem;
    width: 100%;
    appearance: none;
    letter-spacing: .18rem;
    line-height: 114%;
    margin: 0
}

.vakanty-modal__header i {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #1a64ae;
    pointer-events: none;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40rem;
    position: absolute;
    top: 50%;
    right: 24rem;
    transform: translateY(-50%);
    justify-content: center;
    min-width: 40rem;
    width: 40rem
}

.vakanty-modal__header i svg {
    width: 24rem
}

.vakanty-modal__form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -4rem;
    margin-right: -4rem
}

.vakanty-modal__form-col {
    margin-bottom: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 33.333%
}

.vakanty-modal__form-col_12 {
    width: 100%
}

.vakanty-modal__form-col input {
    height: 52rem;
    padding-left: 16rem
}

.vakanty-modal__form-col input,
.vakanty-modal__form-col textarea {
    background: #fff;
    border: 1px solid #dfe0e4;
    border-radius: 16rem;
    color: rgba(73, 73, 73, .64);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    width: 100%
}

.vakanty-modal__form-col textarea {
    height: 117rem;
    padding: 16rem;
    resize: none
}

.vakanty-modal__form-btn {
    background: #1a64ae;
    color: #fff;
    height: 62rem;
    margin-left: auto;
    margin-right: auto;
    width: 386rem
}

.vakanty-modal__form-btn:hover {
    background: #083a84;
    border-color: transparent;
    color: #fff
}

.vakanty-modal__form-btn:active {
    background: #0a125c
}

.vakanty-modal__form-agree {
    margin-bottom: 24rem;
    margin-top: 16rem
}

.vakanty-modal__form-agree input {
    display: none
}

.vakanty-modal__form-agree input:checked+label:after {
    opacity: 1
}

.vakanty-modal__form-agree label {
    color: #494949;
    cursor: pointer;
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 14rem;
    padding-left: 22rem;
    position: relative;
    text-align: left
}

.vakanty-modal__form-agree label:before {
    background: #fff;
    border: 1rem solid #e3e4e8;
    border-radius: 2rem;
    content: "";
    display: inline-block;
    height: 14rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 14rem
}

.vakanty-modal__form-agree label:after {
    background: #1a64ae;
    border-radius: 2rem;
    content: "";
    display: inline-block;
    height: 8rem;
    left: 3rem;
    opacity: 0;
    position: absolute;
    top: 3rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 8rem
}

.vakanty-modal__form-agree label a {
    color: #1a64ae;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.vakanty-modal__form-agree label a:hover {
    color: #083a84;
    text-decoration: none
}

.blog-accord {
    margin-top: 40rem
}

.blog-accord__item {
    margin-bottom: 12px
}

.blog-accord__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--White, #fff);
    border-radius: 32rem;
    -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    min-height: 96rem;
    padding: 24rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.blog-accord__header p {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 24rem;
    font-weight: 500;
    letter-spacing: .24rem;
    line-height: 114%
}

.blog-accord__header p,
.blog-accord__header p span {
    font-style: normal;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog-accord__header p span {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-weight: 400;
    line-height: 140%;
    margin-right: 8rem;
    opacity: .56
}

.blog-accord__header.open {
    background: var(--liner-2, linear-gradient(180deg, #3376c4 0, #467ebc 100%));
    border-radius: 32rem;
    -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
    box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01)
}

.blog-accord__header.open p,
.blog-accord__header.open p span {
    color: #fff
}

.blog-accord__header.open .blog-accord__plus span:last-child {
    display: none
}

.blog-accord__header.open+div .blog-accord__inner {
    display: block
}

.blog-accord__plus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #3376c4;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 48rem;
    justify-content: center;
    width: 48rem
}

.blog-accord__plus,
.blog-accord__plus span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.blog-accord__plus span {
    background: #3376c4;
    border-radius: 3rem;
    display: block;
    height: 2rem;
    width: 16rem
}

.blog-accord__plus span:last-child {
    margin-top: -2rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.blog-accord__inner {
    background: var(--White, #fff);
    border-radius: 40rem;
    display: none;
    margin-top: 12rem;
    padding: 32rem
}

.blog-accord__inner p {
    color: var(--Gray, #494949);
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 12rem
}

.blog-accord__inner p:last-child {
    margin-bottom: 0
}

.mobnav,
.mobscheme {
    display: none
}

@media(max-width:991px)and (min-width:575px) {
    .partners-naladka-order {
        height: 102vw
    }

    .newspage__col {
        width: 50% !important
    }

    .manufacture-item {
        height: 30vw
    }

    .sertificatespage__row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .sertificatespage__col {
        width: 50% !important
    }

    .about-best__content {
        max-width: 100%
    }

    .sertificatespage .sertificates-item {
        height: 66vw !important
    }

    .heropage__block-txt {
        margin-right: 20px
    }

    .manufacture__left {
        width: 100%
    }

    .heropage__block {
        flex-direction: column
    }

    .project-modal__gallery {
        max-width: 100%
    }

    .profiles__col {
        width: 50% !important
    }

    .about-img {
        height: 100% !important
    }

    .signme__submit {
        max-width: 450px
    }

    .lamination-list__item-img {
        height: 23vw
    }

    .footer__btn {
        margin-left: auto;
        margin-right: auto
    }

    .footer__btn,
    .page404__tohome {
        max-width: 400px
    }

    .partners-partners {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .partners-tcontacts,
    .partners__header_tech {
        width: 50%
    }

    .heropage_line .heropage__block {
        height: 274px
    }
}

.mobnavback {
    display: none
}

@media(max-width:991px) {
    .mobnavback {
        background: var(--Black, #161b2c);
        bottom: 0;
        display: block;
        left: 0;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 8
    }

    .mobnavback.open {
        opacity: .66;
        pointer-events: auto
    }

    .mobnav {
        background: #fff;
        border-radius: 24px;
        display: block;
        left: 16rem;
        max-height: calc(100vh - 80px);
        opacity: 0;
        overflow: auto;
        padding: 64px 12px 24px;
        pointer-events: none;
        position: absolute;
        right: 16rem;
        text-align: center;
        top: 50px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 9
    }

    .mobnav.open {
        opacity: 1;
        pointer-events: auto
    }

    .mobnav .profiles-item {
        background: var(--Background, #f2f3f7);
        border: 1px solid var(--Sroke-2, #e3e4e8);
        border-radius: 24px;
        margin-bottom: 8px;
        margin-left: auto;
        margin-right: auto;
        max-width: 319px;
        min-height: 1px;
        padding-top: 119px
    }

    .mobnav .profiles-item__title {
        font-size: 40px
    }

    .mobnav .profiles-item__img img {
        max-width: 108px
    }

    .mobnav .header__catalog {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        height: 46px;
        justify-content: space-between;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        width: 231px
    }

    .mobnav .header__catalog .closed {
        display: none
    }

    .mobnav .header__catalog.open {
        background: #083a84
    }

    .mobnav .header__catalog.open .opened {
        display: none
    }

    .mobnav .header__catalog.open .closed {
        display: inline-block
    }

    .mobnav .header__catalog.open+div {
        display: block
    }

    .mobnav .syswrap {
        display: none
    }

    .mobnav .mobnav__sys-btn {
        background: #1a64ae;
        color: #fff;
        font-size: 16px;
        height: 46px;
        margin-left: auto;
        margin-right: auto;
        max-width: 430px;
        width: 100%
    }

    .mobnav .mobnav__sys-btn:hover {
        background: #083a84;
        border-color: transparent;
        color: #fff
    }

    .mobnav .mobnav__sys-btn:active {
        background: #0a125c
    }

    .mobnav__sys-list {
        border-bottom: 1px solid #eff0f4;
        list-style: none;
        margin-bottom: 19px;
        padding-bottom: 19px
    }

    .mobnav__sys-list a {
        color: var(--Black, #161b2c);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-decoration: none
    }

    .mobnav__sys-list li {
        margin-bottom: 16px
    }

    .mobnav__sys-list li:last-child {
        margin-bottom: 0
    }

    .mobnav__sys-sublist {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #eff0f4;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
        margin-bottom: 19px;
        padding-bottom: 3px
    }

    .mobnav__sys-sublist li {
        margin-bottom: 16px;
        margin-left: 16px;
        margin-right: 16px
    }

    .mobnav__sys-sublist a {
        color: var(--Gray, #494949);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-decoration: none
    }

    .blog__title {
        font-size: 32px
    }

    .heropage__block-content,
    .notfoundhh__content {
        width: 100%
    }

    .singlenews-popular {
        display: none
    }

    .about__wrap {
        padding-bottom: 0
    }

    .about__scheme {
        position: relative;
        text-align: center;
        top: 0;
    }

    .manufacture-item__ico {
        bottom: 16px;
        height: 32px;
        left: 16px;
        width: 32px
    }

    .manufacture-item__ico svg {
        height: 20px;
        width: 20px
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    .heropage_about .heropage__bg {
        display: none
    }

    .heropage_about .heropage__block {
        background: linear-gradient(152deg, #2e73c1 12.93%, #6099dc 82.82%);
        height: auto
    }

    .heropage_about .heropage_about-window {
        bottom: auto;
        margin-top: 30rem;
        max-width: 500rem;
        position: relative;
        right: auto;
        width: 100%
    }

    .about-history-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .about-history-item__img {
        margin-top: 30rem;
        width: 100%
    }

    .manufacture__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .about-best__img {
        display: none
    }

    .manufacture__left {
        border: none;
        margin-bottom: 30rem;
        margin-right: 0;
        padding-right: 0
    }

    .manufacture__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start
    }

    .manufacture-block__txt,
    .manufacture__txt {
        font-size: 14px
    }

    .sertificatespage__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start
    }

    .sertificatespage__header .profiles__link {
        margin-top: 20rem
    }

    .newspage-bloghead {
        height: 248px
    }

    .sertificatespage__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .sertificatespage .sertificates-item {
        height: 57vh;
        margin-bottom: 10rem
    }

    .newspage_blog .newspage__col {
        width: 100%
    }

    .newspage_blog .blog-item {
        height: 542rem
    }

    .sertificatespage__col {
        width: 100%
    }

    .sertificatespage__txt {
        font-size: 14px
    }

    .blog-item__view,
    .projects-item__more,
    .projects-list__more,
    .syslines-item__link {
        font-size: 16px
    }

    .blog-item__view i,
    .projects-item__more i,
    .projects-list__more i,
    .syslines-item__link i {
        height: 20px;
        width: 20px
    }

    .blog-item__view i svg,
    .projects-item__more i svg,
    .projects-list__more i svg,
    .syslines-item__link i svg {
        width: 10px
    }

    .sertificates-item__icon {
        height: 28px;
        left: 28px;
        top: 28px;
        width: 28px
    }

    .sertificates-item__icon svg {
        width: 18px
    }

    .about-item__link,
    .newtech__more {
        font-size: 20px
    }

    .about-item__link i,
    .newtech__more i {
        height: 20px;
        width: 20px
    }

    .about-item__link i svg,
    .newtech__more i svg {
        width: 10px
    }

    .about-history-item__txt {
        font-size: 14px
    }

    .about-history-item__title {
        font-size: 16px
    }

    .about-best__txt {
        font-size: 14px
    }

    .manufacture__nav {
        margin-top: 30rem
    }

    .about-history__prev {
        bottom: 20rem;
        left: 20rem
    }

    .about-history__next {
        bottom: 20rem;
        left: 68rem
    }

    .vakantys-item__txt {
        font-size: 16px;
        padding-right: 20px
    }

    .vakantys-item__plus {
        min-width: 48rem
    }

    .cardpage__gallery {
        margin-bottom: 12rem
    }

    .cardpage__window {
        padding: 16px
    }

    .vakantys-item__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .vakantys-item__aside {
        margin-bottom: 30px;
        width: 100%
    }

    .cardpage__subtitle {
        font-size: 20px;
        margin-bottom: 8px
    }

    .cardpage__txt {
        font-size: 16px;
        margin-bottom: 16px
    }

    .mob {
        display: block
    }

    .desc {
        display: none
    }

    .projects-main__link {
        font-size: 20px
    }

    .cardpage__tech {
        padding-bottom: 16px;
        padding-top: 16px
    }

    .cardpage__tech-title {
        font-size: 20px;
        line-height: 140%;
        margin-bottom: 8px
    }

    .cardpage__tech-list li {
        font-size: 14px;
        padding: 6px 12px 6px 8px
    }

    .cardpage__all {
        font-size: 20px;
        line-height: 140%
    }

    .cardpage__all i {
        margin-left: 8px
    }

    .cardpage__all svg {
        width: 20px
    }

    .cardscheme__block-img img {
        max-width: 1000px;
        width: 800px
    }

    .cardscheme__block-img {
        margin-left: -32rem;
        margin-right: -32rem;
        overflow: auto;
        padding-left: 32rem;
        padding-right: 32rem
    }

    .cardscheme__block-btn {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 20px;
        padding-right: 30px
    }

    .cardscheme__block-btn i {
        margin-left: 8px
    }

    .cardscheme__block-btn i svg {
        width: 20px
    }

    .cardpage__tech-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 8px;
        justify-content: start
    }

    .cardpage__tech-list,
    .header__burger {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header__burger {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
        border: 1px solid #e3e4e8;
        border-radius: 50%;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        height: 32px;
        justify-content: center;
        text-align: center;
        width: 32px
    }

    .header__burger span {
        background: #161b2c;
        border-radius: 3px;
        display: block;
        height: 1.5px;
        margin-bottom: 3px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        width: 15px
    }

    .header__burger span:last-child {
        margin-bottom: 0;
        margin-left: 4px;
        width: 11px
    }

    .header__burger.open span {
        margin-bottom: 0
    }

    .header__burger.open span:last-child {
        display: none
    }

    .header__burger.open span:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .header__burger.open span:nth-child(2) {
        margin-top: -1.5px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .header__mobsearch {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: rgba(239, 240, 244, .72);
        border: 1px solid #eff0f4;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 32px;
        justify-content: center;
        margin-right: 8rem;
        width: 32px
    }

    .header__logo img {
        width: 133px
    }

    .header__top-btn,
    .header__top-nav {
        display: none
    }

    .header__top-group {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }

    .header__top-link {
        margin-left: 0
    }

    .header__top-link svg {
        width: 18rem
    }

    .container {
        padding-left: 16rem;
        padding-right: 16rem
    }

    .header__catalog,
    .header__list,
    .header__search {
        display: none
    }

    .hero__wrap {
        padding-bottom: 1px;
        padding-top: 128px
    }

    .hero__title {
        font-size: 38px
    }

    .hero__title,
    .hero__txt {
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }

    .hero__txt {
        font-size: 16px;
        margin-bottom: 370px;
        max-width: 343px
    }

    .hero__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px
    }

    .hero__profiles {
        margin-bottom: 8px;
        margin-right: 0
    }

    .hero__call,
    .hero__profiles {
        border-radius: 48px;
        font-size: 16px;
        height: 54px;
        width: 100%
    }

    .hero__features {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin: 64px -16px -137px;
        overflow: auto;
        padding-left: 16px;
        padding-right: 16px;
        -webkit-transform: none;
        transform: none
    }

    .hero__features-col {
        min-width: 258px;
        width: 258px
    }

    .hero__features-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .hero__features-img img {
        width: 48px
    }

    .hero__features-img {
        margin-bottom: 16px
    }

    .hero__features-title {
        font-size: 20px;
        margin-bottom: 12px
    }

    .hero__features-txt {
        font-size: 16px;
        line-height: 140%
    }

    .profiles__wrap {
        margin-top: 201px
    }

    .profiles__title {
        font-size: 32px;
        line-height: 114%;
        margin-bottom: 12px
    }

    .profiles__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        border-bottom: 1px solid #e3e4e8;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start;
        padding-bottom: 21px
    }

    .profiles__txt {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 24px
    }

    .profiles__link {
        font-size: 20px
    }

    .profiles__link i {
        height: 20px;
        margin-left: 8px;
        width: 20px
    }

    .profiles__link i svg {
        height: 10px;
        width: 10px
    }

    .profiles__col {
        width: 100%
    }

    .profiles-item__tags-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        border-radius: 16px;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start;
        margin-bottom: 8px;
        margin-right: 8px;
        padding: 12px
    }

    .profiles-item__tags-item i {
        margin-bottom: 8px
    }

    .profiles-item__tags-item i img {
        width: 24px
    }

    .profiles-item__tags-item p {
        font-size: 14px
    }

    .projects-main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start;
        margin-top: -56px;
        padding: 24px 16px
    }

    .projects-main__img {
        display: none
    }

    .projects-main__title {
        font-size: 32px;
        line-height: 114%;
        margin-bottom: 12px
    }

    .projects-main__txt {
        font-size: 16px;
        line-height: 124%;
        margin-bottom: 13px
    }

    .projects-main__link i {
        height: 20px;
        width: 20px
    }

    .projects-main__link i svg {
        width: 10px
    }

    .projects__col {
        margin-bottom: 12px;
        width: 100%
    }

    .projects__col:last-child {
        margin-bottom: 0
    }

    .projects-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 12px
    }

    .projects-item__title {
        font-size: 20px;
        line-height: 114%;
        margin-bottom: 8px
    }

    .projects-item__txt {
        font-size: 16px;
        line-height: 140%
    }

    .projects-item__img {
        height: 159px;
        margin-top: 20px;
        width: 100%
    }

    .projects__wrap {
        padding-bottom: 40px
    }

    .about__title {
        margin-bottom: 12px;
        text-align: left
    }

    .about__txt {
        border-bottom: 1px solid #eff0f4;
        font-size: 16px;
        line-height: 124%;
        margin-bottom: 24px;
        padding-bottom: 24px;
        text-align: left
    }

    .about__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .syslines-item__link {
        font-size: 20px
    }

    .about__col {
        width: 100%
    }

    .about__col:first-child {
        -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
        order: 99
    }

    .about__col:nth-child(3) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .about__col:nth-child(4),
    .about__col:nth-child(6) {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .about-img {
        height: 189px;
        min-height: 189px
    }

    .profiles-item__link {
        font-size: 16px;
        line-height: 140%
    }

    .profiles-item__link i {
        border-radius: 4px;
        height: 20px;
        margin-left: 14px;
        width: 20px
    }

    .profiles-item__link i svg {
        height: 10px;
        width: 10px
    }

    .about-item {
        padding: 16px
    }

    .about-item__ico {
        margin-bottom: 24px
    }

    .about-item__ico img {
        width: 48px
    }

    .about-item__title {
        font-size: 20px;
        line-height: 114%;
        margin-bottom: 8px
    }

    .about-item__txt {
        font-size: 16px;
        line-height: 140%
    }

    .about__quote {
        font-size: 20px;
        height: auto;
        line-height: 140%;
        min-height: 1px;
        padding: 24px 16px
    }

    .maingroup {
        padding-bottom: 40px;
        padding-top: 40px
    }

    .signme__row {
        min-height: 1px;
        padding: 24px 16px
    }

    .signme__bg,
    .signme__img {
        display: none
    }

    .signme__content {
        padding-bottom: 0;
        padding-top: 0
    }

    .signme__title {
        font-size: 32px;
        line-height: 94%;
        margin-bottom: 24px
    }

    .signme__col {
        margin-bottom: 8px;
        width: 100%
    }

    .signme__field {
        font-size: 14px;
        height: 52px;
        padding-left: 16px
    }

    .signme-agree label {
        font-size: 12px;
        line-height: 130%;
        padding-left: 22px
    }

    .signme-agree label:before {
        height: 14px;
        width: 14px
    }

    .signme-agree label:after {
        height: 8px;
        left: 3px;
        top: 3px;
        width: 8px
    }

    .signme__submit {
        border-radius: 58px;
        font-size: 16px;
        font-weight: 500;
        height: 62px;
        width: 100%
    }

    .newtech__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .newtech__col {
        width: 100%
    }

    .newtech__title {
        font-size: 32px;
        line-height: 94%;
        margin-bottom: 12px
    }

    .newtech__txt {
        font-size: 16px;
        line-height: 140%
    }

    .newtech__gallery.mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 12px
    }

    .lamination__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start
    }

    .lamination__title {
        font-size: 32px;
        margin-bottom: 12px
    }

    .lamination__txt {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 24px
    }

    .lamination__pic {
        display: none
    }

    .lamination__col {
        width: 100%
    }

    .lamination-list__col {
        width: 50%
    }

    .blog__buttons {
        display: none
    }

    .blog__pag {
        text-align: center
    }

    .blog__nav {
        margin-top: 24px
    }

    .blog__slider {
        margin-left: 0;
        margin-right: 0;
        max-width: 321px;
        overflow: visible
    }

    .blog-item__img {
        height: 245px
    }

    .blog-item__content {
        padding: 16px 16px 79px
    }

    .blog-item__title {
        font-size: 20px;
        line-height: 124%;
        margin-bottom: 8px
    }

    .blog-item__descr {
        font-size: 16px;
        line-height: 140%
    }

    .contacts__wrap {
        padding-bottom: 115px;
        padding-top: 40px
    }

    .contacts__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start
    }

    .contacts__title {
        font-size: 32px;
        line-height: 114%;
        margin-bottom: 24px
    }

    .contacts__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }

    .contacts-item {
        height: auto;
        margin-bottom: 8px;
        margin-left: 0;
        min-height: 56px;
        padding: 8px 16px;
        width: 100%
    }

    .contacts-item:last-child {
        margin-bottom: 0
    }

    .contacts-item i svg {
        width: 24px
    }

    .contacts-item i {
        margin-right: 12px
    }

    .contacts-item__info {
        font-size: 14px;
        line-height: 140%
    }

    .contacts-map {
        height: 698px
    }

    .contacts-map__window {
        bottom: 8px;
        left: 8px;
        max-width: 1000px;
        padding: 24px 16px;
        right: 8px;
        top: auto;
        width: auto
    }

    .contacts-map__title {
        font-size: 24px;
        line-height: 114%;
        margin-bottom: 12px;
        padding-bottom: 12px
    }

    .project-modal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 95vh;
        overflow: auto
    }

    .contacts-map__item {
        padding: 12px
    }

    .project-modal__close {
        right: 10rem;
        top: 10rem
    }

    /*.contacts-map__item-ico {
        height: 40px;
        margin-right: 12px;
        width: 40px
    }*/

    .contacts-map__item-title {
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 8px
    }

    .contacts-map__item-info {
        font-size: 16px;
        line-height: 19px
    }

    .footer__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .project-modal__gallery {
        min-width: 1px;
        max-width: 100%;
    }

    .project-modal__content {
        margin-top: 30rem
    }

    .footer__left {
        border-bottom: 1rem solid var(--Gray, #494949);
        border-right: none;
        padding-bottom: 31px;
        padding-right: 0;
        width: 100%
    }

    .footer__logo img {
        width: 246px
    }

    .footer__logo {
        margin-bottom: 24px;
        text-align: center
    }

    .footer__txt {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 14px;
        text-align: center
    }

    .footer__btn {
        font-size: 16px;
        height: 54px;
        width: 100%
    }

    .footer__center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 24px;
        padding-left: 0;
        padding-right: 0
    }

    .footer-nav {
        margin-bottom: 32px
    }

    .footer-nav__main {
        font-size: 20px;
        line-height: 23px
    }

    .footer-nav__main i {
        height: 20px;
        margin-left: 12px;
        width: 20px
    }

    .footer-nav__main svg {
        height: 10px;
        width: 10px
    }

    .footer-nav__list {
        padding-right: 10px;
        width: 50%
    }

    .footer-nav__row_first .footer-nav__list {
        margin-right: 32px;
        width: auto
    }

    .modal-call__image {
        display: none
    }

    .modal-call {
        padding-left: 32rem
    }

    .footer-nav__list a {
        font-size: 16px;
        line-height: 140%
    }

    .footer-nav__list li {
        margin-bottom: 12px
    }

    .footer__right {
        border: none;
        min-width: 1px;
        padding-left: 0;
        width: 100%
    }

    .footer__right-title {
        font-size: 20px;
        margin-bottom: 24px
    }

    .footer-contacts__item i {
        margin-right: 12px;
        min-width: 24px;
        width: 24px
    }

    .footer-contacts__item {
        font-size: 16px;
        line-height: 19px
    }

    .modal-call__close,
    .modal-success__close {
        right: 0;
        top: -40rem
    }

    .footer-socials a svg {
        width: 32px
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 24px;
        padding-top: 24px
    }

    .footer__bottom p {
        font-size: 12px;
        line-height: 140%;
        margin-bottom: 12px
    }

    .footer__bottom p:last-child {
        margin-bottom: 0
    }

    .heropage__wrap {
        margin-top: 158rem
    }

    .heropage__block {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: 575px;
        justify-content: start;
        padding: 24px 16px
    }

    .heropage__block-title {
        font-size: 32px;
        margin-bottom: 16px
    }

    .heropage__block-txt {
        font-size: 16px;
        line-height: 140%;
        max-width: 311px
    }

    .heropage__block-txt br {
        display: none
    }

    .lamination__wrap {
        margin-top: 0
    }

    .newtech_prof {
        padding-bottom: 50px
    }

    .heropage_line .heropage__block {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        height: 266px;
        justify-content: flex-end
    }

    .syslines__title {
        margin-bottom: 12px
    }

    .syslines__txt {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 24px
    }

    .syslines__col {
        margin-bottom: 24px;
        width: 100%
    }

    .seoblock__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-right: 0
    }

    .seoblock__img {
        border-radius: 40rem;
        height: 54vw;
        margin-right: 0;
        margin-top: 24px;
        overflow: hidden;
        width: 100%
    }

    .seoblock__content {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 24px
    }

    .seoblock__content h1,
    .seoblock__content h2,
    .seoblock__content h3,
    .seoblock__content h4,
    .seoblock__content h5,
    .seoblock__content h6 {
        font-size: 32px;
        line-height: 94%;
        margin-bottom: 16px
    }

    .seoblock__content p {
        font-size: 16px;
        margin-bottom: 8px
    }

    .cardpage__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cardtech {
        margin-bottom: 64px;
        margin-top: 64px
    }

    .cardtech__nav li {
        font-size: 18px
    }

    .cardtech__col {
        border-bottom: 1px solid #eff0f4;
        margin-bottom: 24rem;
        padding-bottom: 24rem;
        width: 100% !important
    }

    .cardtech__col:last-child {
        margin-bottom: 0;
        padding-bottom: 0
    }

    .cardtech__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cardtech__title {
        font-size: 20px
    }

    .cardtech__list-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cardtech__list-row ul {
        width: 100%
    }

    .cardtech__list {
        font-size: 16px
    }

    .cardtech__list li {
        margin-bottom: 16px;
        padding-left: 14px
    }

    .cardtech__list li:last-child {
        margin-bottom: 16px
    }

    .cardtech__list li:before {
        height: 6px;
        top: 6.5px;
        width: 6px
    }

    .cardtech__scheme-left,
    .cardtech__scheme-right {
        display: none
    }

    .cardtech__scheme {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        text-align: center
    }

    .cardtech__scheme-title {
        font-size: 24px;
        line-height: 120%;
        margin-top: 24px
    }

    .cardtech__scheme-size {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 4px
    }

    .cardtech__scheme-download {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        height: 46px;
        justify-content: center;
        width: 100%
    }

    .cardpage__gallery,
    .cardpage__gallery-swiper {
        max-width: 100%
    }

    .cardpage__content {
        min-width: 1px;
        width: 100%
    }

    .page404__txt {
        font-size: 16px;
        margin-bottom: 24px
    }

    .page404__tohome {
        font-size: 16px;
        height: 54px;
        line-height: 19px;
        padding: 20px 40px;
        width: 100%
    }

    .contactspage__top-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contactspage__top-title {
        margin-bottom: 10px
    }

    .contactspage-filials__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contactspage-filials__btn {
        font-size: 16px;
        height: 54px;
        line-height: 19px;
        margin-top: 15px;
        padding: 20px 40px;
        width: 100%
    }

    .contactspage__top-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .contactspage__top-col {
        margin-top: 8rem;
        width: 100%
    }

    .contactspage-contact__subtitle {
        font-size: 14px;
        margin-bottom: 12px
    }

    .contactspage-contact__item p {
        font-size: 14px
    }

    .laminationpage__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .laminationpage__col {
        width: 100%
    }

    .laminationpage__txt {
        font-size: 16px;
        margin-bottom: 40px;
        margin-top: 20px
    }

    .laminationpage__list li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .laminationpage__list li i {
        height: 40px;
        min-width: 40px;
        width: 40px
    }

    .laminationpage__list li i img {
        width: 20px
    }

    .laminationpage__list li p {
        font-size: 16px;
        margin-top: 15px
    }

    .nocompromiss__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .nocompromiss__txt {
        font-size: 14px
    }

    .nocompromiss__col {
        width: 100%
    }

    .nocompromiss-form__heading-bg {
        display: none
    }

    .nocompromiss-form__heading-title {
        color: var(--Black, #161b2c);
        font-size: 40rem;
        max-width: 100%
    }

    .nocompromiss-form__heading {
        height: auto;
        padding-left: 0
    }

    .newspage__col,
    .nocompromiss-form .signme__submit {
        width: 100%
    }

    .partners__row {
        flex-direction: column;
    }

    .partners__header-title {
        margin-bottom: 14px
    }

    .partners__header-txt {
        font-size: 16px;
        line-height: 24px
    }

    .partners-tender__col {
        width: 100%
    }

    .partners-tender-item__ico {
        height: 40px;
        width: 40px
    }

    .partners-tender-item__ico img {
        width: 20px
    }

    .partners-tender-item__txt {
        font-size: 16px
    }

    .partners .signme__row {
        padding-left: 20px
    }

    .partners__nav {
        margin-bottom: 30px
    }

    .partners__aside {
        margin-right: 0;
        width: 100%
    }

    .partners__nav a {
        font-size: 16px
    }

    .partners__nav a i {
        height: 32px;
        margin-right: 8px;
        width: 32px
    }

    .partners__nav a svg {
        width: 18px
    }

    .partners-lab__header i {
        height: 40px;
        margin-right: 12px;
        width: 40px
    }

    .partners-lab__header p,
    .partners-lab__txt {
        font-size: 16px
    }

    .partners-naladka {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .partners-naladka__left {
        margin-bottom: 20px;
        margin-right: 0
    }

    .partners-naladka__right {
        width: 100%
    }

    .partners-naladka__bottom,
    .partners-naladka__list li {
        font-size: 16px
    }

    .partners-service {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .partners-service__bottom {
        font-size: 16px
    }

    .partners-service__right {
        margin-top: 40px;
        width: 100%
    }

    .partners-tcontacts {
        padding-bottom: 200px
    }

    .partners-tcontacts__picture {
        display: block
    }

    .partners-tcontacts__contacts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .partners-tcontacts__contacts a {
        border: none;
        margin-top: 10px
    }

    .partners-partners__subtitle {
        font-size: 16px
    }

    .partners-partners__item {
        font-size: 16px;
        padding-bottom: 17.5px;
        padding-top: 17.5px
    }

    .partners-partners__item span {
        font-size: 16px;
        min-width: 31px;
        width: 31px
    }

    .politic__title {
        font-size: 32px;
        margin-bottom: 24px
    }

    .politic__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .politic__aside {
        margin-bottom: 30px;
        margin-right: 0;
        width: 100%
    }

    .politic__aside-title {
        font-size: 24px;
        margin-bottom: 12px
    }

    .politic__aside-list li {
        margin-bottom: 12px
    }

    .politic__aside-list li a {
        font-size: 16px
    }

    .politic__content h1,
    .politic__content h2,
    .politic__content h3,
    .politic__content h4,
    .politic__content h5 {
        font-size: 26px;
        margin-bottom: 12px
    }

    .politic__content p {
        font-size: 16px;
        margin-bottom: 32px
    }

    .projects-list__col {
        width: 100%
    }

    .projects-list__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 12px
    }

    .projects-list__title {
        font-size: 20px;
        margin-bottom: 8px;
        padding-top: 7px
    }

    .projects-list__txt {
        font-size: 16px;
        margin-bottom: 10px;
        max-height: 1000px
    }

    .projects-list__img {
        height: 50vw;
        margin-top: 20px;
        width: 100%
    }

    .searchpage__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .searchpage__title span {
        margin-top: 20px
    }

    .searchpage-item__title i {
        height: 20px;
        min-width: 20px;
        width: 20px
    }

    .searchpage-item__title i svg {
        height: 10px;
        width: 10px
    }

    .searchpage-item__txt {
        margin-top: 15px
    }

    .sertificates__col {
        width: 100%
    }

    .sertificates-item {
        height: 134vw
    }

    .sertificates-item__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 14px;
        justify-content: center;
        margin-bottom: 8px
    }

    .sertificates-item__btn {
        font-size: 14px;
        height: 44px;
        margin-left: auto;
        margin-right: auto;
        width: 297px
    }

    .sertificates-item__btn i {
        margin-left: 8px
    }

    .sertificates-item__btn svg {
        height: 20px;
        width: 20px
    }

    .singlenews-banner__img {
        bottom: 0;
        right: 0
    }

    .singlenews-banner__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: start
    }

    .blog-item__tags {
        margin-top: 15px
    }

    .singlenews__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .singlenews__content {
        width: 100%
    }

    .singlenews__aside {
        margin-left: 0;
        margin-top: 30px;
        max-width: 10000px;
        width: 100%
    }

    .singlenews__content blockquote {
        font-size: 18px;
        margin-bottom: 16px
    }

    .singlenews__content>p {
        font-size: 16px
    }

    .singlenews__gallery-img {
        height: 36vw
    }

    .singlenews__content>ol,
    .singlenews__content>ul {
        font-size: 16px;
        margin-bottom: 16px;
        padding-left: 20px
    }

    .commblock__txt {
        font-size: 16px
    }

    .commblock__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .commblock__toggle {
        font-size: 16px;
        height: 62px;
        margin-top: 30px;
        width: 100%
    }

    .commblock__toggle i {
        margin-left: 8px
    }

    .commblock__toggle i svg {
        width: 20px
    }

    .commblock__col {
        width: 100%
    }

    .commblock__input input {
        height: 52px
    }

    .commblock__input input,
    .commblock textarea {
        border-radius: 16px;
        font-size: 14px;
        padding-left: 16px
    }

    .commblock__submit {
        border-radius: 58px;
        font-size: 16px;
        height: 62px;
        width: 100%
    }

    .notfoundhh__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .notfoundhh__btn {
        margin-top: 40px;
        position: relative;
        width: 100%;
        z-index: 3
    }

    .notfoundhh__title {
        font-size: 28px
    }

    .lamination-list__item-content {
        font-size: 16px;
        line-height: 140%
    }
}

.cardtech__mobile {
    display: none
}

@media(max-width:991px)and (min-width:576px) {
    .projects-list__col {
        width: 50%;
    }
    .mobnav .header__catalog.open+div {
        display: flex;
        justify-content: space-between;
    }
    .mobnav .profiles-item {
        width: 45%;
        margin-bottom: 10px;
    }
    .partners-tender__col {
        width: 50%
    }

    .sertificates-item {
        height: 62vw
    }

    .sertificates__col,
    .syslines__col {
        width: 50%
    }

    .contacts-item {
        width: calc(50% - 10rem)
    }

    .about__col,
    .projects__col {
        width: 50%
    }

    .contacts__info {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .about__row,
    .contacts__info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .about__row {
        padding-bottom: 220rem
    }
}

@media(max-width:575px) {
    .cardscheme__block {
        padding-bottom: 32px;
        padding-left: 16px;
        padding-right: 16px
    }

    .mobscheme {
        display: block;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        width: 311px
    }

    .mobscheme__pic {
        text-align: center
    }

    .mobscheme__pic img {
        width: 100%
    }

    .mobscheme__item {
        left: 0;
        position: absolute;
        top: 0;
        z-index: 2
    }

    .mobscheme__item:hover {
        z-index: 4
    }

    .mobscheme__item:hover .mobscheme__item-dot {
        background: #0ba3ca
    }

    .mobscheme__item:hover .mobscheme__item-dot span {
        background: #fff
    }

    .mobscheme__item:hover .mobscheme__item-txt {
        opacity: 1;
        pointer-events: auto
    }

    .mobscheme__item_top .mobscheme__item-txt {
        bottom: 40px;
        top: auto
    }

    .mobscheme__item_right .mobscheme__item-txt {
        left: 40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .mobscheme__item_left .mobscheme__item-txt {
        left: auto;
        right: 40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .mobscheme__item-txt {
        background: var(--White, #fff);
        border-radius: 12px;
        -webkit-box-shadow: 0 92px 26px 0 rgba(72, 135, 206, 0), 0 59px 24px 0 rgba(72, 135, 206, .01), 0 33px 20px 0 rgba(72, 135, 206, .02), 0 15px 15px 0 rgba(72, 135, 206, .03), 0 4px 8px 0 rgba(72, 135, 206, .04);
        box-shadow: 0 92px 26px 0 rgba(72, 135, 206, 0), 0 59px 24px 0 rgba(72, 135, 206, .01), 0 33px 20px 0 rgba(72, 135, 206, .02), 0 15px 15px 0 rgba(72, 135, 206, .03), 0 4px 8px 0 rgba(72, 135, 206, .04);
        color: var(--Gray, #494949);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        left: 157%;
        line-height: 140%;
        opacity: 0;
        padding: 12px;
        pointer-events: none;
        position: absolute;
        top: 40px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        width: 182px
    }

    .mobscheme__item-txt span {
        color: #467ebc
    }

    .mobscheme__item-dot {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
        border: 2px solid #0ba3ca;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 24px;
        justify-content: center;
        width: 24px
    }

    .mobscheme__item-dot,
    .mobscheme__item-dot span {
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }

    .mobscheme__item-dot span {
        background: #0ba3ca;
        border-radius: 12px;
        -webkit-box-shadow: 0 4px 2px 0 transparent, 0 3px 2px 0 rgba(0, 0, 0, .02), 0 2px 2px 0 rgba(0, 0, 0, .06), 0 1px 1px 0 rgba(0, 0, 0, .1), 0 0 1px 0 rgba(0, 0, 0, .12);
        box-shadow: 0 4px 2px 0 transparent, 0 3px 2px 0 rgba(0, 0, 0, .02), 0 2px 2px 0 rgba(0, 0, 0, .06), 0 1px 1px 0 rgba(0, 0, 0, .1), 0 0 1px 0 rgba(0, 0, 0, .12);
        height: 12px;
        width: 12px
    }

    .cardtech__mobile {
        display: block
    }

    .cardscheme__block-img {
        display: none
    }

    .sertificatespage .sertificates-item {
        height: 70vh
    }

    .cardtech-accord {
        margin-bottom: 12px
    }

    .cardtech-accord__body {
        display: none
    }

    .cardtech-accord__inner {
        background: var(--White, #fff);
        border-radius: 32px;
        -webkit-box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
        box-shadow: 0 101px 28px 0 transparent, 0 65px 26px 0 transparent, 0 36px 22px 0 rgba(0, 0, 0, .01), 0 16px 16px 0 rgba(0, 0, 0, .01), 0 4px 9px 0 rgba(0, 0, 0, .01);
        margin-top: 8px;
        padding: 24px 16px
    }

    .cardtech-accord__header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: var(--White, #fff);
        border-radius: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 72px;
        justify-content: space-between;
        padding-left: 24px;
        padding-right: 24px;
        width: 100%
    }

    .cardtech-accord__header,
    .cardtech-accord__header i,
    .cardtech-accord__header path {
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }

    .cardtech-accord__header.open p {
        color: #467ebc
    }

    .cardtech-accord__header.open i {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .cardtech-accord__header.open i path {
        stroke: #467ebc
    }

    .cardtech-accord__header.open+div {
        display: block
    }

    .cardtech-accord__header p {
        color: var(--Black, #161b2c);
        font-family: Exo\ 2, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        letter-spacing: .24px;
        line-height: 94%;
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }

    .cardtech__desctop {
        display: none
    }

    .vakanty-modal__close {
        right: 20px;
        top: 20px
    }

    .vakanty-modal {
        max-height: 90vh;
        max-width: 90vw;
        overflow: auto
    }

    .vakanty-modal__form-col {
        width: 100%
    }

    .images-form__list,
    .images-form__list-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .images-form__list-wrap {
        overflow: hidden;
        width: 100%
    }

    .imitem {
        margin-bottom: 10px;
        margin-left: 5px;
        width: calc(100% - 5px)
    }

    .images-form__addmore {
        width: 120rem
    }
}

@media(max-width:374px) {
    .header__top-link {
        font-size: 20rem
    }

    .profiles-item__tags-item {
        padding: 12px 8px
    }

    .profiles-item__tags {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .profiles-item__tags-item p {
        font-size: 12px;
        line-height: 16px
    }
    .heropage_about-buttons {
        flex-direction: column;
    }
    .heropage_about-btn1, .heropage_about-btn2 {
        margin-top: 5px;
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/plafen/assets/css/custom.css?17787671214277*/
.hidden {
    display: none;
}
.i-max{width: 32px; height: 32px;}
@media(max-width: 1300px){
	.contactspage__top .i-max{width: 26px; height: 26px;}
}
@media(max-width: 768px){
	.contactspage__top .i-max{width: 23px; height: 23px;}
	.contactspage__top a:has(img){display: flex;
  align-content: center;
 align-items: center;}
}
.breadcrumbs {
    list-style-type: none;
}
.breadcrumbs a.not_active {
    color: var(--light-gray, #c0c1c5);
    background: none;
    -webkit-text-fill-color: inherit;
    text-decoration: none;
}

.breadcrumbs a.not_active:after {
    content: '';
    display: none;
}
.partners-tender-item__ico img,
.laminationpage__list li i img {
    width: 32rem;
}
.backdrop {
    backdrop-filter: none;
}
.fancybox__dialog {
    width: 100vw!important;
}
.about-img {
    max-height: 377rem;
}
.projects-list__img {
    height: 100%;
}
.singlenews__content > img {
    height: 500rem;
}
.profiles-item__link span {
    text-align: center;
}
.breadcrumbs {
    flex-wrap: wrap;
}
.breadcrumbs li {
    margin-bottom: 10rem;
}

@media(max-width: 1199px) {
    .partners-tender-item {
        height: auto;
    }
}
.manufacture-block__header i img {
    width: 40rem;
}
.signme__col_12 {
    width: 100%;
}
.signme__content_themes {
    padding-bottom: 25rem;
    padding-top: 16rem;
}
.header__ava {
    display: none;
}
.header__search-devider {
    display: none;
}
.signme__text {
    color: var(--Black, #161b2c);
    font-family: Exo\ 2, sans-serif;
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 1%;
    line-height: 94%;
    margin-bottom: 24rem;
    text-align: left;
}
.signme__field_area {
    min-height: 105px;
}
.contacts-map__item-ico img {
    width: 100%;
}
.contacts-map__item-ico img.active {
    display: none;
}
.contacts-map__item.active img.standart {
    display: none;
}
.contacts-map__item.active img.active {
    display: block;
}
.header__search form {
    height: 100%;
}
.profiles-item__title {
    text-decoration: none;
}
.profiles-item__link span {
    white-space: nowrap;
}
@media (max-width: 991px) and (min-width: 576px) {
    .mobnav .header__catalog.open+div {
        display: grid;
        grid-template-columns: repeat(2, 49%);
        row-gap: 15px;
    }
    .mobnav .profiles-item {
        width: 100%;
        max-width: 100%;
    }
    .mobnav__sys-list {
        margin-top: 30px;
    }
}
input[type="checkbox"].error + label::before {
    border-color: #ff0000;
    background-color: #ffebee;
}
input[type="tel"].error {
    border-color: #ff0000;
}
.project-modal__prev.hide,
.project-modal__next.hide {
    display: none;
}

.about__scheme {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
}
.about__scheme img {
    width: auto;
    height: 100%;
    z-index: 1;
}
.video-play {
    position: relative;
}
.video-block img {
    width: 100%;
    border-radius: 24rem;
}
.video-play-btn {
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 75px);
    width: 150px;
    height: 120px;
    background: url("/local/templates/plafen/assets/img/svg/play.svg") no-repeat center, rgba(0,0,0,.4);
    border-radius: 24rem;
    cursor: pointer;
}
.blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-item__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog__slider .swiper-slide {
    height: auto;
}
.newspage_blog .blog-item__content {
    min-height: 105px;
}
@media screen and (max-width: 991px){
    .about__scheme {
        position: relative;
        height: 260px;
        top: 0;
    }
    .about__scheme img {
        height: 100%;
    }
    .projects-main__title {
        font-size: 26px;
    }
    .heropage_about .heropage__block-txt {
        max-width: max-content;
    }
    .heropage_about .heropage__block {
        align-items: center;
    }
    .f-panzoom__viewport {
        width: 100% !important;
        height: 100% !important;
    }
    .fancybox__slide {
        transform: translate3d(0%, 0%, 0px) !important;
    }
}
@media screen and (max-width: 767px){
    .about__scheme {
        height: 500px;
        top: -50rem;
    }
    .about__scheme img {
        height: 80%;
    }
}
/* End */


/* Start:/local/templates/plafen/components/bitrix/form.result.new/feedback/style.css?177452124752*/
.modal__agree label.active:after{
    opacity:1;
}
/* End */
/* /local/templates/plafen/assets/css/app.css?1774521247318096 */
/* /local/templates/plafen/assets/css/custom.css?17787671214277 */
/* /local/templates/plafen/components/bitrix/form.result.new/feedback/style.css?177452124752 */
