@charset "UTF-8";.carousel {
    box-sizing: border-box;
    position: relative
}

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

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

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

.carousel__viewport {
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem;
    position: relative;
    width: var(--carousel-slide-width,60%)
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    display: flex;
    justify-content: center;
    left: 0;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: calc(100% + .5rem);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    cursor: pointer;
    display: block;
    height: 22px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 22px
}

.carousel__dots .carousel__dot:after {
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 50%;
    opacity: .25;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: opacity .15s ease-in-out;
    width: 8px
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    align-items: center;
    background: var(--carousel-button-bg,transparent);
    border: 0;
    border-radius: var(--carousel-button-border-radius,50%);
    box-shadow: var(--carousel-button-shadow,none);
    color: var(--carousel-button-color,currentColor);
    cursor: pointer;
    display: flex;
    height: var(--carousel-button-height,48px);
    justify-content: center;
    padding: 0;
    pointer-events: all;
    transition: opacity .15s ease;
    width: var(--carousel-button-width,48px)
}

.carousel__button.is-next,.carousel__button.is-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width,1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter,none);
    height: var(--carousel-button-svg-height,50%);
    pointer-events: none;
    width: var(--carousel-button-svg-width,50%)
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden!important;
    touch-action: none
}

.fancybox__container {
    -webkit-tap-highlight-color: transparent;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0,0,0,.4));
    bottom: 0;
    box-sizing: border-box;
    color: var(--fancybox-color,#fff);
    direction: ltr;
    display: flex;
    flex-direction: column;
    left: 0;
    margin: 0;
    outline: none;
    overflow: hidden;
    padding: env(safe-area-inset-top,0) env(safe-area-inset-right,0) env(safe-area-inset-bottom,0) env(safe-area-inset-left,0);
    position: fixed;
    right: 0;
    top: 0;
    transform-origin: top left;
    z-index: 1050
}

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

.fancybox__container :focus {
    outline: none
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94))
}

.fancybox__backdrop {
    background: var(--fancybox-bg,rgba(24,24,27,.92));
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.fancybox__carousel {
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
    position: relative;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    cursor: default;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin: 0;
    max-width: 100%;
    outline: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 48px 8px 8px;
    position: relative;
    width: 100%
}

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

.fancybox__content {
    align-self: center;
    background: var(--fancybox-content-bg,#fff);
    color: var(--fancybox-content-color,#374151);
    display: flex;
    flex-direction: column;
    margin: 0 env(safe-area-inset-right,0) 0 env(safe-area-inset-left,0);
    padding: 36px;
    position: relative;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    box-shadow: none;
    outline: thin dotted
}

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

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    color: var(--fancybox-color,#fff);
    top: 100%
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

.carousel__button.is-close {
    position: absolute;
    right: 8px;
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    top: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    z-index: 40
}

.fancybox__content>.carousel__button.is-close {
    color: var(--fancybox-color,#fff);
    position: absolute;
    right: 0;
    top: -40px
}

.fancybox__no-click,.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    color: var(--fancybox-color,currentColor);
    height: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50px
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    -webkit-animation: fancybox-rotate 2s linear infinite;
    animation: fancybox-rotate 2s linear infinite;
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center center;
    width: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke: currentColor;
    -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
    animation: fancybox-dash 1.5s ease-in-out infinite
}

@-webkit-keyframes fancybox-rotate {
    to {
        transform: rotate(1turn)
    }
}

@keyframes fancybox-rotate {
    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    to {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    to {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

.carousel__button.is-close,.carousel__dots,.fancybox__backdrop,.fancybox__caption,.fancybox__nav {
    opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    -webkit-animation: fancybox-fadeIn .15s ease backwards;
    animation: fancybox-fadeIn .15s ease backwards
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav {
    -webkit-animation: fancybox-fadeOut .15s ease both;
    animation: fancybox-fadeOut .15s ease both
}

.fancybox-fadeIn {
    -webkit-animation: fancybox-fadeIn .15s ease both;
    animation: fancybox-fadeIn .15s ease both
}

.fancybox-fadeOut {
    -webkit-animation: fancybox-fadeOut .1s ease both;
    animation: fancybox-fadeOut .1s ease both
}

.fancybox-zoomInUp {
    -webkit-animation: fancybox-zoomInUp .2s ease both;
    animation: fancybox-zoomInUp .2s ease both
}

.fancybox-zoomOutDown {
    -webkit-animation: fancybox-zoomOutDown .15s ease both;
    animation: fancybox-zoomOutDown .15s ease both
}

.fancybox-throwOutUp {
    -webkit-animation: fancybox-throwOutUp .15s ease both;
    animation: fancybox-throwOutUp .15s ease both
}

.fancybox-throwOutDown {
    -webkit-animation: fancybox-throwOutDown .15s ease both;
    animation: fancybox-throwOutDown .15s ease both
}

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

    to {
        opacity: 1
    }
}

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

    to {
        opacity: 1
    }
}

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

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

@-webkit-keyframes fancybox-zoomInUp {
    0% {
        opacity: 0;
        transform: scale(.97) translate3d(0,16px,0)
    }

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

@keyframes fancybox-zoomInUp {
    0% {
        opacity: 0;
        transform: scale(.97) translate3d(0,16px,0)
    }

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

@-webkit-keyframes fancybox-zoomOutDown {
    to {
        opacity: 0;
        transform: scale(.97) translate3d(0,16px,0)
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        opacity: 0;
        transform: scale(.97) translate3d(0,16px,0)
    }
}

@-webkit-keyframes fancybox-throwOutUp {
    to {
        opacity: 0;
        transform: translate3d(0,-30%,0)
    }
}

@keyframes fancybox-throwOutUp {
    to {
        opacity: 0;
        transform: translate3d(0,-30%,0)
    }
}

@-webkit-keyframes fancybox-throwOutDown {
    to {
        opacity: 0;
        transform: translate3d(0,30%,0)
    }
}

@keyframes fancybox-throwOutDown {
    to {
        opacity: 0;
        transform: translate3d(0,30%,0)
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-color: #ccc hsla(0,0%,100%,.1);
    scrollbar-width: thin
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: hsla(0,0%,100%,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.2)
}

.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

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

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

.fancybox__image {
    transform-origin: 0 0;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.has-image .fancybox__content {
    background: transparent;
    min-height: 1px;
    padding: 0
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    height: auto;
    max-width: 100%
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
    height: 100%;
    width: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

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

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    height: 80%;
    width: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    height: 540px;
    max-height: 100%;
    max-width: 100%;
    width: 960px
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    background: rgba(24,24,27,.9);
    color: #fff;
    padding: 0
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

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

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

.fancybox__thumbs {
    flex: 0 0 auto;
    opacity: var(--fancybox-opacity,1);
    padding: 0 3px;
    position: relative
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    -webkit-animation: fancybox-fadeIn .15s ease-in backwards;
    animation: fancybox-fadeIn .15s ease-in backwards
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    align-items: center;
    box-sizing: content-box;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    margin: 0;
    overflow: visible;
    padding: 8px 3px;
    width: var(--fancybox-thumbs-width,96px)
}

.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
    border-color: var(--fancybox-accent-color,rgba(34,213,233,.96));
    border-radius: var(--fancybox-thumbs-border-radius,4px);
    border-style: solid;
    border-width: 5px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .15s ease
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
    opacity: .92
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fancybox__thumb {
    background-color: hsla(0,0%,100%,.1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--fancybox-thumbs-border-radius,4px);
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    position: relative;
    width: 100%
}

.fancybox__toolbar {
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    background: linear-gradient(0deg,transparent 0,rgba(0,0,0,.006) 8.1%,rgba(0,0,0,.021) 15.5%,rgba(0,0,0,.046) 22.5%,rgba(0,0,0,.077) 29%,rgba(0,0,0,.114) 35.3%,rgba(0,0,0,.155) 41.2%,rgba(0,0,0,.198) 47.1%,rgba(0,0,0,.242) 52.9%,rgba(0,0,0,.285) 58.8%,rgba(0,0,0,.326) 64.7%,rgba(0,0,0,.363) 71%,rgba(0,0,0,.394) 77.5%,rgba(0,0,0,.419) 84.5%,rgba(0,0,0,.434) 91.9%,rgba(0,0,0,.44));
    display: flex;
    justify-content: space-between;
    left: 0;
    opacity: var(--fancybox-opacity,1);
    padding: 0;
    position: absolute;
    right: 0;
    text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.4));
    top: 0;
    touch-action: none;
    z-index: 20
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    -webkit-animation: fancybox-fadeIn .15s ease-in backwards;
    animation: fancybox-fadeIn .15s ease-in backwards
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

.fancybox__counter {
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    line-height: var(--carousel-button-height,48px);
    min-width: 72px;
    padding: 0 10px;
    text-align: center
}

.fancybox__progress {
    background: var(--fancybox-accent-color,rgba(34,213,233,.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 30
}

.fancybox__container:-webkit-full-screen::backdrop {
    opacity: 0
}

.fancybox__container:fullscreen::-webkit-backdrop {
    opacity: 0
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:first-child {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
    display: none
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2),.fancybox__container.has-slideshow .fancybox__button--slideshow g:first-child {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

.icon {
    fill: currentColor;
    display: inline-block;
    height: 1em;
    width: 1em
}

.icon-basket {
    font-size: 2.4rem;
    width: .9166666667em
}

.icon-benefits-1 {
    font-size: 8.8rem;
    width: 1em
}

.icon-benefits-2,.icon-benefits-3,.icon-benefits-4,.icon-benefits-5,.icon-benefits-6,.icon-benefits-7,.icon-benefits-8 {
    font-size: 8.8rem;
    width: 1.0113636364em
}

.icon-cards {
    font-size: 1.6rem;
    width: 1em
}

.icon-check {
    font-size: 2.7rem;
    width: 1em
}

.icon-chevron-down {
    font-size: 2.4rem;
    width: 1em
}

.icon-chevron-left {
    font-size: 3.2rem;
    width: 1em
}

.icon-chevron-right {
    font-size: 3rem;
    width: 1em
}

.icon-chevron-up,.icon-close {
    font-size: 2.4rem;
    width: 1em
}

.icon-download {
    font-size: 1.6rem;
    width: 1.0625em
}

.icon-fb {
    font-size: 2.4rem;
    width: 1em
}

.icon-fig-1 {
    font-size: 7.2rem;
    width: 1em
}

.icon-fig-10,.icon-fig-11,.icon-fig-12 {
    font-size: 6.4rem;
    width: 1.015625em
}

.icon-fig-2 {
    font-size: 6.8rem;
    width: 1em
}

.icon-fig-3 {
    font-size: 8.6rem;
    width: 1em
}

.icon-fig-4,.icon-fig-5 {
    font-size: 7.9rem;
    width: 1em
}

.icon-fig-6 {
    font-size: 7.4rem;
    width: 1em
}

.icon-fig-7,.icon-fig-8,.icon-fig-9 {
    font-size: 6.4rem;
    width: 1.015625em
}

.icon-instagram {
    font-size: 2.4rem;
    width: 1em
}

.icon-mail,.icon-map {
    font-size: 4rem;
    width: 1em
}

.icon-mark {
    font-size: 1.6rem;
    width: 1em
}

.icon-pdf {
    font-size: 2.4rem;
    width: 1em
}

.icon-phone {
    font-size: 4rem;
    width: 1em
}

.icon-search {
    font-size: 2.4rem;
    width: 1em
}

.icon-spinner {
    font-size: 2.2rem;
    width: 1em
}

.icon-telegram {
    font-size: 1.6rem;
    width: 1em
}

.icon-time {
    font-size: 4rem;
    width: 1em
}

.icon-twitter {
    font-size: 2.4rem;
    width: 1em
}

.icon-viber {
    font-size: 1.6rem;
    width: 1em
}

.icon-vk,.icon-warning {
    font-size: 2.4rem;
    width: 1em
}

.icon-whatsapp {
    font-size: 1.6rem;
    width: 1em
}

@property --num_end {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false
}

@property --num {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false
}

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

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

:active,:focus,a:active,a:focus {
    outline: none
}

::-moz-placeholder {
    color: #9b9b9b
}

::placeholder {
    color: #9b9b9b
}

aside,footer,header,nav,section {
    display: block
}

body,html {
    min-width: 320px;
    overflow-x: hidden
}

body {
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button,input,textarea {
    font-family: inherit;
    font-size: inherit
}

input::-ms-clear {
    display: none
}

input[type=text]::-ms-clear,input[type=text]::-ms-reveal {
    display: none;
    height: 0;
    width: 0
}

input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    border: 0;
    padding: 0
}

a {
    color: inherit
}

a,a:hover,a:visited {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

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

div {
    display: block
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}

# html{
#    width: 105%;
#    max-width: 105%;
#    overflow-x: hidden;
# }

#  body
#  {
#    width: 100%;
#    max-width: 100%;
#    overflow-x: hidden;
#  }

@media screen and (max-width: 2100px) {
  #hide_4k {
    visibility: hidden;
    display: none;
  }
}

@media screen and (min-width: 2100px) {
  #hide_4k_2 {
    visibility: hidden;
    display: none;
  }
}

@media screen and (max-width: 2100px) {
  #hide_4k_3 {
    visibility: hidden;
    display: none;
  }
}

.hidden {
    display: none!important
}

.flex {
    display: flex
}

.flex,.flex-col {
    flex-direction: column
}

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

.container {
    margin: 0 auto;
    max-width: 1680px;
    padding: 0 calc(var(--gx)/2);
    width: 100%
}

.container--sm {
    max-width: calc(1072px + var(--gx))
}

h1,h2,h3,h4,h5 {
    text-transform: uppercase
}

.h1,h1 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 56px
}

.agreement-page .page-head h1,.h2,h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 44px
}

.h3,h3 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 32px
}

.h4,h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 22px
}

.h5,h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px
}

.h6,.sContent h5,h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px
}

p {
    font-size: var(--bs-body-font-size);
    font-weight: 400;
    line-height: 24px
}

p.big {
    font-size: 25px;
    letter-spacing: -.5px;
    line-height: 32px
}

p.small {
    font-size: 14px;
    line-height: 18px
}

.btn,.card__left-side a,.secion-head__btn {
    align-items: center;
    border: 1px solid;
    box-shadow: none;
    color: #2b2b2b;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: .5px;
    line-height: 15px;
    padding: 12px 24px;
    text-transform: uppercase
}

.btn:after,.card__left-side a:after,.secion-head__btn:after {
    background-image: url(../images/icons/arrowBtn.png);
    background-position: 50%;
    background-repeat: no-repeat;
    content: "";
    height: 16px;
    margin-left: 16px;
    position: relative;
    right: 0;
    transition: .2s ease;
    width: 16px
}

.btn:hover:after,.card__left-side a:hover:after,.secion-head__btn:hover:after {
    right: -5px
}

.btn--colorWhite,.card__left-side a {
    color: #fff
}

.btn--colorWhite:after,.card__left-side a:after {
    background-image: url(../images/icons/arrowBtn_white.png)
}

.btn--colorPrimary {
    color: #16246b
}

.btn--colorPrimary:after {
    background-image: url(../images/icons/arrowBtn_prm.png)
}

.btn--bgWhite {
    background: #fff;
    border-color: #fff
}

.btn--bgPrimary {
    background: #16246b;
    border-color: #16246b
}

.btn-outline-primary,.secion-head__btn {
    border-color: #16246b;
    color: #16246b
}

.btn-outline-primary:hover,.secion-head__btn:hover {
    background: #3044ac;
    border-color: #3044ac;
    color: #fff
}

.active.secion-head__btn,.btn-outline-primary.active,.btn-outline-primary:active,.secion-head__btn:active {
    background: #16246b;
    border-color: #16246b;
    color: #fff
}

.btn--bgBlack,.card__left-side a {
    background: #2b2b2b;
    border-color: #2b2b2b;
    color: #fff
}

.btn--bgBlack:hover,.card__left-side a:hover {
    background: #16246b;
    border-color: #16246b
}

.slider {
    width: 100%
}

.slider__wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    width: 100%
}

.slider__wrap>.container {
    overflow: hidden
}

.slider__arrow {
    align-items: center;
    background: #c5c5c5;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    min-width: 32px;
    transition: .2s ease;
    width: 32px
}

.slider__arrow svg {
    color: #2b2b2b;
    transition: .2s ease
}

.slider__arrow--next {
    transform: rotate(180deg)
}

.slider__arrow:hover {
    background: #16246b
}

.slider__arrow:hover svg {
    color: #fff
}

.slick-dots {
    align-items: center;
    align-self: end;
    display: flex;
    justify-content: center;
    margin-top: 15px
}

.slick-dots li {
    background: rgba(68,68,68,.3);
    cursor: pointer;
    height: 3px;
    margin-right: 4px;
    width: 26px
}

.slick-dots li button {
    display: none
}

.slick-dots li.slick-active {
    background: #16246b
}

.header {
    color: #fff;
    display: flex;
    padding: 20px 0 0;
    position: absolute;
    top: 0;
    transition: top .5s ease;
    width: 100%;
    z-index: 100
}

.header .menu,.header__mobile {
    display: none
}

.header__select {
    align-items: center;
    cursor: pointer;
    display: flex;
    position: relative
}

.header__select:before {
    content: "";
    height: 120%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.header__select .header__selectMenu .header__select {
    display: block;
    position: relative;
    width: 100%
}

.header__select .header__selectMenu .header__select:before {
    content: "";
    height: 100%;
    left: 99%;
    position: absolute;
    top: 0;
    width: 70px
}

.header__select .header__selectMenu .header__select:hover>a {
    opacity: .5
}

.header__select .header__selectMenu .header__select:hover:after {
    opacity: .5;
    transform: rotate(-90deg) rotateX(180deg)
}

.header__select .header__selectMenu .header__select>a {
    padding-right: 20px
}

.header__select .header__selectMenu .header__select:after {
    --s: 0.36s;
    background-size: contain;
    height: 24px;
    position: absolute;
    right: -5px;
    top: .375rem;
    transform: rotate(-90deg);
    transition: all var(--s) ease-in-out;
    width: 24px
}

.header__select .header__selectMenu .header__selectMenu {
    --bd: #444;
    background: #2b2b2b;
    left: calc(100% + 16px);
    top: -8px
}

.header__select .header__selectMenu .header__selectMenu a {
    font-weight: 400;
    text-transform: none
}

.header__select .header__selectMenu .header__selectMenu a:hover {
    color: #a8a8a8
}

.header__select a:hover:after {
    display: none
}

.header__select:hover>.header__selectMenu {
    display: block
}

.header__select:after {
    background-image: url(../img/svg/arrowDropDown.svg);
    content: "";
    height: 16px;
    width: 16px
}

.header__selectMenu {
    background: #444;
    display: none;
    left: 0;
    padding: 8px 16px;
    position: absolute;
    top: 25px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.header__selectMenu ul {
    display: block
}

.header__selectMenu ul li:not(:last-child) a {
    border-bottom: 1px solid var(--bd,#2b2b2b)
}

.header__selectMenu ul li a {
    padding-bottom: 10px;
    padding-top: 10px
}

.header__selectMenu ul li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 5px
}

.header__selectMenu ul li:last-of-type a {
    border: none
}

.header__selectMenu ul li a {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 16px;
    text-transform: uppercase
}

.header__logo {
    margin-right: auto
}

.header__search {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-right: 40px
}

.header__search svg {
    color: #fff;
    transition: .2s ease
}

.header__lang {
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 16px;
    text-transform: uppercase
}

.header__desktop {
    justify-content: space-between
}

.header__desktop,.header__desktop>ul {
    align-items: center;
    display: flex
}

.header__desktop>ul>li {
    display: flex;
    margin-right: 40px
}

.header__desktop>ul>li>a {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 16px;
    padding: 3px 0;
    position: relative;
    text-transform: uppercase
}

.header__desktop>ul>li>a:after {
    background: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: .2s ease;
    width: 0
}

.header__desktop>ul>li>a:hover:after {
    width: 100%
}

.header.open .menu {
    display: block
}

.header.open .trigger>div {
    background: #2b2b2b;
    width: 19.5px
}

.header.open .trigger .trigger__top {
    left: 5.5px;
    top: 5px;
    transform: rotate(45deg);
    transform-origin: top left
}

.header.open .trigger .trigger__middle {
    opacity: 0;
    right: 24px
}

.header.open .trigger .trigger__bottom {
    left: 5.5px;
    top: 18px;
    transform: rotate(-45deg);
    transform-origin: bottom left
}

.trigger {
    cursor: pointer;
    height: 24px;
    position: relative;
    width: 24px
}

.trigger>div {
    background: #fff;
    height: 2px;
    left: 3px;
    position: absolute;
    transition: .1s ease;
    width: 18px
}

.trigger__top {
    top: 6px
}

.trigger__middle {
    top: 11px
}

.trigger__bottom {
    top: 16px
}

.mainSlider {
    height: 704px;
    max-width: 100%;
    position: relative;
    width: 100%
}

.mainSlider__nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -64px
}

.mainSliderPhotos__slide {
    align-items: flex-end;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex!important;
    height: 704px!important;
    max-height: 100%;
    min-height: 474px!important;
    padding-bottom: 120px
}

.mainSliderPhotos__slide>.container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1
}

.mainSliderPhotos__slide>.container h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: auto;
    margin-top: 85px;
    text-transform: unset
}

.mainSliderPhotos__slide .h1,.mainSliderPhotos__slide h1 {
    color: transparent;
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 -1px 1px #fff,1px 0 2px rgba(0,0,0,.88),3px 2px 3px rgba(0,0,0,.27);
    text-transform: uppercase
}

.mainSliderPhotos__slide .h1:before,.mainSliderPhotos__slide h1:before {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(181.02deg,#9b9b9b 2.87%,#e8e8e8 12.78%,#efefef 49.17%,#616161 94.47%);
    -webkit-background-clip: text;
    background-clip: text;
    content: attr(data-text);
    left: 0;
    position: absolute;
    text-shadow: none;
    top: 0
}

.mainSliderPhotos__slide .big {
    color: #fff;
    max-width: 520px
}

.mainSliderPhotos__btn {
    margin-top: 24px;
    transition: .2s ease
}

.mainSliderPhotos__btn:hover {
    background: #16246b;
    color: #fff
}

.mainSliderPhotos__btn:hover:after {
    background-image: url(../images/icons/arrowBtn_white.png)
}

.mainSliderNav {
    flex: 1;
    margin: 0 32px;
    max-width: 100%;
    width: calc(100% - 142px)
}

.mainSliderNav__arrow {
    cursor: pointer
}

.mainSliderNav__arrow,.mainSliderNav__arrow svg {
    height: 40px;
    width: 40px
}

.mainSliderNav__arrow--next svg {
    transform: rotate(180deg)
}

.mainSliderNav__slide {
    border-bottom: 3px solid hsla(0,0%,100%,.3);
    color: hsla(0,0%,100%,.5);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin: 0 10px 17px;
    padding-bottom: 2px;
    position: relative;
    transition: .2s ease
}

.mainSliderNav__slide:after {
    background: #fff;
    bottom: -3px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transition: 3s linear;
    width: 0
}

.mainSliderNav__slide:hover {
    border-color: #fff;
    color: #fff
}

.mainSliderNav__slide.slick-current {
    border-color: #fe2e2e;
    color: #fff
}

@-webkit-keyframes fill {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes fill {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

.mainSliderNav__slide.slick-current:after {
    -webkit-animation: fill 3s;
    animation: fill 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.mainSlider__particles {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.newsSlider {
    background: #f0f0f0;
    opacity: .5;
    padding: 40px 0;
    position: relative;
    top: 50px;
    transition: .5s ease
}

.newsSlider.shown {
    opacity: 1;
    top: 0
}

.newsSlider__slide {
    grid-column-gap: 26px;
    display: grid!important;
    filter: grayscale(1);
    grid-template-areas: "photo date link" "photo descr descr" "photo dots dots";
    grid-template-columns: 50% auto auto;
    grid-template-rows: 73px auto auto;
    transition: .2s ease
}

.newsSlider__photo {
    grid-area: photo;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.newsSlider__date {
    grid-column-gap: 14px;
    color: #444;
    display: grid;
    grid-area: date;
    grid-template-areas: "day month" "day year";
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    grid-template-rows: 28px -webkit-max-content;
    grid-template-rows: 28px max-content
}

.newsSlider__day {
    font-size: 62px;
    grid-area: day;
    line-height: 66px
}

.newsSlider__month {
    align-self: flex-end;
    font-size: 14px;
    grid-area: month;
    line-height: 18px
}

.newsSlider__year {
    font-size: 14px;
    grid-area: year;
    line-height: 18px
}

.newsSlider__link {
    grid-area: link;
    justify-self: flex-end
}

.newsSlider__descr {
    color: #16246b;
    grid-area: descr;
    margin-top: 12px
}

.newsSlider__dots {
    align-items: center;
    align-self: end;
    display: flex;
    grid-area: dots;
    margin-top: 15px
}

.newsSlider__dot {
    background: rgba(68,68,68,.3);
    cursor: pointer;
    height: 3px;
    margin-right: 4px;
    width: 26px
}

.newsSlider__dot--active {
    background: #16246b
}

.landingInfo {
    background: #bcbcbc;
    overflow: hidden;
    padding: 40px 0 150px;
    position: relative
}

.landingInfo__btn {
    display: none
}

.landingInfo__bg {
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0
}

.landingInfo__bg svg {
    min-width: 1924px
}

.landingInfo__bg img {
    display: none
}

.landingInfo__grid {
    position: relative;
    z-index: 1
}

.landingInfo__image {
    grid-area: image
}

.landingInfo__image img:last-child {
    display: none
}

.landingInfo__item {
    background-color: #d4d4d4;
    background-image: url(../images/infoItemBg.svg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid!important;
    grid-template-areas: "title image" "text image";
    grid-template-columns: auto -webkit-max-content;
    grid-template-columns: auto max-content;
    height: 171px;
    padding: 20px 20px 23px;
    position: relative;
    transition: .2s ease
}

.landingInfo__item h4 {
    grid-area: title
}

.landingInfo__item .loadingInfo__text {
    align-self: flex-end;
    grid-area: text;
    max-width: 407px
}

.landingInfo__item svg {
    grid-area: image
}

.landingInfo__textGrid {
    grid-column-gap: 24px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
    position: relative;
    z-index: 1
}

.landingInfo__exp h6 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.landingInfo__textSubGrid {
    grid-column-gap: 43px;
    grid-row-gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.landingInfo__textSubGrid .slick-list {
    overflow: visible!important;
    padding: 0!important
}

.landingInfo__number {
    font-size: 50px;
    font-size: 0!important;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 56px
}

.landingInfo__number:after,.landingInfo__number:before {
    font-size: 50px;
    line-height: 56px
}

.landingInfo__number:after {
    content: "+"
}

.landingInfo__number--noPlus:after {
    content: none
}

.promo {
    padding: 48px 0
}

.promo,.promo__text {
    transition: all .2s ease,top .5s ease
}

.promo__text {
    filter: grayscale(1)
}

.promo--gray {
    background-color: #c5c5c5
}

.promo--white {
    background-color: #fff
}

.promo__grid {
    grid-column-gap: 24px;
    align-items: center;
    display: grid;
    grid-template-columns: 50% 50%
}

.promo__image {
    align-items: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    max-width: 100%;
    width: 100%
}

.promo__image img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.promo h2 {
    color: #16246b;
    margin-bottom: 8px;
    margin-top: 32px
}

.promo__descr {
    margin-bottom: 24px
}

.news {
    background: #bcbcbc;
    padding-top: 48px;
    width: 100%
}

.news__content {
    grid-row-gap: 30px;
    display: grid;
    grid-template-areas: "title all" "cards cards"
}

.news__title {
    grid-area: title
}

.news__all {
    grid-area: all;
    margin: auto 0 auto auto
}

.news__cards {
    display: grid;
    grid-area: cards;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%
}

.news__footer {
    grid-column: 1/4
}

.news__card {
    cursor: pointer;
    display: flex;
    filter: grayscale(1);
    flex-direction: column;
    padding: 18px 8px 52px;
    position: relative;
    transition: .2s ease
}

.news__card:before {
    background-color: #d4d4d4;
    content: "";
    display: block;
    height: calc(100% - 40px);
    left: -1px;
    position: absolute;
    top: 18px;
    width: 1px
}

.news__date {
    color: #fff;
    margin-bottom: 16px;
    transition: .2s ease
}

.news__day {
    font-size: 48px;
    line-height: 66px
}

.news__month {
    margin-top: -8px
}

.news__month,.news__year {
    font-size: 14px;
    line-height: 18px;
    margin-left: 4px
}

.news__text {
    margin-bottom: 14px;
    margin-top: auto;
    transition: .2s ease
}

.news__img-wrap,.news__img-wrap:before {
    display: block;
    position: relative
}

.news__img-wrap:before {
    --ratio: 0.54789;
    content: "";
    height: 0;
    padding-bottom: calc(var(--ratio)*100%)
}

.news__photo {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.partnersSlider {
    background-color: #bcbcbc;
    padding: 48px 0 54px
}

.partnersSlider h2 {
    margin-bottom: 12px
}

.partnersSlider__slide {
    display: block;
    filter: grayscale(1);
    padding: 24px 20px;
    text-align: center;
    transition: .2s ease
}

.partnersSlider__slide img {
    margin: 0 auto 23px;
    max-width: 100%
}

.footer {
    #background: #a8a8a8;
    padding: 56px 0 40px
}

.footer__social {
    --bs-gutter-x: 12px;
    display: flex;
    margin-left: calc(var(--bs-gutter-x)*-1/2);
    margin-right: calc(var(--bs-gutter-x)*-1/2)
}

.footer__social>* {
    margin-left: calc(var(--bs-gutter-x)/2);
    margin-right: calc(var(--bs-gutter-x)/2)
}

.footer__container {
    display: flex
}

.footer__copy {
    display: flex;
    flex-direction: column
}

.footer__copy p {
    margin-bottom: 10px
}

.footer__copy p:last-of-type {
    margin-bottom: 10px;
    margin-top: auto
}

.footer__mobCopy {
    display: none
}

.footer__logo {
    display: block
}

.footer__logo img {
    width: 100%
}

.footer__coalla {
    align-items: center;
    display: flex
}

.footer__coalla img {
    margin-right: 8px
}

.footer__contacts,.footer__links {
    color: #444;
    opacity: .6
}

.footer__contacts p,.footer__links p {
    margin-bottom: 8px
}

.footer__contacts p:last-of-type,.footer__links p:last-of-type {
    margin-bottom: 22px
}

.footer__links {
    margin-left: auto
}

.footer__links a {
    position: relative
}

.footer__links a:after {
    background-color: rgba(68,68,68,.6);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    transition: .2s ease;
    width: 0
}

.footer__links a:hover:after {
    width: 100%
}

.footer__links p:last-child {
    margin-bottom: 0
}

.footer__contacts {
    margin-left: 158px
}

.menu {
    background: #d4d4d4;
    color: #2b2b2b;
    display: block;
    height: 100vh;
    left: 0;
    overflow-y: auto;
    padding: 100px 48px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1
}

.menu>ul>li {
    margin-bottom: 30px
}

.menu>ul>li>a {
    align-items: center;
    color: #2b2b2b;
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    padding-right: 40px;
    position: relative;
    text-transform: uppercase
}

.menu>ul>li>a:after {
    background-image: url(../images/icons/chevronBlack.png);
    content: "";
    height: 24px;
    position: absolute;
    right: 0;
    top: .1875em;
    width: 24px
}

.menu__selectMenu,.menu__subMenu {
    display: none
}

.menu__select>a:after {
    transform: rotate(90deg)
}

.menu__select>a.active:after {
    transform: rotate(90deg) rotateY(180deg)
}

.menu__subSelect>a {
    display: inline-block;
    padding-right: 0;
    position: relative
}

.menu__subSelect>a:after {
    background-image: url(../images/icons/arrowDropDown_small.png);
    content: "";
    display: block;
    height: 16px;
    left: calc(100% + 10px);
    pointer-events: none;
    position: absolute;
    top: .3125em;
    width: 16px
}

.menu__subSelect.active a:after {
    transform: rotateX(180deg)
}

.menu__selectMenu {
    padding: 16px 0 0 24px
}

.menu__selectMenu li {
    font-size: 20px;
    letter-spacing: -.5px;
    line-height: 24px;
    margin-bottom: 24px
}

.menu__subMenu {
    padding: 16px 0 0 24px
}

.menu .menu__selectMenu.active,.menu .menu__subMenu.active {
    display: block
}

.modal {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    left: 0;
    padding: 21px;
    position: fixed;
    top: 0;
    transition: visibility 0s linear .3s,opacity .3s;
    visibility: hidden;
    width: 100%;
    z-index: 100
}

.modal:before {
    background-color: hsla(0,0%,100%,.9);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .2s ease;
    width: 100%
}

.modal.open {
    overflow: auto;
    transition: visibility 0s linear 0s,opacity .3s;
    visibility: visible
}

.modal.open:before {
    opacity: 1
}

.modal.open .modal__body {
    display: flex
}

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

.modal__body,.modal__content {
    align-items: center;
    position: relative
}

.modal__body {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 100%;
    padding: 32px 24px;
    text-align: center;
    width: 400px
}

.modal__body h3 {
    margin-bottom: 8px
}

.modal__body button {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px
}

.modal__close {
    background: url(../images/icons/close_modal.png);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 14px;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px
}

.modal__closeMobile {
    color: #2b2b2b;
    display: none;
    margin-bottom: 16px
}

.modal__closeMobile img {
    transform: rotate(-90deg)
}

.link {
    border-bottom: 1px solid #2b2b2b
}

.page__bg {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: -1
}

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

body.lock,html.lock,html.lock body {
    overflow: hidden
}

.browserupgrade {
    background: #ccc;
    color: #000;
    margin: .2em 0;
    padding: .2em 0
}

body {
    font-feature-settings: "pnum" on,"lnum" on;
    background: #fff;
    color: #46707F;
    display: flex;
    flex-direction: column;
    font-family: Raleway,sans-serif;
    justify-content: space-between;
    min-height: 100vh
}

#overlay {
    background-color: #fff;
    display: block;
    height: 100vh;
    left: 0;
    opacity: .92;
    position: fixed;
    top: 0;
    transition: visibility 0s linear,opacity .2s;
    visibility: visible;
    width: 100vw;
    z-index: -1
}

#overlay.hidden {
    opacity: 0;
    transition: visibility 0s linear .2s,opacity .2s;
    visibility: hidden
}

:root {
    --bs-blue: #16246b;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #db717a;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #16246b;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #db717a;
    --bs-light: #e6e6e6;
    --bs-dark: #2b2b2b;
    --bs-dark-l: #444;
    --bs-primary-rgb: 22,36,107;
    --bs-secondary-rgb: 108,117,125;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 13,202,240;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 219,113,122;
    --bs-light-rgb: 230,230,230;
    --bs-dark-rgb: 43,43,43;
    --bs-dark-l-rgb: 68,68,68;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 68,68,68;
    --bs-body-bg-rgb: 240,240,240;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(181.02deg,#9b9b9b 2.87%,#e8e8e8 12.78%,#efefef 49.17%,#616161 94.47%);
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #444;
    --bs-body-bg: #f0f0f0
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1)
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,.gx-0 {
    --bs-gutter-x: 0
}

.g-0,.gy-0 {
    --bs-gutter-y: 0
}

.g-1,.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,.gy-5 {
    --bs-gutter-y: 3rem
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    font-size: inherit;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: calc(.375rem + 1px);
    padding-top: calc(.375rem + 1px)
}

.col-form-label-lg {
    font-size: 1.249999999rem;
    padding-bottom: calc(.5rem + 1px);
    padding-top: calc(.5rem + 1px)
}

.col-form-label-sm {
    font-size: .8749999993rem;
    padding-bottom: calc(.25rem + 1px);
    padding-top: calc(.25rem + 1px)
}

.form-text {
    color: #6c757d;
    font-size: .875em;
    margin-top: .25rem
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #f0f0f0;
    border: 1px solid #ced4da;
    border-radius: 0;
    color: #444;
    display: block;
    font-size: .9999999992rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    background-color: #f0f0f0;
    border-color: #8b92b5;
    box-shadow: none;
    color: #444;
    outline: 0
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    -webkit-margin-end: .75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width:1px;border-radius: 0;
    color: #444;
    margin: -.375rem -.75rem;
    margin-inline-end:.75rem;padding: .375rem .75rem;
    pointer-events: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    -webkit-margin-end: .75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width:1px;border-radius: 0;
    color: #444;
    margin: -.375rem -.75rem;
    margin-inline-end:.75rem;padding: .375rem .75rem;
    pointer-events: none;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
    color: #444;
    display: block;
    line-height: 1.5;
    margin-bottom: 0;
    padding: .375rem 0;
    width: 100%
}

.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm {
    padding-left: 0;
    padding-right: 0
}

.form-control-sm {
    font-size: .8749999993rem;
    min-height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem
}

.form-control-sm::file-selector-button {
    -webkit-margin-end: .5rem;
    margin: -.25rem -.5rem;
    margin-inline-end:.5rem;padding: .25rem .5rem
}

.form-control-sm::-webkit-file-upload-button {
    -webkit-margin-end: .5rem;
    margin: -.25rem -.5rem;
    margin-inline-end:.5rem;padding: .25rem .5rem
}

.form-control-lg {
    font-size: 1.249999999rem;
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem
}

.form-control-lg::file-selector-button {
    -webkit-margin-end: 1rem;
    margin: -.5rem -1rem;
    margin-inline-end:1rem;padding: .5rem 1rem
}

.form-control-lg::-webkit-file-upload-button {
    -webkit-margin-end: 1rem;
    margin: -.5rem -1rem;
    margin-inline-end:1rem;padding: .5rem 1rem
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
    height: auto;
    padding: .375rem;
    width: 3rem
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control-color::-moz-color-swatch {
    height: 1.5em
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em
}

.custom-select-multiple-js+.select2-container .select2-selection,.form-select,.select2-container--default .select2-selection--single {
    -moz-padding-start: calc(.75rem - 3px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f0f0f0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2316246B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0;
    color: #444;
    display: block;
    font-size: .9999999992rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem 2.25rem .375rem .75rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%
}

.custom-select-multiple-js+.select2-container .select2-selection:focus,.form-select:focus,.select2-container--default .select2-selection--single:focus {
    border-color: #8b92b5;
    box-shadow: 0 0 0 .25rem rgba(22,36,107,.25);
    outline: 0
}

.custom-select-multiple-js+.select2-container [multiple].select2-selection,.custom-select-multiple-js+.select2-container [size].select2-selection:not([size="1"]),.form-select[multiple],.form-select[size]:not([size="1"]),.select2-container--default [multiple].select2-selection--single,.select2-container--default [size].select2-selection--single:not([size="1"]) {
    background-image: none;
    padding-right: .75rem
}

.custom-select-multiple-js+.select2-container .select2-selection:disabled,.form-select:disabled,.select2-container--default .select2-selection--single:disabled {
    background-color: #e9ecef
}

.custom-select-multiple-js+.select2-container .select2-selection:-moz-focusring,.form-select:-moz-focusring,.select2-container--default .select2-selection--single:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #444
}

.form-select-sm {
    font-size: .8749999993rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-top: .25rem
}

.form-select-lg {
    font-size: 1.249999999rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-top: .5rem
}

.form-check {
    display: block;
    margin-bottom: .125rem;
    min-height: 1.5rem;
    padding-left: 1.5em
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    color-adjust: exact;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f0f0f0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    height: 1em;
    margin-top: .25em;
    -webkit-print-color-adjust: exact;
    vertical-align: top;
    width: 1em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #8b92b5;
    box-shadow: none;
    outline: 0
}

.form-check-input:checked {
    background-color: #16246b;
    border-color: #16246b
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23FFF'/%3E%3C/svg%3E")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #16246b;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E");
    border-color: #16246b
}

.form-check-input:disabled {
    filter: none;
    opacity: .5;
    pointer-events: none
}

.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label {
    opacity: .5
}

.form-switch {
    padding-left: 2.5em
}

.form-switch .form-check-input {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");
    background-position: 0;
    margin-left: -2.5em;
    transition: background-position .15s ease-in-out;
    width: 2em
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%238b92b5'/%3E%3C/svg%3E")
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23FFF'/%3E%3C/svg%3E");
    background-position: 100%
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.btn-check {
    clip: rect(0,0,0,0);
    pointer-events: none;
    position: absolute
}

.btn-check:disabled+.btn,.btn-check:disabled+.secion-head__btn,.btn-check[disabled]+.btn,.btn-check[disabled]+.secion-head__btn,.card__left-side .btn-check:disabled+a,.card__left-side .btn-check[disabled]+a {
    filter: none;
    opacity: .65;
    pointer-events: none
}

.form-range {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    height: 1.5rem;
    padding: 0;
    width: 100%
}

.form-range:focus {
    outline: 0
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #f0f0f0,none
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #f0f0f0,none
}

.form-range::-moz-focus-outer {
    border: 0
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #16246b;
    border: 0;
    height: 1rem;
    margin-top: -.25rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 1rem
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b9bdd3
}

.form-range::-webkit-slider-runnable-track {
    background-color: #dee2e6;
    border-color: transparent;
    color: transparent;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-range::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    background-color: #16246b;
    border: 0;
    height: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 1rem
}

.form-range::-moz-range-thumb:active {
    background-color: #b9bdd3
}

.form-range::-moz-range-track {
    background-color: #dee2e6;
    border-color: transparent;
    color: transparent;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-range:disabled {
    pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.form-floating {
    position: relative
}

.custom-select-multiple-js+.select2-container .form-floating>.select2-selection,.form-floating>.form-control,.form-floating>.form-select,.select2-container--default .form-floating>.select2-selection--single {
    height: calc(3.5rem + 2px);
    line-height: 1.25
}

.form-floating>label {
    border: 1px solid transparent;
    height: 100%;
    left: 0;
    padding: 1rem .75rem;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out
}

.form-floating>.form-control {
    padding: 1rem .75rem
}

.form-floating>.form-control::-moz-placeholder {
    color: transparent
}

.form-floating>.form-control::placeholder {
    color: transparent
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.custom-select-multiple-js+.select2-container .form-floating>.select2-selection,.form-floating>.form-select,.select2-container--default .form-floating>.select2-selection--single {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.custom-select-multiple-js+.select2-container .form-floating>.select2-selection~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label,.select2-container--default .form-floating>.select2-selection--single~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.custom-select-multiple-js+.select2-container .input-group>.select2-selection,.input-group>.form-control,.input-group>.form-select,.select2-container--default .input-group>.select2-selection--single {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    width: 1%
}

.custom-select-multiple-js+.select2-container .input-group>.select2-selection:focus,.input-group>.form-control:focus,.input-group>.form-select:focus,.select2-container--default .input-group>.select2-selection--single:focus {
    z-index: 3
}

.card__left-side .input-group a,.input-group .btn,.input-group .card__left-side a,.input-group .secion-head__btn {
    position: relative;
    z-index: 2
}

.card__left-side .input-group a:focus,.input-group .btn:focus,.input-group .card__left-side a:focus,.input-group .secion-head__btn:focus {
    z-index: 3
}

.input-group-text {
    align-items: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    color: #444;
    display: flex;
    font-size: .9999999992rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    text-align: center;
    white-space: nowrap
}

.card__left-side .input-group-lg>a,.custom-select-multiple-js+.select2-container .input-group-lg>.select2-selection,.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.secion-head__btn,.select2-container--default .input-group-lg>.select2-selection--single {
    font-size: 1.249999999rem;
    padding: .5rem 1rem
}

.card__left-side .input-group-sm>a,.custom-select-multiple-js+.select2-container .input-group-sm>.select2-selection,.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.secion-head__btn,.select2-container--default .input-group-sm>.select2-selection--single {
    font-size: .8749999993rem;
    padding: .25rem .5rem
}

.custom-select-multiple-js+.select2-container .input-group-lg>.select2-selection,.custom-select-multiple-js+.select2-container .input-group-sm>.select2-selection,.input-group-lg>.form-select,.input-group-sm>.form-select,.select2-container--default .input-group-lg>.select2-selection--single,.select2-container--default .input-group-sm>.select2-selection--single {
    padding-right: 3rem
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px
}

.valid-feedback {
    color: #198754;
    display: none;
    font-size: .875em;
    margin-top: .25rem;
    width: 100%
}

.valid-tooltip {
    background-color: rgba(25,135,84,.9);
    color: #fff;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,.was-validated .form-control:valid {
    border-color: #198754
}

.form-control.is-valid:focus,.was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.custom-select-multiple-js+.select2-container .is-valid.select2-selection,.custom-select-multiple-js+.select2-container .was-validated .select2-selection:valid,.form-select.is-valid,.select2-container--default .is-valid.select2-selection--single,.select2-container--default .was-validated .select2-selection--single:valid,.was-validated .custom-select-multiple-js+.select2-container .select2-selection:valid,.was-validated .form-select:valid,.was-validated .select2-container--default .select2-selection--single:valid {
    border-color: #198754
}

.custom-select-multiple-js+.select2-container .is-valid.select2-selection:focus,.custom-select-multiple-js+.select2-container .was-validated .select2-selection:valid:focus,.form-select.is-valid:focus,.select2-container--default .is-valid.select2-selection--single:focus,.select2-container--default .was-validated .select2-selection--single:valid:focus,.was-validated .custom-select-multiple-js+.select2-container .select2-selection:valid:focus,.was-validated .form-select:valid:focus,.was-validated .select2-container--default .select2-selection--single:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.form-check-input.is-valid,.was-validated .form-check-input:valid {
    border-color: #198754
}

.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked {
    background-color: #198754
}

.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label {
    color: #198754
}

.form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.custom-select-multiple-js+.select2-container .input-group .is-valid.select2-selection,.custom-select-multiple-js+.select2-container .was-validated .input-group .select2-selection:valid,.input-group .custom-select-multiple-js+.select2-container .is-valid.select2-selection,.input-group .form-control.is-valid,.input-group .form-select.is-valid,.input-group .select2-container--default .is-valid.select2-selection--single,.select2-container--default .input-group .is-valid.select2-selection--single,.select2-container--default .was-validated .input-group .select2-selection--single:valid,.was-validated .input-group .custom-select-multiple-js+.select2-container .select2-selection:valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid,.was-validated .input-group .select2-container--default .select2-selection--single:valid {
    z-index: 1
}

.custom-select-multiple-js+.select2-container .input-group .is-valid.select2-selection:focus,.custom-select-multiple-js+.select2-container .was-validated .input-group .select2-selection:valid:focus,.input-group .custom-select-multiple-js+.select2-container .is-valid.select2-selection:focus,.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.input-group .select2-container--default .is-valid.select2-selection--single:focus,.select2-container--default .input-group .is-valid.select2-selection--single:focus,.select2-container--default .was-validated .input-group .select2-selection--single:valid:focus,.was-validated .input-group .custom-select-multiple-js+.select2-container .select2-selection:valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus,.was-validated .input-group .select2-container--default .select2-selection--single:valid:focus {
    z-index: 3
}

.invalid-feedback {
    color: #db717a;
    display: none;
    font-size: .875em;
    margin-top: .25rem;
    width: 100%
}

.invalid-tooltip {
    background-color: rgba(219,113,122,.9);
    color: #000;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,.was-validated .form-control:invalid {
    border-color: #db717a
}

.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus {
    border-color: #db717a;
    box-shadow: 0 0 0 .25rem rgba(219,113,122,.25)
}

.custom-select-multiple-js+.select2-container .is-invalid.select2-selection,.custom-select-multiple-js+.select2-container .was-validated .select2-selection:invalid,.form-select.is-invalid,.select2-container--default .is-invalid.select2-selection--single,.select2-container--default .was-validated .select2-selection--single:invalid,.was-validated .custom-select-multiple-js+.select2-container .select2-selection:invalid,.was-validated .form-select:invalid,.was-validated .select2-container--default .select2-selection--single:invalid {
    border-color: #db717a
}

.custom-select-multiple-js+.select2-container .is-invalid.select2-selection:focus,.custom-select-multiple-js+.select2-container .was-validated .select2-selection:invalid:focus,.form-select.is-invalid:focus,.select2-container--default .is-invalid.select2-selection--single:focus,.select2-container--default .was-validated .select2-selection--single:invalid:focus,.was-validated .custom-select-multiple-js+.select2-container .select2-selection:invalid:focus,.was-validated .form-select:invalid:focus,.was-validated .select2-container--default .select2-selection--single:invalid:focus {
    border-color: #db717a;
    box-shadow: 0 0 0 .25rem rgba(219,113,122,.25)
}

.form-check-input.is-invalid,.was-validated .form-check-input:invalid {
    border-color: #db717a
}

.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked {
    background-color: #db717a
}

.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(219,113,122,.25)
}

.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label {
    color: #db717a
}

.form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.custom-select-multiple-js+.select2-container .input-group .is-invalid.select2-selection,.custom-select-multiple-js+.select2-container .was-validated .input-group .select2-selection:invalid,.input-group .custom-select-multiple-js+.select2-container .is-invalid.select2-selection,.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.input-group .select2-container--default .is-invalid.select2-selection--single,.select2-container--default .input-group .is-invalid.select2-selection--single,.select2-container--default .was-validated .input-group .select2-selection--single:invalid,.was-validated .input-group .custom-select-multiple-js+.select2-container .select2-selection:invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid,.was-validated .input-group .select2-container--default .select2-selection--single:invalid {
    z-index: 2
}

.custom-select-multiple-js+.select2-container .input-group .is-invalid.select2-selection:focus,.custom-select-multiple-js+.select2-container .was-validated .input-group .select2-selection:invalid:focus,.input-group .custom-select-multiple-js+.select2-container .is-invalid.select2-selection:focus,.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.input-group .select2-container--default .is-invalid.select2-selection--single:focus,.select2-container--default .input-group .is-invalid.select2-selection--single:focus,.select2-container--default .was-validated .input-group .select2-selection--single:invalid:focus,.was-validated .input-group .custom-select-multiple-js+.select2-container .select2-selection:invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus,.was-validated .input-group .select2-container--default .select2-selection--single:invalid:focus {
    z-index: 3
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: .7777777772rem;
    list-style: none;
    margin-bottom: 0;
    padding: .4444444444rem 0
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item:before {
    color: rgba(43,43,43,.5);
    content: var(--bs-breadcrumb-divider,"/");
    float: left;
    padding-right: .5rem
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    list-style: none;
    padding-left: 0
}

.page-link {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #16246b;
    display: block;
    position: relative;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.page-link:hover {
    border-color: #dee2e6;
    z-index: 2
}

.page-link:focus,.page-link:hover {
    background-color: #e9ecef;
    color: #121d56
}

.page-link:focus {
    box-shadow: none;
    outline: 0;
    z-index: 3
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    background-color: #16246b;
    border-color: #16246b;
    color: #fff;
    z-index: 3
}

.page-item.disabled .page-link {
    background-color: #fff;
    border-color: #dee2e6;
    color: #6c757d;
    pointer-events: none
}

.page-link {
    padding: .375rem .75rem
}

.pagination-lg .page-link {
    font-size: 1.249999999rem;
    padding: .75rem 1.5rem
}

.pagination-sm .page-link {
    font-size: .8749999993rem;
    padding: .25rem .5rem
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.link-primary {
    color: #16246b
}

.link-primary:focus,.link-primary:hover {
    color: #121d56
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,.link-info:hover {
    color: #3dd5f3
}

.link-warning {
    color: #ffc107
}

.link-warning:focus,.link-warning:hover {
    color: #ffcd39
}

.link-danger {
    color: #db717a
}

.link-danger:focus,.link-danger:hover {
    color: #e28d95
}

.link-light {
    color: #e6e6e6
}

.link-light:focus,.link-light:hover {
    color: #ebebeb
}

.link-dark {
    color: #2b2b2b
}

.link-dark:focus,.link-dark:hover {
    color: #222
}

.link-dark-l {
    color: #444
}

.link-dark-l:focus,.link-dark-l:hover {
    color: #363636
}

.ratio {
    position: relative;
    width: 100%
}

.ratio:before {
    content: "";
    display: block;
    padding-top: var(--bs-aspect-ratio)
}

.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%
}

.fixed-top {
    top: 0
}

.fixed-bottom,.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    bottom: 0
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

.hstack {
    align-items: center;
    flex-direction: row
}

.hstack,.vstack {
    align-self: stretch;
    display: flex
}

.vstack {
    flex: 1 1 auto;
    flex-direction: column
}

.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within) {
    clip: rect(0,0,0,0)!important;
    border: 0!important;
    height: 1px!important;
    margin: -1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    white-space: nowrap!important;
    width: 1px!important
}

.stretched-link:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.vr {
    align-self: stretch;
    background-color: currentColor;
    display: inline-block;
    min-height: 1em;
    opacity: .25;
    width: 1px
}

.align-baseline {
    vertical-align: baseline!important
}

.align-top {
    vertical-align: top!important
}

.align-middle {
    vertical-align: middle!important
}

.align-bottom {
    vertical-align: bottom!important
}

.align-text-bottom {
    vertical-align: text-bottom!important
}

.align-text-top {
    vertical-align: text-top!important
}

.float-start {
    float: left!important
}

.float-end {
    float: right!important
}

.float-none {
    float: none!important
}

.opacity-0 {
    opacity: 0!important
}

.overflow-auto {
    overflow: auto!important
}

.overflow-hidden {
    overflow: hidden!important
}

.overflow-visible {
    overflow: visible!important
}

.overflow-scroll {
    overflow: scroll!important
}

.d-inline {
    display: inline!important
}

.d-inline-block {
    display: inline-block!important
}

.d-block {
    display: block!important
}

.d-grid {
    display: grid!important
}

.d-table {
    display: table!important
}

.d-table-row {
    display: table-row!important
}

.d-table-cell {
    display: table-cell!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

.d-none {
    display: none!important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important
}

.shadow-none {
    box-shadow: none!important
}

.position-static {
    position: static!important
}

.position-relative {
    position: relative!important
}

.position-absolute {
    position: absolute!important
}

.position-fixed {
    position: fixed!important
}

.position-sticky {
    position: -webkit-sticky!important;
    position: sticky!important
}

.top-0 {
    top: 0!important
}

.top-50 {
    top: 50%!important
}

.top-100 {
    top: 100%!important
}

.bottom-0 {
    bottom: 0!important
}

.bottom-50 {
    bottom: 50%!important
}

.bottom-100 {
    bottom: 100%!important
}

.start-0 {
    left: 0!important
}

.start-50 {
    left: 50%!important
}

.start-100 {
    left: 100%!important
}

.end-0 {
    right: 0!important
}

.end-50 {
    right: 50%!important
}

.end-100 {
    right: 100%!important
}

.translate-middle {
    transform: translate(-50%,-50%)!important
}

.translate-middle-x {
    transform: translateX(-50%)!important
}

.translate-middle-y {
    transform: translateY(-50%)!important
}

.border {
    border: 1px solid #dee2e6!important
}

.border-0 {
    border: 0!important
}

.border-top {
    border-top: 1px solid #dee2e6!important
}

.border-top-0 {
    border-top: 0!important
}

.border-end {
    border-right: 1px solid #dee2e6!important
}

.border-end-0 {
    border-right: 0!important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6!important
}

.border-bottom-0 {
    border-bottom: 0!important
}

.border-start {
    border-left: 1px solid #dee2e6!important
}

.border-start-0 {
    border-left: 0!important
}

.border-primary {
    border-color: #16246b!important
}

.border-secondary {
    border-color: #6c757d!important
}

.border-success {
    border-color: #198754!important
}

.border-info {
    border-color: #0dcaf0!important
}

.border-warning {
    border-color: #ffc107!important
}

.border-danger {
    border-color: #db717a!important
}

.border-light {
    border-color: #e6e6e6!important
}

.border-dark {
    border-color: #2b2b2b!important
}

.border-dark-l {
    border-color: #444!important
}

.border-white {
    border-color: #fff!important
}

.border-1 {
    border-width: 1px!important
}

.border-2 {
    border-width: 2px!important
}

.border-3 {
    border-width: 3px!important
}

.border-4 {
    border-width: 4px!important
}

.border-5 {
    border-width: 5px!important
}

.w-25 {
    width: 25%!important
}

.w-50 {
    width: 50%!important
}

.w-75 {
    width: 75%!important
}

.w-100 {
    width: 100%!important
}

.w-auto {
    width: auto!important
}

.mw-100 {
    max-width: 100%!important
}

.vw-100 {
    width: 100vw!important
}

.min-vw-100 {
    min-width: 100vw!important
}

.h-25 {
    height: 25%!important
}

.h-50 {
    height: 50%!important
}

.h-75 {
    height: 75%!important
}

.h-100 {
    height: 100%!important
}

.h-auto {
    height: auto!important
}

.mh-100 {
    max-height: 100%!important
}

.vh-100 {
    height: 100vh!important
}

.min-vh-100 {
    min-height: 100vh!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.flex-row-reverse {
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    flex-direction: column-reverse!important
}

.flex-grow-0 {
    flex-grow: 0!important
}

.flex-grow-1 {
    flex-grow: 1!important
}

.flex-shrink-0 {
    flex-shrink: 0!important
}

.flex-shrink-1 {
    flex-shrink: 1!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.gap-0 {
    gap: 0!important
}

.gap-1 {
    gap: .25rem!important
}

.gap-2 {
    gap: .5rem!important
}

.gap-3 {
    gap: 1rem!important
}

.gap-4 {
    gap: 1.5rem!important
}

.gap-5 {
    gap: 3rem!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

.justify-content-center {
    justify-content: center!important
}

.justify-content-between {
    justify-content: space-between!important
}

.justify-content-around {
    justify-content: space-around!important
}

.justify-content-evenly {
    justify-content: space-evenly!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-end {
    align-items: flex-end!important
}

.align-items-center {
    align-items: center!important
}

.align-items-baseline {
    align-items: baseline!important
}

.align-items-stretch {
    align-items: stretch!important
}

.align-content-start {
    align-content: flex-start!important
}

.align-content-end {
    align-content: flex-end!important
}

.align-content-center {
    align-content: center!important
}

.align-content-between {
    align-content: space-between!important
}

.align-content-around {
    align-content: space-around!important
}

.align-content-stretch {
    align-content: stretch!important
}

.align-self-auto {
    align-self: auto!important
}

.align-self-start {
    align-self: flex-start!important
}

.align-self-end {
    align-self: flex-end!important
}

.align-self-center {
    align-self: center!important
}

.align-self-baseline {
    align-self: baseline!important
}

.align-self-stretch {
    align-self: stretch!important
}

.order-first {
    order: -1!important
}

.order-0 {
    order: 0!important
}

.order-1 {
    order: 1!important
}

.order-2 {
    order: 2!important
}

.order-3 {
    order: 3!important
}

.order-4 {
    order: 4!important
}

.order-5 {
    order: 5!important
}

.order-last {
    order: 6!important
}

.m-0 {
    margin: 0!important
}

.m-1 {
    margin: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.m-5 {
    margin: 3rem!important
}

.m-auto {
    margin: auto!important
}

.mx-0 {
    margin-left: 0!important;
    margin-right: 0!important
}

.mx-1 {
    margin-left: .25rem!important;
    margin-right: .25rem!important
}

.mx-2 {
    margin-left: .5rem!important;
    margin-right: .5rem!important
}

.mx-3 {
    margin-left: 1rem!important;
    margin-right: 1rem!important
}

.mx-4 {
    margin-left: 1.5rem!important;
    margin-right: 1.5rem!important
}

.mx-5 {
    margin-left: 3rem!important;
    margin-right: 3rem!important
}

.mx-auto {
    margin-left: auto!important;
    margin-right: auto!important
}

.my-0 {
    margin-bottom: 0!important;
    margin-top: 0!important
}

.my-1 {
    margin-bottom: .25rem!important;
    margin-top: .25rem!important
}

.my-2 {
    margin-bottom: .5rem!important;
    margin-top: .5rem!important
}

.my-3 {
    margin-bottom: 1rem!important;
    margin-top: 1rem!important
}

.my-4 {
    margin-bottom: 1.5rem!important;
    margin-top: 1.5rem!important
}

.my-5 {
    margin-bottom: 3rem!important;
    margin-top: 3rem!important
}

.my-auto {
    margin-bottom: auto!important;
    margin-top: auto!important
}

.mt-0 {
    margin-top: 0!important
}

.mt-1 {
    margin-top: .25rem!important
}

.mt-2 {
    margin-top: .5rem!important
}

.mt-3 {
    margin-top: 1rem!important
}

.mt-4 {
    margin-top: 1.5rem!important
}

.mt-5 {
    margin-top: 3rem!important
}

.mt-auto {
    margin-top: auto!important
}

.me-0 {
    margin-right: 0!important
}

.me-1 {
    margin-right: .25rem!important
}

.me-2 {
    margin-right: .5rem!important
}

.me-3 {
    margin-right: 1rem!important
}

.me-4 {
    margin-right: 1.5rem!important
}

.me-5 {
    margin-right: 3rem!important
}

.me-auto {
    margin-right: auto!important
}

.mb-0 {
    margin-bottom: 0!important
}

.mb-1 {
    margin-bottom: .25rem!important
}

.mb-2 {
    margin-bottom: .5rem!important
}

.mb-3 {
    margin-bottom: 1rem!important
}

.mb-4 {
    margin-bottom: 1.5rem!important
}

.mb-5 {
    margin-bottom: 3rem!important
}

.mb-auto {
    margin-bottom: auto!important
}

.ms-0 {
    margin-left: 0!important
}

.ms-1 {
    margin-left: .25rem!important
}

.ms-2 {
    margin-left: .5rem!important
}

.ms-3 {
    margin-left: 1rem!important
}

.ms-4 {
    margin-left: 1.5rem!important
}

.ms-5 {
    margin-left: 3rem!important
}

.ms-auto {
    margin-left: auto!important
}

.p-0 {
    padding: 0!important
}

.p-1 {
    padding: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.p-5 {
    padding: 3rem!important
}

.px-0 {
    padding-left: 0!important;
    padding-right: 0!important
}

.px-1 {
    padding-left: .25rem!important;
    padding-right: .25rem!important
}

.px-2 {
    padding-left: .5rem!important;
    padding-right: .5rem!important
}

.px-3 {
    padding-left: 1rem!important;
    padding-right: 1rem!important
}

.px-4 {
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important
}

.px-5 {
    padding-left: 3rem!important;
    padding-right: 3rem!important
}

.py-0 {
    padding-bottom: 0!important;
    padding-top: 0!important
}

.py-1 {
    padding-bottom: .25rem!important;
    padding-top: .25rem!important
}

.py-2 {
    padding-bottom: .5rem!important;
    padding-top: .5rem!important
}

.py-3 {
    padding-bottom: 1rem!important;
    padding-top: 1rem!important
}

.py-4 {
    padding-bottom: 1.5rem!important;
    padding-top: 1.5rem!important
}

.py-5 {
    padding-bottom: 3rem!important;
    padding-top: 3rem!important
}

.pt-0 {
    padding-top: 0!important
}

.pt-1 {
    padding-top: .25rem!important
}

.pt-2 {
    padding-top: .5rem!important
}

.pt-3 {
    padding-top: 1rem!important
}

.pt-4 {
    padding-top: 1.5rem!important
}

.pt-5 {
    padding-top: 3rem!important
}

.pe-0 {
    padding-right: 0!important
}

.pe-1 {
    padding-right: .25rem!important
}

.pe-2 {
    padding-right: .5rem!important
}

.pe-3 {
    padding-right: 1rem!important
}

.pe-4 {
    padding-right: 1.5rem!important
}

.pe-5 {
    padding-right: 3rem!important
}

.pb-0 {
    padding-bottom: 0!important
}

.pb-1 {
    padding-bottom: .25rem!important
}

.pb-2 {
    padding-bottom: .5rem!important
}

.pb-3 {
    padding-bottom: 1rem!important
}

.pb-4 {
    padding-bottom: 1.5rem!important
}

.pb-5 {
    padding-bottom: 3rem!important
}

.ps-0 {
    padding-left: 0!important
}

.ps-1 {
    padding-left: .25rem!important
}

.ps-2 {
    padding-left: .5rem!important
}

.ps-3 {
    padding-left: 1rem!important
}

.ps-4 {
    padding-left: 1.5rem!important
}

.ps-5 {
    padding-left: 3rem!important
}

.font-monospace {
    font-family: var(--bs-font-monospace)!important
}

.fs-1 {
    font-size: calc(1.40278rem + 2.0625vw)!important
}

.fs-2 {
    font-size: calc(1.31389rem + .8625vw)!important
}

.fs-3 {
    font-size: calc(1.26389rem + .1875vw)!important
}

.fs-4 {
    font-size: 1.1111111102rem!important
}

.fs-5,.fs-6 {
    font-size: .9999999992rem!important
}

.fst-italic {
    font-style: italic!important
}

.fst-normal {
    font-style: normal!important
}

.fw-light {
    font-weight: 300!important
}

.fw-lighter {
    font-weight: lighter!important
}

.fw-normal {
    font-weight: 400!important
}

.fw-bold {
    font-weight: 700!important
}

.fw-bolder {
    font-weight: bolder!important
}

.lh-1 {
    line-height: 1!important
}

.lh-sm {
    line-height: 1.25!important
}

.lh-base {
    line-height: 1.5!important
}

.lh-lg {
    line-height: 2!important
}

.text-start {
    text-align: left!important
}

.text-end {
    text-align: right!important
}

.text-center {
    text-align: center!important
}

.text-decoration-none {
    text-decoration: none!important
}

.text-decoration-underline {
    text-decoration: underline!important
}

.text-decoration-line-through {
    text-decoration: line-through!important
}

.text-lowercase {
    text-transform: lowercase!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.text-capitalize {
    text-transform: capitalize!important
}

.text-wrap {
    white-space: normal!important
}

.text-nowrap {
    white-space: nowrap!important
}

.text-break {
    word-wrap: break-word!important;
    word-break: break-word!important
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important
}

.text-dark-l {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-l-rgb),var(--bs-text-opacity))!important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d!important
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0,0,0,.5)!important
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: hsla(0,0%,100%,.5)!important
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit!important
}

.text-opacity-25 {
    --bs-text-opacity: 0.25
}

.text-opacity-50 {
    --bs-text-opacity: 0.5
}

.text-opacity-75 {
    --bs-text-opacity: 0.75
}

.text-opacity-100 {
    --bs-text-opacity: 1
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important
}

.bg-dark-l {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-l-rgb),var(--bs-bg-opacity))!important
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent!important
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75
}

.bg-opacity-100 {
    --bs-bg-opacity: 1
}

.bg-gradient {
    background-image: var(--bs-gradient)!important
}

.user-select-all {
    -webkit-user-select: all!important;
    -moz-user-select: all!important;
    user-select: all!important
}

.user-select-auto {
    -webkit-user-select: auto!important;
    -moz-user-select: auto!important;
    user-select: auto!important
}

.user-select-none {
    -webkit-user-select: none!important;
    -moz-user-select: none!important;
    user-select: none!important
}

.pe-none {
    pointer-events: none!important
}

.pe-auto {
    pointer-events: auto!important
}

.rounded {
    border-radius: .25rem!important
}

.rounded-0 {
    border-radius: 0!important
}

.rounded-1 {
    border-radius: .2rem!important
}

.rounded-2 {
    border-radius: .25rem!important
}

.rounded-3 {
    border-radius: .3rem!important
}

.rounded-circle {
    border-radius: 50%!important
}

.rounded-pill {
    border-radius: 50rem!important
}

.rounded-top {
    border-top-left-radius: .25rem!important
}

.rounded-end,.rounded-top {
    border-top-right-radius: .25rem!important
}

.rounded-bottom,.rounded-end {
    border-bottom-right-radius: .25rem!important
}

.rounded-bottom,.rounded-start {
    border-bottom-left-radius: .25rem!important
}

.rounded-start {
    border-top-left-radius: .25rem!important
}

.visible {
    visibility: visible!important
}

.invisible {
    visibility: hidden!important
}

.breadcrumb-wrap {
    background: #f0f0f0;
    border-bottom: 1px solid #d4d4d4
}

.breadcrumb {
    flex-wrap: nowrap
}

.breadcrumb-item {
    display: flex;
    white-space: nowrap;
    width: auto
}

.breadcrumb .active a {
    pointer-events: none
}

:root {
    --animate-delay: 1.2s;
    --bs-body-font-size: 14px;
    --sPT: 2.2222222222rem;
    --sPB: 2.2222222222rem;
    --sTPB: 1.1111111111rem;
    --gx: 32px;
    --swiperArrowSize: 2.2222222222rem;
    --swiperArrowPosition: 0;
    --swiperBorderColorDef: var(--bs-primary);
    --swiperColorDef: var(--bs-primary);
    --swiperBgDef: #fff;
    --swiperBorderColorDefHover: var(--bs-primary);
    --swiperColorDefHover: #fff;
    --swiperBgDefHover: var(--bs-primary);
    --fancybox-bg: #fff;
    --check: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 8.085 2.415 6l-.71.705L4.5 9.5l6-6-.705-.705L4.5 8.085Z' fill='%232B2B2B'/%3E%3C/svg%3E");
    --list-style: url("data:image/svg+xml;charset=utf-8,%3Csvg width='25' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.922 23.25c6.213 0 11.25-5.037 11.25-11.25S19.135.75 12.922.75 1.672 5.787 1.672 12s5.037 11.25 11.25 11.25Zm-1.953-8.225 8.202-8.173a1.003 1.003 0 0 1 1.704.707.996.996 0 0 1-.288.705l-8.91 8.879a1.003 1.003 0 0 1-1.417 0l-3.51-3.498a.997.997 0 0 1 .712-1.692c.263-.002.516.098.705.28l2.802 2.792Z' fill='%2316246B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(.922)' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E_2523a)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.922 23.25c6.213 0 11.25-5.037 11.25-11.25S19.135.75 12.922.75 1.672 5.787 1.672 12s5.037 11.25 11.25 11.25Zm-1.953-8.225 8.202-8.173a1.003 1.003 0 0 1 1.704.707.996.996 0 0 1-.288.705l-8.91 8.879a1.003 1.003 0 0 1-1.417 0l-3.51-3.498a.997.997 0 0 1 .712-1.692c.263-.002.516.098.705.28l2.802 2.792Z' fill='%2316246B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(.922)' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    --litepicker-is-start-color-bg: #16246b;
    --litepicker-is-end-color-bg: #16246b;
    --litepicker-is-in-range-color: #16246b
}

.pixel-perfect {
    background-position: center 0;
    display: block;
    height: 100%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000
}

body,html {
    font-size: var(--bs-body-font-size)
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(33,36,41,0)
}

body.fancybox-active,body.fixed {
    margin-right: var(--spacing-end)
}

body.fancybox-active .header,body.fixed .header {
    padding-right: var(--spacing-end)
}

body.loaded_hiding {
    --s: 0.36s;
    opacity: 0;
    pointer-events: none;
    transition: all var(--s) ease-in-out
}

body.loaded_hiding:before {
    display: none
}

body.loaded {
    opacity: 1;
    pointer-events: visible
}

body:before {
    --s: 0.36s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(68,68,68,.8);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all var(--s) ease-in-out;
    width: 100%;
    z-index: -1
}

body.fancybox-active,body.fixed {
    overflow: hidden
}

body.fixed {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999
}

body.fixed:before {
    opacity: .76;
    z-index: 999
}

.main-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%
}

.section {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: var(--sPB);
    padding-top: var(--sPT)
}

.section-title {
    margin-bottom: var(--sTPB)
}

.section-title h2 {
    color: #3f3f3f
}

.mono {
    font-family: var(--bs-font-monospace)
}

.small {
    font-size: .7777777778rem
}

.tdn {
    text-decoration: none!important
}

.ttu {
    text-transform: uppercase
}

.tdu {
    text-decoration: underline
}

.tdu:hover {
    text-decoration: none
}

.fw-300 {
    font-weight: 300
}

.fw-400 {
    font-weight: 400
}

.fw-900 {
    font-weight: 900
}

.fw-500 {
    font-weight: 500
}

.fw-600 {
    font-weight: 600
}

.fw-100 {
    font-weight: 100
}

.row--sm {
    --bg-gutter-x: 1.1111111111rem
}

.slick-slide img {
    display: inline
}

.image-source-link {
    color: #98c3d1
}

.slick-slide {
    outline: 0!important
}

.strong {
    font-weight: 700
}

ul {
    padding-left: 0
}

.res-i,picture img {
    height: auto;
    max-width: 100%
}

.img-bg {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

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

.bgs {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.table {
    display: table
}

.tr {
    display: table-row
}

.td {
    display: table-cell
}

.tabs__btn-accordion {
    width: 100%
}

.tabs__btn:hover {
    cursor: pointer
}

.tabs__content {
    --s: 0.36s;
    display: none;
    opacity: 0;
    transition: all var(--s) ease-in-out
}

.tabs__content.active {
    display: block;
    opacity: 1
}

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

.control-wrap {
    position: relative
}

.swiper-button-hand {
    --s: 0.36s;
    align-items: center;
    background-color: var(--swiperBgDef);
    background-image: none;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    bottom: 0;
    box-shadow: 0 15px 60px rgba(0,0,0,.1);
    color: var(--swiperColorDef);
    cursor: pointer;
    display: flex;
    height: var(--swiperArrowSize);
    justify-content: center;
    margin: auto 0;
    outline: none!important;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    transition: all var(--s) ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: var(--swiperArrowSize);
    z-index: 300
}

.swiper-button-hand:hover {
    background-color: var(--swiperBgDefHover);
    border-color: var(--swiperBorderColorDefHover);
    color: var(--swiperColorDefHover)
}

.swiper-button-hand .icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    font-size: 1.3333333333rem
}

.swiper-button-hand:after {
    display: none
}

.swiper-button-hand-next {
    right: var(--swiperArrowPosition)
}

.swiper-button-hand-prev {
    left: var(--swiperArrowPosition)
}

.swiper-pagination {
    bottom: .6111111111rem;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 3
}

.swiper-pagination-bullet {
    --s: 0.36s;
    background-color: #16246b;
    border: 1px solid #16246b;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    margin-left: .4444444444rem;
    margin-right: .2777777778rem;
    opacity: 1;
    outline: none!important;
    transition: all var(--s) ease-in-out;
    width: 7px
}

.swiper-pagination-bullet-active,.swiper-pagination-bullet:hover {
    background-color: transparent
}

picture {
    display: block
}

img.object-fit-js {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.object-fit-js img,img.img-bg {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top
}

a {
    --s: 0.36s;
    transition: all var(--s) ease-in-out
}

.picture-bg,img.img-bg {
    z-index: -1
}

.picture-bg,.picture-bg .object-fit-js,img.img-bg,img.img-bg .object-fit-js {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.bg-wrap {
    position: relative;
    z-index: 2
}

.browsehappy {
    background: #000;
    color: #fff;
    font-size: 10px;
    min-height: 100px;
    padding-top: 30px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2000
}

iframe {
    border: none
}

.custom-scroll {
    --bs-primary: #dedede;
    scrollbar-color: var(--bs-primary) transparent;
    scrollbar-width: auto
}

.custom-scroll::-webkit-scrollbar {
    width: 4px
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border: 0 solid transparent;
    border-radius: 16px
}

::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%2316246B" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>')
}

.text-center {
    text-align: center
}

.text-primary {
    color: #16246b
}

.text-primary:hover {
    color: #3044ac
}

.secion-head {
    background-color: #fff;
    padding-bottom: 1.3333333333rem;
    padding-top: .4444444444rem
}

.secion-head .select2-selection,.secion-head__input {
    background-color: #fff;
    border-color: #16246b;
    border-radius: 0;
    color: #16246b;
    font-size: 13px;
    font-weight: 500;
    margin-top: .8888888889rem;
    min-height: 2.2222222222rem;
    text-transform: uppercase
}

.secion-head__input {
    background-color: #fff!important;
    font-size: 13px!important;
    font-weight: 700;
    min-width: 250px
}

.secion-head__input::-moz-placeholder {
    color: #16246b
}

.secion-head__input::placeholder {
    color: #16246b
}

.secion-head__btns {
    --bs-gutter-x: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-1/2);
    margin-right: calc(var(--bs-gutter-x)*-1/2)
}

.secion-head__btns>* {
    margin-left: calc(var(--bs-gutter-x)/2);
    margin-right: calc(var(--bs-gutter-x)/2)
}

.secion-head__btn {
    align-items: center;
    display: inline-flex;
    height: 2.2222222222rem;
    justify-content: center;
    margin-top: .8888888889rem;
    min-width: 3.6666666667rem;
    padding: 0 .8888888889rem
}

.secion-head__btn .icon {
    font-size: 16px
}

.secion-head__btn:after {
    display: none
}

.w-100 {
    width: 100%
}

.mapBlock {
    background: #444
}

.mapBlock__col {
    position: relative
}

.mapBlock__btn {
    color: #fff!important;
    justify-content: center;
    z-index: 5
}

.mapBlock__btn .icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    font-size: 1.3333333333rem
}

.mapBlock__btn:after {
    display: none
}

.map-wrap {
    position: relative
}

.map-wrap #map {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.ymaps-2-1-79-ground-pane canvas {
    filter: saturate(0)
}

.page-base .header {
    background-color: #a8a8a8;
    color: #2b2b2b;
    position: relative
}

.page-base .header__select:after {
    background-image: url(../img/svg/chevron-down.svg)
}

.page-base .header .icon-search {
    color: #2b2b2b
}

.page-base .header__selectMenu .header__select:after {
    background-image: url(../img/svg/arrowDropDown.svg)
}

.page-base .breadcrumb-wrap {
    background-color: #e6e6e6
}

.page-secondary .page-head {
    background-color: #d4d4d4
}

.page-secondary .breadcrumb-wrap {
    background-color: #d4d4d4;
    border-bottom: 1px solid rgba(68,68,68,.2)
}

.page-secondary .sContent {
    background-color: #e6e6e6;
    padding-bottom: 1.3333333333rem;
    padding-top: 1.3333333333rem
}

.page-secondary .sContent p {
    font-size: 1rem
}

.page-secondary .docLine:first-of-type {
    border-top: none
}

.page-secondary .docLine:last-of-type {
    border-bottom: none
}

.page-secondary .sServiseBody {
    background-color: #e6e6e6
}

.bg-gray-dark .breadcrumb-wrap,.bg-gray-dark .page-head {
    background: #bcbcbc
}

.bg-none {
    background-color: transparent
}

.bg-gray-dark {
    background: #bcbcbc!important
}

.bg-gray {
    background: #e6e6e6!important
}

.customControl {
    background: #444;
    display: none
}

.promo__image {
    --s: 0.36s;
    filter: grayscale(1);
    transition: all var(--s) ease-in-out
}

.promo__image:hover {
    filter: grayscale(0)
}

.mainSlider {
    background-color: #2b2b2b
}

.mapBlock img {
    --s: 0.36s;
    transition: all var(--s) ease-in-out
}

.mapBlock img:not(:hover) {
    filter: saturate(0)
}

.search-block {
    margin-bottom: 1.3888888889rem;
    margin-top: 10px;
    position: relative
}

.search-block input {
    background: #fff;
    border-radius: 2px;
    padding: .3888888889rem 2.2222222222rem .3888888889rem .6666666667rem;
    width: 100%
}

.search-block button {
    align-items: center;
    background: none!important;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding-right: 8px;
    position: absolute;
    right: 0;
    top: 0
}

.search-block button .icon {
    color: #444;
    font-size: 24px
}

.header__search {
    position: relative
}

.header__search .toggle-search {
    align-items: center;
    display: flex
}

.header__search .search-block {
    margin: 0
}

.litepicker .container__days .day-item.is-in-range {
    color: #fff
}

.d-mob {
    display: none
}

.filepond--drop-label.filepond--drop-label label {
    color: #ababab;
    display: block;
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px
}

.filepond--drip {
    background: #ececec;
    border: 1px dashed #ababab;
    border-radius: 4px;
    cursor: pointer;
    opacity: 1
}

.invalid-feedback {
    display: block;
    margin-top: 7px
}

.fancybox__slide {
    padding-left: 0!important;
    padding-right: 0!important
}

.landingInfo__number:before {
    content: attr(data-currentNumber);
    display: inline
}

.header__desktop>ul>li.header__select>a {
    pointer-events: none
}

.menu__subSelect>a {
    margin-bottom: 15px;
    margin-top: 5px
}

.menu__subSelect>a+ul {
    padding-top: 0
}

.agreement-page .page-head h1 {
    color: #fff;
    max-width: 47.2222222222rem;
    text-shadow: none
}

.agreement-page .page-head h1:before {
    content: unset
}

.footer {
    margin-top: auto;
    background-color: #E8E7EA;
}

.form-wrap__input-wrap {
    margin-bottom: .8888888889rem;
    position: relative
}

.form-wrap__input-wrap .icon {
    color: #c4c3c0;
    font-size: 1.3333333333rem;
    position: absolute;
    right: .7777777778rem;
    top: 50%
}

.form-wrap__input-wrap .required {
    color: #c0b1aa;
    left: calc(100% + 2px);
    position: absolute;
    top: 1.5rem
}

.form-wrap__title {
    margin-bottom: 2.2222222222rem
}

.form-wrap__input-title {
    color: #a1a09d;
    display: inline-block;
    font-size: .7777777778rem;
    margin-bottom: .3333333333rem
}

.form-wrap__input {
    background-color: transparent;
    color: #d4d4d4;
    outline: 0!important;
    resize: none
}

.form-wrap__input::-moz-placeholder {
    color: #d4d4d4
}

.form-wrap__input::placeholder {
    color: #d4d4d4
}

.form-wrap__btn {
    cursor: pointer
}

.form-wrap label {
    display: block;
    width: 100%
}

.form-wrap textarea {
    min-height: 6.6666666667rem
}

.form-wrap__btn {
    justify-content: center;
    margin-bottom: .8888888889rem;
    width: 100%
}

.form-wrap__btn:after {
    content: unset
}

.form-wrap__policy {
    text-align: center
}

.form-wrap__text {
    color: #36332c;
    font-size: .7777777778rem
}

.form-wrap__text a {
    color: #16246b
}

.parsley-error {
    border: 2px solid red!important;
    -o-border-image: none;
    border-image: none;
    color: red;
    outline: 0!important
}

.parsley-success {
    border: 2px solid #00d600!important
}

.parsley-errors-list {
    color: red
}

input[type=number] {
    -moz-appearance: textfield
}

select::-ms-expand {
    display: none
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.custom-select-multiple-js+.select2-container .select2-search {
    align-items: center;
    display: flex
}

.custom-select-multiple-js+.select2-container .select2-search * {
    display: none
}

.custom-select-multiple-js+.select2-container .select2-search:before {
    content: var(--title);
    display: block;
    font-size: 13px;
    font-weight: 700;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.custom-select-multiple-js+.select2-container .select2-selection {
    background-color: #fff;
    border-color: #16246b;
    box-shadow: none;
    color: #16246b;
    font-size: 13px;
    height: auto!important;
    padding-bottom: .5rem;
    padding-top: .5rem
}

.custom-select-multiple-js+.select2-container .select2-selection__rendered {
    display: none!important
}

.select2-container--focus .select2-selection,.select2-container--open .select2-selection {
    background: #f0f0f0
}

.select2-container--default .select2-selection--single {
    height: auto!important;
    padding-left: .5555555556rem
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f0f0f0;
    color: #444
}

.select2-container--default .select2-results__option {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 18px;
    text-transform: uppercase
}

.select2-container--default .select2-results__option--selected {
    background-color: transparent;
    background-image: var(--check);
    background-position: 4px 7px;
    background-repeat: no-repeat
}

.header .icon-search {
    font-size: 1.3333333333rem
}

.headerBlock {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh)*100)
}

.headerBlock,.headerBlock h1,.headerBlock h2 {
    margin-bottom: 1px
}

.soc {
    --bs-gutter-x: 10px;
    display: flex;
    margin-left: calc(var(--bs-gutter-x)*-1/2);
    margin-right: calc(var(--bs-gutter-x)*-1/2)
}

.soc>* {
    margin-left: calc(var(--bs-gutter-x)/2);
    margin-right: calc(var(--bs-gutter-x)/2)
}

.soc__item {
    --s: 0.36s;
    display: grid;
    place-items: center;
    text-decoration: none!important;
    transition: all var(--s) ease-in-out;
    vertical-align: middle
}

.soc .icon {
    font-size: 1.6666666667rem
}

.counter {
    counter-reset: num
}

.counter__item {
    position: relative
}

.counter__item:before {
    content: counter(num);
    counter-increment: num
}

.addBlock {
    border: 1px solid;
    border-radius: 23px;
    color: var(--color,#16246b);
    display: flex;
    overflow: hidden;
    position: relative
}

.addBlock input {
    border: none;
    color: inherit;
    height: 2.5rem;
    text-align: center
}

.addBlock__btn {
    background: none!important;
    background: transparent;
    border: none!important;
    border-radius: 23px;
    box-shadow: none!important;
    color: inherit;
    height: 2.5rem;
    outline: none!important;
    position: relative;
    width: 1.4444444444rem
}

.addBlock__btn:after,.addBlock__btn:before {
    background-color: currentColor;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 10px
}

.addBlock__btn--plus:after {
    transform: rotate(90deg)
}

.page-head {
    --minH: 128px;
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: var(--minH);
    padding-bottom: .7777777778rem;
    padding-top: 3.3333333333rem
}

.page-head .h1,.page-head h1 {
    color: transparent;
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 -1px 1px #fff,1px 0 2px rgba(0,0,0,.88),3px 2px 3px rgba(0,0,0,.27);
    text-transform: uppercase;
    z-index: 5
}

.page-head .h1:before,.page-head h1:before {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(181.02deg,#9b9b9b 2.87%,#e8e8e8 12.78%,#efefef 49.17%,#616161 94.47%);
    -webkit-background-clip: text;
    background-clip: text;
    content: attr(data-text);
    left: 0;
    position: absolute;
    text-shadow: none;
    top: 0
}

.page-head p {
    font-feature-settings: "pnum" on,"lnum" on;
    color: #fff;
    font-size: calc(1.26389rem + .1875vw);
    letter-spacing: -.01em;
    line-height: 1.28;
    margin-bottom: 1.3333333333rem;
    position: relative;
    z-index: 5
}

.page-head p.small {
    font-size: 1rem
}

.page-head p.max-w {
    max-width: 42.9444444444rem
}

.page-head--inner {
    --minH: auto;
    background-color: #e6e6e6;
    padding-bottom: 1.3333333333rem;
    padding-top: 2.0555555556rem
}

.page-head--inner h1 {
    color: #3f3f3f;
    text-shadow: none
}

.page-head--inner h1:before {
    content: unset
}

.page-head--inner p {
    color: #2b2b2b
}

.page-head--sm-spacing h1 {
    margin-bottom: 0
}

.page-head--text {
    --minH: 1px!important;
    background-color: transparent;
    padding-bottom: .7777777778rem!important;
    padding-top: 2.2222222222rem
}

.page-head--text h1 {
    color: #444;
    text-shadow: none
}

.page-head--text h1:before {
    display: none
}

.page-head--research h1 {
    max-width: 29rem
}

.page-head--research p {
    margin-bottom: 0
}

.card__left-side .page-head a,.page-head .btn,.page-head .card__left-side a,.page-head .secion-head__btn {
    position: relative;
    z-index: 2
}

.page-head--landing .container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    position: relative
}

.page-head__back {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    left: calc(var(--gx)/2);
    position: absolute;
    top: 0;
    z-index: 5
}

.page-head__back .icon {
    stroke: currentColor;
    stroke-width: 2px;
    fill: none;
    font-size: 1.4444444444rem;
    margin-right: 4px;
    position: relative;
    top: .1111111111rem
}

.contactBlock {
    margin-bottom: 1.6666666667rem
}

.contactBlock .icon {
    color: #16246b;
    font-size: 2.2222222222rem;
    margin-bottom: .8888888889rem
}

.contactBlock__title {
    font-weight: 700;
    margin-bottom: .2222222222rem;
    text-transform: uppercase
}

.contactBlock__item {
    position: relative
}

.contactBlock p {
    margin-bottom: .4444444444rem
}

.docLine {
    border-top: 1px solid #c6c6c6;
    margin-top: -1px;
    padding-bottom: .6666666667rem;
    padding-top: .6666666667rem
}

.docLine:first-child,.docLine:not(:last-child) {
    border-bottom: 1px solid #c6c6c6
}

.docLine .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 16px
}

.docLine__btn {
    color: #fff!important;
    height: 24px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px
}

.docLine__btn .icon {
    font-size: .8888888889rem;
    margin-right: .4444444444rem
}

.docLine__btn:after {
    display: none
}

.docLine--second {
    color: #2b2b2b!important;
    display: block
}

.docLine--second:last-of-type {
    padding-bottom: 1.7777777778rem
}

.docLine--third {
    display: block
}

.docLine--third:not(.btn):not(.secion-head__btn):not(.secion-head__btn) {
    color: #2b2b2b
}

.docLine--third:first-of-type {
    padding-top: 0
}

.docLine--third:last-of-type {
    margin-bottom: .8888888889rem
}

.servises-nav {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: rgba(0,0,0,.5);
    border-radius: 8px 8px 0 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30vh;
    max-width: 59.5555555556rem;
    padding: .4444444444rem
}

.servises-nav ul {
    display: flex
}

.servises-nav li {
    flex: 1 0 0%
}

.servises-nav li:not(:last-child) a {
    position: relative
}

.servises-nav li:not(:last-child) a:before {
    --s: 0.36s;
    background-color: #fff;
    bottom: auto;
    content: "";
    height: calc(100% - 16px);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--s) ease-in-out;
    width: 1px
}

.servises-nav__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 7.7222222222rem
}

.servises-nav a {
    border-radius: 8px;
    color: #fff;
    display: block;
    font-size: .6111111111rem;
    font-weight: 900;
    height: 100%;
    line-height: 1.4545454545;
    min-width: 65px;
    opacity: .4;
    padding-bottom: .2222222222rem;
    text-align: center;
    text-transform: uppercase
}

.servises-nav a .icon {
    font-size: 3.5555555556rem;
    margin-bottom: .1666666667rem
}

.servises-nav a .icon-fig-6 {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px
}

.servises-nav a:hover {
    color: #fff
}

.servises-nav a.active {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: hsla(0,0%,100%,.2);
    color: #fff;
    opacity: 1
}

.servises-nav a.active:before {
    opacity: 0
}

:root {
    --fancybox-content-bg: none
}

.fancybox__content {
    max-width: 100%;
    padding: 0;
    position: static
}

.fancybox__content .is-close {
    top: 0!important
}

.fancybox__content>.carousel__button.is-close {
    color: #000
}

.with-fancybox {
    overflow: hidden
}

.modal-win {
    background-color: #fff;
    max-width: 100%;
    padding: 16px 32px 32px;
    position: relative;
    width: 83.3333333333rem
}

.modal-win .mfp-close {
    color: #16246b;
    font-size: 40px;
    font-weight: 100
}

.modal-win--sm {
    max-width: 23.1111111111rem
}

.modal-win--sm:before {
    background-color: rgba(68,68,68,.2);
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 3.7222222222rem;
    width: 100%
}

.custom-select-multiple-js+.select2-container .modal-win--sm .select2-selection,.modal-win--sm .custom-select-multiple-js+.select2-container .select2-selection,.modal-win--sm .form-select,.modal-win--sm .select2-container--default .select2-selection--single,.select2-container--default .modal-win--sm .select2-selection--single {
    background-image: none
}

.modal-win--second {
    padding: 0
}

.modal-win--second .row {
    --bs-gutter-x: 0
}

a {
    outline: 0!important
}

.modal-form {
    position: relative
}

#foot-dialog h3 {
    font-size: 2em
}

.mfp-close {
    --s: 0.36s;
    background: 0 0;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    color: #444;
    cursor: pointer;
    display: block;
    font-family: Arial,Baskerville,monospace;
    font-size: 28px;
    font-size: 50px;
    font-style: normal;
    font-weight: 100;
    height: 56px;
    line-height: 56px;
    margin-right: -5px;
    margin-top: -5px;
    opacity: .65;
    opacity: 1;
    outline: 0;
    overflow: visible;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    transition: all var(--s) ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 56px;
    z-index: 1046
}

.polite .link {
    color: #16246b;
    cursor: pointer;
    text-decoration: underline
}

.polite .link :hover {
    display: none
}

.info-block {
    background-color: #e6e6e6;
    padding: 3.1111111111rem .8888888889rem 1.7777777778rem
}

.info-block__head {
    border-bottom: 1px solid #bcbcbc;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.3333333333rem;
    padding-bottom: 1.3333333333rem
}

.info-block__head span {
    font-weight: 800
}

.info-block h5 {
    font-weight: 600;
    margin-bottom: 1.3333333333rem;
    text-transform: none
}

.info-block__wrap {
    border-bottom: 1px solid #bcbcbc;
    margin-bottom: 1.3333333333rem;
    padding-bottom: 1.3333333333rem
}

.info-block ul li {
    align-items: center;
    display: flex
}

.info-block ul li:not(:last-child) {
    margin-bottom: .4444444444rem
}

.info-block ul li:before {
    background-color: #16246b;
    border-radius: 50%;
    content: "";
    display: block;
    margin-left: .4444444444rem;
    margin-right: .8888888889rem;
    min-height: 8px;
    min-width: 8px
}

.form-block {
    height: 100%
}

.form-block .form-wrap {
    background-color: #d4d4d4;
    height: 100%;
    padding: 1.7777777778rem .8888888889rem
}

.form-block .form-wrap h3 {
    margin-bottom: .8888888889rem;
    text-transform: none
}

.form-block .form-wrap p {
    font-size: .7777777778rem;
    line-height: 1.28em;
    margin-bottom: .8888888889rem
}

.form-block .form-wrap p a {
    color: #16246b
}

.form-block .form-wrap__input-title {
    color: #2b2b2b
}

.form-block .form-wrap__input {
    background-color: #fff;
    border-color: #bcbcbc
}

.form-block .form-wrap textarea {
    min-height: 10.6666666667rem
}

.form-block .form-wrap .required {
    color: #c4c3c0
}

.form-block .form-wrap__policy {
    text-align: left
}

.form-block .form-wrap__text {
    color: #36332c!important
}

.alert-block {
    --s: 0.36s;
    background: #e6e6e6;
    border-radius: 1px;
    bottom: 76px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    max-width: calc(100% - 16px);
    padding: 14px;
    position: fixed;
    right: 8px;
    transform: translateX(var(--tr,calc(100% + 40px)));
    transition: all var(--s) ease-in-out;
    width: 100%;
    z-index: 1200
}

.alert-block.active {
    --tr: 0
}

.alert-block__close {
    color: #444;
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 14px
}

.alert-block__close .icon {
    font-size: 24px
}

.alert-block p {
    font-size: 14px
}

.alert-block__title {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-right: 10px
}

.alert-block__title img {
    margin-right: 6px
}

.news--page {
    padding-bottom: 3.2222222222rem;
    padding-top: 0
}

.news__btn-more {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    letter-spacing: .5px;
    margin-top: -1.1111111111rem;
    position: relative;
    text-transform: uppercase;
    z-index: 4
}

.news__btn-more .icon {
    font-size: 22px;
    margin-right: .9444444444rem;
    position: relative;
    transform: rotate(1turn)
}

.news__cards--page {
    grid-template-columns: repeat(var(--count,1),1fr);
    padding-left: 0!important;
    padding-right: 0!important
}

.card__left-side .news a,.news .btn--colorWhite.btn--bgBlack.secion-head__btn,.news .btn.btn--colorWhite.btn--bgBlack,.news .card__left-side a {
    margin-bottom: 32px;
    margin-top: 20px
}

.news .slider__arrow {
    position: absolute;
    top: calc(50% - 120px);
    z-index: 20
}

.news .slider__arrow--prev {
    left: 0
}

.news .slider__arrow--next {
    right: 0
}

.partnersSlider .slick-track {
    display: flex
}

.partnersSlider .slick-track:after,.partnersSlider .slick-track:before {
    display: none
}

.partnersSlider__slide {
    display: flex!important;
    flex-direction: column;
    height: auto
}

.partnersSlider__img-wrap {
    display: block;
    margin-bottom: 23px;
    position: relative
}

.partnersSlider__img-wrap:before {
    --ratio: 0.25688;
    content: "";
    display: block;
    height: 0;
    padding-bottom: calc(var(--ratio)*100%);
    position: relative
}

.partnersSlider__img-wrap img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.s404__logo {
    left: 50%;
    position: absolute;
    top: 1.3333333333rem;
    transform: translateX(-50%)
}

.s404__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1
}

.s404 h1 {
    font-size: 7.5555555556rem;
    line-height: 1.06em
}

.s404 p {
    margin-bottom: 1.7777777778rem;
    text-align: center
}

.s404 a:after {
    content: unset
}

.error-page {
    background-color: #bcbcbc;
    justify-content: center
}

.error-page,.sAboutTeam {
    position: relative
}

.sAboutTeam__content {
    padding: 2.6666666667rem 0;
    position: relative;
    z-index: 2
}

.sAboutTeam__content p {
    font-size: 1rem;
    margin-bottom: 1em
}

.sAboutTeam__content--bg:before {
    background: #d4d4d4;
    content: "";
    height: 100%;
    left: -30px;
    position: absolute;
    top: 0;
    width: 120vw;
    z-index: -1
}

.sAboutTeam__content p {
    max-width: 39.4444444444rem
}

.sAboutTeam blockquote {
    color: #444;
    margin-bottom: 2.8888888889rem;
    text-transform: uppercase
}

.sAboutTeam blockquote p {
    font-weight: 700
}

.sAboutTeam blockquote:before {
    background-image: url(../img/svg/format_quote_24px.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 5.3333333333rem;
    width: 5.3333333333rem
}

.sAboutTeam__card {
    background: #121b3a;
    color: #fff;
    margin-bottom: 24px;
    max-width: 382px;
    padding: .8888888889rem 1.3333333333rem 1.3333333333rem;
    position: relative;
    z-index: 3
}

.sAboutTeam__card picture {
    margin-bottom: 1.3333333333rem
}

.sAboutTeam__title {
    font-weight: 700;
    margin-bottom: 1.1111111111rem;
    text-transform: uppercase
}

.sAboutTeam__title span {
    display: block;
    font-size: calc(1.31389rem + .8625vw)
}

.sAchievements {
    --sPT: 0rem;
    --sPB: 2.2222222222rem;
    background-color: #e6e6e6
}

.sAchievements .row {
    --bs-gutter-y: 2.2222222222rem;
    --bs-gutter-x: 1.3333333333rem
}

.sAchievements__card span {
    color: #bcbcbc;
    display: inline-block;
    font-size: 3.4444444444rem;
    margin-bottom: .4444444444rem
}

.sAchievements__card h5 {
    margin-bottom: .4444444444rem;
    text-transform: none
}

.sAchievements__card p {
    color: #3f3f3f;
    margin-bottom: 0
}

.sAchievements__award {
    display: block;
    margin-bottom: .4444444444rem;
    position: relative;
    text-align: center
}

.sAchievements__award picture {
    --s: 0.36s;
    filter: grayscale(1);
    transition: all var(--s) ease-in-out
}

.sAchievements__award picture img {
    border: 1px solid #bcbcbc
}

.sAchievements__award:after {
    background-color: #2b2b2b;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: -4px;
    position: absolute;
    width: calc(100% + 8px)
}

.sAchievements__award:hover picture {
    filter: grayscale(0)
}

.sAchievements .icon-search {
    --s: 0.36s;
    background-color: rgba(43,43,43,.6);
    border-radius: 1.7777777778rem;
    bottom: 0;
    color: #fff;
    font-size: 1.3333333333rem;
    font-size: 2.2222222222rem;
    left: 0;
    margin: auto;
    padding: .4444444444rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: all var(--s) ease-in-out
}

.sBenefits {
    --sPT: 1.7222222222rem;
    --sPB: 2.2222222222rem;
    background-color: #f0f0f0;
    position: relative
}

.sBenefits .col-md-4:first-child p {
    margin-bottom: .8333333333rem
}

.sBenefits .col-md-4:nth-child(7) p {
    margin-bottom: .8333333333rem
}

.sBenefits__link {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 18.8888888889rem;
    padding: 2.2222222222rem 1.6111111111rem 1.1666666667rem;
    position: relative;
    text-align: center;
    z-index: 1
}

.sBenefits__link .icon {
    color: #16246b;
    font-size: 4.8888888889rem
}

.sBenefits__link .icon,.sBenefits__link h4 {
    margin-bottom: .4444444444rem
}

.sBenefits__link p {
    font-size: .7777777778rem;
    margin-bottom: .8333333333rem
}

.sBenefits__link:hover {
    background-color: hsla(0,0%,100%,.7)
}

.sBenefits__link:hover h4,.sBenefits__link:hover p {
    color: #16246b
}

.card__left-side .sBenefits__link:hover a:after,.sBenefits__link:hover .btn:after,.sBenefits__link:hover .card__left-side a:after,.sBenefits__link:hover .secion-head__btn:after {
    transform: translateX(5px)
}

.sBenefits__btn {
    border: none;
    padding: 0
}

.sCards {
    --sPT: 0.8888888889rem;
    --sPB: 2.2222222222rem;
    background-color: #e6e6e6
}

.card {
    background-color: #d4d4d4;
    padding: 1.7777777778rem;
    position: relative
}

.card:first-child {
    margin-bottom: .8888888889rem
}

.card__col {
    position: relative
}

.card__col:before {
    background-color: #bcbcbc;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%
}

.card__left-side {
    align-items: self-start;
    display: flex;
    flex-direction: column;
    height: 100%
}

.card__left-side .card__wrap {
    align-items: self-start;
    display: flex;
    flex-grow: 1;
    width: 100%
}

.card__left-side h3 {
    font-size: calc(1.28056rem + .4125vw);
    margin-bottom: 5.3333333333rem;
    text-transform: inherit
}

.card__left-side p {
    margin-bottom: .8888888889rem;
    max-width: 31.2222222222rem
}

.card__left-side a {
    margin-bottom: 2.6666666667rem;
    padding: 9px 16px
}

.card__left-side a:after {
    background-image: url(../img/svg/chevron-right.svg)
}

.card__right-side {
    margin-top: 1.6666666667rem
}

.card__right-side .card__wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: .8888888889rem;
    row-gap: .8888888889rem
}

.card__right-side>p {
    font-size: .7777777778rem
}

.card__content:first-child {
    margin-right: 1.7222222222rem
}

.card__content h3 {
    font-size: calc(1.28056rem + .4125vw);
    margin-bottom: .4444444444rem;
    text-transform: inherit
}

.card__content p {
    margin-bottom: 0
}

.sContact {
    background-color: #e6e6e6;
    padding-bottom: 2.6666666667rem;
    padding-top: 0
}

.sContact__wrap {
    background-color: #d4d4d4
}

.sContact .section-title {
    border-bottom: 1px solid #bcbcbc;
    margin-bottom: 0;
    padding: 2.5555555556rem 2.5555555556rem 2.2222222222rem 2.2222222222rem
}

.sContact .section-title__row {
    --bs-gutter-y: 1.1111111111rem
}

.sContact .section-title h2 {
    color: #2b2b2b;
    margin-bottom: 2.1111111111rem
}

.sContact .section-title h3 {
    color: #444;
    margin-bottom: .3333333333rem;
    text-transform: none
}

.sContact .section-title p {
    color: #444;
    font-size: .7777777778rem;
    margin-bottom: 0
}

.sContact .section-title__col {
    display: flex;
    flex-direction: column
}

.sContact .section-title__col .icon {
    color: #16246b;
    flex: 0 0 auto;
    font-size: 1.3333333333rem;
    margin-right: .3888888889rem;
    vertical-align: top
}

.sContact .section-title__col a:not(:last-child) {
    margin-bottom: .8888888889rem
}

.sContact .docLine {
    background-color: #d4d4d4;
    padding: 1.7777777778rem 1.1111111111rem 1.7777777778rem 2.2222222222rem
}

.sContact--2 {
    padding-top: .5555555556rem
}

.sContent {
    /* background-color: #e6e6e6; */
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 2
}

.sContent--spb {
    padding-bottom: 40px
}

.sContent p {
    line-height: 1.5
}

.sContent .mainSlider__particles {
    z-index: -1
}

.sContent--base {
    /* padding-bottom: var(--sPT); */
    adding-top: var(--sPT)
}

.sContent--base .docLine {
    border-bottom: 1px solid rgba(68,68,68,.2);
    border-top: none;
    padding-bottom: 1.3333333333rem;
    padding-top: 1.3333333333rem
}

.sContent a:not(.btn):not(.secion-head__btn),.sContent a:not(.figure__item) {
    color: #16246b
}

.sContent a:not(.btn):not(.secion-head__btn):hover,.sContent a:not(.figure__item):hover {
    color: #3044ac
}

.sContent blockquote {
    margin-bottom: 2.2222222222rem;
    max-width: 56.6666666667rem
}

.sContent blockquote:before {
    background-image: url(../img/svg/format_quote_24px.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 3.8888888889rem;
    width: 3.8888888889rem
}

.sContent .head-text {
    font-size: .8888888889rem;
    margin-bottom: 1.7777777778rem;
    padding-top: .8888888889rem
}

.sContent h2 {
    margin-bottom: .8888888889rem
}

.sContent p {
    margin-bottom: 1.3333333333rem
}

.sContent h6,.sContent ul {
    margin-bottom: 1.3333333333rem
}

.sContent ul li {
    list-style-type: none;
    margin-left: 1.1111111111rem;
    padding-left: 1.7777777778rem;
    position: relative
}

.sContent ul li:not(:last-child) {
    margin-bottom: .4444444444rem
}

.sContent ul li:before {
    background-color: #16246b;
    border-radius: 50%;
    content: "";
    display: block;
    height: .4444444444rem;
    left: 8px;
    position: absolute;
    top: .3333333333em;
    width: .4444444444rem
}

.sContent ul ul {
    margin-bottom: 0;
    padding-top: .4444444444rem
}

.sContent ul ul li:before {
    background-color: transparent;
    border: 1px solid #16246b
}

.sContent picture {
    margin-bottom: .4444444444rem
}

.sContent picture~span {
    color: #6c757d;
    display: inline-block;
    font-size: .7222222222rem;
    margin-bottom: 1.7777777778rem
}

.sContent h6 {
    font-weight: 400;
    margin-bottom: .8888888889rem
}

.sContent__tableWrap {
    margin-bottom: 1.7777777778rem;
    overflow-x: auto;
    position: relative
}

.sContent table {
    min-width: 61.7777777778rem
}

.sContent table thead th {
    color: #444;
    font-size: .7777777778rem;
    font-weight: 600;
    padding-bottom: 8px
}

.sContent table tbody {
    border-top: none!important
}

.sContent table tbody>tr:hover td,.sContent table tbody>tr:hover th {
    color: #bcbcbc
}

.sContent table th {
    font-weight: 400;
    padding-bottom: .4444444444rem;
    padding-top: .4444444444rem
}

.sContent table td,.sContent table th {
    --s: 0.36s;
    border-bottom: 1px solid #bcbcbc;
    color: #000;
    transition: all var(--s) ease-in-out
}

.sContent table td {
    padding-bottom: .8rem;
    padding-top: .8888888889rem
}

.sContent figure {
    margin-bottom: 1.7777777778rem;
    position: relative
}

.sContent figure .icon {
    color: #16246b;
    font-size: .7777777778rem;
    left: 0;
    position: absolute;
    top: .5555555556rem
}

.sContent figure picture {
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    min-width: 2.2222222222rem;
    position: absolute
}

.sContent figure figcaption {
    display: inline-block;
    font-size: .7777777778rem;
    font-weight: 600;
    margin-left: 4.5555555556rem
}

.sContent figure cite {
    color: #6c757d;
    font-size: .7222222222rem;
    font-weight: 400
}

.sContent h3 {
    margin-bottom: .8888888889rem
}

.sContent h3+p {
    margin-bottom: 1.3333333333rem
}

.sContent .container>ol {
    counter-reset: num
}

.sContent h3 {
    text-transform: none
}

.sContent ol {
    margin-bottom: .8888888889rem;
    padding-left: 0
}

.sContent ol li {
    list-style-type: none;
    margin-left: .8333333333rem;
    position: relative
}

.sContent ol li:not(:last-child) {
    margin-bottom: .4444444444rem
}

.sContent ol li:before {
    content: counter(num) ". ";
    counter-increment: num;
    margin-right: .8333333333rem
}

.sContent ol ol {
    counter-reset: num2;
    margin-bottom: 0;
    padding-left: 2.3333333333rem;
    padding-top: .4444444444rem
}

.sContent ol ol li {
    list-style-type: none;
    position: relative
}

.sContent ol ol li:before {
    content: counter(num) "." counter(num2) ". ";
    counter-increment: num2
}

.sContent h4 {
    margin-bottom: 2.2222222222rem
}

.sContent h5 {
    font-weight: 600;
    margin-bottom: .4444444444rem
}

.sContent h5+p {
    margin-bottom: 1.7777777778rem
}

.sContent .mediaContent {
    margin-bottom: 2.6666666667rem;
    position: relative
}

.sContent .mediaContent__caption {
    color: #2b2b2b;
    font-size: .7777777778rem
}

.sContent .video-wrrpaer {
    display: block;
    margin-bottom: 16px;
    margin-top: 0;
    position: relative
}

.sContent .video-wrrpaer:before {
    --ratio: 0.56348;
    content: "";
    display: block;
    height: 0;
    padding-bottom: calc(var(--ratio)*100%);
    position: relative
}

.sContent iframe {
    height: 100%!important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%!important
}

.sContent--inner p {
    font-size: 1.3888888889rem
}

.sContent--inner h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.3333333333rem;
    text-transform: none
}

.sContent--secondPage p:first-of-type {
    margin-bottom: .4444444444rem;
    padding-top: .8888888889rem
}

.sContent--secondPage p+p {
    margin-bottom: .8888888889rem
}

.sContent--secondPage ul+p {
    margin-bottom: 1.3333333333rem
}

.sContent--secondPage picture {
    margin-bottom: 1.3333333333rem
}

.sContent--secondPage picture+p {
    margin-bottom: .8888888889rem
}

.share {
    margin-bottom: 1.7777777778rem;
    margin-top: 1.1111111111rem
}

.share span {
    vertical-align: super
}

.share .soc__item {
    background: var(--soc-bg,#16246b);
    border-radius: 4px;
    color: #fff!important;
    font-size: 1.1111111111rem;
    height: 1.7777777778rem;
    width: 1.7777777778rem
}

.share .soc__item--fb {
    --soc-bg: #1877f2
}

.share .soc__item--fb:hover {
    --soc-bg: rgba(24,119,242,.8)
}

.share .soc__item--twitter {
    --soc-bg: #1da1f2
}

.share .soc__item--twitter:hover {
    --soc-bg: rgba(29,161,242,.8)
}

.share .soc__item--vk {
    --soc-bg: #4680c2
}

.share .soc__item--vk:hover {
    --soc-bg: rgba(70,128,194,.8)
}

.share .soc__item--instagram {
    --soc-bg: linear-gradient(138.16deg,#f6e150 -11.02%,#f09465 20.91%,#e54582 53.51%,#9730a8 90.76%,#6a2dc4 116.71%);
    background-position: 50% 50%;
    background-size: 200% 200%
}

.share .soc__item--instagram:hover {
    background-position: 10% 10%
}

.share .soc__item .icon {
    --s: 0.36s;
    font-size: 1.3333333333rem;
    transition: all var(--s) ease-in-out
}

.share .soc .icon-facebook {
    fill: #444;
    stroke: none
}

.share .soc .icon-vkontakte {
    stroke-width: .7px
}

.quotes figure {
    margin-bottom: 1.7777777778rem
}

.content .page-head .container {
    align-items: flex-start;
    flex-direction: column
}

.content .page-head .container span {
    margin-bottom: .8888888889rem
}

.sContent-head {
    background: #f0f0f0;
    margin-bottom: 2.2222222222rem;
    padding-bottom: 1rem;
    padding-top: 1rem
}

.sContent-head h1 {
    color: #16246b;
    font-size: calc(1.31389rem + .8625vw);
    font-weight: 700;
    line-height: 1.2941176471
}

.sContent-head .container--sm h1 {
    max-width: 50rem
}

.sContent-head .news__date {
    color: #16246b;
    margin-bottom: 0
}

.sContent-head__col {
    margin-top: 1.7777777778rem
}

.sContent-head__item {
    border-left: 1px solid;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 3px;
    padding-left: 1rem;
    padding-top: 3px
}

.figure-wrap {
    position: relative
}

.figure-wrap__title {
    bottom: auto;
    content: "ИТС";
    font-size: calc(1.31389rem + .8625vw);
    font-weight: 700;
    left: 50%;
    position: absolute;
    right: auto;
    text-transform: uppercase;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    z-index: 1;
    width: 500px;
}

.sContent .figure {
    --size: 100px;
    --angle: 25deg;
    position: relative
}

.card__left-side .sContent .figure a,.sContent .figure .btn,.sContent .figure .card__left-side a,.sContent .figure .secion-head__btn {
    border: none!important
}

.sContent .figure p {
    font-size: 0.9em;
    margin: 0!important;
    -webkit-transform: translate3d(0,0,0) !important;
    /* transform: translate3d(0,0,0) !important; */
    /* -webkit-transform: translate3d(-1%, -1%, 0); */
}

.sContent .figure__icon-wrap {
    --s: 0.36s;
    align-items: center;
    background-color: var(--c-bg,#f4f3f8);
    border: .1em solid #51525a5c;
    border-radius: 10%;
    display: flex;
    font-size: 1em;
    height: var(--size);
    justify-content: center;
    transition: all var(--s) ease-in-out;
    width: var(--size);
}

.sContent .figure__icon-wrap img {
    max-width: 110%
}

.sContent .figure__title {
    font-size: 1.5555555556em;
    font-weight: 700;
    margin-bottom: .4444444444rem;
    -webkit-transform: translate3d(-1%, -1%, 0);
}

.sContent .figure__item {
    color: #444!important;
    display: block
}

.sContent .figure__item:hover {
    --c-bg: #fff;
    color: #16246b!important
}

.sContent--research {
    padding-bottom: var(--sPT);
    padding-top: var(--sPT)
}

.sContent--managment p:first-of-type {
    padding-top: .8888888889rem
}

.sContent--managment p+p {
    margin-bottom: 2rem
}

.sContent--certificate {
    --sPT: 1.7777777778rem;
    --sPB: 1.7777777778rem;
    background-color: #16246b;
    color: #fff;
    padding-bottom: var(--sPB);
    padding-top: var(--sPT)
}

.sContent--certificate .docLine {
    margin-bottom: 0!important
}

.sContent--certificate .docLine [fill="#444444"] {
    fill: hsla(0,0%,100%,.3)!important
}

.sContent--certificate .docLine:not(.btn):not(.secion-head__btn):not(.secion-head__btn) {
    color: #fff
}

.sContent--certificate .docLine:not(.btn):not(.secion-head__btn):not(.secion-head__btn):hover {
    color: #a8a8a8
}

.sContent--testing p {
    margin-bottom: 0!important
}

.contentBanner {
    --spX: 1.1111111111rem;
    color: #fff;
    margin-bottom: 4.4444444444rem;
    margin-top: 4.4444444444rem;
    padding: var(--spX)
}

.contentBanner .img {
    margin-bottom: 24px;
    margin-top: calc((var(--spX) + 2.22222rem)*-1)
}

.sContent--agreement {
    background-color: #e6e6e6;
    padding-bottom: 1.3333333333rem;
    padding-top: 1.3333333333rem
}

.sContent--agreement .sContent__wrap p {
    margin-bottom: 0
}

.sContent--agreement .sContent__inner-row {
    --bs-gutter-x: 1.3333333333rem;
    --bs-gutter-y: 1.1111111111rem;
    padding-bottom: 2.4444444444rem
}

.sContent--agreement .sContent__inner-row p {
    margin-bottom: 0
}

.sContent--agreement .sContent__dark-bg {
    background-color: #d4d4d4;
    padding-bottom: 1.7777777778rem;
    padding-top: 1.7777777778rem
}

.sContent--agreement .sContent__dark-bg picture {
    height: 20rem;
    margin-bottom: 0
}

.sContent--agreement .sContent__img-row {
    --bs-gutter-x: 0.8888888889rem;
    --bs-gutter-y: 0.9444444444rem
}

.sDescription {
    background-color: #d4d4d4
}

.sDescription__col {
    order: 1
}

.sDescription__item {
    align-items: center;
    display: flex;
    flex-direction: column-reverse
}

.sDescription__content {
    padding-top: 1.3333333333rem
}

.sDescription__content p:first-child {
    margin-bottom: 1.1111111111rem
}

.sDescription .promo__image {
    --s: 0.36s;
    filter: grayscale(1);
    max-width: none;
    transition: all var(--s) ease-in-out;
    width: auto
}

.sDescription .promo__image:hover {
    filter: grayscale(0)
}

.sEvents {
    --sPT: 2.2222222222rem;
    --sPB: 5.5555555556rem;
    background-color: #d4d4d4
}

.sEvents__line-head {
    background-image: url(../img/svg/masksm.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 2.3333333333rem;
    margin-left: -1px;
    margin-right: -1px;
    position: relative;
    width: calc(100% + 2px);
    z-index: 4
}

.sEvents__line {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    left: 1.3888888889rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 16px
}

.sEvents__line:after {
    background-color: #d4d4d4;
    content: "";
    height: 20px;
    position: absolute;
    top: 0;
    width: 100%
}

.sEvents__line:before {
    --size: 12px;
    background-image: linear-gradient(180deg,#16246b,#2b2b2b 26.38%,#c4c4c4);
    bottom: 0;
    -webkit-clip-path: polygon(50% 0,100% var(--size),100% 100%,50% calc(100% - var(--size)),0 100%,0 var(--size));
    clip-path: polygon(50% 0,100% var(--size),100% 100%,50% calc(100% - var(--size)),0 100%,0 var(--size));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.sEvents .container {
    position: relative
}

.sEvents__head {
    border-bottom: 1px solid #000;
    margin-bottom: .4444444444rem;
    padding-bottom: .4444444444rem
}

.sEvents__head span:first-child {
    font-size: 1.7777777778rem;
    line-height: 1.06em;
    margin-right: .2222222222rem
}

.sEvents__head span:last-child,.sEvents__head span:last-child:before {
    font-size: .7777777778rem;
    font-weight: 700
}

.sEvents p {
    font-size: .7777777778rem
}

.sEvents .col-md-6:nth-child(2n) {
    position: relative
}

.sEvents .col-md-6:not(:last-child) .sEvents__wrap {
    margin-bottom: 1.3333333333rem
}

[lang=en] .sEvents__head span:last-child {
    font-size: 0
}

[lang=en] .sEvents__head span:last-child:before {
    content: "year";
    font-size: 1rem
}

.sForm {
    background-color: #e6e6e6;
    padding-bottom: 0;
    padding-top: 0
}

.sForm .form-wrap {
    background-color: #d4d4d4;
    padding: 1.6666666667rem .8888888889rem
}

.sForm .form-wrap h3 {
    margin-bottom: 1.4444444444rem;
    text-transform: none
}

.sForm .form-wrap__input-wrap {
    margin-bottom: .8333333333rem
}

.sForm .form-wrap__input-title {
    color: #2b2b2b;
    font-size: .7777777778rem;
    margin-bottom: .2222222222rem
}

.sForm .form-wrap__input {
    background-color: #fff;
    border: 1px solid #bcbcbc;
    border-radius: 2px
}

.sForm .form-wrap__input::-moz-placeholder {
    color: #d4d4d4;
    font-size: 1rem
}

.sForm .form-wrap__input::placeholder {
    color: #d4d4d4;
    font-size: 1rem
}

.sForm .form-wrap textarea {
    min-height: 6.6666666667rem
}

.sForm .form-wrap__btn {
    width: 100%
}

.sForm .form-wrap__btn:after {
    content: unset
}

.sForm .form-wrap__policy {
    --bs-secondary-rgb: #36332c;
    text-align: left
}

.sForm .form-wrap .filepond {
    margin-top: .7222222222rem
}

.sForm .form-wrap .filepond--credits {
    display: none
}

.sFundamentalPrinciples {
    --sPT: 2.2222222222rem;
    --sPB: 1.7777777778rem;
    background-color: #e6e6e6
}

.sFundamentalPrinciples .row {
    --bs-gutter-y: 1.7777777778rem
}

.sFundamentalPrinciples h2 {
    letter-spacing: .5px;
    margin-bottom: 2.0555555556rem;
    max-width: 49.8333333333rem
}

.sFundamentalPrinciples__content img {
    margin-bottom: .8888888889rem
}

.sFundamentalPrinciples__content p {
    border-top: 1px solid #444;
    padding-top: .8888888889rem
}

.sGoal {
    --sPT: 2.2222222222rem;
    --sPB: 1.5555555556rem;
    background-color: #e6e6e6
}

.sGoal .section-title {
    margin-bottom: 1.6666666667rem
}

.sGoal .section-title h4 {
    margin-bottom: .7777777778rem;
    text-transform: none
}

.sGoal .section-title p {
    margin-bottom: 0
}

.sGoal .section-title p:not(:last-child) {
    margin-bottom: 1.2777777778rem
}

.sGoal h3 {
    margin-bottom: 1.6666666667rem;
    text-transform: none
}

.sGoal__row {
    --bs-gutter-x: 0.8888888889rem;
    --bs-gutter-y: 0.8888888889rem;
    margin-bottom: .8888888889rem
}

.sGoal__item {
    background-color: #fff;
    height: 100%;
    padding: 1.3333333333rem;
    position: relative
}

.sGoal__item picture img {
    -o-object-position: top;
    object-position: top
}

.sGoal__item h5 {
    font-weight: 700;
    margin-bottom: .3333333333rem;
    max-width: 16.9444444444rem;
    text-transform: none
}

.sGoal__item p {
    font-size: .7777777778rem;
    line-height: 1.29em;
    margin-bottom: 0;
    max-width: 16.9444444444rem
}

.sGoal__item .icon {
    height: 44px;
    margin-bottom: .4444444444rem;
    width: 44px
}

.sGoal__warning {
    border: 1px solid #16246b;
    color: #16246b;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2777777778rem;
    padding: .8888888889rem
}

.sGoal__warning .icon {
    flex: 0 0 auto;
    font-size: 1.3333333333rem;
    margin-bottom: .8888888889rem
}

.sGoal__footer p {
    margin-bottom: 1.3888888889rem
}

.sGoal__footer p:last-child {
    margin-bottom: 0
}

.sImgBlock {
    --sPT: 0;
    --sPB: 0
}

.sImgBlock__dark-bg {
    background-color: #d4d4d4;
    padding-bottom: .8888888889rem;
    padding-top: .8888888889rem
}

.sImgBlock__dark-bg picture {
    height: 20rem;
    margin-bottom: 0
}

.sImgBlock__img-row {
    --bs-gutter-x: 0.8888888889rem;
    --bs-gutter-y: 0.4444444444rem
}

.sInfo {
    --sPT: 1.3333333333rem;
    --sPB: 1.7777777778rem;
    background-color: #d4d4d4
}

.sInfo__row {
    --asideW: calc(514px + var(--bs-gutter-x));
    --spx: calc(-50vw + 50% - var(--asideW)*-1/2)
}

.sInfo__wrap {
    margin-bottom: 1.1111111111rem
}

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

.sInfo__content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2222222222rem;
    text-transform: none
}

.sInfo__content ol {
    list-style-type: none;
    margin-bottom: 0;
    max-width: 22.2222222222rem
}

.sInfo__content ol li {
    counter-increment: num;
    padding-left: 2.2222222222rem;
    position: relative
}

.sInfo__content ol li:not(:last-child) {
    margin-bottom: .7777777778rem
}

.sInfo__content ol li:before {
    content: counter(num) ".";
    display: block;
    left: 0;
    position: absolute;
    top: 0
}

.sInfo__list {
    margin-bottom: 0
}

.sInfo__list p {
    margin-bottom: 1.2222222222rem
}

.sInfo__list ul {
    list-style-type: none;
    margin-bottom: 0
}

.sInfo__list ul li {
    padding-left: 1.3333333333rem;
    position: relative
}

.sInfo__list ul li:before {
    background-color: #16246b;
    border-radius: 50%;
    content: "";
    display: block;
    height: 8px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 8px
}

.sInfo__list ul li:not(:last-child) {
    margin-bottom: .7777777778rem
}

.sInfo__footer picture {
    display: block;
    filter: grayscale(0);
    height: 100%;
    margin-bottom: 0;
    position: relative
}

.sInfo__footer picture:before {
    --ratio: 0.94336;
    content: "";
    display: block;
    height: 0;
    padding-bottom: calc(var(--ratio)*100%);
    position: relative
}

.sInfo__footer picture img {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.sInfo__footer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2222222222rem;
    text-transform: none
}

.sInfo__footer p:not(:last-child) {
    margin-bottom: 1.3888888889rem
}

.sInfo__footer-row {
    --bs-gutter-x: 0.8888888889rem;
    --bs-gutter-y: 1.7777777778rem
}

.sInfo--list {
    background-color: #e6e6e6
}

.sInstitute {
    --sPT: 2.2222222222rem;
    --sPB: 2.2222222222rem;
    background-color: #d4d4d4
}

.sInstitute h3 {
    color: #444;
    letter-spacing: -.5px;
    margin-bottom: .8888888889rem;
    max-width: 700px;
    text-transform: none
}

.sInstitute__head p {
    font-size: 18px;
    max-width: 1100px
}

.sInstitute .container>p {
    margin-bottom: 2.2222222222rem
}

.sInstitute__item {
    text-align: center
}

.sInstitute__item:hover picture {
    filter: grayscale(0)
}

.sInstitute__item picture {
    --s: 0.36s;
    filter: grayscale(1);
    margin-bottom: 1.7777777778rem;
    transition: all var(--s) ease-in-out
}

.sInstitute__item p {
    margin-left: auto;
    margin-right: auto;
    max-width: 16.0555555556rem
}

.sInstitute__sliderContainer {
    position: relative
}

.sInstitute .swiper-button-hand {
    --swiperArrowPosition: 0;
    background-color: #c5c5c5
}

.sInvite {
    --sPT: 0.5rem;
    --sPB: 2.2222222222rem;
    background-color: #e6e6e6
}

.sInvite h3 {
    margin-bottom: .8888888889rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 53.1666666667rem;
    text-transform: none
}

.sInvite p {
    margin-bottom: 1.3333333333rem
}

.sInvite button {
    background-color: #2b2b2b;
    width: 100%
}

.sLanguageVersion {
    --sPT: 1.7777777778rem;
    --sPB: 2.2222222222rem;
    background-color: #f0f0f0;
    position: relative
}

.sLanguageVersion .col-md-6:first-child .sLanguageVersion__card {
    margin-bottom: 1.7777777778rem
}

.sLanguageVersion h3,.sLanguageVersion h5 {
    font-weight: 700;
    text-transform: none
}

.sLanguageVersion h3 {
    margin-bottom: 1.3333333333rem
}

.sLanguageVersion h5 {
    margin-bottom: .4444444444rem
}

.sLanguageVersion p {
    margin-bottom: 1.3333333333rem;
    max-width: 28.6666666667rem
}

.sLanguageVersion p.indent {
    margin-bottom: .8888888889rem
}

.sLanguageVersion__link {
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    padding-bottom: .4444444444rem
}

.sLanguageVersion__link:not(:first-of-type) {
    padding-top: .8888888889rem
}

.sLanguageVersion__link p {
    margin-bottom: 0;
    margin-right: auto
}

.sLanguageVersion__link a {
    color: #3044ac
}

.sLanguageVersion__link a:hover {
    color: #16246b
}

.sLanguageVersion__link a+a {
    margin-left: .7777777778rem
}

.sLaws {
    --sPT: 0;
    --sPB: 0;
    background-color: #c7c7c7
}

.sLaws__head {
    background-color: #16246b;
    color: #fff;
    padding-bottom: 2.2222222222rem;
    padding-top: 2.2222222222rem
}

.sLaws__head p {
    font-size: 1.1111111111rem;
    margin-bottom: .4444444444rem
}

.sLaws__head a {
    display: inline-block;
    font-weight: 700;
    position: relative;
    top: .1111111111em
}

.sLaws__head a:hover {
    color: #c7c7c7
}

.sLaws__card {
    background-color: #f0f0f0;
    padding-bottom: 2.2222222222rem;
    padding-top: 2.2222222222rem
}

.sLaws__card h3,.sLaws__card:not(:last-child) {
    margin-bottom: .8888888889rem
}

.sLaws__card h3 {
    text-transform: none
}

.sLaws__card ul {
    display: flex;
    flex-direction: column;
    margin-left: 0
}

.sLaws__card ul+p {
    padding-top: .8888888889rem
}

.sLaws__card li {
    align-items: center;
    display: flex
}

.sLaws__card li:not(:last-child) {
    margin-bottom: 1.3333333333rem
}

.sLaws__card li:before {
    background-color: #16246b;
    border-radius: 50%;
    content: "";
    display: inline-block;
    margin-right: .8888888889rem;
    min-height: 8px;
    min-width: 8px
}

.sLicenses {
    background-color: #d4d4d4
}

.sLicenses .swiper-wrapper {
    align-items: center
}

.sLicenses h2 {
    margin-bottom: .8888888889rem
}

.sLicenses__sertificate {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 13.3333333333rem;
    position: relative
}

.sLicenses__sertificate picture {
    --s: 0.36s;
    filter: grayscale(1);
    transition: all var(--s) ease-in-out
}

.sLicenses__sertificate:hover picture {
    filter: grayscale(0)
}

.sLicenses .icon-search {
    --s: 0.36s;
    background-color: rgba(43,43,43,.6);
    border-radius: 1.7777777778rem;
    bottom: 0;
    color: #fff;
    font-size: 1.3333333333rem;
    font-size: 2.2222222222rem;
    left: 0;
    margin: auto;
    padding: .4444444444rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: all var(--s) ease-in-out
}

.sLicenses .swiper-button-hand {
    --swiperArrowPosition: 0;
    background-color: #c5c5c5;
    transform: translateY(0)
}

.sProjectsMap {
    --sPT: 0;
    --sPB: 0
}

.sProjectsMap .closeButton,.sProjectsMap .ymaps-2-1-79-balloon__close-button {
    background-color: #f0f0f0!important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F0F0F0' d='M0 0h32v32.406H0z'/%3E%3Cpath d='m25.334 8.655-1.88-1.904L16 14.3 8.547 6.751l-1.88 1.904 7.453 7.548-7.453 7.548 1.88 1.904L16 18.107l7.454 7.548 1.88-1.904-7.454-7.548 7.454-7.548Z' fill='%23444'/%3E%3C/svg%3E")!important;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 32px!important;
    opacity: 1!important;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px!important;
    z-index: 5
}

.sProjectsMap__map {
    display: block;
    min-height: 26.5rem;
    position: relative
}

.sProjectsMap__map:before {
    --ratio: 0.39115;
    content: "";
    display: block;
    height: 0;
    padding-bottom: calc(var(--ratio)*100%);
    position: relative
}

.sProjectsMap__map>* {
    height: 100%!important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%!important
}

.sProjectsMap .ymaps-layers-pane {
    filter: grayscale(1)
}

.sProjectsMap .closeButton {
    right: calc(var(--gx)/2);
    top: 8px
}

.sProjectsMap__container {
    background: #c5c5c5;
    position: relative
}

.sProjectsMap__container .content {
    padding-bottom: 48px;
    padding-top: 8px;
    position: relative!important
}

.sProjectsMap__container .custom-baloon {
    box-shadow: 0 8px 16px rgba(0,0,0,.16)
}

.sProjectsMap .customControl {
    box-shadow: 0 8px 16px rgba(0,0,0,.16)!important;
    margin-left: 50px;
    max-width: 481px;
    position: relative
}

.sProjectsMap .ymaps-2-1-79-balloon__content {
    width: 340px!important
}

.sProjectsMap .ymaps-2-1-79-balloon__content>* {
    height: auto!important;
    width: 340px!important
}

.sProjectsMap .ymaps-2-1-79-balloon__content {
    background: #444!important;
    margin: 0!important;
    padding: 0!important
}

.sProjectsMap .ymaps-2-1-79-balloon__layout {
    background: #444!important
}

.sProjectsMap .custom-baloon {
    background: #444
}

.sProjectsMap .custom-baloon__img-wrap {
    height: 147px
}

.sProjectsMap .custom-baloon__img-wrap img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.sProjectsMap .custom-baloon__caption {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 1rem
}

.sProjectsMap .ymaps-2-1-79-balloon__tail {
    display: none!important
}

.sQuestions {
    background-color: #d4d4d4
}

.sQuestions h3 {
    margin-bottom: .4444444444rem;
    text-transform: none
}

.sQuestions p {
    margin-bottom: .8888888889rem
}

.sQuestions button {
    width: 100%
}

.sSearch {
    --sPT: 0;
    background: #e6e6e6
}

.sSearch .secion-head {
    background: #f0f0f0
}

.sSearch__item {
    border-bottom: 1px solid #a8a8a8;
    padding-bottom: 24px;
    padding-top: 16px
}

.sSearch__item img {
    --s: 0.36s;
    filter: saturate(0);
    transition: all var(--s) ease-in-out
}

.sSearch__item:hover img {
    filter: saturate(1)
}

.sSearch__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    max-width: 750px
}

.sSearch__title a:hover {
    color: #16246b
}

.sSearch__labels {
    margin-bottom: 16px
}

.sSearch__label {
    background: #fff;
    border: 1px solid #b2b4b8;
    display: inline-block;
    font-size: 14px;
    padding: 8px
}

.sSearch__btn-more {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    letter-spacing: .5px;
    margin-top: 1.1111111111rem;
    position: relative;
    text-transform: uppercase;
    z-index: 4
}

.sSearch__btn-more .icon {
    font-size: 22px;
    margin-right: .9444444444rem;
    position: relative;
    transform: rotate(1turn)
}

.sServiseBody {
    background: #e6e6e6
}

.sServiseBody h2 {
    margin-bottom: 1.3333333333rem
}

.sServiseBody p {
    margin-bottom: 1.1111111111rem
}

.sServiseBody p strong {
    font-size: calc(1.26389rem + .1875vw);
    font-weight: 700
}

.sServiseBody li {
    border-top: 1px solid #d4d4d4;
    padding-bottom: 1.3333333333rem;
    padding-left: 1.6666666667rem;
    padding-top: 1.3333333333rem;
    position: relative
}

.sServiseBody li:first-child {
    border: none
}

.sServiseBody li:before {
    background-image: var(--list-style);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 1.3333333333rem;
    left: 0;
    position: absolute;
    top: -.1111111111rem;
    top: 1.3333333333rem;
    width: 1.3333333333rem
}

.sServiseGal {
    --s: 0.36s;
    --sTPB: 2.2222222222rem;
    background: #bcbcbc;
    filter: saturate(0);
    transition: all var(--s) ease-in-out
}

.sServiseGal h2 {
    color: #16246b
}

.sServiseGal:hover {
    filter: saturate(1)
}

.sServiseGal .container {
    padding-left: 3.5555555556rem;
    padding-right: 3.5555555556rem
}

.sServiseGal p {
    font-size: 1rem;
    margin-bottom: .8888888889rem;
    max-width: 30rem
}

.sServiseGal__col {
    margin-bottom: 2rem
}

.sServiseGal__row-main {
    --bs-gutter-x: 48px
}

.sServiseGal__item {
    border-left: 2px solid #444;
    max-width: 14.4444444444rem;
    min-height: 100%;
    padding-left: .8888888889rem
}

.sServiseGal__title {
    color: #444;
    font-size: 1.1111111111rem;
    margin-bottom: .4444444444rem
}

.sServiseGal__slider-wrap {
    position: relative
}

.sServiseGal__caption {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 1rem
}

.card__left-side .sServiseGal a,.sServiseGal .btn,.sServiseGal .card__left-side a,.sServiseGal .secion-head__btn {
    margin-bottom: 1.7777777778rem;
    margin-top: auto;
    width: 200px
}

.sServiseGal picture {
    margin-bottom: .8888888889rem
}

.sServiseHead {
    background: #f0f0f0
}

.sServiseHead__icon-wrap {
    align-items: center;
    border: 3px solid;
    border-radius: 50%;
    color: #16246b;
    display: flex;
    height: 5.7777777778rem;
    justify-content: center;
    margin-bottom: 16px;
    width: 5.7777777778rem
}

.sServiseHead__icon-wrap img,.sServiseHead__icon-wrap svg {
    width: 4.1666666667rem
}

.sServiseHead__icon-wrap img *,.sServiseHead__icon-wrap svg * {
    opacity: 1!important
}

.sServiseHead__icon-wrap img [fill=white],.sServiseHead__icon-wrap svg [fill=white] {
    fill: #16246b!important
}

.sServiseHead__icon-wrap img [stroke=white],.sServiseHead__icon-wrap svg [stroke=white] {
    stroke: #16246b!important
}

.sServiseHead h1 {
    margin-bottom: .8888888889rem
}

.sServiseHead__head {
    margin-bottom: 2.6666666667rem
}

.sServiseHead__head p {
    font-size: calc(1.26389rem + .1875vw)
}

.sSteps {
    --sPT: 0.8888888889rem;
    --sPB: 1.1111111111rem
}

.sSteps__wrap {
    color: #fff;
    padding: .8888888889rem
}

.sSteps__row {
    counter-reset: num;
    margin-bottom: 1.9444444444rem
}

.sSteps__row .col-md-6:before {
    content: counter(num);
    counter-increment: num;
    display: block;
    font-size: 2.2222222222rem
}

.sSteps__row .col-md-6:first-child p {
    margin-bottom: 1.3333333333rem
}

.sSteps h4 {
    margin-bottom: 2.6666666667rem
}

.sSteps span {
    display: none;
    font-size: 2.2222222222rem
}

.sSteps h5 {
    border-top: 1px solid #fff;
    margin-bottom: .4444444444rem;
    padding-top: .4444444444rem;
    text-transform: none
}

.sTeam {
    background: #dbdbdb
}

.sTeam .row {
    --bs-gutter-y: 48px
}

.sTeam picture {
    --s: 0.36s;
    margin-bottom: 1.3333333333rem;
    transition: all var(--s) ease-in-out
}

.sTeam__title {
    font-size: 1.1111111111rem;
    font-weight: 600;
    margin-bottom: .8888888889rem
}

.sTeam__title span {
    display: block;
    font-size: calc(1.26389rem + .1875vw);
    font-weight: 700
}

.sTestingCenter {
    --sPT: 0.8888888889rem;
    --sPB: 2.2222222222rem;
    background-color: #c5c5c5
}

.sTestingCenter picture {
    --s: 0.36s;
    filter: grayscale(1);
    margin-bottom: 1.7222222222rem;
    transition: all var(--s) ease-in-out
}

.sTestingCenter picture:hover {
    filter: grayscale(0)
}

.sTestingCenter h2 {
    margin-bottom: .4444444444rem
}

.sTestingCenter p {
    margin-bottom: 1.3333333333rem
}

.sTestingCenter p a {
    color: #16246b
}

.sTestingContent {
    background-color: #d4d4d4
}

.sTestingContent__sliderContainer {
    position: relative
}

.sTestingContent .row {
    --bs-gutter-x: 1.8333333333rem
}

.sTestingContent__col {
    align-items: center;
    display: flex
}

.sTestingContent picture {
    --s: 0.36s;
    filter: grayscale(1);
    margin-bottom: .8888888889rem;
    transition: all var(--s) ease-in-out
}

.sTestingContent picture:hover {
    filter: grayscale(0)
}

.sTestingContent--2 {
    padding-bottom: 1.7777777778rem;
    padding-top: 1.7222222222rem
}

.sTestingContent--2 p {
    margin-bottom: 1.1111111111rem
}

.sTestingContent--2 .sTestingContent__row {
    --bs-gutter-x: 0
}

.sTestingContent--2 .sTestingContent__col {
    display: block
}

.sTestingContent--2 picture {
    display: block;
    filter: grayscale(0);
    height: 100%;
    margin-bottom: 0;
    position: relative
}

.sTestingContent--2 picture:before {
    --ratio: 0.94336;
    content: "";
    display: block;
    height: 0;
    padding-bottom: calc(var(--ratio)*100%);
    position: relative
}

.sTestingContent--2 picture img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.sTestingContent--2 .swiper-button-hand {
    top: 30px
}

.sTestingContent--2 .swiper-button-hand-next {
    left: calc(50% - 2.8rem + 50vw)
}

.sTestingContent--2 .swiper-button-hand-prev {
    left: unset;
    right: calc(50% - 2.8rem + 50vw)
}

.sVacancies {
    --sPT: 1.1111111111rem;
    --sPB: 2.2222222222rem
}

.sVacancies h2 {
    margin-bottom: 1.3333333333rem
}

.sVacancies h4 {
    margin-bottom: .6666666667rem
}

.sVacancies__item:not(:last-of-type) {
    margin-bottom: 2rem
}

.sVacancies__link {
    border-bottom: 1px solid #d4d4d4;
    display: block;
    padding-bottom: .4444444444rem
}

.sVacancies__link:not(:first-of-type) {
    padding-top: .4444444444rem
}

.sVacancies__link:hover {
    color: #16246b
}

.sVacancies__link p {
    margin-right: auto
}

.sVacancies__link span {
    font-weight: 700;
    margin-right: 1.3333333333rem
}

.sVacancies .icon-chevron-right {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    background-color: #16246b;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3333333333rem
}

.sVacancies__show-less,.sVacancies__show-more {
    color: #16246b;
    display: block;
    font-size: .7777777778rem;
    font-weight: 700;
    margin-top: 1.1111111111rem
}

.sVacancies__show-less .icon,.sVacancies__show-more .icon {
    font-size: 1.3333333333rem;
    vertical-align: middle
}

.sVacancies__show-less .icon {
    transform: rotate(180deg)
}

@media (min-width: 480px) {
    .promo {
        opacity:.5;
        position: relative;
        top: 50px
    }

    .promo.shown {
        opacity: 1;
        top: 0
    }

    .news__date {
        margin-bottom: 77px
    }

    .news__day {
        font-size: 62px
    }

    .menu>ul>li {
        max-width: 350px
    }

    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,.gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,.gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,.gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,.gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,.gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,.gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,.gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,.gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,.gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,.gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,.gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,.gy-sm-5 {
        --bs-gutter-y: 3rem
    }

    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .float-sm-start {
        float: left!important
    }

    .float-sm-end {
        float: right!important
    }

    .float-sm-none {
        float: none!important
    }

    .d-sm-inline {
        display: inline!important
    }

    .d-sm-inline-block {
        display: inline-block!important
    }

    .d-sm-block {
        display: block!important
    }

    .d-sm-grid {
        display: grid!important
    }

    .d-sm-table {
        display: table!important
    }

    .d-sm-table-row {
        display: table-row!important
    }

    .d-sm-table-cell {
        display: table-cell!important
    }

    .d-sm-flex {
        display: flex!important
    }

    .d-sm-inline-flex {
        display: inline-flex!important
    }

    .d-sm-none {
        display: none!important
    }

    .flex-sm-fill {
        flex: 1 1 auto!important
    }

    .flex-sm-row {
        flex-direction: row!important
    }

    .flex-sm-column {
        flex-direction: column!important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-sm-grow-0 {
        flex-grow: 0!important
    }

    .flex-sm-grow-1 {
        flex-grow: 1!important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-sm-wrap {
        flex-wrap: wrap!important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-sm-0 {
        gap: 0!important
    }

    .gap-sm-1 {
        gap: .25rem!important
    }

    .gap-sm-2 {
        gap: .5rem!important
    }

    .gap-sm-3 {
        gap: 1rem!important
    }

    .gap-sm-4 {
        gap: 1.5rem!important
    }

    .gap-sm-5 {
        gap: 3rem!important
    }

    .justify-content-sm-start {
        justify-content: flex-start!important
    }

    .justify-content-sm-end {
        justify-content: flex-end!important
    }

    .justify-content-sm-center {
        justify-content: center!important
    }

    .justify-content-sm-between {
        justify-content: space-between!important
    }

    .justify-content-sm-around {
        justify-content: space-around!important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly!important
    }

    .align-items-sm-start {
        align-items: flex-start!important
    }

    .align-items-sm-end {
        align-items: flex-end!important
    }

    .align-items-sm-center {
        align-items: center!important
    }

    .align-items-sm-baseline {
        align-items: baseline!important
    }

    .align-items-sm-stretch {
        align-items: stretch!important
    }

    .align-content-sm-start {
        align-content: flex-start!important
    }

    .align-content-sm-end {
        align-content: flex-end!important
    }

    .align-content-sm-center {
        align-content: center!important
    }

    .align-content-sm-between {
        align-content: space-between!important
    }

    .align-content-sm-around {
        align-content: space-around!important
    }

    .align-content-sm-stretch {
        align-content: stretch!important
    }

    .align-self-sm-auto {
        align-self: auto!important
    }

    .align-self-sm-start {
        align-self: flex-start!important
    }

    .align-self-sm-end {
        align-self: flex-end!important
    }

    .align-self-sm-center {
        align-self: center!important
    }

    .align-self-sm-baseline {
        align-self: baseline!important
    }

    .align-self-sm-stretch {
        align-self: stretch!important
    }

    .order-sm-first {
        order: -1!important
    }

    .order-sm-0 {
        order: 0!important
    }

    .order-sm-1 {
        order: 1!important
    }

    .order-sm-2 {
        order: 2!important
    }

    .order-sm-3 {
        order: 3!important
    }

    .order-sm-4 {
        order: 4!important
    }

    .order-sm-5 {
        order: 5!important
    }

    .order-sm-last {
        order: 6!important
    }

    .m-sm-0 {
        margin: 0!important
    }

    .m-sm-1 {
        margin: .25rem!important
    }

    .m-sm-2 {
        margin: .5rem!important
    }

    .m-sm-3 {
        margin: 1rem!important
    }

    .m-sm-4 {
        margin: 1.5rem!important
    }

    .m-sm-5 {
        margin: 3rem!important
    }

    .m-sm-auto {
        margin: auto!important
    }

    .mx-sm-0 {
        margin-left: 0!important;
        margin-right: 0!important
    }

    .mx-sm-1 {
        margin-left: .25rem!important;
        margin-right: .25rem!important
    }

    .mx-sm-2 {
        margin-left: .5rem!important;
        margin-right: .5rem!important
    }

    .mx-sm-3 {
        margin-left: 1rem!important;
        margin-right: 1rem!important
    }

    .mx-sm-4 {
        margin-left: 1.5rem!important;
        margin-right: 1.5rem!important
    }

    .mx-sm-5 {
        margin-left: 3rem!important;
        margin-right: 3rem!important
    }

    .mx-sm-auto {
        margin-left: auto!important;
        margin-right: auto!important
    }

    .my-sm-0 {
        margin-bottom: 0!important;
        margin-top: 0!important
    }

    .my-sm-1 {
        margin-bottom: .25rem!important;
        margin-top: .25rem!important
    }

    .my-sm-2 {
        margin-bottom: .5rem!important;
        margin-top: .5rem!important
    }

    .my-sm-3 {
        margin-bottom: 1rem!important;
        margin-top: 1rem!important
    }

    .my-sm-4 {
        margin-bottom: 1.5rem!important;
        margin-top: 1.5rem!important
    }

    .my-sm-5 {
        margin-bottom: 3rem!important;
        margin-top: 3rem!important
    }

    .my-sm-auto {
        margin-bottom: auto!important;
        margin-top: auto!important
    }

    .mt-sm-0 {
        margin-top: 0!important
    }

    .mt-sm-1 {
        margin-top: .25rem!important
    }

    .mt-sm-2 {
        margin-top: .5rem!important
    }

    .mt-sm-3 {
        margin-top: 1rem!important
    }

    .mt-sm-4 {
        margin-top: 1.5rem!important
    }

    .mt-sm-5 {
        margin-top: 3rem!important
    }

    .mt-sm-auto {
        margin-top: auto!important
    }

    .me-sm-0 {
        margin-right: 0!important
    }

    .me-sm-1 {
        margin-right: .25rem!important
    }

    .me-sm-2 {
        margin-right: .5rem!important
    }

    .me-sm-3 {
        margin-right: 1rem!important
    }

    .me-sm-4 {
        margin-right: 1.5rem!important
    }

    .me-sm-5 {
        margin-right: 3rem!important
    }

    .me-sm-auto {
        margin-right: auto!important
    }

    .mb-sm-0 {
        margin-bottom: 0!important
    }

    .mb-sm-1 {
        margin-bottom: .25rem!important
    }

    .mb-sm-2 {
        margin-bottom: .5rem!important
    }

    .mb-sm-3 {
        margin-bottom: 1rem!important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-sm-5 {
        margin-bottom: 3rem!important
    }

    .mb-sm-auto {
        margin-bottom: auto!important
    }

    .ms-sm-0 {
        margin-left: 0!important
    }

    .ms-sm-1 {
        margin-left: .25rem!important
    }

    .ms-sm-2 {
        margin-left: .5rem!important
    }

    .ms-sm-3 {
        margin-left: 1rem!important
    }

    .ms-sm-4 {
        margin-left: 1.5rem!important
    }

    .ms-sm-5 {
        margin-left: 3rem!important
    }

    .ms-sm-auto {
        margin-left: auto!important
    }

    .p-sm-0 {
        padding: 0!important
    }

    .p-sm-1 {
        padding: .25rem!important
    }

    .p-sm-2 {
        padding: .5rem!important
    }

    .p-sm-3 {
        padding: 1rem!important
    }

    .p-sm-4 {
        padding: 1.5rem!important
    }

    .p-sm-5 {
        padding: 3rem!important
    }

    .px-sm-0 {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .px-sm-1 {
        padding-left: .25rem!important;
        padding-right: .25rem!important
    }

    .px-sm-2 {
        padding-left: .5rem!important;
        padding-right: .5rem!important
    }

    .px-sm-3 {
        padding-left: 1rem!important;
        padding-right: 1rem!important
    }

    .px-sm-4 {
        padding-left: 1.5rem!important;
        padding-right: 1.5rem!important
    }

    .px-sm-5 {
        padding-left: 3rem!important;
        padding-right: 3rem!important
    }

    .py-sm-0 {
        padding-bottom: 0!important;
        padding-top: 0!important
    }

    .py-sm-1 {
        padding-bottom: .25rem!important;
        padding-top: .25rem!important
    }

    .py-sm-2 {
        padding-bottom: .5rem!important;
        padding-top: .5rem!important
    }

    .py-sm-3 {
        padding-bottom: 1rem!important;
        padding-top: 1rem!important
    }

    .py-sm-4 {
        padding-bottom: 1.5rem!important;
        padding-top: 1.5rem!important
    }

    .py-sm-5 {
        padding-bottom: 3rem!important;
        padding-top: 3rem!important
    }

    .pt-sm-0 {
        padding-top: 0!important
    }

    .pt-sm-1 {
        padding-top: .25rem!important
    }

    .pt-sm-2 {
        padding-top: .5rem!important
    }

    .pt-sm-3 {
        padding-top: 1rem!important
    }

    .pt-sm-4 {
        padding-top: 1.5rem!important
    }

    .pt-sm-5 {
        padding-top: 3rem!important
    }

    .pe-sm-0 {
        padding-right: 0!important
    }

    .pe-sm-1 {
        padding-right: .25rem!important
    }

    .pe-sm-2 {
        padding-right: .5rem!important
    }

    .pe-sm-3 {
        padding-right: 1rem!important
    }

    .pe-sm-4 {
        padding-right: 1.5rem!important
    }

    .pe-sm-5 {
        padding-right: 3rem!important
    }

    .pb-sm-0 {
        padding-bottom: 0!important
    }

    .pb-sm-1 {
        padding-bottom: .25rem!important
    }

    .pb-sm-2 {
        padding-bottom: .5rem!important
    }

    .pb-sm-3 {
        padding-bottom: 1rem!important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-sm-5 {
        padding-bottom: 3rem!important
    }

    .ps-sm-0 {
        padding-left: 0!important
    }

    .ps-sm-1 {
        padding-left: .25rem!important
    }

    .ps-sm-2 {
        padding-left: .5rem!important
    }

    .ps-sm-3 {
        padding-left: 1rem!important
    }

    .ps-sm-4 {
        padding-left: 1.5rem!important
    }

    .ps-sm-5 {
        padding-left: 3rem!important
    }

    .text-sm-start {
        text-align: left!important
    }

    .text-sm-end {
        text-align: right!important
    }

    .text-sm-center {
        text-align: center!important
    }

    :root {
        --gx: 40px;
        --fancybox-bg: rgba(18,27,58,.9)
    }

    .mapBlock__btn {
        left: .8888888889rem;
        position: absolute;
        top: .8888888889rem
    }

    .header__search .block-search-wrap {
        --s: 0.36s;
        max-width: calc(100vw - 200px);
        position: absolute;
        right: 0;
        transform: scaleX(var(--show,0));
        transform-origin: right;
        transition: all var(--s) ease-in-out;
        visibility: var(--show,hidden);
        width: 40.7777777778rem
    }

    .header__search .block-search-wrap.active {
        --show: 1
    }

    .page-head {
        --minH: 274px;
        padding-bottom: 1.3333333333rem
    }

    .page-head--h {
        --minH: 24.5555555556rem
    }

    .page-head {
        padding-top: 4.4444444444rem
    }

    .page-head--inner {
        --minH: auto;
        padding-bottom: 1.3333333333rem
    }

    .contactBlock__col:first-child .contactBlock__item {
        border: none;
        padding-left: 0
    }

    .contactBlock__item {
        border-bottom: none;
        border-left: 1px solid #bcbcbc;
        padding-left: 1rem
    }

    .docLine--second {
        border-top: none
    }

    .docLine--third {
        border-top: none
    }

    .fancybox__content>.carousel__button.is-close {
        color: #fff
    }

    .modal-text {
        max-width: 1000px
    }

    .alert-block {
        bottom: 8px;
        max-width: 348px;
        padding-right: 30px
    }

    .news--page {
        padding-bottom: 6.1111111111rem
    }

    .news__btn-more {
        margin-top: 2.2222222222rem
    }

    .news__cards--page {
        --count: 2;
        display: grid!important
    }

    .card:first-child {
        margin-bottom: 1.3333333333rem
    }

    .card__left-side .card__wrap {
        justify-content: space-between
    }

    .card__right-side .card__wrap {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 2.8888888889rem;
        row-gap: 0
    }

    .card__content p {
        max-width: 13.8888888889rem
    }

    .sContent--certificate .docLine {
        border-color: hsla(0,0%,74%,.3)
    }

    .sEvents {
        --sPB: 2.2222222222rem
    }

    .sLaws__card h3 {
        margin-bottom: 1.3333333333rem
    }

    .sLicenses h2 {
        margin-bottom: 1.3333333333rem
    }

    .sSearch__btn-more {
        margin-top: 4.4444444444rem
    }

    .sServiseBody ul {
        display: flex;
        flex-wrap: wrap
    }

    .sServiseBody li {
        flex: 1 0 0%;
        max-width: 500px;
        min-width: 50%;
        padding-right: 1.6666666667rem
    }

    .sServiseBody li:nth-child(2) {
        border: none
    }

    .sTestingContent--2 .sTestingContent__col:not(:last-child) {
        border-right: 1px solid #d4d4d4
    }
}

@media (min-width: 481px) {
    .mobile {
        display:none
    }
}

@media (min-width: 600px) {
    .landingInfo__item:first-child {
        left:-200px;
        transition: .5s ease
    }

    .landingInfo__item:nth-child(2) {
        left: 200px;
        transition: .5s ease
    }

    .landingInfo__item:nth-child(3) {
        left: -250px;
        transition: .6s ease
    }

    .landingInfo__item:nth-child(4) {
        left: 250px;
        transition: .6s ease
    }

    .landingInfo__item:nth-child(5) {
        left: -300px;
        transition: .7s ease
    }

    .landingInfo__item:nth-child(6) {
        left: 300px;
        transition: .7s ease
    }

    .landingInfo__item:nth-child(7) {
        left: -350px;
        transition: .8s ease
    }

    .landingInfo__item:nth-child(8) {
        left: 350px;
        transition: .8s ease
    }

    .landingInfo.shown .landingInfo__item {
        left: 0
    }

    .landingInfo__item:hover {
        background-color: #fff
    }

    .landingInfo__item:hover .loadingInfo__text,.landingInfo__item:hover h4 {
        color: #16246b
    }

    .landingInfo__item:hover .landingInfo__image img:first-child {
        display: none
    }

    .landingInfo__item:hover .landingInfo__image img:last-child {
        display: block
    }
}

@media (min-width: 768px) {
    .newsSlider:hover .newsSlider__slide {
        filter:grayscale(0)
    }

    .landingInfo__grid {
        grid-row-gap: 32px;
        grid-column-gap: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .landingInfo__textGrid .landingInfo__exp,.landingInfo__textGrid .landingInfo__textSubGrid {
        opacity: .5;
        position: relative;
        transition: .5s ease
    }

    .landingInfo__textGrid .landingInfo__exp {
        left: -200px
    }

    .landingInfo__textGrid .landingInfo__textSubGrid {
        left: 200px
    }

    .landingInfo__textGrid.shown .landingInfo__exp,.landingInfo__textGrid.shown .landingInfo__textSubGrid {
        left: 0;
        opacity: 1
    }

    .promo__text:hover {
        filter: grayscale(0)
    }

    .partnersSlider__slide:hover {
        color: #fff;
        filter: grayscale(0)
    }

    ::-webkit-scrollbar {
        width: 20px
    }

    ::-webkit-scrollbar,::-webkit-scrollbar-track {
        background-color: transparent
    }

    ::-webkit-scrollbar-thumb {
        background-clip: content-box;
        background-color: hsla(0,0%,77%,.2);
        border: 6px solid transparent;
        border-radius: 20px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: hsla(0,0%,77%,.4)
    }

    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,.gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,.gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,.gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,.gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,.gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,.gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,.gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,.gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,.gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,.gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,.gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,.gy-md-5 {
        --bs-gutter-y: 3rem
    }

    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .float-md-start {
        float: left!important
    }

    .float-md-end {
        float: right!important
    }

    .float-md-none {
        float: none!important
    }

    .d-md-inline {
        display: inline!important
    }

    .d-md-inline-block {
        display: inline-block!important
    }

    .d-md-block {
        display: block!important
    }

    .d-md-grid {
        display: grid!important
    }

    .d-md-table {
        display: table!important
    }

    .d-md-table-row {
        display: table-row!important
    }

    .d-md-table-cell {
        display: table-cell!important
    }

    .d-md-flex {
        display: flex!important
    }

    .d-md-inline-flex {
        display: inline-flex!important
    }

    .d-md-none {
        display: none!important
    }

    .flex-md-fill {
        flex: 1 1 auto!important
    }

    .flex-md-row {
        flex-direction: row!important
    }

    .flex-md-column {
        flex-direction: column!important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-md-grow-0 {
        flex-grow: 0!important
    }

    .flex-md-grow-1 {
        flex-grow: 1!important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-md-wrap {
        flex-wrap: wrap!important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-md-0 {
        gap: 0!important
    }

    .gap-md-1 {
        gap: .25rem!important
    }

    .gap-md-2 {
        gap: .5rem!important
    }

    .gap-md-3 {
        gap: 1rem!important
    }

    .gap-md-4 {
        gap: 1.5rem!important
    }

    .gap-md-5 {
        gap: 3rem!important
    }

    .justify-content-md-start {
        justify-content: flex-start!important
    }

    .justify-content-md-end {
        justify-content: flex-end!important
    }

    .justify-content-md-center {
        justify-content: center!important
    }

    .justify-content-md-between {
        justify-content: space-between!important
    }

    .justify-content-md-around {
        justify-content: space-around!important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly!important
    }

    .align-items-md-start {
        align-items: flex-start!important
    }

    .align-items-md-end {
        align-items: flex-end!important
    }

    .align-items-md-center {
        align-items: center!important
    }

    .align-items-md-baseline {
        align-items: baseline!important
    }

    .align-items-md-stretch {
        align-items: stretch!important
    }

    .align-content-md-start {
        align-content: flex-start!important
    }

    .align-content-md-end {
        align-content: flex-end!important
    }

    .align-content-md-center {
        align-content: center!important
    }

    .align-content-md-between {
        align-content: space-between!important
    }

    .align-content-md-around {
        align-content: space-around!important
    }

    .align-content-md-stretch {
        align-content: stretch!important
    }

    .align-self-md-auto {
        align-self: auto!important
    }

    .align-self-md-start {
        align-self: flex-start!important
    }

    .align-self-md-end {
        align-self: flex-end!important
    }

    .align-self-md-center {
        align-self: center!important
    }

    .align-self-md-baseline {
        align-self: baseline!important
    }

    .align-self-md-stretch {
        align-self: stretch!important
    }

    .order-md-first {
        order: -1!important
    }

    .order-md-0 {
        order: 0!important
    }

    .order-md-1 {
        order: 1!important
    }

    .order-md-2 {
        order: 2!important
    }

    .order-md-3 {
        order: 3!important
    }

    .order-md-4 {
        order: 4!important
    }

    .order-md-5 {
        order: 5!important
    }

    .order-md-last {
        order: 6!important
    }

    .m-md-0 {
        margin: 0!important
    }

    .m-md-1 {
        margin: .25rem!important
    }

    .m-md-2 {
        margin: .5rem!important
    }

    .m-md-3 {
        margin: 1rem!important
    }

    .m-md-4 {
        margin: 1.5rem!important
    }

    .m-md-5 {
        margin: 3rem!important
    }

    .m-md-auto {
        margin: auto!important
    }

    .mx-md-0 {
        margin-left: 0!important;
        margin-right: 0!important
    }

    .mx-md-1 {
        margin-left: .25rem!important;
        margin-right: .25rem!important
    }

    .mx-md-2 {
        margin-left: .5rem!important;
        margin-right: .5rem!important
    }

    .mx-md-3 {
        margin-left: 1rem!important;
        margin-right: 1rem!important
    }

    .mx-md-4 {
        margin-left: 1.5rem!important;
        margin-right: 1.5rem!important
    }

    .mx-md-5 {
        margin-left: 3rem!important;
        margin-right: 3rem!important
    }

    .mx-md-auto {
        margin-left: auto!important;
        margin-right: auto!important
    }

    .my-md-0 {
        margin-bottom: 0!important;
        margin-top: 0!important
    }

    .my-md-1 {
        margin-bottom: .25rem!important;
        margin-top: .25rem!important
    }

    .my-md-2 {
        margin-bottom: .5rem!important;
        margin-top: .5rem!important
    }

    .my-md-3 {
        margin-bottom: 1rem!important;
        margin-top: 1rem!important
    }

    .my-md-4 {
        margin-bottom: 1.5rem!important;
        margin-top: 1.5rem!important
    }

    .my-md-5 {
        margin-bottom: 3rem!important;
        margin-top: 3rem!important
    }

    .my-md-auto {
        margin-bottom: auto!important;
        margin-top: auto!important
    }

    .mt-md-0 {
        margin-top: 0!important
    }

    .mt-md-1 {
        margin-top: .25rem!important
    }

    .mt-md-2 {
        margin-top: .5rem!important
    }

    .mt-md-3 {
        margin-top: 1rem!important
    }

    .mt-md-4 {
        margin-top: 1.5rem!important
    }

    .mt-md-5 {
        margin-top: 3rem!important
    }

    .mt-md-auto {
        margin-top: auto!important
    }

    .me-md-0 {
        margin-right: 0!important
    }

    .me-md-1 {
        margin-right: .25rem!important
    }

    .me-md-2 {
        margin-right: .5rem!important
    }

    .me-md-3 {
        margin-right: 1rem!important
    }

    .me-md-4 {
        margin-right: 1.5rem!important
    }

    .me-md-5 {
        margin-right: 3rem!important
    }

    .me-md-auto {
        margin-right: auto!important
    }

    .mb-md-0 {
        margin-bottom: 0!important
    }

    .mb-md-1 {
        margin-bottom: .25rem!important
    }

    .mb-md-2 {
        margin-bottom: .5rem!important
    }

    .mb-md-3 {
        margin-bottom: 1rem!important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-md-5 {
        margin-bottom: 3rem!important
    }

    .mb-md-auto {
        margin-bottom: auto!important
    }

    .ms-md-0 {
        margin-left: 0!important
    }

    .ms-md-1 {
        margin-left: .25rem!important
    }

    .ms-md-2 {
        margin-left: .5rem!important
    }

    .ms-md-3 {
        margin-left: 1rem!important
    }

    .ms-md-4 {
        margin-left: 1.5rem!important
    }

    .ms-md-5 {
        margin-left: 3rem!important
    }

    .ms-md-auto {
        margin-left: auto!important
    }

    .p-md-0 {
        padding: 0!important
    }

    .p-md-1 {
        padding: .25rem!important
    }

    .p-md-2 {
        padding: .5rem!important
    }

    .p-md-3 {
        padding: 1rem!important
    }

    .p-md-4 {
        padding: 1.5rem!important
    }

    .p-md-5 {
        padding: 3rem!important
    }

    .px-md-0 {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .px-md-1 {
        padding-left: .25rem!important;
        padding-right: .25rem!important
    }

    .px-md-2 {
        padding-left: .5rem!important;
        padding-right: .5rem!important
    }

    .px-md-3 {
        padding-left: 1rem!important;
        padding-right: 1rem!important
    }

    .px-md-4 {
        padding-left: 1.5rem!important;
        padding-right: 1.5rem!important
    }

    .px-md-5 {
        padding-left: 3rem!important;
        padding-right: 3rem!important
    }

    .py-md-0 {
        padding-bottom: 0!important;
        padding-top: 0!important
    }

    .py-md-1 {
        padding-bottom: .25rem!important;
        padding-top: .25rem!important
    }

    .py-md-2 {
        padding-bottom: .5rem!important;
        padding-top: .5rem!important
    }

    .py-md-3 {
        padding-bottom: 1rem!important;
        padding-top: 1rem!important
    }

    .py-md-4 {
        padding-bottom: 1.5rem!important;
        padding-top: 1.5rem!important
    }

    .py-md-5 {
        padding-bottom: 3rem!important;
        padding-top: 3rem!important
    }

    .pt-md-0 {
        padding-top: 0!important
    }

    .pt-md-1 {
        padding-top: .25rem!important
    }

    .pt-md-2 {
        padding-top: .5rem!important
    }

    .pt-md-3 {
        padding-top: 1rem!important
    }

    .pt-md-4 {
        padding-top: 1.5rem!important
    }

    .pt-md-5 {
        padding-top: 3rem!important
    }

    .pe-md-0 {
        padding-right: 0!important
    }

    .pe-md-1 {
        padding-right: .25rem!important
    }

    .pe-md-2 {
        padding-right: .5rem!important
    }

    .pe-md-3 {
        padding-right: 1rem!important
    }

    .pe-md-4 {
        padding-right: 1.5rem!important
    }

    .pe-md-5 {
        padding-right: 3rem!important
    }

    .pb-md-0 {
        padding-bottom: 0!important
    }

    .pb-md-1 {
        padding-bottom: .25rem!important
    }

    .pb-md-2 {
        padding-bottom: .5rem!important
    }

    .pb-md-3 {
        padding-bottom: 1rem!important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-md-5 {
        padding-bottom: 3rem!important
    }

    .ps-md-0 {
        padding-left: 0!important
    }

    .ps-md-1 {
        padding-left: .25rem!important
    }

    .ps-md-2 {
        padding-left: .5rem!important
    }

    .ps-md-3 {
        padding-left: 1rem!important
    }

    .ps-md-4 {
        padding-left: 1.5rem!important
    }

    .ps-md-5 {
        padding-left: 3rem!important
    }

    .text-md-start {
        text-align: left!important
    }

    .text-md-end {
        text-align: right!important
    }

    .text-md-center {
        text-align: center!important
    }

    :root {
        --bs-body-font-size: 16px
    }

    .mapBlock {
        margin-bottom: 2.7777777778rem
    }

    .map-wrap {
        height: 100%
    }

    .page-base .header {
        padding-bottom: 1.0555555556rem
    }

    .custom-select-multiple-js+.select2-container {
        max-width: 282px
    }

    .docLine--second:last-of-type {
        padding-bottom: 2.7222222222rem
    }

    .info-block {
        padding: 1.7777777778rem 1.3333333333rem
    }

    .info-block__head {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: .8888888889rem
    }

    .form-block .form-wrap {
        padding: 2.2222222222rem 1.3333333333rem
    }

    .news__cards--page {
        --count: 3
    }

    .news .slider__arrow {
        top: calc(50% - 100px)
    }

    .news .slider__arrow--prev {
        left: -20px
    }

    .news .slider__arrow--next {
        right: -20px
    }

    .s404 h1 {
        font-size: 9.2222222222rem
    }

    .s404 p {
        margin-bottom: .6666666667rem
    }

    .sAboutTeam__content {
        padding: 2.6666666667rem 1.7777777778rem
    }

    .sAboutTeam__card {
        margin-top: 1rem
    }

    .sAchievements {
        --sPB: 3.5555555556rem
    }

    .sAchievements .row {
        --bs-gutter-y: 3.1111111111rem
    }

    .sAchievements__card span {
        margin-bottom: .8888888889rem
    }

    .sAchievements__card h5 {
        margin-bottom: .8888888889rem
    }

    .sAchievements__award {
        margin-bottom: .8888888889rem
    }

    .sBenefits {
        --sPT: 2.2222222222rem
    }

    .sBenefits .col-md-4:first-child p {
        margin-bottom: 1.2777777778rem
    }

    .sBenefits .col-md-4:nth-child(7) p {
        margin-bottom: 1.2777777778rem
    }

    .sBenefits__link {
        margin-left: none;
        margin-right: none;
        max-width: 16.6111111111rem
    }

    .sBenefits__link h4 {
        margin-bottom: .8888888889rem
    }

    .sBenefits__link p {
        margin-bottom: auto
    }

    .sContent .container--sm {
        max-width: calc(1072px + var(--gx))
    }

    .sContent .head-text {
        font-size: 1.3333333333rem;
        margin-bottom: 3.1111111111rem;
        padding-top: 1.3333333333rem
    }

    .sContent h2 {
        margin-bottom: 1.3333333333rem
    }

    .sContent p {
        margin-bottom: 1.7777777778rem
    }

    .sContent ul {
        margin-bottom: 2.6666666667rem
    }

    .sContent picture~span {
        margin-bottom: 3.1111111111rem
    }

    .sContent h6 {
        margin-bottom: 1.1111111111rem
    }

    .sContent__tableWrap {
        margin-bottom: 3.1111111111rem
    }

    .sContent figure {
        margin-bottom: 3.1111111111rem
    }

    .sContent figure .icon {
        left: -1.6111111111rem
    }

    .sContent figure figcaption {
        margin-left: 2.6666666667rem
    }

    .sContent h3 {
        margin-bottom: 1.3333333333rem
    }

    .sContent h3+p {
        margin-bottom: .8888888889rem
    }

    .sContent ol {
        margin-bottom: 3.1111111111rem
    }

    .sContent h4 {
        margin-bottom: 1.3333333333rem
    }

    .sContent h5 {
        margin-bottom: .8888888889rem
    }

    .sContent h5+p {
        margin-bottom: 1.3333333333rem
    }

    .sContent .video-wrrpaer {
        margin-top: 0
    }

    .sContent--inner h5 {
        margin-bottom: 1.7777777778rem
    }

    .sContent--secondPage p:first-of-type {
        margin-bottom: 1.3333333333rem
    }

    .sContent--secondPage p+p {
        margin-bottom: .4444444444rem
    }

    .sContent--secondPage ul {
        margin-bottom: .8888888889rem
    }

    .sContent--secondPage ul+p {
        margin-bottom: 1.7777777778rem
    }

    .sContent--secondPage picture {
        margin-bottom: 2.2222222222rem
    }

    .sContent--secondPage picture+p {
        margin-bottom: 1.7777777778rem
    }

    .share {
        margin-bottom: 3.5555555556rem;
        margin-top: 2.2222222222rem
    }

    .quotes figure {
        margin-bottom: 3.1111111111rem
    }

    .quotes figure:last-child {
        margin-bottom: 3.5555555556rem
    }

    .content .page-head .container span {
        margin-bottom: .4444444444rem
    }

    .sContent-head__col:first-child .sContent-head__item {
        border: none;
        padding-left: 0
    }

    .sContent .figure {
        --size: 3.5em;
        display: flex;
        flex-wrap: wrap;
        font-size: 14px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 32.2222222222em
    }

    .sContent .figure__icon-wrap {
        bottom: 0;
        position: absolute;
        transform: translateY(50%) rotate(calc(-60deg*var(--item-angle, 0)))
    }

    .sContent .figure__inner {
        position: relative;
        transform: rotate(calc(-60deg*var(--item-angle, 0)));
        width: 320px
    }

    .sContent .figure__item {
        --s: 0.36s;
        bottom: 0;
        display: flex;
        height: 18.3333333333em;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding-top: 3.3333333333rem;
        position: relative;
        transform: rotate(calc(60deg*var(--item-angle, 0)));
        transition: all var(--s) ease-in-out;
        width: 33.3333333333%;
        z-index: 2
    }

    .sContent .figure__item:after,.sContent .figure__item:before {
        --anglep: 33%;
        --w: 298%;
        --h: 100%;
        -webkit-clip-path: polygon(0 0,100% 0,calc(100% - var(--anglep)) 100%,var(--anglep) 100%);
        clip-path: polygon(0 0,100% 0,calc(100% - var(--anglep)) 100%,var(--anglep) 100%);
        content: "";
        left: 50%;
        position: absolute;
        right: auto;
        top: 0;
        transform: translateX(-50%);
        z-index: -1
    }

    .sContent .figure__item:before {
        background-color: #d4d4d4;
        height: var(--h);
        width: var(--w)
    }

    .sContent .figure__item:after {
        --s: 0.36s;
        background-color: var(--c-bg,#f4f3f8);
        height: calc(var(--h) - 2px);
        top: 1px;
        transition: all var(--s) ease-in-out;
        width: calc(var(--w) - 2px)
    }

    .sContent .figure__item:first-child {
        align-items: center;
        order: 1;
        padding: 0;
        text-align: center
    }

    .sContent .figure__item:first-child .figure__inner {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .sContent .figure__item:first-child .figure__icon-wrap {
        bottom: 0;
        transform: translateY(50%);
    }

    .sContent .figure__item:nth-child(2) {
        --item-angle: 1;
        display: flex;
        order: 1;
        transform-origin: left bottom
    }

    .sContent .figure__item:nth-child(6) {
        --item-angle: -1;
        order: -1;
        transform-origin: right bottom
    }

    .sContent .figure__item:nth-child(3) {
        --item-angle: -1;
        display: flex;
        order: 6;
        transform-origin: left top
    }

    .sContent .figure__item:nth-child(4) {
        --item-angle: 3;
        align-items: center;
        order: 2;
        padding: 0;
        text-align: center
    }

    .sContent .figure__item:nth-child(5) {
        --item-angle: 1;
        order: 1;
        transform-origin: right top
    }

    .sContent .figure__item:nth-child(5) p {
        padding-left: 20px;
        /* -webkit-transform: translate3d(0,0,0) !important; */
        /* transform: translate3d(0,0,0) !important; */
        /* transform: translate(calc(-50% - .4px), calc(-50% - .4px)); */
    }

    .sContent .figure__item:nth-child(3) .figure__icon-wrap,.sContent .figure__item:nth-child(5) .figure__icon-wrap {
        bottom: auto;
        top: 0;
        transform: translateY(-50%) rotate(calc(-60deg*var(--item-angle, 0)))
    }

    .sContent .figure__item:nth-child(3):after,.sContent .figure__item:nth-child(5):after {
        top: 1px
    }

    .sContent .figure__item:nth-child(3):after,.sContent .figure__item:nth-child(3):before,.sContent .figure__item:nth-child(5):after,.sContent .figure__item:nth-child(5):before {
        transform: rotateX(180deg) translateX(-50%)
    }

    .sContent .figure__item:nth-child(3),.sContent .figure__item:nth-child(4),.sContent .figure__item:nth-child(5) {
        margin-top: 18.6666666667em;
    }

    .sContent .figure__item:nth-child(5) .figure__inner {
        padding-right: 1.9444444444rem;
        /* filter: blur(0.1px); */
    }

    .sContent .figure__item:nth-child(6) .figure__inner {
        padding-right: 5.8333333333rem;
        filter: blur(0.1px);
    }

    .sContent .figure__item:nth-child(5),.sContent .figure__item:nth-child(6) {
        text-align: right
    }

    .sContent .figure__item:nth-child(2) .figure__inner {
        padding-left: 5.8333333333rem
    }

    .sContent .figure__item:nth-child(3) .figure__inner {
        padding-left: .8333333333rem
    }

    .sContent .figure__item:first-child .figure__inner,.sContent .figure__item:nth-child(4) .figure__inner {
        margin-left: -25%;
        margin-right: -25%
    }

    .sContent--research .figure:before {
        content: "Изыскания"
    }

    .sContent--research .figure__item {
        padding-top: 4.6666666667rem
    }

    .sContent--managment p:first-of-type {
        padding-top: 2.2222222222rem!important
    }

    .sContent--managment p+p {
        margin-bottom: 2.6666666667rem
    }

    .sContent--certificate {
        --sPT: 2.2222222222rem;
        --sPB: 2.8888888889rem
    }

    .sContent--agreement {
        padding-bottom: 1.6666666667rem;
        padding-top: 1.6666666667rem
    }

    .sEvents__line-head {
        height: 2.8888888889rem
    }

    .sEvents__line {
        left: 50%;
        transform: translateX(-50%);
        width: 32px
    }

    .sEvents__line:before {
        --size: 25px
    }

    .sEvents .row {
        --bs-gutter-x: 62px
    }

    .sEvents__head span:first-child {
        font-size: 2.1111111111rem
    }

    .sEvents p {
        font-size: .8888888889rem
    }

    .sEvents .col-md-6:nth-child(2n) {
        margin-top: 120px
    }

    .sEvents .col-md-6:nth-child(2n) .sEvents__wrap {
        margin-left: auto
    }

    .sEvents .col-md-6:not(:last-child) .sEvents__wrap {
        margin-bottom: 3.5555555556rem
    }

    .sForm {
        padding-bottom: 2.2222222222rem
    }

    .sFundamentalPrinciples {
        --sPT: 4.4444444444rem;
        --sPB: 3.9444444444rem
    }

    .sFundamentalPrinciples .row {
        --bs-gutter-y: 2.4444444444rem
    }

    .sFundamentalPrinciples h2 {
        margin-bottom: 4.7777777778rem
    }

    .sImgBlock__dark-bg {
        padding-bottom: 2.2222222222rem;
        padding-top: 2.2222222222rem
    }

    .sImgBlock__img-row {
        --bs-gutter-y: 0.5555555556rem
    }

    .sInfo {
        --sPT: 2.2222222222rem;
        --sPB: 2.2222222222rem
    }

    .sInstitute {
        --sPT: 4rem;
        --sPB: 4rem
    }

    .sInstitute .container>p {
        margin-bottom: 3.5555555556rem
    }

    .sInvite {
        --sPT: 0.2222222222rem;
        --sPB: 2.6666666667rem
    }

    .sInvite button {
        width: auto
    }

    .sLanguageVersion .col-md-6:first-child .sLanguageVersion__card {
        margin-bottom: 0
    }

    .sLanguageVersion .col-md-6:last-child .sLanguageVersion__card {
        margin-left: auto
    }

    .sLanguageVersion:before {
        --sPT: 1.7777777778rem;
        --sPB: 2.2222222222rem;
        background-color: #d4d4d4;
        content: "";
        display: block;
        height: calc(100% - var(--sPT) - var(--sPB));
        left: 50%;
        position: absolute;
        top: var(--sPT);
        transform: translateX(-50%);
        width: 1px
    }

    .sLanguageVersion {
        --sPT: 2.2222222222rem;
        --sPB: 1.5555555556rem
    }

    .sLanguageVersion__card {
        max-width: 28.8888888889rem
    }

    .sLanguageVersion h3 {
        margin-bottom: 1.7777777778rem
    }

    .sLanguageVersion h5 {
        margin-bottom: .8888888889rem
    }

    .sLanguageVersion p {
        margin-bottom: 1.7777777778rem
    }

    .sLanguageVersion__link p {
        margin-bottom: 0
    }

    .sLaws__head p {
        font-size: 1.3888888889rem;
        margin-bottom: 0
    }

    .sLaws__card h3 {
        margin-bottom: 0;
        max-width: 23.6666666667rem
    }

    .sLaws__card ul {
        margin-left: 2.3888888889rem
    }

    .sLaws__card ul+p {
        margin-left: 2.3888888889rem;
        padding-top: 1.3333333333rem
    }

    .sLicenses h2 {
        margin-bottom: 2.4444444444rem
    }

    .sProjectsMap__container {
        display: none
    }

    .sQuestions button {
        width: auto
    }

    .sSearch__item {
        margin-left: 20px
    }

    .sSearch__item picture {
        height: 155px;
        width: 282px
    }

    .sServiseBody h2 {
        margin-bottom: 2rem
    }

    .sServiseGal picture {
        margin-bottom: 0
    }

    .sSteps {
        --sPT: 1.1111111111rem;
        --sPB: 1.3333333333rem
    }

    .sSteps__row {
        margin-bottom: 3.3333333333rem
    }

    .sSteps__row .col-md-6:before {
        font-size: 2.1111111111rem
    }

    .sSteps__row .col-md-6:first-child p {
        margin-bottom: 0
    }

    .sSteps h4 {
        margin-bottom: 1.7777777778rem
    }

    .sSteps span {
        font-size: 2.1111111111rem
    }

    .sTeam picture {
        filter: saturate(0)
    }

    .sTeam__col:hover picture {
        filter: saturate(1)
    }

    .sTestingCenter {
        --sPT: 1.3333333333rem
    }

    .sTestingCenter picture {
        margin-bottom: 2.2222222222rem
    }

    .sTestingContent picture {
        margin-bottom: 1.3333333333rem
    }

    .sVacancies {
        --sPT: 1.3333333333rem;
        --sPB: 4.6666666667rem
    }

    .sVacancies h2 {
        margin-bottom: 1.7777777778rem
    }

    .sVacancies h4 {
        margin-bottom: .8888888889rem
    }

    .sVacancies__item:not(:last-of-type) {
        margin-bottom: 2.2222222222rem
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex:1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,.gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,.gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,.gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,.gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,.gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,.gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,.gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,.gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,.gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,.gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,.gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,.gy-lg-5 {
        --bs-gutter-y: 3rem
    }

    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .float-lg-start {
        float: left!important
    }

    .float-lg-end {
        float: right!important
    }

    .float-lg-none {
        float: none!important
    }

    .d-lg-inline {
        display: inline!important
    }

    .d-lg-inline-block {
        display: inline-block!important
    }

    .d-lg-block {
        display: block!important
    }

    .d-lg-grid {
        display: grid!important
    }

    .d-lg-table {
        display: table!important
    }

    .d-lg-table-row {
        display: table-row!important
    }

    .d-lg-table-cell {
        display: table-cell!important
    }

    .d-lg-flex {
        display: flex!important
    }

    .d-lg-inline-flex {
        display: inline-flex!important
    }

    .d-lg-none {
        display: none!important
    }

    .flex-lg-fill {
        flex: 1 1 auto!important
    }

    .flex-lg-row {
        flex-direction: row!important
    }

    .flex-lg-column {
        flex-direction: column!important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-lg-grow-0 {
        flex-grow: 0!important
    }

    .flex-lg-grow-1 {
        flex-grow: 1!important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-lg-wrap {
        flex-wrap: wrap!important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-lg-0 {
        gap: 0!important
    }

    .gap-lg-1 {
        gap: .25rem!important
    }

    .gap-lg-2 {
        gap: .5rem!important
    }

    .gap-lg-3 {
        gap: 1rem!important
    }

    .gap-lg-4 {
        gap: 1.5rem!important
    }

    .gap-lg-5 {
        gap: 3rem!important
    }

    .justify-content-lg-start {
        justify-content: flex-start!important
    }

    .justify-content-lg-end {
        justify-content: flex-end!important
    }

    .justify-content-lg-center {
        justify-content: center!important
    }

    .justify-content-lg-between {
        justify-content: space-between!important
    }

    .justify-content-lg-around {
        justify-content: space-around!important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly!important
    }

    .align-items-lg-start {
        align-items: flex-start!important
    }

    .align-items-lg-end {
        align-items: flex-end!important
    }

    .align-items-lg-center {
        align-items: center!important
    }

    .align-items-lg-baseline {
        align-items: baseline!important
    }

    .align-items-lg-stretch {
        align-items: stretch!important
    }

    .align-content-lg-start {
        align-content: flex-start!important
    }

    .align-content-lg-end {
        align-content: flex-end!important
    }

    .align-content-lg-center {
        align-content: center!important
    }

    .align-content-lg-between {
        align-content: space-between!important
    }

    .align-content-lg-around {
        align-content: space-around!important
    }

    .align-content-lg-stretch {
        align-content: stretch!important
    }

    .align-self-lg-auto {
        align-self: auto!important
    }

    .align-self-lg-start {
        align-self: flex-start!important
    }

    .align-self-lg-end {
        align-self: flex-end!important
    }

    .align-self-lg-center {
        align-self: center!important
    }

    .align-self-lg-baseline {
        align-self: baseline!important
    }

    .align-self-lg-stretch {
        align-self: stretch!important
    }

    .order-lg-first {
        order: -1!important
    }

    .order-lg-0 {
        order: 0!important
    }

    .order-lg-1 {
        order: 1!important
    }

    .order-lg-2 {
        order: 2!important
    }

    .order-lg-3 {
        order: 3!important
    }

    .order-lg-4 {
        order: 4!important
    }

    .order-lg-5 {
        order: 5!important
    }

    .order-lg-last {
        order: 6!important
    }

    .m-lg-0 {
        margin: 0!important
    }

    .m-lg-1 {
        margin: .25rem!important
    }

    .m-lg-2 {
        margin: .5rem!important
    }

    .m-lg-3 {
        margin: 1rem!important
    }

    .m-lg-4 {
        margin: 1.5rem!important
    }

    .m-lg-5 {
        margin: 3rem!important
    }

    .m-lg-auto {
        margin: auto!important
    }

    .mx-lg-0 {
        margin-left: 0!important;
        margin-right: 0!important
    }

    .mx-lg-1 {
        margin-left: .25rem!important;
        margin-right: .25rem!important
    }

    .mx-lg-2 {
        margin-left: .5rem!important;
        margin-right: .5rem!important
    }

    .mx-lg-3 {
        margin-left: 1rem!important;
        margin-right: 1rem!important
    }

    .mx-lg-4 {
        margin-left: 1.5rem!important;
        margin-right: 1.5rem!important
    }

    .mx-lg-5 {
        margin-left: 3rem!important;
        margin-right: 3rem!important
    }

    .mx-lg-auto {
        margin-left: auto!important;
        margin-right: auto!important
    }

    .my-lg-0 {
        margin-bottom: 0!important;
        margin-top: 0!important
    }

    .my-lg-1 {
        margin-bottom: .25rem!important;
        margin-top: .25rem!important
    }

    .my-lg-2 {
        margin-bottom: .5rem!important;
        margin-top: .5rem!important
    }

    .my-lg-3 {
        margin-bottom: 1rem!important;
        margin-top: 1rem!important
    }

    .my-lg-4 {
        margin-bottom: 1.5rem!important;
        margin-top: 1.5rem!important
    }

    .my-lg-5 {
        margin-bottom: 3rem!important;
        margin-top: 3rem!important
    }

    .my-lg-auto {
        margin-bottom: auto!important;
        margin-top: auto!important
    }

    .mt-lg-0 {
        margin-top: 0!important
    }

    .mt-lg-1 {
        margin-top: .25rem!important
    }

    .mt-lg-2 {
        margin-top: .5rem!important
    }

    .mt-lg-3 {
        margin-top: 1rem!important
    }

    .mt-lg-4 {
        margin-top: 1.5rem!important
    }

    .mt-lg-5 {
        margin-top: 3rem!important
    }

    .mt-lg-auto {
        margin-top: auto!important
    }

    .me-lg-0 {
        margin-right: 0!important
    }

    .me-lg-1 {
        margin-right: .25rem!important
    }

    .me-lg-2 {
        margin-right: .5rem!important
    }

    .me-lg-3 {
        margin-right: 1rem!important
    }

    .me-lg-4 {
        margin-right: 1.5rem!important
    }

    .me-lg-5 {
        margin-right: 3rem!important
    }

    .me-lg-auto {
        margin-right: auto!important
    }

    .mb-lg-0 {
        margin-bottom: 0!important
    }

    .mb-lg-1 {
        margin-bottom: .25rem!important
    }

    .mb-lg-2 {
        margin-bottom: .5rem!important
    }

    .mb-lg-3 {
        margin-bottom: 1rem!important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-lg-5 {
        margin-bottom: 3rem!important
    }

    .mb-lg-auto {
        margin-bottom: auto!important
    }

    .ms-lg-0 {
        margin-left: 0!important
    }

    .ms-lg-1 {
        margin-left: .25rem!important
    }

    .ms-lg-2 {
        margin-left: .5rem!important
    }

    .ms-lg-3 {
        margin-left: 1rem!important
    }

    .ms-lg-4 {
        margin-left: 1.5rem!important
    }

    .ms-lg-5 {
        margin-left: 3rem!important
    }

    .ms-lg-auto {
        margin-left: auto!important
    }

    .p-lg-0 {
        padding: 0!important
    }

    .p-lg-1 {
        padding: .25rem!important
    }

    .p-lg-2 {
        padding: .5rem!important
    }

    .p-lg-3 {
        padding: 1rem!important
    }

    .p-lg-4 {
        padding: 1.5rem!important
    }

    .p-lg-5 {
        padding: 3rem!important
    }

    .px-lg-0 {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .px-lg-1 {
        padding-left: .25rem!important;
        padding-right: .25rem!important
    }

    .px-lg-2 {
        padding-left: .5rem!important;
        padding-right: .5rem!important
    }

    .px-lg-3 {
        padding-left: 1rem!important;
        padding-right: 1rem!important
    }

    .px-lg-4 {
        padding-left: 1.5rem!important;
        padding-right: 1.5rem!important
    }

    .px-lg-5 {
        padding-left: 3rem!important;
        padding-right: 3rem!important
    }

    .py-lg-0 {
        padding-bottom: 0!important;
        padding-top: 0!important
    }

    .py-lg-1 {
        padding-bottom: .25rem!important;
        padding-top: .25rem!important
    }

    .py-lg-2 {
        padding-bottom: .5rem!important;
        padding-top: .5rem!important
    }

    .py-lg-3 {
        padding-bottom: 1rem!important;
        padding-top: 1rem!important
    }

    .py-lg-4 {
        padding-bottom: 1.5rem!important;
        padding-top: 1.5rem!important
    }

    .py-lg-5 {
        padding-bottom: 3rem!important;
        padding-top: 3rem!important
    }

    .pt-lg-0 {
        padding-top: 0!important
    }

    .pt-lg-1 {
        padding-top: .25rem!important
    }

    .pt-lg-2 {
        padding-top: .5rem!important
    }

    .pt-lg-3 {
        padding-top: 1rem!important
    }

    .pt-lg-4 {
        padding-top: 1.5rem!important
    }

    .pt-lg-5 {
        padding-top: 3rem!important
    }

    .pe-lg-0 {
        padding-right: 0!important
    }

    .pe-lg-1 {
        padding-right: .25rem!important
    }

    .pe-lg-2 {
        padding-right: .5rem!important
    }

    .pe-lg-3 {
        padding-right: 1rem!important
    }

    .pe-lg-4 {
        padding-right: 1.5rem!important
    }

    .pe-lg-5 {
        padding-right: 3rem!important
    }

    .pb-lg-0 {
        padding-bottom: 0!important
    }

    .pb-lg-1 {
        padding-bottom: .25rem!important
    }

    .pb-lg-2 {
        padding-bottom: .5rem!important
    }

    .pb-lg-3 {
        padding-bottom: 1rem!important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-lg-5 {
        padding-bottom: 3rem!important
    }

    .ps-lg-0 {
        padding-left: 0!important
    }

    .ps-lg-1 {
        padding-left: .25rem!important
    }

    .ps-lg-2 {
        padding-left: .5rem!important
    }

    .ps-lg-3 {
        padding-left: 1rem!important
    }

    .ps-lg-4 {
        padding-left: 1.5rem!important
    }

    .ps-lg-5 {
        padding-left: 3rem!important
    }

    .text-lg-start {
        text-align: left!important
    }

    .text-lg-end {
        text-align: right!important
    }

    .text-lg-center {
        text-align: center!important
    }

    .wow {
        visibility: hidden
    }

    .page-secondary .sContent {
        background-color: #f0f0f0;
        padding-bottom: 2.6666666667rem;
        padding-top: 2.6666666667rem
    }

    .page-secondary .sServiseBody {
        background-color: #f0f0f0
    }

    .docLine--second:last-of-type {
        padding-bottom: 4.9444444444rem
    }

    .docLine--third:last-of-type {
        margin-bottom: 2.2222222222rem
    }

    .info-block {
        padding: 1.8333333333rem 1.7777777778rem 2.1666666667rem
    }

    .info-block__head {
        padding-bottom: 1.7777777778rem
    }

    .form-block .form-wrap {
        padding: 1.7222222222rem 1.7777777778rem 1.7777777778rem
    }

    .form-block .form-wrap p {
        margin-bottom: 1.3333333333rem
    }

    .news .slider__arrow {
        top: calc(50% - 140px)
    }

    .s404__logo {
        left: 2.1666666667rem;
        transform: translateX(0)
    }

    .s404 h1 {
        font-size: 12.5555555556rem
    }

    .s404 p {
        margin-bottom: 1.5555555556rem
    }

    .sBenefits {
        --sPT: 3.5rem;
        --sPB: 5.1111111111rem
    }

    .card__col:before {
        height: 100%;
        right: 0;
        top: 0;
        width: 1px
    }

    .card__left-side p {
        max-width: 21.5rem
    }

    .card__left-side a {
        margin-bottom: 0
    }

    .card__right-side {
        margin-left: .4444444444rem;
        margin-top: 0
    }

    .card__right-side .card__wrap {
        justify-content: flex-start
    }

    .sContent--managment p+p {
        margin-bottom: 3.5555555556rem
    }

    .sContent--certificate {
        --sPT: 2.6666666667rem;
        --sPB: 2.6666666667rem
    }

    .sContent--agreement {
        padding-bottom: 2.1111111111rem;
        padding-top: 1.4444444444rem
    }

    .sContent--agreement .sContent__inner-row {
        --bs-gutter-x: 2.6666666667rem;
        --bs-gutter-y: 1.3333333333rem;
        padding-bottom: 4.8888888889rem
    }

    .sContent--agreement .sContent__dark-bg {
        padding-bottom: 3.5555555556rem;
        padding-top: 3.5555555556rem
    }

    .sDescription__col {
        order: 0
    }

    .sDescription__item {
        flex-direction: row;
        justify-content: space-between
    }

    .sDescription__content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        max-width: 26.5555555556rem;
        padding-top: 0
    }

    .sDescription .promo__image {
        margin-bottom: 0;
        margin-right: calc(-50vw + 100% - var(--bs-gutter-x))
    }

    .sEvents .row {
        --bs-gutter-x: 135px
    }

    .sEvents {
        --sPT: 3.1111111111rem;
        --sPB: 4rem
    }

    .sEvents__head span:first-child {
        font-size: 3.4444444444rem
    }

    .sEvents__head span:last-child,.sEvents__head span:last-child:before {
        font-size: 1rem
    }

    .sEvents p {
        font-size: 1rem
    }

    .sEvents .col-md-6:nth-child(2n) {
        margin-top: 123px
    }

    .sEvents .col-md-6:not(:last-child) .sEvents__wrap {
        margin-bottom: 5.3333333333rem
    }

    .sForm {
        padding-bottom: 2.8888888889rem
    }

    .sForm .form-wrap {
        padding: 1.6666666667rem 4.3333333333rem 3.0555555556rem
    }

    .sForm .form-wrap textarea {
        min-height: 10.6666666667rem
    }

    .sGoal {
        --sPT: 4.4444444444rem;
        --sPB: 3.1111111111rem
    }

    .sGoal .section-title {
        margin-bottom: 3.3333333333rem
    }

    .sGoal__row {
        margin-bottom: 1.3333333333rem
    }

    .sGoal__item {
        padding: 1.3333333333rem 6.6666666667rem 1.3333333333rem 1.3333333333rem
    }

    .sGoal__item .icon {
        height: 4.8888888889rem;
        margin-bottom: 0;
        position: absolute;
        right: 24px;
        top: 24px;
        width: 4.8888888889rem
    }

    .sGoal__warning {
        flex-direction: row;
        margin-bottom: 2.5555555556rem
    }

    .sGoal__warning .icon {
        margin-bottom: 0;
        margin-right: .8888888889rem
    }

    .sImgBlock__dark-bg {
        padding-bottom: 3.5555555556rem;
        padding-top: 3.5555555556rem
    }

    .sImgBlock__img-row {
        --bs-gutter-y: 0.9444444444rem
    }

    .sInfo {
        --sPT: 2.6666666667rem;
        --sPB: 3.1111111111rem
    }

    .sInfo__content {
        margin-left: 2.2222222222rem
    }

    .sInfo__content ol {
        margin-left: 1.3333333333rem
    }

    .sInfo__list ul {
        margin-left: 1.7777777778rem
    }

    .sInfo__footer-row {
        --bs-gutter-x: 3.1111111111rem
    }

    .sInvite {
        --sPT: 2.2222222222rem;
        --sPB: 4.4444444444rem
    }

    .sLanguageVersion {
        --sPT: 2.2222222222rem;
        --sPB: 3.5555555556rem
    }

    .sLanguageVersion h3 {
        margin-bottom: 2.2222222222rem
    }

    .sLanguageVersion h5 {
        margin-bottom: 1.1111111111rem
    }

    .sLanguageVersion p {
        margin-bottom: 2.2222222222rem
    }

    .sLanguageVersion__link p {
        margin-bottom: 0
    }

    .sQuestions__col {
        text-align: right
    }

    .sQuestions h3 {
        margin-bottom: 0
    }

    .sQuestions p {
        margin-bottom: 0
    }

    .sServiseBody h2 {
        margin-bottom: 3.3333333333rem
    }

    .sSteps {
        --sPT: 2.6666666667rem;
        --sPB: 1.8888888889rem
    }

    .sSteps__wrap {
        padding: 1.3333333333rem 1.7777777778rem
    }

    .sSteps__row {
        margin-bottom: 3rem
    }

    .sSteps__row .col-md-6:before {
        font-size: 3.4444444444rem
    }

    .sSteps h4 {
        margin-bottom: 1.6666666667rem
    }

    .sSteps span {
        font-size: 3.4444444444rem
    }

    .sTestingCenter {
        --sPT: 2.6666666667rem;
        --sPB: 2.6666666667rem
    }

    .sTestingCenter .row {
        --bs-gutter-x: 2.2222222222rem
    }

    .sTestingCenter picture {
        margin-bottom: 0;
        margin-left: calc(-50vw + 100% - var(--bs-gutter-x))
    }

    .sTestingCenter p {
        max-width: 31.5555555556rem
    }

    .sTestingContent picture {
        margin-bottom: 0
    }

    .sTestingContent--2 {
        padding-bottom: 3.5555555556rem;
        padding-top: 3.4444444444rem
    }

    .sTestingContent--2 p {
        margin-bottom: 2.2222222222rem
    }

    .sVacancies {
        --sPT: 1.8888888889rem;
        --sPB: 3.7777777778rem
    }

    .sVacancies h2 {
        margin-bottom: 2.4444444444rem
    }
}

@media (min-width: 992px) and (max-width:1279.98px) {
    .sInfo__wrap {
        margin-bottom:0;
        margin-left: var(--spx)
    }
}

@media (min-width: 1000px) {
    .mainSliderNav .slick-track {
        transform:translateZ(0)!important;
        width: auto!important
    }

    .mainSliderNav__slide {
        width: calc(25% - 20px)!important
    }

    .news__card:hover {
        background-color: #dedede;
        filter: grayscale(0)
    }

    .news__card:hover:before {
        opacity: 0
    }

    .news__card:hover .news__date,.news__card:hover .news__text {
        color: #16246b
    }
}

@media (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width:48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }

    .fancybox__slide {
        padding: 64px 100px
    }

    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }

    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }

    .carousel__button.is-close {
        right: 40px
    }

    .fancybox__toolbar {
        padding: 8px
    }

    .fancybox__slide {
        padding-bottom: 0;
        padding-top: 20px
    }
}

@media (min-width: 1200px) {
    .col-form-label-lg {
        font-size:1.25rem
    }

    .col-form-label-sm {
        font-size: .875rem
    }

    .form-control {
        font-size: 1rem
    }

    .form-control-sm {
        font-size: .875rem
    }

    .form-control-lg {
        font-size: 1.25rem
    }

    .custom-select-multiple-js+.select2-container .select2-selection,.form-select,.select2-container--default .select2-selection--single {
        font-size: 1rem
    }

    .form-select-sm {
        font-size: .875rem
    }

    .form-select-lg {
        font-size: 1.25rem
    }

    .input-group-text {
        font-size: 1rem
    }

    .card__left-side .input-group-lg>a,.custom-select-multiple-js+.select2-container .input-group-lg>.select2-selection,.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.secion-head__btn,.select2-container--default .input-group-lg>.select2-selection--single {
        font-size: 1.25rem
    }

    .card__left-side .input-group-sm>a,.custom-select-multiple-js+.select2-container .input-group-sm>.select2-selection,.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.secion-head__btn,.select2-container--default .input-group-sm>.select2-selection--single {
        font-size: .875rem
    }

    .valid-tooltip {
        font-size: .875rem
    }

    .invalid-tooltip {
        font-size: .875rem
    }

    .breadcrumb {
        font-size: .7777777778rem
    }

    .pagination-lg .page-link {
        font-size: 1.25rem
    }

    .pagination-sm .page-link {
        font-size: .875rem
    }

    .fs-1 {
        font-size: 2.7777777778rem!important
    }

    .fs-2 {
        font-size: 1.8888888889rem!important
    }

    .fs-3 {
        font-size: 1.3888888889rem!important
    }

    .fs-4 {
        font-size: 1.1111111111rem!important
    }

    .fs-5,.fs-6 {
        font-size: 1rem!important
    }

    .page-head p {
        font-size: 1.3888888889rem
    }

    .sAboutTeam__title span {
        font-size: 1.8888888889rem
    }

    .card__left-side h3 {
        font-size: 1.5555555556rem
    }

    .card__content h3 {
        font-size: 1.5555555556rem
    }

    .sContent-head h1 {
        font-size: 1.8888888889rem
    }

    .figure-wrap__title {
        font-size: 1.8888888889rem
    }

    .sServiseBody p strong {
        font-size: 1.3888888889rem
    }

    .sServiseHead__head p {
        font-size: 1.3888888889rem
    }

    .sTeam__title span {
        font-size: 1.3888888889rem
    }
}

@media (min-width: 1280px) {
    .col-xl {
        flex:1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,.gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,.gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,.gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,.gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,.gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,.gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,.gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,.gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,.gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,.gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,.gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,.gy-xl-5 {
        --bs-gutter-y: 3rem
    }

    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .float-xl-start {
        float: left!important
    }

    .float-xl-end {
        float: right!important
    }

    .float-xl-none {
        float: none!important
    }

    .d-xl-inline {
        display: inline!important
    }

    .d-xl-inline-block {
        display: inline-block!important
    }

    .d-xl-block {
        display: block!important
    }

    .d-xl-grid {
        display: grid!important
    }

    .d-xl-table {
        display: table!important
    }

    .d-xl-table-row {
        display: table-row!important
    }

    .d-xl-table-cell {
        display: table-cell!important
    }

    .d-xl-flex {
        display: flex!important
    }

    .d-xl-inline-flex {
        display: inline-flex!important
    }

    .d-xl-none {
        display: none!important
    }

    .flex-xl-fill {
        flex: 1 1 auto!important
    }

    .flex-xl-row {
        flex-direction: row!important
    }

    .flex-xl-column {
        flex-direction: column!important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-xl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-xl-0 {
        gap: 0!important
    }

    .gap-xl-1 {
        gap: .25rem!important
    }

    .gap-xl-2 {
        gap: .5rem!important
    }

    .gap-xl-3 {
        gap: 1rem!important
    }

    .gap-xl-4 {
        gap: 1.5rem!important
    }

    .gap-xl-5 {
        gap: 3rem!important
    }

    .justify-content-xl-start {
        justify-content: flex-start!important
    }

    .justify-content-xl-end {
        justify-content: flex-end!important
    }

    .justify-content-xl-center {
        justify-content: center!important
    }

    .justify-content-xl-between {
        justify-content: space-between!important
    }

    .justify-content-xl-around {
        justify-content: space-around!important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly!important
    }

    .align-items-xl-start {
        align-items: flex-start!important
    }

    .align-items-xl-end {
        align-items: flex-end!important
    }

    .align-items-xl-center {
        align-items: center!important
    }

    .align-items-xl-baseline {
        align-items: baseline!important
    }

    .align-items-xl-stretch {
        align-items: stretch!important
    }

    .align-content-xl-start {
        align-content: flex-start!important
    }

    .align-content-xl-end {
        align-content: flex-end!important
    }

    .align-content-xl-center {
        align-content: center!important
    }

    .align-content-xl-between {
        align-content: space-between!important
    }

    .align-content-xl-around {
        align-content: space-around!important
    }

    .align-content-xl-stretch {
        align-content: stretch!important
    }

    .align-self-xl-auto {
        align-self: auto!important
    }

    .align-self-xl-start {
        align-self: flex-start!important
    }

    .align-self-xl-end {
        align-self: flex-end!important
    }

    .align-self-xl-center {
        align-self: center!important
    }

    .align-self-xl-baseline {
        align-self: baseline!important
    }

    .align-self-xl-stretch {
        align-self: stretch!important
    }

    .order-xl-first {
        order: -1!important
    }

    .order-xl-0 {
        order: 0!important
    }

    .order-xl-1 {
        order: 1!important
    }

    .order-xl-2 {
        order: 2!important
    }

    .order-xl-3 {
        order: 3!important
    }

    .order-xl-4 {
        order: 4!important
    }

    .order-xl-5 {
        order: 5!important
    }

    .order-xl-last {
        order: 6!important
    }

    .m-xl-0 {
        margin: 0!important
    }

    .m-xl-1 {
        margin: .25rem!important
    }

    .m-xl-2 {
        margin: .5rem!important
    }

    .m-xl-3 {
        margin: 1rem!important
    }

    .m-xl-4 {
        margin: 1.5rem!important
    }

    .m-xl-5 {
        margin: 3rem!important
    }

    .m-xl-auto {
        margin: auto!important
    }

    .mx-xl-0 {
        margin-left: 0!important;
        margin-right: 0!important
    }

    .mx-xl-1 {
        margin-left: .25rem!important;
        margin-right: .25rem!important
    }

    .mx-xl-2 {
        margin-left: .5rem!important;
        margin-right: .5rem!important
    }

    .mx-xl-3 {
        margin-left: 1rem!important;
        margin-right: 1rem!important
    }

    .mx-xl-4 {
        margin-left: 1.5rem!important;
        margin-right: 1.5rem!important
    }

    .mx-xl-5 {
        margin-left: 3rem!important;
        margin-right: 3rem!important
    }

    .mx-xl-auto {
        margin-left: auto!important;
        margin-right: auto!important
    }

    .my-xl-0 {
        margin-bottom: 0!important;
        margin-top: 0!important
    }

    .my-xl-1 {
        margin-bottom: .25rem!important;
        margin-top: .25rem!important
    }

    .my-xl-2 {
        margin-bottom: .5rem!important;
        margin-top: .5rem!important
    }

    .my-xl-3 {
        margin-bottom: 1rem!important;
        margin-top: 1rem!important
    }

    .my-xl-4 {
        margin-bottom: 1.5rem!important;
        margin-top: 1.5rem!important
    }

    .my-xl-5 {
        margin-bottom: 3rem!important;
        margin-top: 3rem!important
    }

    .my-xl-auto {
        margin-bottom: auto!important;
        margin-top: auto!important
    }

    .mt-xl-0 {
        margin-top: 0!important
    }

    .mt-xl-1 {
        margin-top: .25rem!important
    }

    .mt-xl-2 {
        margin-top: .5rem!important
    }

    .mt-xl-3 {
        margin-top: 1rem!important
    }

    .mt-xl-4 {
        margin-top: 1.5rem!important
    }

    .mt-xl-5 {
        margin-top: 3rem!important
    }

    .mt-xl-auto {
        margin-top: auto!important
    }

    .me-xl-0 {
        margin-right: 0!important
    }

    .me-xl-1 {
        margin-right: .25rem!important
    }

    .me-xl-2 {
        margin-right: .5rem!important
    }

    .me-xl-3 {
        margin-right: 1rem!important
    }

    .me-xl-4 {
        margin-right: 1.5rem!important
    }

    .me-xl-5 {
        margin-right: 3rem!important
    }

    .me-xl-auto {
        margin-right: auto!important
    }

    .mb-xl-0 {
        margin-bottom: 0!important
    }

    .mb-xl-1 {
        margin-bottom: .25rem!important
    }

    .mb-xl-2 {
        margin-bottom: .5rem!important
    }

    .mb-xl-3 {
        margin-bottom: 1rem!important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-xl-5 {
        margin-bottom: 3rem!important
    }

    .mb-xl-auto {
        margin-bottom: auto!important
    }

    .ms-xl-0 {
        margin-left: 0!important
    }

    .ms-xl-1 {
        margin-left: .25rem!important
    }

    .ms-xl-2 {
        margin-left: .5rem!important
    }

    .ms-xl-3 {
        margin-left: 1rem!important
    }

    .ms-xl-4 {
        margin-left: 1.5rem!important
    }

    .ms-xl-5 {
        margin-left: 3rem!important
    }

    .ms-xl-auto {
        margin-left: auto!important
    }

    .p-xl-0 {
        padding: 0!important
    }

    .p-xl-1 {
        padding: .25rem!important
    }

    .p-xl-2 {
        padding: .5rem!important
    }

    .p-xl-3 {
        padding: 1rem!important
    }

    .p-xl-4 {
        padding: 1.5rem!important
    }

    .p-xl-5 {
        padding: 3rem!important
    }

    .px-xl-0 {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .px-xl-1 {
        padding-left: .25rem!important;
        padding-right: .25rem!important
    }

    .px-xl-2 {
        padding-left: .5rem!important;
        padding-right: .5rem!important
    }

    .px-xl-3 {
        padding-left: 1rem!important;
        padding-right: 1rem!important
    }

    .px-xl-4 {
        padding-left: 1.5rem!important;
        padding-right: 1.5rem!important
    }

    .px-xl-5 {
        padding-left: 3rem!important;
        padding-right: 3rem!important
    }

    .py-xl-0 {
        padding-bottom: 0!important;
        padding-top: 0!important
    }

    .py-xl-1 {
        padding-bottom: .25rem!important;
        padding-top: .25rem!important
    }

    .py-xl-2 {
        padding-bottom: .5rem!important;
        padding-top: .5rem!important
    }

    .py-xl-3 {
        padding-bottom: 1rem!important;
        padding-top: 1rem!important
    }

    .py-xl-4 {
        padding-bottom: 1.5rem!important;
        padding-top: 1.5rem!important
    }

    .py-xl-5 {
        padding-bottom: 3rem!important;
        padding-top: 3rem!important
    }

    .pt-xl-0 {
        padding-top: 0!important
    }

    .pt-xl-1 {
        padding-top: .25rem!important
    }

    .pt-xl-2 {
        padding-top: .5rem!important
    }

    .pt-xl-3 {
        padding-top: 1rem!important
    }

    .pt-xl-4 {
        padding-top: 1.5rem!important
    }

    .pt-xl-5 {
        padding-top: 3rem!important
    }

    .pe-xl-0 {
        padding-right: 0!important
    }

    .pe-xl-1 {
        padding-right: .25rem!important
    }

    .pe-xl-2 {
        padding-right: .5rem!important
    }

    .pe-xl-3 {
        padding-right: 1rem!important
    }

    .pe-xl-4 {
        padding-right: 1.5rem!important
    }

    .pe-xl-5 {
        padding-right: 3rem!important
    }

    .pb-xl-0 {
        padding-bottom: 0!important
    }

    .pb-xl-1 {
        padding-bottom: .25rem!important
    }

    .pb-xl-2 {
        padding-bottom: .5rem!important
    }

    .pb-xl-3 {
        padding-bottom: 1rem!important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-xl-5 {
        padding-bottom: 3rem!important
    }

    .ps-xl-0 {
        padding-left: 0!important
    }

    .ps-xl-1 {
        padding-left: .25rem!important
    }

    .ps-xl-2 {
        padding-left: .5rem!important
    }

    .ps-xl-3 {
        padding-left: 1rem!important
    }

    .ps-xl-4 {
        padding-left: 1.5rem!important
    }

    .ps-xl-5 {
        padding-left: 3rem!important
    }

    .text-xl-start {
        text-align: left!important
    }

    .text-xl-end {
        text-align: right!important
    }

    .text-xl-center {
        text-align: center!important
    }

    :root {
        --bs-body-font-size: 18px;
        --gx: 80px
    }

    .page-head {
        --minH: 456px;
        padding-bottom: 2.9444444444rem
    }

    .page-head--h {
        --minH: 39.1111111111rem
    }

    .page-head--inner {
        --minH: auto;
        padding-bottom: 1.3333333333rem
    }

    .page-head--sm-spacing {
        padding-top: 31px
    }

    .contactBlock__item {
        border: none;
        padding-left: 0
    }

    .sAboutTeam__content--bg:before {
        left: 0;
        width: calc(100% + 10.61111rem + var(--bs-gutter-x))
    }

    .sContent .figure {
        font-size: 15px
    }

    .contentBanner {
        --spX: 3.3333333333rem
    }

    .sEvents .container {
        padding-left: 87px;
        padding-right: 87px
    }

    .sProjectsMap .ymaps-2-1-79-balloon__content {
        width: 480px!important
    }

    .sProjectsMap .ymaps-2-1-79-balloon__content>* {
        width: 480px!important
    }

    .sProjectsMap .custom-baloon__img-wrap {
        height: 209px
    }
}

@media (max-width: 1280px) {
    .header {
        padding:0
    }

    .header__desktop {
        display: none
    }

    .header__mobile {
        align-items: center;
        display: flex;
        padding: 16px 20px 16px 16px;
        transition: .2s ease
    }

    .header.open .header__mobile {
        background: #a8a8a8
    }

    .header.open .header__search svg {
        color: #2b2b2b
    }

    .landingInfo__number:after,.landingInfo__number:before {
        font-size: 40px;
        line-height: 48px
    }

    .landingInfo__textGrid {
        grid-template-columns: auto auto
    }

    .landingInfo__textSubGrid {
        grid-gap: 24px
    }

    .promo .container {
        padding: 0 40px 0 0
    }

    .promo--reverse .container {
        padding: 0 0 0 40px
    }

    .footer__links {
        margin: 0 auto
    }

    .footer__contacts {
        margin-left: 0
    }
}

@media (max-width: 1279.98px) {
    .contactBlock .icon {
        position:absolute;
        right: 0;
        top: 0
    }

    .contactBlock__item {
        padding-right: 2.7777777778rem
    }

    .news__cards--projects .news__card {
        background: none;
        padding: 0
    }

    .news__cards--projects .news__card:before {
        display: none
    }

    .news__cards--projects .news__card {
        width: 100%
    }

    .news__cards--projects .news__img-wrap {
        display: block;
        position: relative
    }

    .news__cards--projects .news__img-wrap:before {
        --ratio: 0.61607;
        content: "";
        display: block;
        height: 0;
        padding-bottom: calc(var(--ratio)*100%);
        position: relative
    }

    .news__cards--projects .p-3 {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .news__cards--projects .h5.mb-3 {
        font-size: 18px;
        font-weight: 400;
        max-width: 37.3333333333rem
    }

    .news__cards--projects .news__card-row {
        display: flex;
        width: 100%
    }

    .news__cards--projects .news__card-row .small {
        border-left: 2px solid #000;
        flex-grow: 1;
        font-size: 14px;
        height: auto;
        margin-bottom: 1rem;
        max-width: 340px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }

    .news__cards--projects .news__card-row .small .strong {
        font-size: 20px
    }
}

@media (max-width: 1200px) {
    .news__cards--projects {
        padding-top:24px
    }
}

@media (max-width: 1050px) {
    .promo .container {
        padding:0 24px
    }

    .promo__grid {
        display: flex;
        flex-direction: column
    }

    .promo--reverse .promo__grid {
        flex-direction: column-reverse
    }

    .promo--reverse .container {
        padding: 0 24px
    }
}

@media (max-width: 1000px) {
    .news__all {
        padding-right:70px
    }

    .news__cards {
        display: block;
        max-width: 100vw;
        padding: 0 100px;
        width: 100%
    }

    .news__cards .slick-list {
        margin-left: -100px;
        overflow: visible!important
    }

    .news__cards .slick-track {
        display: grid;
        grid-template-columns: auto auto auto auto auto
    }

    .news__text {
        margin-top: auto
    }

    .news__card {
        display: flex!important;
        width: 100%!important
    }

    .news__cards--projects {
        padding: 24px 0 0
    }

    .news__cards--projects .slick-track {
        display: flex
    }

    .news__cards--projects .slick-track:after,.news__cards--projects .slick-track:before {
        display: none
    }

    .news__cards--projects .slick-list {
        margin: 0;
        overflow: hidden!important
    }
}

@media (max-width: 991.98px) {
    .news .slider__arrow {
        display:flex!important
    }

    .card__col:before {
        bottom: 0;
        height: 1px;
        left: calc(-1.77778rem + var(--bs-gutter-x)/2);
        width: calc(100% + 3.55556rem - var(--bs-gutter-x))
    }

    .sServiseGal__caption {
        padding-left: calc(var(--gx)/2);
        padding-right: calc(var(--gx)/2)
    }

    .sServiseGal__slider-wrap .container {
        padding-left: 0;
        padding-right: 0
    }

    .sServiseGal .swiper-button-hand {
        margin-top: 250px
    }

    .sVacancies__link span {
        order: 3
    }

    .sVacancies__col {
        order: 3
    }
}

@media (max-width: 768px) {
    .h1,h1 {
        font-size:39px;
        letter-spacing: -.5px;
        line-height: 40px
    }

    .agreement-page .page-head h1,.h2,h2 {
        font-size: 24px;
        letter-spacing: -.5px;
        line-height: 32px
    }

    .h3,h3 {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 22px
    }

    .h4,h4 {
        font-size: 16px;
        letter-spacing: 0;
        line-height: 20px
    }

    .h5,h5 {
        font-size: 18px;
        line-height: 22px
    }

    .h6,.sContent h5,h6 {
        font-size: 18px;
        line-height: 22px
    }

    p {
        letter-spacing: -.5px;
        line-height: 20px
    }

    p.big {
        font-size: 20px;
        letter-spacing: -.5px;
        line-height: 24px
    }

    p.small {
        font-size: 14px;
        line-height: 16px
    }

    .slider__arrow {
        display: none
    }

    .mainSlider {
        height: 474px
    }

    .mainSliderPhotos__slide {
        height: 474px!important
    }

    .mainSliderNav {
        margin: 0 24px;
        margin: 0 14px;
        width: calc(100% - 126px);
        width: calc(100% - 106px)
    }

    .newsSlider__slide {
        grid-template-rows: 49px auto auto
    }

    .newsSlider__date {
        grid-column-gap: 10px;
        grid-template-rows: 24px -webkit-max-content;
        grid-template-rows: 24px max-content
    }

    .newsSlider__day {
        font-size: 40px;
        line-height: 48px
    }

    .newsSlider__month,.newsSlider__year {
        font-size: 14px;
        line-height: 16px
    }

    .landingInfo {
        padding-bottom: 70px
    }

    .landingInfo__bg img {
        display: block;
        width: 100%
    }

    .landingInfo__bg svg {
        display: none
    }

    .landingInfo__textGrid {
        display: block
    }

    .landingInfo__exp {
        margin-bottom: 50px
    }

    .landingInfo__textSubGrid .slick-slide {
        margin-right: 20px;
        max-width: 70vw
    }

    .landingInfo__item {
        grid-template-areas: "title image" "text text" "btn btn";
        grid-template-columns: auto -webkit-min-content;
        grid-template-columns: auto min-content;
        grid-template-rows: -webkit-min-content auto;
        grid-template-rows: min-content auto;
        height: auto;
        padding: 16px
    }

    .landingInfo__item svg {
        align-self: flex-start;
        max-width: 104px
    }

    .landingInfo__btn {
        display: inline-flex;
        font-size: 12px;
        font-weight: 400;
        grid-area: btn;
        justify-self: flex-start;
        line-height: 16px;
        margin-top: 8px;
        padding: 5px 0 7px;
        text-transform: capitalize
    }

    .promo {
        filter: grayscale(1)
    }

    .partnersSlider .slider__wrap .slider__carousel {
        display: block;
        max-width: 100vw;
        padding: 0 85px;
        width: 100%
    }

    .partnersSlider .slider__wrap .slider__carousel .slick-list {
        margin-left: -101px;
        overflow: visible!important
    }
}

@media (max-width: 767.98px) {
    .secion-head__input-wrap {
        width:100%
    }

    .map-wrap,.map-wrap:before {
        display: block;
        position: relative
    }

    .map-wrap:before {
        --ratio: 0.72639;
        content: "";
        height: 0;
        padding-bottom: calc(var(--ratio)*100%)
    }

    .custom-select-multiple-js+.select2-container {
        width: 100%!important
    }

    .page-head--text-bg {
        padding-bottom: 0
    }

    .page-head--text-bg .page-head__caption {
        background: #444;
        margin: 0 calc(var(--gx)/-2) 0;
        padding: 1.1111111111rem calc(var(--gx)/2) 1.4444444444rem
    }

    .docLine--third:last-of-type {
        margin-bottom: .8888888889rem
    }

    .docLine--third {
        border-bottom: 1px solid rgba(68,68,68,.2)
    }

    .news__cards--projects .news__card-row {
        display: block
    }

    .sBenefits__btn:after {
        margin-left: 0;
        margin-right: 10px
    }

    .sContent figure picture {
        left: 50px
    }

    .sContent .figure__icon-wrap {
        margin-bottom: 18px;
        margin-left: auto;
        margin-right: auto
    }

    .sContent .figure__item {
        margin-bottom: 2.7777777778rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 20.4444444444rem;
        text-align: center
    }

    .sEvents .container {
        padding-left: 50px
    }

    .sForm {
        margin-left: calc(var(--gx)/-2);
        width: calc(100vw + var(--gx)/2 + 3px)
    }

    .sFundamentalPrinciples__content--flex {
        align-items: center;
        display: flex;
        flex-direction: row-reverse
    }

    .sFundamentalPrinciples__content--flex p {
        flex-grow: 1;
        font-size: 18px
    }

    .sFundamentalPrinciples__content p {
        border-top: none;
        margin-right: -20px
    }

    .sFundamentalPrinciples__col:not(:last-child) .sFundamentalPrinciples__content {
        border-bottom: 1px solid #444
    }

    .sProjectsMap .ymaps-2-1-79-balloon {
        display: none
    }

    .sSearch .secion-head__btns {
        --bs-gutter-x: 8px;
        flex-wrap: nowrap
    }

    .sSearch .secion-head__btn {
        font-size: 12px;
        min-width: 1pc;
        padding-left: 1px;
        padding-right: 1px
    }

    .sSearch__item picture,.sSearch__item picture:before {
        display: block;
        position: relative
    }

    .sSearch__item picture:before {
        --ratio: 0.55183;
        content: "";
        height: 0;
        padding-bottom: calc(var(--ratio)*100%)
    }

    .sSearch__item picture img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0
    }

    .sServiseGal .swiper-button-hand {
        margin-top: 120px
    }

    .animated {
        -webkit-animation: none!important;
        animation: none!important;
        transform: none!important;
        transition-property: none!important
    }
}

@media (max-width: 650px) {
    .footer {
        padding:24px 16px 13px
    }

    .footer__logo {
        width: 144px
    }

    .footer__copy {
        margin-bottom: 40px
    }

    .footer__copy .footer__coalla,.footer__copy p {
        display: none
    }

    .footer__container {
        flex-direction: column;
        padding: 0
    }

    .footer__links {
        margin: 0
    }

    .footer__links p a {
        align-items: center;
        border-bottom: 1px solid rgba(68,68,68,.2);
        display: flex;
        justify-content: space-between;
        margin-bottom: 14px;
        padding-bottom: 10px;
        position: relative
    }

    .footer__links p a:after {
        background-color: transparent;
        background-image: url(../images/icons/chevron.png);
        background-position: 50%;
        background-repeat: no-repeat;
        bottom: unset;
        content: "";
        display: block;
        height: 24px;
        left: unset;
        position: relative;
        width: 24px!important
    }

    .footer__contacts {
        margin-bottom: 16px;
        text-align: center
    }

    .footer__contacts p br {
        display: none
    }

    .footer__contacts p:last-of-type {
        margin-bottom: 16px
    }

    .footer__mobCopy {
        color: #444;
        display: block;
        opacity: .6;
        text-align: center
    }

    .footer__mobCopy p {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 5px
    }

    .footer__coalla {
        justify-content: center
    }

    .footer__coalla p {
        font-size: 13px;
        line-height: 16px
    }

    .footer__links {
        display: none
    }

    .footer__social {
        justify-content: center
    }
}

@media (max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display:none
    }
}

@media (max-width: 600px) {
    .news__all {
        padding-right:30px
    }
}

@media (max-width: 480px) {
    .h1,h1 {
        font-size:calc(20px + 3vw);
        letter-spacing: -.5px;
        line-height: 36px
    }

    .agreement-page .page-head h1,.h2,h2 {
        font-size: 26px;
        letter-spacing: 0;
        line-height: 34px
    }

    .h3,h3 {
        font-size: 21px;
        letter-spacing: -.5px;
        line-height: 24px
    }

    .h4,h4 {
        font-size: 16px;
        letter-spacing: -.5px;
        line-height: 24px
    }

    .h5,h5 {
        font-size: 18px;
        letter-spacing: -.5px;
        line-height: 24px
    }

    .h6,.sContent h5,h6 {
        font-size: 18px;
        letter-spacing: -.5px;
        line-height: 24px
    }

    p {
        line-height: 20px
    }

    p.big {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 24px
    }

    p.small {
        font-size: 12px;
        line-height: 16px
    }

    .slider .slick-list {
        overflow: visible!important
    }

    .header {
        background-color: #a8a8a8;
        bottom: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,.15);
        position: fixed;
        top: unset
    }

    .header__mobile {
        padding: 14px 20px 13px 16px
    }

    .header__search {
        display: none
    }

    .header .trigger>div {
        background: #2b2b2b
    }

    .mainSlider {
        height: calc(100vh - 64px)
    }

    .mainSliderPhotos__slide>.container h5 {
        margin-top: 20px
    }

    .mainSliderPhotos__slide {
        height: calc(100vh - 64px)!important
    }

    .newsSlider__slide {
        grid-template-areas: "photo photo photo" "date date link" "descr descr descr" "dots dots dots";
        grid-template-rows: auto auto auto auto
    }

    .newsSlider__month,.newsSlider__year {
        font-size: 12px;
        line-height: 16px
    }

    .newsSlider__photo {
        height: 172px
    }

    .newsSlider__dots {
        justify-content: center;
        margin-top: 32px
    }

    .landingInfo {
        padding-top: 16px
    }

    .footer {
        padding-bottom: 77px
    }

    .menu {
        padding: 24px 24px 60px
    }

    .menu>ul>li {
        margin-bottom: 24px
    }

    .menu>ul>li>a {
        font-size: 24px;
        line-height: 32px
    }

    .menu__selectMenu li {
        font-size: 14px;
        line-height: 20px
    }

    .modal {
        padding: 0
    }

    .modal__body {
        margin-top: auto;
        padding: 24px;
        width: 100vw
    }

    .modal__close {
        display: none
    }

    .modal__closeMobile {
        display: block
    }

    .desktop {
        display: none
    }

    .secion-head__btn {
        flex-grow: 1
    }

    .d-mob {
        display: block!important
    }

    #mobileMenu .header__search {
        display: block
    }
}

@media (max-width: 479.98px) {
    .mapBlock__btn {
        width:100%
    }

    .page-base .header {
        position: fixed
    }

    .agreement-page .page-head__back {
        top: -30px
    }

    .footer__copy {
        margin-bottom: 0
    }

    .footer__logo {
        display: none
    }

    .contactBlock__col:last-child .contactBlock__item {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0
    }

    .contactBlock__item {
        border-bottom: 1px solid #bcbcbc;
        margin-bottom: 24px;
        padding-bottom: 24px
    }

    .servises-nav {
        margin-left: calc(var(--gx)*-1/2);
        margin-right: calc(var(--gx)*-1/2);
        padding-bottom: 0
    }

    .servises-nav ul {
        overflow-x: auto;
        position: relative
    }

    .fancybox__slide {
        overflow-x: hidden;
        padding: 0
    }

    .fancybox__container {
        min-height: 100%;
        transform: none!important;
        width: 100%!important
    }

    .news__cards--page .news__card {
        padding-left: 0;
        padding-right: 0
    }

    .news__cards--page .news__card:before {
        display: none
    }

    .share span {
        margin-left: .8888888889rem
    }

    .contentBanner .img {
        margin-left: calc(var(--spX)*-1);
        margin-right: calc(var(--spX)*-1)
    }
}

@media print {
    .d-print-inline {
        display: inline!important
    }

    .d-print-inline-block {
        display: inline-block!important
    }

    .d-print-block {
        display: block!important
    }

    .d-print-grid {
        display: grid!important
    }

    .d-print-table {
        display: table!important
    }

    .d-print-table-row {
        display: table-row!important
    }

    .d-print-table-cell {
        display: table-cell!important
    }

    .d-print-flex {
        display: flex!important
    }

    .d-print-inline-flex {
        display: inline-flex!important
    }

    .d-print-none {
        display: none!important
    }
}
