@charset "UTF-8";
@import url(font-awesome.min.css);


:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75;
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65;
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px
}

.container-old {
    padding: 0 35px;
}

@media screen and (max-width: 375px) {
    .container-old {
        padding: 0 15px;
    }
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height)
}

.f-spinner svg, .fancybox__slide, .fancybox__viewport {
    width: 100%;
    height: 100%
}

.f-spinner svg {
    vertical-align: top;
    -webkit-animation: f-spinner-rotate 2s linear infinite;
    animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none
}

.f-spinner svg :first-child {
    stroke: var(--f-spinner-color-1)
}

.f-spinner svg :last-child {
    stroke: var(--f-spinner-color-2);
    -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
    animation: f-spinner-dash 2s ease-in-out infinite
}

@-webkit-keyframes f-spinner-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes f-spinner-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.f-zoomInUp {
    -webkit-animation: .2s ease-out .1s both f-zoomInUp;
    animation: .2s ease-out .1s both f-zoomInUp
}

.f-zoomOutDown {
    -webkit-animation: .2s ease-out both f-zoomOutDown;
    animation: .2s ease-out both f-zoomOutDown
}

@-webkit-keyframes f-zoomInUp {
    from {
        -webkit-transform: scale(.975) translate3d(0, 16px, 0);
        transform: scale(.975) translate3d(0, 16px, 0);
        opacity: 0
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-zoomInUp {
    from {
        -webkit-transform: scale(.975) translate3d(0, 16px, 0);
        transform: scale(.975) translate3d(0, 16px, 0);
        opacity: 0
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

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

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

.f-throwOutUp {
    -webkit-animation: 175ms ease-out both f-throwOutUp;
    animation: 175ms ease-out both f-throwOutUp
}

.f-throwOutDown {
    -webkit-animation: 175ms ease-out both f-throwOutDown;
    animation: 175ms ease-out both f-throwOutDown
}

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

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

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

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

.f-fadeIn {
    -webkit-animation: .2s ease both f-fadeIn;
    animation: .2s ease both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    -webkit-animation: .2s ease both f-fadeOut;
    animation: .2s ease both f-fadeOut;
    z-index: 1
}

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

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

@-webkit-keyframes f-fadeOut {
    100% {
        opacity: 0
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0
    }
}

.f-fadeSlowIn {
    -webkit-animation: .5s ease both f-fadeSlowIn;
    animation: .5s ease both f-fadeSlowIn;
    z-index: 2
}

.f-fadeSlowOut {
    -webkit-animation: .5s ease both f-fadeSlowOut;
    animation: .5s ease both f-fadeSlowOut;
    z-index: 1
}

@-webkit-keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes f-fadeSlowOut {
    100% {
        opacity: 0
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0
    }
}

.f-fadeFastIn {
    -webkit-animation: .2s ease-out both f-fadeFastIn;
    animation: .2s ease-out both f-fadeFastIn;
    z-index: 2
}

.f-fadeFastOut {
    -webkit-animation: .2s ease-out both f-fadeFastOut;
    animation: .2s ease-out both f-fadeFastOut;
    z-index: 2
}

@-webkit-keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes f-fadeFastOut {
    100% {
        opacity: 0
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0
    }
}

.f-crossfadeIn {
    -webkit-animation: .2s ease-out both f-crossfadeIn;
    animation: .2s ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    -webkit-animation: .1s linear .1s both f-crossfadeOut;
    animation: .1s linear .1s both f-crossfadeOut;
    z-index: 1
}

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

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

@-webkit-keyframes f-crossfadeOut {
    100% {
        opacity: 0
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0
    }
}

.f-slideIn.from-next {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideInNext;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideInPrev;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideOutNext;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideOutPrev;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@-webkit-keyframes f-slideInPrev {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideInPrev {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes f-slideInNext {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideInNext {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes f-slideOutNext {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes f-slideOutNext {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@-webkit-keyframes f-slideOutPrev {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes f-slideOutPrev {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

.f-classicIn.from-next {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicInNext;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicInNext;
    z-index: 2
}

.f-classicIn.from-prev {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
    z-index: 2
}

.f-classicOut.to-next {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
    z-index: 1
}

.f-classicOut.to-prev {
    -webkit-animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
    animation: .85s cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
    z-index: 1
}

@-webkit-keyframes f-classicInNext {
    0% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicInNext {
    0% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes f-classicInPrev {
    0% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicInPrev {
    0% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes f-classicOutNext {
    100% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0
    }
}

@keyframes f-classicOutNext {
    100% {
        -webkit-transform: translateX(-75px);
        transform: translateX(-75px);
        opacity: 0
    }
}

@-webkit-keyframes f-classicOutPrev {
    100% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0
    }
}

@keyframes f-classicOutPrev {
    100% {
        -webkit-transform: translateX(75px);
        transform: translateX(75px);
        opacity: 0
    }
}

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

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

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

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

.f-button:focus-visible {
    outline: 0;
    -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

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

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

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

.f-carousel__nav .f-button.is-next, .f-carousel__nav .f-button.is-prev, .fancybox__nav .f-button.is-next, .fancybox__nav .f-button.is-prev {
    position: absolute;
    z-index: 1
}

.fancybox__backdrop, .fancybox__container {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev {
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos)
}

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

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

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

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
    z-index: 1050;
    outline: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain
}

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

.fancybox__backdrop {
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity
}

.fancybox__carousel {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip
}

.fancybox__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    height: 100%
}

.fancybox__slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.f-thumbs__track, .fancybox__content {
    display: -webkit-box;
    display: -ms-flexbox
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px
}

.fancybox__slide.has-html5video, .fancybox__slide.has-iframe, .fancybox__slide.has-image, .fancybox__slide.has-video {
    overflow: hidden
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
    overflow: visible
}

.fancybox__slide::after, .fancybox__slide::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0px;
    flex: 0 0 0;
    margin: auto
}

.fancybox__content {
    -ms-flex-item-align: center;
    align-self: center;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20
}

.fancybox__caption, .fancybox__toolbar {
    color: var(--fancybox-color, currentColor)
}

.is-loading .fancybox__content {
    opacity: 0
}

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

.can-zoom_in .fancybox__content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.can-zoom_out .fancybox__content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

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

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

.fancybox__slide.has-image > .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
    width: 100%;
    height: auto;
    max-height: 100%
}

.fancybox-ghost, .fancybox-image, .has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
    width: 100%;
    height: 100%
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
    visibility: hidden
}

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

.fancybox-image {
    margin: auto;
    display: block;
    min-height: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox__caption {
    -ms-flex-item-align: center;
    align-self: center;
    max-width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px;
    overflow-wrap: anywhere;
    line-height: 1.375;
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible
}

.f-thumbs__slide.is-loading img, .fancybox-focus-guard, .fancybox__container:not([aria-hidden]), .is-closing .fancybox__caption, .is-loading .fancybox__caption {
    opacity: 0
}

.block-radio__inp, .block-select-socials-el__inp, .contractors-absolute-nav > span, .is-closing .fancybox__caption, .is-loading .fancybox__caption, .is-loading .fancybox__content > .f-button.is-close-btn, .is-zooming-out .fancybox__content > .f-button.is-close-btn, .js-modal, .radio-def__inp, .slick-loading .slick-slide, .slick-loading .slick-track, .sliding-panel-fade-screen, .swiper-cube .swiper-slide, .swiper-slide-invisible-blank {
    visibility: hidden
}

.is-compact .fancybox__caption {
    padding-bottom: 0
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40
}

.fancybox__content > .f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: .75
}

.fancybox__content > .f-button.is-close-btn:hover {
    opacity: 1
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1
}

.is-idle .fancybox__nav {
    -webkit-animation: .15s ease-out both f-fadeOut;
    animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    -webkit-animation: .15s ease-out both f-fadeOut;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__slide > .f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
    z-index: 30;
    cursor: pointer
}

.fancybox-ghost, .fancybox-protected {
    position: absolute;
    z-index: 40;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    left: 0;
    top: 0
}

.fancybox-protected {
    right: 0;
    bottom: 0;
    user-select: none
}

.fancybox-ghost {
    min-height: 0;
    -o-object-fit: contain;
    object-fit: contain;
    user-select: none;
    pointer-events: none
}

.f-thumbs, .fancybox__infobar {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.fancybox-focus-guard {
    outline: 0;
    position: fixed;
    pointer-events: none
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > :not(.fancybox__content), .fancybox__container.is-animated[aria-hidden=false] > :not(.fancybox__backdrop,.fancybox__carousel) {
    -webkit-animation: .25s ease .1s backwards f-fadeIn;
    animation: .25s ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    -webkit-animation: .35s ease backwards f-fadeIn;
    animation: .35s ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > :not(.fancybox__content), .fancybox__container.is-animated[aria-hidden=true] > :not(.fancybox__backdrop,.fancybox__carousel) {
    -webkit-animation: .15s ease forwards f-fadeOut;
    animation: .15s ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    -webkit-animation: .35s ease forwards f-fadeOut;
    animation: .35s ease forwards f-fadeOut
}

.has-html5video .fancybox__content, .has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-vimeo .fancybox__content, .has-youtube .fancybox__content {
    max-width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content, .fancybox__container:not(.is-compact) .has-map .fancybox__content, .fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%
}

.has-html5video .fancybox__content, .has-vimeo .fancybox__content, .has-youtube .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

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

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

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

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

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px
}

.f-thumbs {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
    background-image: -o-linear-gradient(#ebeff2, #e2e8f0);
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1
}

.f-thumbs .f-spinner svg {
    display: none
}

.f-thumbs.is-vertical {
    height: 100%
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden
}

.f-thumbs__slide, .swiper-cube, .swiper-flip {
    overflow: visible
}

.f-thumbs__track {
    display: flex;
    will-change: transform
}

.f-thumbs__slide {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    min-width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    cursor: pointer
}

.is-classic .f-thumbs__viewport {
    height: 100%
}

.is-modern .f-thumbs__track {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--left, 0) * 1px);
    width: calc(100% - var(--width, 0) * 1px);
    cursor: pointer
}

.is-modern .f-thumbs__slide {
    --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
    -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: none
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
    -webkit-filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color));
    filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color))
}

.is-modern .f-thumbs__slide > * {
    -webkit-clip-path: var(--clip-path);
    clip-path: var(--clip-path)
}

.is-modern.in-touch .f-thumbs__slide {
    -webkit-filter: none;
    filter: none
}

.is-modern.is-resting .f-thumbs__slide, .is-modern.is-resting .f-thumbs__slide > * {
    -webkit-transition: all .33s ease;
    -o-transition: all .33s ease;
    transition: all .33s ease
}

.f-thumbs__slide__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: 0;
    cursor: pointer;
    pointer-events: auto;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus-visible, .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity)
}

.f-thumbs__slide__button:focus-visible, .f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: 0
}

.is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    -webkit-animation: f-fadeIn .2s ease-out;
    animation: f-fadeIn .2s ease-out;
    z-index: 10
}

.f-thumbs__slide__img {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--f-thumb-offset);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover
}

.f-thumbs.is-horizontal .f-thumbs__track {
    margin: 0 auto;
    padding: 8px 0 12px
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto 0;
    padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap)
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    -webkit-transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
    -o-transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
    transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, .05)));
    background-image: -o-linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, .05)));
    background-image: -o-linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-hidden {
    max-height: 0 !important
}

.is-closing .fancybox__thumbs {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important
}

.f-progress, .swiper-wrapper {
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
    pointer-events: none;
    z-index: 20
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    -webkit-animation: .15s ease-out both f-fadeOut;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0
}

.fancybox__toolbar__column.is-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none
}

.btn-def.disabled, .f-progress {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.fancybox__infobar span {
    padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
    position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child, [data-fancybox-toggle-slideshow] svg g:last-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child, [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

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

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

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

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

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

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

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

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

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

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

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

*, .swiper-lazy-preloader, .work-input input, ::after, ::before {
    -webkit-box-sizing: border-box
}

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

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

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

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

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

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

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

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

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

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

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

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

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

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

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

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

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

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

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

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

.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

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

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

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

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

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

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

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

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

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

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

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

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

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

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

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

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

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

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

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

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

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

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

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

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top, .2s -webkit-transform;
    -o-transition: .2s transform, .2s top;
    transition: .2s transform, .2s top;
    transition: .2s transform, .2s top, .2s -webkit-transform
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

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

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

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

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

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

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

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

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

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

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

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

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

.swiper-scrollbar-lock {
    display: none
}

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

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

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

.btn-def, .btn-def-2, .text-more__btn {
    cursor: pointer
}

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

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

.block-select__dropdown-el .checkbox-def, .btn-def svg {
    margin-right: 12px
}

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

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

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

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

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

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

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

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

.swiper-cube.swiper-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

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

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

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

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

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

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

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

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

.swiper-cards {
    overflow: visible
}

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

.btn-def {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 16px;
    color: #302F2E;
    background: #FFF;
    border: 1px solid #302F2E;
    border-radius: 41px;
    height: 56px;
    padding: 10px 48.5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.btn-def svg path {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.btn-def.disabled {
    pointer-events: none;
    user-select: none;
    opacity: .5
}

.block-select__placeholder, .btn-def-2.disabled {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    pointer-events: none
}

.btn-def:hover {
    color: #D88344;
    border-color: #D88344
}

.btn-def:hover path {
    fill: #D88344
}

.btn-def:active {
    color: #C57133;
    border-color: #C57133
}

.btn-def:active path {
    fill: #C57133
}

.btn-def-2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 56px;
    padding: 10px 53px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.btn-icon, .btn-icon__icon {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.btn-def-2.disabled {
    user-select: none;
    opacity: .5
}

.btn-def-2 svg {
    margin-left: 12px
}

.btn-def-2:hover {
    background: #C57133
}

.btn-def-2:active {
    background: #B0632B
}

.text-info {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    color: #3D3B39;
    line-height: 1.5
}

.title, .title-def_main {
    font-size: 48px
}

.text-sec, .title-def {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #302F2E
}

.title-def {
    font-weight: 700;
    line-height: 1.17
}

.title-def_med {
    font-size: 40px
}

.title-def_border {
    position: relative;
    padding-bottom: 34px
}

.title-def_border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 270px;
    height: 4px;
    background-color: #302F2E
}

.block-select, .btn-fav, .form-el, .wrap-hint {
    position: relative
}

.block-hover__text, .wrap-hint__hint {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: 50%
}

.text-sec {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6
}

.btn-icon, .wrap-hint__hint {
    line-height: 1;
    color: #302F2E;
    font-family: Manrope
}

.center {
    text-align: center
}

.btn-icon {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700
}

.btn-icon__icon {
    font-size: 0;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 8px
}

.wrap-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.wrap-btns__btn {
    margin-right: 16px;
    padding: 5px;
    height: 48px;
    width: 148px;
    border-width: 2px
}

.wrap-btns__btn:last-child {
    margin-right: 0 !important
}

.text-more__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.text-more.more .text-more__text {
    display: block;
    overflow: visible
}

.btn-fav {
    font-size: 0;
    display: block
}

.wrap-hint__hint {
    position: absolute;
    bottom: 100%;
    max-width: 100vw;
    white-space: nowrap;
    margin-bottom: 30px;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .1);
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    z-index: 50;
    display: none
}

.block-select__dropdown, .contractors-absolute {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.inp-def, .textarea-def, .wrap-hint:hover .wrap-hint__hint {
    display: block
}

.wrap-hint__hint:before {
    content: "";
    position: absolute;
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    bottom: -12px;
    left: 0;
    height: 16px;
    pointer-events: none
}

.inp-def_2, .textarea-def {
    background: #F6F6F6;
    font-weight: 400;
    font-family: Manrope
}

.inp-def {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 16px;
    color: #3D3B39;
    height: 35px;
    padding: 0 26px;
    width: 100%
}

.inp-def_2 {
    padding: 0 16px;
    border-radius: 8px;
    height: 52px;
    font-size: 14px;
    color: #302F2E
}

.inp-def_2::-webkit-input-placeholder {
    color: #ABA9A8
}

.inp-def_2::-moz-placeholder {
    color: #ABA9A8
}

.inp-def_2:-ms-input-placeholder {
    color: #ABA9A8
}

.inp-def_2::-ms-input-placeholder {
    color: #ABA9A8
}

.inp-def_2::placeholder {
    color: #ABA9A8
}

.inp-def_2.valid {
    border: 1.5px solid #E6E5E4 !important;
    background-color: transparent
}

.textarea-def {
    padding: 18px 16px;
    border: 1.5px solid #E6E5E4;
    border-radius: 8px;
    font-size: 14px;
    color: #302F2E;
    min-height: 160px;
    resize: none;
    width: 100%;
    outline: 0
}

.textarea-def::-webkit-input-placeholder {
    color: #ABA9A8
}

.textarea-def::-moz-placeholder {
    color: #ABA9A8
}

.textarea-def:-ms-input-placeholder {
    color: #ABA9A8
}

.textarea-def::-ms-input-placeholder {
    color: #ABA9A8
}

.textarea-def::placeholder {
    color: #ABA9A8
}

.textarea-def.valid {
    border: 1.5px solid #E6E5E4 !important;
    background-color: transparent
}

.form-el_2 {
    padding-top: 0 !important
}

.form-el__placeholder {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 16px;
    color: #918F96;
    position: absolute;
    top: 6px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 26px;
    pointer-events: none
}

.block-select__reset, .form-el__reset {
    width: 24px;
    cursor: pointer;
    position: absolute;
    right: 0
}

.form-el__reset {
    display: none;
    font-size: 0;
    height: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.form-el__title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    font-size: 16px;
    color: #302F2E;
    margin-bottom: 12px
}

.block-select__dropdown-el, .block-select__placeholder, .block-select__val, .form-el__error, .form-el__placeholder2, .form-el__text {
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.form-el__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.form-el__text {
    font-size: 16px;
    color: #302F2E;
    margin-left: 16px
}

.form-el__placeholder2 {
    font-size: 14px;
    color: #ABA9A8;
    margin-bottom: 3px
}

.form-el__error {
    font-size: 12px;
    color: #DD4141;
    display: none
}

.form-el_fix {
    padding-top: 0 !important
}

.block-select, .form-el.active {
    padding-top: 8px
}

.form-el_m {
    margin-bottom: 18px
}

.form-el.active .form-el__reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.form-el.active .form-el__placeholder {
    font-size: 12px;
    top: 0
}

.inp-error {
    border: 1px solid #DD4141 !important
}

.block-select.active {
    z-index: 100
}

.block-select__top {
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 25px
}

.block-select__placeholder {
    position: absolute;
    top: 7px;
    left: 0;
    font-size: 16px;
    color: #918F96;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    user-select: none;
    white-space: nowrap
}

.block-select__reset, .work-border__block::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%)
}

.block-select__reset {
    display: none;
    font-size: 0;
    height: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: translateY(-50%)
}

.block-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-radius: 16px;
    padding: 12px 0;
    display: none;
    will-change: opacity;
    z-index: 100;
    min-width: 222px;
    margin-top: 34px
}

.block-radio, .checkbox-def {
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative
}

.block-select__dropdown-el {
    font-size: 16px;
    padding: 10px 16px;
    color: #3D3B39;
    cursor: pointer;
    line-height: 1.5;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.block-select__dropdown-el.active, .block-select__dropdown-el:hover {
    background: #F6F6F6
}

.block-select__val {
    font-size: 16px;
    color: #3D3B39;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.block-select.selected .block-select__reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.block-radio, .block-radio__inp:checked ~ .block-radio__content .block-radio__dec span {
    display: block
}

.block-select.selected .block-select__placeholder {
    top: 0;
    font-size: 12px
}

.form-def__inp {
    border: 1px solid transparent
}

.form-def__inp.error {
    border-color: red
}

.block-radio {
    background: #FFF;
    border: 1px solid #E4E7EA;
    border-radius: 16px;
    overflow: hidden;
    font-size: 0;
    -webkit-user-select: none;
    user-select: none
}

.block-radio__inp {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -999
}

.block-radio__inp:checked ~ .block-radio__content .block-radio__dec {
    border-color: #D88344;
    background-color: #D88344
}

.block-radio__info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFF;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 800;
    font-size: 18px;
    color: #D88344
}

.block-radio__img {
    border-radius: 16px 16px 0 0;
    display: block;
    height: 220px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.block-radio__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 72px;
    padding: 20px 22px
}

.block-radio__dec {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1.5px solid #3D3B39;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin-right: 10px
}

.block-radio__dec span {
    display: none;
    border-radius: 100%;
    background-color: #fff;
    width: 8px;
    height: 8px
}

.block-radio__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    color: #3D3B39
}

.checkbox-def {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    -webkit-user-select: none;
    user-select: none
}

.checkbox-def__inp {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -999;
    opacity: 0
}

.checkbox-def__inp:checked + .checkbox-def__dec {
    background-color: #D88344;
    border-color: #D88344
}

.checkbox-def__inp:checked + .checkbox-def__dec svg {
    display: block
}

.checkbox-def__dec, .radio-def__dec {
    display: -webkit-box;
    -webkit-transition: .3s;
    height: 100%
}

.checkbox-def__dec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1.5px solid #302F2E;
    border-radius: 4px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -o-transition: .3s;
    transition: .3s
}

.block-images-files-el__remove, .radio-def {
    height: 20px;
    -ms-user-select: none;
    cursor: pointer;
    -moz-user-select: none
}

.checkbox-def__dec:hover {
    border-color: #D88344
}

.checkbox-def__dec svg {
    display: none
}

.radio-def {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 4px;
    width: 20px;
    -webkit-user-select: none;
    user-select: none;
    position: relative
}

.radio-def__inp {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -999;
    width: .1px;
    height: .1px
}

.radio-def__inp:checked + .radio-def__dec {
    background-color: #D88344;
    border-color: #D88344
}

.radio-def__inp:checked + .radio-def__dec span {
    display: block
}

.radio-def__dec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1.5px solid #302F2E;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    padding: 5px;
    -o-transition: .3s;
    transition: .3s
}

.radio-def__dec:hover {
    border-color: #D88344
}

.radio-def__dec span {
    display: none;
    background-color: #fff;
    border-radius: 100%;
    width: 100%;
    height: 100%
}

.block-select-socials, .checkbox-el {
    display: -webkit-box;
    display: -ms-flexbox
}

.checkbox-el {
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.checkbox-el__inp {
    margin-top: 3px
}

.checkbox-el__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    font-size: 16px;
    color: #302F2E;
    margin-left: 10px
}

.checkbox-el__text a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #D88344
}

.checkbox-el_2 {
    border: 1px solid #D4D5D9;
    border-radius: 8px;
    padding: 10px 18px;
    height: 68px;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.block-select-socials {
    display: flex;
    gap: 16px
}

.block-select-socials__el {
    width: 50%;
    margin-bottom: 16px
}

.block-select-socials-el {
    width: 100%;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.block-select-socials-el__inp {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -999
}

.block-select-socials-el__inp:checked + .block-select-socials-el__dec {
    border-color: #D88344
}

.block-select-socials-el__dec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    border: 1px solid #D4D5D9;
    border-radius: 10px;
    padding: 16px 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.block-select-socials-el__icon {
    margin-right: 16px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.block-select-socials-el__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    color: #3D3B39
}

.block-form-drag__text, .block-form-drag__title {
    font-weight: 400;
    font-family: Manrope
}

.block-form-drag {
    background: #F6F6F6;
    border: 1px dashed #E6E5E4;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer
}

.block-show-btn__block, .kontrcontent-block_hide {
    display: none
}

.block-form-drag.dragover {
    border-color: #D88344
}

.block-form-drag__inp {
    width: .1px;
    height: .1px;
    opacity: 0;
    position: absolute;
    z-index: -10
}

.block-form-drag__icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 17px
}

.block-form-drag__title {
    font-size: 16px;
    color: #302F2E;
    line-height: 1.5
}

.block-form-drag__title span {
    color: #D88344
}

.block-form-drag__text {
    font-size: 14px;
    color: #ABA9A8;
    line-height: 1.4;
    margin-top: 4px
}

.block-quiz__title, .quiz-acts__text {
    font-weight: 500;
    font-size: 24px;
    color: #3D3B39
}

.work-border__block {
    position: relative;
    padding-left: 26px;
    padding-right: 24px
}

.work-border__block::before {
    content: "";
    position: absolute;
    left: 0;
    height: 35px;
    transform: translateY(-50%);
    width: 1px;
    background-color: #D4D6D9
}

.work-border .block-select__dropdown {
    left: -20px
}

.block-show-btn__btn {
    cursor: pointer
}

.kontrslayd-container {
    overflow: hidden
}

.kontrslayd-overflo {
    width: 100%;
    white-space: normal !important;
    position: relative
}

.kontrslayd-overflo__arr {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 12px;
    z-index: 3;
    cursor: pointer
}

.kontrslayd-overflo::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    height: 100%;
    width: 80px;
    background: -webkit-gradient(linear, right top, left top, color-stop(39.06%, #FFF), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, #FFF 39.06%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(270deg, #FFF 39.06%, rgba(255, 255, 255, 0) 100%);
    z-index: 2
}

.kontrslayd-wrap {
    white-space: nowrap;
    overflow-x: auto;
    padding-right: 70px
}

.kontrslayd-wrap::-webkit-scrollbar {
    width: 0;
    height: 0
}

.kontrwork-border {
    width: 100%
}

.company-tresh {
    position: sticky;
    top: 20px
}

.aboutvalues-wrap .aboutvalues-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.aboutvalues-wrap .aboutvalues-suptitle {
    /*margin-top: auto*/
    text-align: center;
}

.aboutvalues-wrap .aboutvalues-title {
    min-height: 0;
    margin-bottom: 20px
}

.wrap-more__block {
    display: none
}

.footer-li.active .footer-absolute {
    display: block
}

.footer-absolute {
    padding-top: 0 !important;
    top: 100% !important
}

.footer-absolute.top {
    top: auto !important;
    bottom: 100% !important
}

.quiz-acts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.quiz-acts__text {
}

.quiz-acts__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.quiz-acts__progress {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #F5F4F8;
    border-radius: 32px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 24px
}

.quiz-acts__progress-dec {
    background: #D88344;
    border-radius: 32px;
    display: block;
    width: 18%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.quiz-acts__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.block-quiz__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.block-quiz__content_2 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.block-quiz__content-el {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 24px
}

.block-quiz__title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 49px
}

.block-quiz-info {
    max-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px
}

.block-quiz-info__img {
    display: block;
    width: 449px;
    height: 374px;
    -o-object-fit: contain;
    object-fit: contain
}

.block-quiz-info__content {
    width: 357px
}

.block-quiz-info__el {
    margin-bottom: 24px
}

.block-quiz-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px
}

.block-quiz-two__el {
    width: 50%
}

.block-quiz-select__img, .block-quiz-select__left {
    width: 308px;
    margin-right: 20px
}

.block-quiz-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.block-quiz-select__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.block-quiz-select__img {
    background: #FFF;
    border: 1px solid #E6DDD9;
    border-radius: 16px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -o-object-fit: cover;
    object-fit: cover;
    height: 228px
}

.block-quiz-select__el {
    margin-bottom: 12px
}

.block-quiz-select__el:last-child {
    margin-bottom: 0 !important
}

.block-quiz-select__el .form-el__text {
    font-weight: 600;
    line-height: auto
}

.block-about-el__title, .block-successfully__text {
    font-weight: 700;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.block-quiz-selects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.block-quiz-selects__el {
    width: 33.33333%;
    padding: 0 15px
}

.block-successfully {
    background: #FFF;
    -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 20px 29px;
    display: inline-block
}

.block-successfully__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.block-successfully__text {
    color: #3D3B39;
    margin-left: 15px
}

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

.block-about__img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 597px;
    height: 550px
}

.block-about__left {
    width: 645px;
    margin-right: 29px;
    background: #F6F6F6;
    border: 1px solid #F6F6F6;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.block-about__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.block-about__right-el {
    margin-bottom: 20px
}

.block-about__right-el:last-child {
    margin-bottom: 0 !important
}

.block-about-el {
    border: 2px solid #E6E5E4;
    border-radius: 12px;
    padding: 10px 18px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.block-about-el.active {
    border-color: #D88344
}

.block-about-el__bottom {
    display: none
}

.block-about-el__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px
}

.block-about-el__title {
    color: #302F2E
}

.block-about-el__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 14px;
    color: #302F2E;
    line-height: 1.44
}

.block-about-el__icon {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
    margin-right: 7px
}

.block-about-el__icon-svg {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.block-form {
    border-radius: 20px;
    overflow: hidden
}

.block-form__info {
    background: #D88344;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 56px
}

.block-form__info-descrp {

    padding-left: 10px
}

.block-form__form-text, .block-hover__text {
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.block-form__info-descrp p {
    margin-bottom: 15px;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.white-breadcrumbs a {
    color: #fff !important;
}

.white-breadcrumbs svg path {
    fill: #FFF !important;
}

.block-form__info-descrp p:last-child {
    margin-bottom: 0 !important
}

.block-form__title {
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.4
}

.block-form__form {
    position: relative
}

.block-form__form-title {
    margin-top: 24px;
    margin-bottom: 8px
}

.block-form__form-text {
    font-size: 16px;
    color: #ABA9A8
}

.block-hover__hover, .block-link, .block-stars, .close-def-2, .header-logo, .stars {
    font-size: 0
}

.block-form__form-thanks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: #fff;
    padding: 20px;
    display: none
}

.block-form__form-thanks__content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.block-stars {
    margin-top: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.block-stars__el {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 7px
}

.block-stars__el:last-child {
    margin-right: 0 !important
}

.block-stars__el.active path {
    fill: #F90
}

.block-images-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -3px;
    margin-bottom: 10px
}

.block-images-files-el__remove, .block-links-acts {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.block-images-files__el {
    width: 82px;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 10px
}

.block-images-files-el {
    position: relative
}

.block-images-files-el__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 5;
    background: #FFF;
    border-radius: 100%;
    width: 20px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none
}

.btn-act, .burger2, .slick-slider {
    -webkit-user-select: none;
    -ms-user-select: none
}

.block-images-files-el__img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 50px;
    background: #FFF;
    border-radius: 6px;
    overflow: hidden
}

.block-links-acts {
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.block-links-acts__el {
    margin-right: 16px
}

.block-links-acts__el:last-child {
    margin-right: 0 !important
}

.block-link {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.block-link svg path {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.block-link:hover svg path {
    fill: #DD4141
}

.block-hover {
    position: relative
}

.block-hover__hover:hover + .block-hover__text {
    display: block
}

.block-hover__text {
    display: none;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    background: #FFF;
    border-radius: 6px;
    padding: 7.5px 12px;
    z-index: 100;
    margin-top: 20px;
    font-size: 12px;
    color: #302F2E;
    white-space: nowrap
}

.block-hover__text:before {
    content: "";
    position: absolute;
    background: url(../svg/header-favorite-absolute.svg) center 0 no-repeat;
    width: 100%;
    height: 16px;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.btn-act, .tel-contact {
    display: -webkit-box;
    -webkit-box-align: center;
    height: 40px
}

.company-names {
    position: relative
}

.company-names .block-links-acts {
    position: absolute;
    top: 0;
    right: 0
}

.tel-contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 14px;
    color: #302F2E;
    background: #F6F6F6;
    border-radius: 33px;
    width: 100%;
    text-decoration: none
}

.block-contacts__block, .block-gallery-review__el:nth-child(n+5) {
    display: none
}

.tel-contact svg {
    margin-right: 11px
}

.block-gallery-review {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.block-gallery-review__el {
    margin-bottom: 5px
}

.block-gallery-review__more {
    cursor: pointer
}

@media screen and (max-width: 1024px) {
    .companynaw-wrap__right {
        display: none
    }

    .block-links-acts__el {
        margin-right: 12px
    }

    .company-border-button {
        margin-top: 0 !important
    }

    .block-contacts__block {
        width: 50%
    }
}

.btn-act, .stars {
    display: -ms-flexbox
}

.btn-act {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .12);
    width: 40px;
    border-radius: 100%;
    cursor: pointer;
    -moz-user-select: none;
    user-select: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.close-def-2, .stars {
    -webkit-box-align: center
}

.btn-act path, .close-def {
    -webkit-transition: .3s;
    -o-transition: .3s
}

.btn-act path {
    transition: .3s
}

.btn-act:hover {
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .12)
}

.btn-act:hover path {
    fill: #302F2E
}

.stars {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.stars__el {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 2px
}

.stars__el.active path {
    fill: #F90
}

.burger-new i:nth-of-type(1) svg rect, .header-link2 svg path, .header-logo2 a svg path, .header.fixed .btn-fav path, .header.fixed .burger rect, .header.fixed .header-logo path {
    fill: #302F2E
}

.stars__el:last-child {
    margin-right: 0 !important
}

.noscroll {
    overflow: hidden
}

.close-def-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer
}

.close-def {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    font-size: 16px;
    color: #ABA9A8;
    cursor: pointer;
    height: 24px;
    transition: .3s
}

.modal-quiz, .modal-quiz__quiz {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column
}

.close-def svg {
    margin-right: 13px
}

.close-def svg path {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.close-def:hover {
    color: #302F2E
}

.close-def:hover svg path {
    stroke: #302F2E
}

.overlay {
    background: #000;
    opacity: .5
}

.modal-def {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999;
    display: none
}

.modal-def__wrap, .modal-quiz {
    display: -webkit-box;
    display: -ms-flexbox
}

.modal-def__wrap {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    display: flex
}

.modal-def__content {
    position: relative;
    z-index: 10;
    width: 100%
}

.modal-def__close {
    cursor: pointer
}

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

.modal-content {
    width: 100%;
    max-width: 100%;
    background: #FFF;
    padding: 90px 0
}

.modal-quiz {
    display: flex;
    flex-direction: column
}

.modal-quiz__quiz {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.kontrcontent-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column
}


.modal-quiz__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 20px
}

.modal-quiz__content {
    margin-top: 126px;
    margin-bottom: auto
}

.modal-quiz__els-content-el:not(.active), .modal-quiz__els-el:not(:first-child) {
    display: none
}

.modal-quiz__title {
    margin-bottom: 16px
}

.modal-quiz__bottom {
    margin-top: 79px
}

.modal-quiz__final {
    display: none;
    margin-top: 155px
}

.modal-quiz__final-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 114px
}

.modal-quiz__final-left {
    max-width: 610px;
    width: 100%
}

.modal-quiz__final-right {
    width: 533px;
    position: relative
}

.modal-quiz__final-info, .modal-quiz__thanks-info {
    padding: 20px 24px;
    position: absolute;
    -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12)
}

.modal-quiz__final-img {
    width: 100%;
    height: 523px;
    border-radius: 20px 20px 100px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover
}

.modal-quiz__final-title {
    margin-bottom: 55px
}

.modal-quiz__final-inp {
    margin-top: 16px
}

.modal-quiz__final-info {
    top: 181px;
    left: -97px;
    background: #FFF;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    border-radius: 12px;
    width: 195px
}

.modal-quiz__final-info__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px
}

.modal-quiz__final-info__title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 20px;
    color: #3D3B39
}

.modal-quiz__final-info__text {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 15px;
    color: #3D3B39;
    margin-left: 25px
}

.modal-quiz__final-info__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
    background: #D88344;
    border-radius: 6px;
    width: 48px;
    height: 48px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.modal-content-2__topmob-title, .modal-write__to {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 16px
}

.modal-quiz__btn {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 16px
}

.modal-quiz__successfully {
    margin-bottom: 43px
}

.modal-quiz__thanks {
    display: none;
    margin-top: 155px
}

.modal-quiz__thanks-info {
    background: #FFF;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    border-radius: 12px;
    top: 49px;
    left: -49px
}

.header, .modal-def-2 {
    position: fixed;
    left: 0
}

.modal-def-2 {
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999;
    display: none
}

.modal-def-2__wrap {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.modal-def-2__content {
    position: relative;
    z-index: 10;
    width: 100%
}

.modal-def-2__close {
    cursor: pointer
}

.modal-def-2__overlay {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 1
}

.modal-content-2 {
    width: 100%;
    max-width: 600px;
    background: #FFF;
    border-radius: 20px;
    padding: 64px 32px 48px
}

.mt-mobile {
    background: #fff
}

button, input {
    border: none
}

.modal-content-2__close {
    position: absolute;
    top: 32px;
    right: 32px
}

.modal-content-2__topmob {
    display: none
}

.modal-content-2__topmob-title {
    font-weight: 700;
    color: #302F2E
}

.modal-write__title {
    margin-bottom: 33px
}

.modal-write__to {
    font-weight: 600;
    color: #302F2E;
    /*margin-bottom: 10px*/
}

.modal-thanks__text, .modal-write__name {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400
}

.modal-write__name {
    font-size: 24px;
    color: #302F2E;
    margin-bottom: 8px
}

.modal-write .contractors-wrap2 {
    padding: 0
}

.modal-write__describe {
    margin-top: 28px
}

.modal-write__next {
    margin-left: auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 144px;
    height: 48px;
    margin-top: 30px
}

.modal-write__content-el:not(:first-child) {
    display: none
}

.modal-write__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 27px
}

.header-ul, .header-wrap {
    display: -webkit-box;
    -webkit-box-align: center
}

.modal-write__btns-btn {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 128px;
    height: 48px;
    margin-right: 16px
}

.modal-write__btns-btn:last-child {
    margin-right: 0 !important
}

.modal-write .form-info {
    padding-top: 0
}

.modal-thanks {
    text-align: center
}

.modal-thanks__btn {
    width: 100%;
    margin-top: 24px
}

.modal-thanks__text {
    margin-top: 8px;
    font-size: 16px;
    color: #ABA9A8
}

.infosec-suptitle button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.modal-thanks__title {
    margin-top: 20px
}

.company-border-button, .modal-review__stars {
    margin-top: 24px
}

.modal-review__textarea {
    min-height: 100px
}

.modal-review__send {
    width: 100%;
    margin-top: 30px;
    height: 48px
}

.modal-delete {
    text-align: center
}

.modal-delete__title {
    margin-bottom: 30px
}


ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.clear {
    clear: both
}


/*.background {*/
/*    background: url(/wp-content/uploads/background.png) center 0 no-repeat*/
/*}*/


.padding-top {
    padding-top: 100px
}


/*.header-wrap {*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between*/
/*}*/


.contractors-absolute-nav, .contractors-top, .title span, .title2 span {
    position: relative
}


.work-border, .work-inner {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.title, .title2 {
    line-height: 56px
}

.header-button button:hover, .work-button button {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}


.work {
    padding: 160px 0 181px
}

.title {
    font-weight: 600;
    color: #FFF
}

.title span:before {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -7px;
    border-bottom: 8px solid #D88344
}

.work-title {
    padding: 21px 0 0;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    color: #FFF
}

.work-border {
    margin: 40px 0 0;
    background: #FFF;
    padding: 10px 8px;
    border: 1px solid #E6E5E4;
    border-radius: 64px;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.work-input input, .work-input2 input {
    margin: 0;
    height: 35px;
    background: 0 0;
    border: none;
    font-size: 16px
}

.infosec-wrap, .work-inner, .work-ul {
    display: -webkit-box
}

.work-input input {
    line-height: 24px;
    width: 100%;
    color: #3D3B39;
    padding: 0 0 0 24px;
    box-sizing: border-box
}

.work-input input::-webkit-input-placeholder {
    color: #ABA9A8
}

.work-input input::-moz-placeholder {
    color: #ABA9A8
}

.work-input input:-ms-input-placeholder {
    color: #ABA9A8
}

.work-input input::-ms-input-placeholder {
    color: #ABA9A8
}

.work-input input::placeholder {
    color: #ABA9A8
}

.work-input2 input {
    line-height: 24px;
    width: 100%;
    color: #3D3B39;
    padding: 0 0 0 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left: 1px solid #E6E5E4
}

.work-input2 input::-webkit-input-placeholder {
    color: #ABA9A8
}

.work-input2 input::-moz-placeholder {
    color: #ABA9A8
}

.work-input2 input:-ms-input-placeholder {
    color: #ABA9A8
}

.work-input2 input::-ms-input-placeholder {
    color: #ABA9A8
}

.work-input2 input::placeholder {
    color: #ABA9A8
}

.work-block {
    width: 54.9%;
    padding-right: 24px;
    padding-left: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.work-block .block-select__dropdown {
    left: -34px
}

.work-block2, .work-block3 {
    width: 16.7%
}

.work-block4 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.work-block5 {
    text-align: right;
    width: 7%;
    margin-left: auto
}

.work-button button {
    width: 80px;
    height: 80px;
    background: #D88344;
    border-radius: 50%;
    transition: .4s ease
}

.work-button button:hover, .work-li a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.work-button button:hover {
    background: #C57133;
    transition: .4s ease
}

.work-inner {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 0
}

.work-inner-title {
    font-size: 16px;
    line-height: 24px;
    color: #FFF
}

.work-ul {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 6px
}

.work-li {
    padding: 0 0 0 10px
}

.work-li a {
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    text-decoration: none;
    display: block;
    border: 1px solid #FFF;
    border-radius: 24px;
    padding: 2px 16px;
    transition: .4s ease
}

.infosec-suptitle button, .work-li a:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.work-li a:hover {
    transition: .4s ease;
    border: 1px solid #D88344;
    color: #D88344
}

.infosec {
    padding: 65px 0
}

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

.infosec-icon, .steps-top {
    -webkit-box-align: center
}

.infosec-block {
    width: 33.3333333%;
    margin: 0 110px 0 0
}

.infosec-block:last-child {
    margin: 0
}

.infosec-icon {
    background: rgba(216, 131, 68, .1);
    border-radius: 8px 24px 8px 8px;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.background2, .contractors-li {
    background: #F6F6F6
}

.infosec-title {
    padding: 20px 0 0;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #302F2E
}

.infosec-suptitle {
    padding: 10px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.infosec-suptitle button {
    font-size: 16px;
    line-height: 24px;
    color: #D88344;
    transition: .4s ease
}

.infosec-suptitle button:hover, .steps-button button, .steps-button button:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.infosec-suptitle button:hover {
    color: #C57133;
    transition: .4s ease
}

.steps {
    padding: 120px 0 0
}

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

.steps-number, .steps-top {
    display: -ms-flexbox;
    display: -webkit-box
}

.steps-block {
    width: 49%
}

.steps-block2 {
    width: 51%;
    padding: 0 0 0 72px
}

.title2 {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 40px;
    color: #302F2E
}

.steps-number, .steps-title2 {
    line-height: 32px;
    color: #302F2E;
    font-size: 24px
}

.title2 span:before {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -6px;
    border-bottom: 8px solid #D88344
}

.steps-pd {
    padding: 24px 0 0
}

.steps-top {
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.steps-number {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    width: 48px;
    height: 48px;
    border: 1px solid #302F2E;
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contractors-absolute-button button, .contractors-absolute-title, .contractors-button button, .get-button button, .steps-button button, .steps-button2 a, .steps-title2 {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.steps-button2 a, .steps-buttons {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.steps-title2 {
    padding: 0 0 0 14px;
    width: 90%
}

.get-button button, .get-title, .steps-button button, .steps-button2 a, .steps-suptitle {
    font-size: 16px;
    line-height: 24px
}

.steps-suptitle {
    max-width: 420px;
    padding: 12px 0 0;
    color: #302F2E
}

.steps-buttons {
    display: -webkit-box;
    display: flex;
    padding: 32px 0 0;
    -ms-flex-align: center;
    align-items: center
}

.steps-button button {
    color: #FFF;
    width: 244px;
    height: 56px;
    background: #D88344;
    border-radius: 41px;
    transition: .4s ease
}

.steps-button button:hover {
    background: #C57133;
    transition: .4s ease
}

.steps-button2 a, .steps-button2 a svg {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.steps-button2 {
    padding: 0 0 0 16px
}

.steps-button2 a {
    color: #302F2E;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 196px;
    height: 56px;
    border: 2px solid #302F2E;
    border-radius: 40px;
    transition: .4s ease;
    text-decoration: none
}

.steps-button2 a svg {
    margin: 0 0 0 12px;
    transition: .4s ease
}

.steps-button2 a:hover {
    border: 2px solid #D88344;
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.steps-button2 a:hover svg path {
    fill: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.get {
    padding: 116px 0 120px
}

.get-border {
    padding: 59px 20px 61px 80px;
    border-radius: 24px;
    background-color: #566058;
    position: relative;
    z-index: 1;
}

.get-width {
    max-width: 619px
}

.get-title {
    padding: 16px 0 0;
    color: #FFF
}

.title-color {
    color: #FFF
}

.get-button {
    padding: 45px 0 0
}

.get-button button {
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 235px;
    height: 56px;
    background: #D88344;
    border-radius: 41px
}

.get-button button img {
    margin: 0 0 0 8px
}

.get-button button:hover {
    background: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.contractors {
    padding: 120px 0 0
}

.contractors-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contractors-button {
    padding: 0 0 0 15px
}

.contractors-button button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
    line-height: 56px;
    color: #D88344
}

.contractors-button button img {
    margin: 0 0 0 6px
}

.contractors-absolute {
    z-index: 2;
    position: absolute;
    top: 72px;
    width: 100%;
    left: 0;
    padding: 41px 24px;
    background: #FFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-radius: 16px
}

.hide {
    display: none
}

.contractors-absolute-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contractors-absolute-title {
    font-size: 24px;
    line-height: 32px;
    color: #3D3B39
}

.contractors-absolute-button {
    padding: 0 0 0 12px
}

.contractors-absolute-button button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.articles-absolute-li a, .articles-title, .contractors-absolute-border, .contractors-absolute-nav, .footer-absolute-li a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.contractors-absolute-button button svg {
    margin: 0 0 0 8px;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.contractors-absolute-button button:hover {
    color: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.contractors-absolute-button button:hover svg path {
    fill: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.contractors-absolute-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0 0
}

.contractors-absolute-li {
    padding: 16px 0 0
}

.contractors-absolute-nav {
    text-decoration: none;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #3D3B39
}

.contractors-absolute-nav:hover::before, .contractors-link a, .contractors-number {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.contractors-wrap, .contractors-wrap2 {
    display: -ms-flexbox;
    display: -webkit-box
}

.contractors-absolute-nav:hover {
    color: #302F2E
}

.contractors-absolute-nav::before {
    content: attr(data-title);
    position: absolute;
    left: 0
}

.burger2, .contractors-link a:after, .contractors-link2 a:after, .useful-link a:after {
    content: ""
}

.contractors-border, .contractors-border2, .contractors-img, .useful-relative, .whysec-relative {
    position: relative
}

.contractors-container {
    padding: 0 20px
}

.contractors-wrap {
    display: flex;
    padding: 40px 0 0
}

.contractors-block {
    width: 25%;
    padding: 0 15px
}

.contractors-border {
    height: 100%;
    border: 1px solid #E6E5E4;
    border-radius: 20px
}

.contractors-img img {
    border-radius: 20px 20px 0 0
}

.contractors-pd {
    padding: 20px 10px 20px 16px
}

.contractors-link a {
    text-decoration: none;
    font-size: 20px;
    line-height: 27px;
    color: #302F2E;
    display: block
}

.contractors-link a:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

.contractors-link a:hover {
    color: #D88344
}

.contractors-title {
    padding: 4px 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #ABA9A8
}

.contractors-wrap2 {
    padding: 16px 0 0;
    display: flex
}

.contractors-number {
    font-size: 14px;
    line-height: 19px;
    color: #F90;
    margin-right: 4px
}

.contractors-stars {
    padding: 0 0 0 4px
}

.contractors-rewiew {
    padding: 0 0 0 8px;
    font-size: 14px;
    line-height: 19px;
    color: #ABA9A8
}

.contractors-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0 0
}

.contractors-li2-border, .contractors-li2-border2 {
    -webkit-box-align: center;
    height: 32px;
    border-radius: 6px;
    width: 32px
}

.contractors-li {
    margin: 6px 6px 0 0;
    font-size: 12px;
    line-height: 20px;
    color: #302F2E;
    padding: 2px 4px;
    border-radius: 6px
}

.contractors-ul2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 0 0
}

.contractors-li2 {
    padding: 0 9px 0 0
}

.contractors-li2:last-child {
    padding: 0
}

.contractors-li2-border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(22, 159, 77, .1)
}

.contractors-li2-border2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(245, 153, 14, .1)
}

.contractors-abolute, .contractors-border2 {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.contractors-abolute {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contractors-absolute-border {
    font-size: 12.43px;
    line-height: 21px;
    color: #FFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 3.55px;
    padding: 0 5px
}

.contractors-border2 {
    background: #566058;
    border-radius: 20px 80px 20px 20px;
    height: 100%;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contractors-link2 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
    line-height: 24px;
    color: #FFF;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.reviews-wrap, .whysec-wrap {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.contractors-link2 a:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1
}

.contractors-link2 a svg {
    margin: 0 0 0 8px;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.contractors-link2 a:hover {
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.what-link a, .what-link a:hover .what-title {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.contractors-link2 a:hover svg path {
    fill: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.reviews {
    padding: 120px 0 0
}

.reviews-container {
    padding: 0 20px
}

.reviews-border {
    background: #F6F6F6;
    border-radius: 20px;
    padding: 40px 32px 55px
}

.reviews-wrap {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.reviews-text {
    width: 81%;
    padding: 0 0 0 20px
}

.reviews-name {
    font-size: 24px;
    line-height: 33px;
    color: #302F2E
}

.reviews-title {
    padding: 4px 0 0;
    font-size: 16px;
    line-height: 22px;
    color: #ABA9A8
}

.reviews-stars {
    padding: 14px 0 0
}

.reviews-suptitle {
    padding: 18px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.reviews-slayder {
    padding: 32px 0 0
}

.what {
    padding: 120px 0 0
}

.what-container {
    padding: 0 20px
}

.what-wrap {
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.listsec-link a, .what-link a {
    display: block;
    text-decoration: none
}

.what-block {
    width: 25%;
    padding: 0 15px
}

.what-link a {
    transition: .4s ease
}

.what-link a:hover .what-title {
    color: #D88344;
    transition: .4s ease
}

.listsec-link a, .what-title {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.what-title {
    padding: 16px 0 0;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 24px;
    line-height: 150.26%;
    color: #302F2E;
    transition: .4s ease
}

.listsec-link a, .whysec-link a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.listsec-link a, .listsec-title {
    color: #FFF;
    font-size: 16px;
    line-height: 24px
}

.listsec {
    padding: 136px 0 0
}

.listsec-border {
    padding: 56px 20px 56px 56px;
    background-color: #566058;
    border-radius: 24px 100px 24px 24px;
    position: relative;
}

.listsec-title {
    padding: 16px 0 0;
    max-width: 701px
}

.listsec-link {
    padding: 32px 0 0
}

.listsec-link a {
    text-align: center;
    width: 230px;
    padding: 16px 0;
    background: #D88344;
    border-radius: 41px;
    transition: .4s ease
}

.accordion4 .link4, .accordion5 .link4, .articles-drop {
    border-radius: 12px;
    background: #F6F6F6
}

.listsec-link a:hover, .whysec-link a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.listsec-link a:hover {
    background: #C57133;
    transition: .4s ease
}

.whysec {
    padding: 120px 0 0
}

.whysec-pd, .whysec-title {
    padding: 16px 0 0
}

.whysec-wrap {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.whysec-absolute, .whysec-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.whysec-block {
    width: 43%
}

.whysec-title {
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.whysec-link {
    padding: 48px 0 0
}

.whysec-link a {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    color: #D88344;
    transition: .4s ease
}

.whysec-link a svg, .whysec-link a:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.whysec-link a svg {
    margin: 0 0 0 5px;
    transition: .4s ease
}

.whysec-link a:hover {
    color: #C57133;
    transition: .4s ease
}

.useful-link a, .whysec-link a:hover svg path {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.whysec-link a:hover svg path {
    fill: #C57133;
    transition: .4s ease
}

.whysec-block2 {
    width: 57%;
    padding: 0 0 0 47px
}

.whysec-img {
    text-align: right
}

.burger-li:last-child, .burger-modal-li, .footer-link, .title-center {
    text-align: center
}

.whysec-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.useful-inner, .whysec-border-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.whysec-border {
    width: 252px;
    padding: 13px 22px;
    background: #FFF;
    -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    border-radius: 12px
}

.whysec-border-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.useful-link a, .whysec-border-suptitle {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    color: #302F2E
}

.whysec-border-wrap {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 0 0
}

.whysec-border-square {
    background: #566058;
    border-radius: 6px;
    width: 40px;
    height: 40px
}

.whysec-border-suptitle {
    padding: 0 0 0 13px;
    font-size: 41.03px;
    line-height: 62px
}

.useful {
    padding: 120px 0 0
}

.useful-container {
    padding: 0 20px
}

.useful-slayder {
    padding: 40px 0 0
}

.useful-inner, .useful-link {
    padding: 16px 0 0
}

.useful-inner {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.useful-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #ABA9A8
}

.useful-info img {
    margin: 0 8px 0 0
}

.useful-link a {
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    transition: .4s ease
}

.accordion .link, .modal-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.useful-link a:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

.accordion .link, .fag-relative {
    position: relative
}

.useful-link a:hover {
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.accordion .link, .accordion4 .link4 {
    -o-transition: all .4s ease;
    cursor: pointer;
    -webkit-transition: all .4s ease
}

.fag {
    background: #F6F6F6;
    margin: 114px 0 0;
    padding: 120px 0
}

.fag-accordion {
    max-width: 870px;
    margin: 36px auto 0
}

.accordion {
    width: 100%;
    margin: 0
}

.accordion .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 20px;
    line-height: 32px;
    color: #302F2E;
    transition: all .4s ease;
    border: 1px solid #302F2E;
    border-radius: 52px;
    padding: 10px 10px 10px 24px
}

.accordion-title, .articles-absolute-li a, .footer-absolute-li a, .footer-drop {
    font-size: 16px;
    line-height: 24px
}

.accordion .link p {
    width: 93%;
    padding: 0 24px 0 0
}

.link-arrow {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #302F2E;
    border-radius: 50%
}

.accordion li {
    margin: 0 0 24px
}

.accordion .link svg {
    margin: 0
}

.accordion li.open .link svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.accordion li.open .link svg path {
    fill: #fff
}

.accordion li.open .link .link-arrow {
    background: #302F2E
}

.accordion-content {
    display: none;
    padding: 14px 24px 0
}

.accordion-title {
    color: #302F2E
}

.accordion-absolute {
    position: absolute;
    top: 47px;
    width: 232px;
    left: -50px
}

.accordion-absolute2 {
    position: absolute;
    top: 313px;
    width: 180px;
    right: 0
}

.articles {
    padding: 120px 0 0
}

.articles-container {
    padding: 0 20px
}

.accordion4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 27px 0 0
}

.accordion4 .link4, .articles-drop {
    display: -ms-flexbox;
    -webkit-box-align: center;
    width: 100%;
    padding: 0 24px;
    height: 64px
}

.accordion4 .link4 {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    transition: all .4s ease
}

.accordion4 .link4 svg {
    margin: 0
}

.accordion4 li.open4 .link4 svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.articles-drop, .articles-drop:focus {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.accordion4 li {
    position: relative;
    width: 25%;
    padding: 30px 15px 0
}

.articles-drop {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: .4s ease;
    text-align: left
}

.articles-absolute, .footer-absolute-bg {
    background: #FFF;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    border-radius: 16px
}

.articles-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.articles-title {
    padding: 0 0 0 16px;
    font-size: 20px;
    line-height: 24px;
    color: #302F2E
}

.articles-drop:focus {
    outline: #E4E7EA solid 4px;
    transition: .4s ease
}

.articles-drop:focus .articles-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.articles-absolute {
    z-index: 1;
    display: none;
    position: absolute;
    top: 110px;
    left: 15px;
    width: 647px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    padding: 16px 32px 32px
}

.articles-absolute2 {
    left: auto;
    right: 15px
}

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

.articles-absolute-li {
    width: 100% !important;
    padding: 16px 0 0 !important
}

.company-contract-link a, .footer-drop {
    width: -webkit-fit-content;
    width: -moz-fit-content
}

.articles-absolute-li a {
    text-decoration: none;
    color: #302F2E;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    display: block;
    position: relative;
    z-index: 2
}

.articles-absolute-li a:hover, .footer-drop {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.articles-absolute-li a:hover {
    color: #D88344;
    transition: .4s ease
}

.footer {
    margin: 120px 0 0;
    padding: 64px 0 44px;
    background: #302F2E
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 49px;
    border-bottom: 1px solid #ABA9A8
}

.footer-logo a {
    display: block
}

.footer-drop, .footer-ul {
    display: -webkit-box;
    -webkit-box-align: center
}

.footer-ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.footer-li {
    position: relative;
    padding: 0 12px
}

.footer-drop {
    width: fit-content;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    transition: .4s ease
}

.footer-drop svg, .footer-li:hover .footer-drop {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-drop svg {
    margin: 0 0 0 8px;
    transition: .4s ease
}

.footer-li:hover .footer-drop {
    color: #D88344;
    transition: .4s ease
}

.footer-li:hover .footer-drop svg path {
    stroke: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.footer-absolute {
    z-index: 1;
    display: none;
    position: absolute;
    left: 16px;
    padding: 26px 0 0
}

.footer-absolute-bg {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    width: 154px;
    padding: 16px 16px 32px 32px
}

.footer-absolute-li {
    padding: 16px 0 0
}

.footer-absolute-li a {
    text-decoration: none;
    color: #302F2E;
    display: block;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.footer-absolute-li a:hover, .footer-link a {
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-absolute-li a:hover {
    transition: .4s ease
}

.footer-link {
    padding: 10px 0 0
}

.footer-link a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    transition: .4s ease
}

.footer-button button, .footer-link a:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-link a:hover {
    color: #C57133;
    transition: .4s ease
}

.footer-button button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 56px;
    width: 248px;
    transition: .4s ease
}

.footer-bottom, .footer-middle {
    display: -webkit-box;
    display: -ms-flexbox
}

.footer-button button:hover, .footer-li2 a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-button button:hover {
    background: #C57133;
    transition: .4s ease
}

.footer-middle {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 48px;
    border-bottom: 1px solid #ABA9A8
}

.footer-ul2 {
    padding: 32px 0 0
}

.footer-li2 {
    padding: 16px 0 0
}

.footer-li2 a {
    font-size: 20px;
    line-height: 24px;
    color: #FFF;
    text-decoration: none;
    display: block;
    transition: .4s ease
}

.footer-li2 a:hover, .footer-li3 a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-li2 a:hover {
    color: #D88344;
    transition: .4s ease
}

.footer-li3, .footer-li3 a {
    color: #FFF;
    font-size: 14px;
    line-height: 24px
}

.footer-bottom {
    padding: 44px 0 0;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer-social-ul, .footer-ul3 {
    display: -webkit-box;
    display: -ms-flexbox
}

.footer-ul3 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-li3 {
    position: relative;
    padding: 0 24px 0 0
}

.footer-li3 a {
    text-decoration: none;
    display: block;
    transition: .4s ease
}

.footer-li3 a:hover, .footer-social-li a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-li3 a:hover {
    color: #D88344;
    transition: .4s ease
}

.footer-li3:last-child {
    padding: 0
}

.footer-li3:before {
    position: absolute;
    content: "·";
    font-size: 14px;
    line-height: 24px;
    color: #FFF;
    right: 12px;
    top: 0
}

.footer-li3:last-child:before {
    display: none
}

.footer-social-ul {
    padding: 12px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-social-li {
    padding: 0 10px 0 0
}

.footer-social-li:last-child {
    padding: 0
}

.footer-social-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ABA9A8;
    border-radius: 50%;
    transition: .4s ease
}

.footer-social-li a svg, .footer-social-li a:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-social-li a svg {
    transition: .4s ease
}

.footer-social-li a:hover {
    border: 1px solid #D88344;
    transition: .4s ease
}

.footer-social-li a:hover svg path, .semechki-li a {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.footer-social-li a:hover svg path {
    fill: #D88344;
    transition: .4s ease
}

.footer-multi a {
    display: block
}

.work-mobile-button {
    display: none
}

.work-mobile-button-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background: #D88344;
    border-radius: 55px;
    height: 60px;
    width: 100%
}

.accordion2 .link2, .accordion3 .link3 {
    -webkit-box-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.work-mobile-button-style img {
    margin: 0 0 0 12px
}

.whysec-br {
    display: none
}

.accordion2 {
    width: 100%;
    margin: 0
}

.accordion2 .link2 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 40px;
    line-height: 40px;
    color: #302F2E;
    position: relative;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 286px
}

.accordion2 .link2 svg {
    margin: 0
}

.accordion2 li.open2 .link2 svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.accordion3 .link3, .accordion5 .link4 {
    -webkit-transition: all .4s ease;
    position: relative;
    cursor: pointer
}

.articles-accordion, .footer-social-ul-mb {
    display: none
}

.accordion3 {
    width: 100%;
    margin: 0
}

.accordion3 .link3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 20px;
    line-height: 28px;
    color: #FFF;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.accordion3 .link3 span {
    position: relative;
    top: -3px;
    margin: 0 0 0 8px;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #E6E5E4
}

.burger-li a, .contractors-absolute-mb button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.accordion3 .link3 svg {
    margin: 0
}

.accordion3 li.open3 .link3 svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.footer-accordion {
    display: none
}

.contractors-absolute-mb {
    padding: 0 0 30px 35px;
    margin: 0 -35px;
    border-bottom: 1px solid rgba(48, 47, 46, .4);
    display: none
}

.contractors-absolute-mb button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #ABA9A8
}

.accordion5, .accordion5 .link4 {
    display: -ms-flexbox;
    width: 100%
}

.accordion5 {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0
}

.accordion5 .link4 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.accordion5 .link4 svg {
    margin: 0
}

.accordion5 li.open4 .link4 svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.accordion5 li {
    position: relative;
    width: 100%;
    padding: 16px 0 0
}

.mt-munu-mb {
    padding: 0;
    height: 100vh
}

.burger {
    position: absolute;
    top: 13px;
    right: 0;
    color: #23f0ff;
    cursor: pointer;
    z-index: 12
}

.burger i:nth-of-type(1) {
    display: block
}

.burger i:nth-of-type(2) {
    display: none
}

.burger.burger-open {
    color: #2a3255
}

.burger.burger-open i:nth-of-type(1) {
    display: none
}

.burger.burger-open i:nth-of-type(2) {
    display: block
}

.body-open {
    position: relative
}

.mt-mobile {
    position: fixed;
    top: 0;
    z-index: 11;
    width: 100%;
    padding-top: 154px;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
    -webkit-clip-path: circle(100%);
    clip-path: circle(100%)
}

.mt-mobile.nav-open {
    -webkit-clip-path: circle(0 at 100% 0);
    clip-path: circle(0 at 100% 0)
}

.burger-li {
    padding: 0 0 40px
}

.burger-li:last-child {
    padding: 0
}

.burger-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    line-height: 40px;
    color: #302F2E
}

.burger-icon {
    margin: 0 0 0 8px;
    position: relative
}

.burger-elipse {
    position: absolute;
    top: 12px;
    right: 0;
    background: #DD4141;
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.burger-arrow {
    margin: 0 0 0 8px
}

.burger-button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    width: 200px;
    height: 56px
}

.burger-modal-button, .filter-close button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.burger-modal, .burger-modal2 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 282px 35px;
    width: 100%;
    background: #FFF;
    display: none;
    z-index: 1
}

.burger-modal-button, .filter-top {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.burger-modal-button {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.burger-modal-button img {
    margin: 0 10px 0 0
}

.burger-modal-close, .burger-modal-close2 {
    position: absolute;
    top: 112px;
    left: 35px
}

.burger-box span, .checkbox-main, .checkbox-main2, .filter-input, .semechki-li, .tab-content.current, ul.tabs li {
    position: relative
}

.burger-modal-li {
    padding: 0 0 40px
}

.burger-modal-li:last-child {
    padding: 0
}

.burger-modal-li a {
    display: block;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    text-decoration: none;
    font-size: 32px;
    line-height: 40px;
    color: #302F2E
}

.burger-box span {
    color: #000;
    z-index: 111
}

.burger2 {
    font-size: 0;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    top: 15px;
    left: unset;
    right: 17px;
    width: 17px;
    height: 17px;
    background: #fff;
    z-index: 1
}

.burger2:after, .burger2:before {
    position: absolute;
    width: 17px;
    background: #000;
    left: 0;
    height: 1px;
    content: ""
}

.burger2:before {
    top: -15px;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg)
}

.burger2:after {
    top: 15px;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg)
}

.burger2.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    background: 0 0
}

.sliding-panel-content {
    position: fixed;
    top: 0;
    right: auto;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .05);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .05);
    left: 0;
    overflow: auto;
    height: 100vh;
    width: 100%;
    padding: 24px 0 16px;
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    background: #fff;
    z-index: 9999 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.sliding-panel-content.is-visible {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.sliding-panel-fade-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all .15s ease-out 0s;
    -o-transition: all .15s ease-out 0s;
    transition: all .15s ease-out 0s;
    opacity: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 31, 1, .9)), to(rgba(47, 31, 1, .9)));
    background: -o-linear-gradient(bottom, rgba(47, 31, 1, .9), rgba(47, 31, 1, .9));
    background: linear-gradient(0deg, rgba(47, 31, 1, .9), rgba(47, 31, 1, .9))
}

.sliding-panel-fade-screen.is-visible {
    opacity: 1;
    visibility: visible;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 31, 1, .9)), to(rgba(47, 31, 1, .9)));
    background: -o-linear-gradient(bottom, rgba(47, 31, 1, .9), rgba(47, 31, 1, .9));
    background: linear-gradient(0deg, rgba(47, 31, 1, .9), rgba(47, 31, 1, .9))
}

.filter-top {
    padding: 0 35px 24px;
    border-bottom: 1px solid #E6E5E4;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.filter-close button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.filter-button button, .filter-title, .kontrcontent-selection-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.filter-close button img {
    margin: 0 10px 0 0
}

.filter-title {
    font-size: 20px;
    line-height: 32px;
    color: #302F2E
}

.filter-reset button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #ABA9A8
}

.checkbox-title, .checkbox-title2, .filter-input input, .filter-overflo-li button {
    font-size: 14px;
    line-height: 20px;
    color: #302F2E
}

.filter-pd {
    padding: 24px 35px 8px;
    border-bottom: 1px solid #E4E7EA
}

.filter-input-button {
    position: absolute;
    top: 8px;
    left: 16px
}

.filter-input input {
    margin: 0;
    width: 100%;
    padding: 0 0 0 50px;
    height: 40px;
    background: #F6F6F6;
    border-radius: 8px
}

.filter-input input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 20px;
    color: #ABA9A8
}

.filter-input input::-moz-placeholder {
    font-size: 12px;
    line-height: 20px;
    color: #ABA9A8
}

.filter-input input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
    color: #ABA9A8
}

.filter-input input::-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
    color: #ABA9A8
}

.filter-input input::placeholder {
    font-size: 12px;
    line-height: 20px;
    color: #ABA9A8
}

.filter-pd2 {
    padding: 12px 0 0
}

.filter-block {
    padding: 20px 0 0
}

.filter-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.filter-overflo {
    margin: 12px 0 0;
    /*height: 126px;*/
    overflow: auto;
}

.filter-overflo::-webkit-scrollbar {
    width: 5px
}

.filter-overflo::-webkit-scrollbar-track {
    background: 0 0
}

.filter-overflo::-webkit-scrollbar-thumb {
    background: #E6E5E4;
    border-radius: 15px
}

.filter-overflo::-moz-scrollbar {
    width: 5px
}

.filter-overflo::-moz-scrollbar-track {
    background: 0 0
}

.filter-overflo::-moz-scrollbar-thumb {
    background: #E6E5E4;
    border-radius: 15px
}

.filter-overflo::-o-scrollbar {
    width: 5px
}

.filter-overflo::-o-scrollbar-track {
    background: 0 0
}

.filter-overflo::-o-scrollbar-thumb {
    background: #E6E5E4;
    border-radius: 15px
}

.filter-overflo-ul {
    padding: 2px 0 0 2px
}

.filter-overflo-li {
    padding: 0 0 14px
}

.filter-overflo-li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: normal;
}

.filter-overflo-elipse {
    border: 1.5px solid #302F2E;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0
}

.filter-overflo-li button:focus .filter-overflo-elipse {
    border: 6px solid #D88344
}

.checkbox-main2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.checkbox-main2 .checkbox2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    top: 0;
    left: 0;
    border: 1.5px solid #302F2E;
    border-radius: 50%;
    box-sizing: border-box
}

.checkbox-main2 input {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0
}

.checkbox-main2 input:checked ~ .checkbox2 {
    border: 6px solid #D88344;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.checkbox-title2 {
    width: 95%;
    padding: 0 0 0 12px
}

.checkbox-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.checkbox-main .checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    top: 0;
    left: 0;
    border: 1.5px solid #302F2E;
    border-radius: 4px;
    box-sizing: border-box
}

.kontrwork-ul, .semechki-ul {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.checkbox-main input[type=checkbox] {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0
}

.checkbox-main input[type=checkbox]:checked ~ .checkbox {
    background: url(../svg/chekbox-arrow.svg) 50% 50% no-repeat #D88344;
    border: 1.5px solid #D88344;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.checkbox-title {
    width: 95%;
    padding: 0 0 0 12px
}

.filter-li {
    padding: 16px 0 0
}

.filter-ul {
    padding: 2px 0 0 2px
}

.filter-button {
    padding: 16px 35px 0
}

.filter-button button {
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    width: 100%;
    height: 48px;
    background: #D88344;
    border-radius: 41px
}

.kontrwork-li, .kontrwork-title, ul.tabs li {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.semechki-li a, .semechki-li:before {
    line-height: 20px;
    text-transform: capitalize;
    color: #FFF;
    font-size: 14px
}

.semechki {
    padding: 46px 0 0
}

.semechki-ul {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.semechki-li {
    padding: 0 10px 0 0
}

.semechki-li:last-child {
    padding: 0
}

.semechki-li:before {
    position: absolute;
    content: "/";
    top: 0;
    right: 2px
}

.semechki-li:last-child:before {
    display: none
}

.semechki-li a {
    text-decoration: none;
    display: block;
    transition: .4s ease
}

.kontrwork-li, .kontrwork-make, .kontrwork-title {
    font-size: 24px;
    line-height: 32px
}

.kontrslayd-link a, .semechki-li a:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.semechki-li a:hover {
    color: #D88344;
    transition: .4s ease
}


.title-span:before {
    display: none
}

.title-span {
    color: #d88344
}

.kontrwork-title {
    padding: 20px 0 0;
    text-align: center;
    color: #FFF
}

.title-color2 {
    color: #FFF
}

.kontrwork-ul {
    padding: 24px 0 0;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.kontrwork-li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 24px 0 0;
    color: #FFF
}

.company-name, .kontrwork-make {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.kontrwork-li:last-child {
    padding: 0
}

.kontrwork-li img {
    margin: 0 10px 0 0
}

.kontrwork-make {
    padding: 44px 0 0;
    color: #FFF;
    text-align: center
}

.kontrwork-arrow {
    margin: 16px auto 0;
    width: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #FFF
}

.kontrslayd-wrap, .kontrwork-border {
    display: -webkit-box;
    -webkit-box-align: center
}

.work-border2 {
    border-radius: 100px;
    padding: 20px;
    border: none
}

.kontrwork-border {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #D4D6D9;
    border-radius: 64px;
    padding: 10px
}

.kontrwork-container {
    max-width: 1430px
}

.kontrslayd {
    padding: 30px 0 0
}

.kontrslayd-container {
    padding: 0 31px
}

.kontrslayd-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.kontrslayd-block {
    padding: 0 4px
}

.kontrslayd-link a {
    font-size: 14px;
    line-height: 20px;
    color: #302F2E;
    text-decoration: none;
    display: block;
    padding: 4px 10px;
    border: 1px solid #E6E5E4;
    border-radius: 22px;
    transition: .4s ease
}

.kontrslayd-link a:hover {
    background: #302F2E;
    color: #fff;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent {
    padding: 48px 0 0
}

ul.tabs {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    width: 100%
}

ul.tabs li {
    margin: 0;
    cursor: pointer;
    padding: 16px;
    font-size: 16px;
    line-height: 20px;
    color: #302F2E;
    border: 1px solid #E6E5E4
}

ul.tabs li.current {
    border: 1px solid #D88344;
    color: #D88344
}

.tab-radius {
    border-radius: 42px 0 0 42px
}

.tab-radius2 {
    border-radius: 0 32px 32px 0
}

.tab-content {
    padding: 16px 0 0;
    height: 0;
    opacity: 0;
    display: block;
    overflow: hidden
}

.tab-content.current {
    height: auto;
    display: block;
    opacity: 1;
    overflow: visible
}

.tab-content-height {
    height: 0
}

.tab-content.current .tab-content-height {
    height: auto
}

.kontrcontent-selection {
    margin: 32px 0 48px;
    background: #F6F6F6;
    border-radius: 24px;
    padding: 40px 20px
}

.kontrcontent-selection-pd {
    padding: 0 12px
}

.kontrcontent-selection-title {
    font-size: 20px;
    line-height: 32px;
    color: #302F2E
}

.kontrcontent-ocenka-number, .kontrcontent-selection-title2, .kontrcontent-suptitle, .kontrcontent-top-title a, .kontrfilter-button-number {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.kontrcontent-selection-suptitle {
    padding: 16px 0 0;
    max-width: 764px;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.kontrcontent-selection-wrap {
    padding: 15px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.kontrcontent-selection-block {
    width: 16.666666666%;
    padding: 0 12px
}

.kontrcontent-selection-title2 {
    font-size: 14px;
    line-height: 20px;
    color: #302F2E
}

.kontrcontent-selection-color {
    color: #3A0F45
}

.kontrcontent-selection-button {
    padding: 15px 0 0
}

.kontrcontent-selection-button button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    width: 183px;
    height: 56px;
    background: #D88344;
    border-radius: 41px;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-selection-button button:hover {
    background: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-block {
    padding: 32px 0 0
}

.kontrcontent-block__act {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 10
}

.kontrcontent-border {
    border: 1px solid #E6E5E4;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.kontrcontent-img {
    position: relative;
    width: 34%
}

.kontrcontent-slayder {
    height: 100%;
    border-radius: 24px 0 0 24px;
    overflow: hidden
}

.kontrcontent-slayder .kontrcontent-slayder-block, .kontrcontent-slayder .kontrcontent-slayder-img, .kontrcontent-slayder .slick-list, .kontrcontent-slayder .slick-track, .kontrcontent-slayder .slider {
    height: 100%
}

.kontrcontent-slayder .kontrcontent-slayder-block img, .kontrcontent-slayder .kontrcontent-slayder-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0
}

.kontrcontent-img img {
    border-radius: 24px 0 0 24px;
    margin: 0 0 -6px
}

.kontrcontent-info {
    border-right: 1px solid #E6E5E4;
    width: 45%;
    padding: 24px 25px
}

.kontrcontent-contacts {
    padding: 28px 18px 15px;
    width: 21%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column
}

.kontrcontent-contacts .kontrcontent-none {
    margin-bottom: auto
}

.kontrcontent-like {
    position: absolute;
    top: 32px;
    left: 32px
}

.kontrcontent-like button {
    background: #FFF;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.kontrcontent-like button svg {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-like button:hover svg path {
    fill: #DD4141;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-like button svg + svg {
    display: none
}

.kontrcontent-like button:focus svg {
    display: none;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-like button:focus svg + svg {
    display: block;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-pd {
    padding: 0 3px
}

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

.kontrcontent-top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.kontrcontent-top-text {
    padding: 0 0 0 12px
}

.kontrcontent-top-title a {
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    color: #302F2E;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    display: block
}

.kontrcontent-top-title a:hover {
    color: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-top-addres {
    font-size: 14px;
    line-height: 20px;
    color: #ABA9A8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.kontrcontent-top-addres img {
    margin: 0 4px 0 0
}

.kontrcontent-top-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.kontrcontent-top-border, .kontrcontent-top-border2 {
    display: -webkit-box;
    display: -ms-flexbox;
    width: 32px;
    height: 32px
}

.kontrcontent-top-li {
    padding: 0 8px 0 0
}

.kontrcontent-top-li:last-child {
    padding: 0
}

.kontrcontent-top-border {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(22, 159, 77, .1);
    border-radius: 6px
}

.kontrcontent-top-border2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(245, 153, 14, .1);
    border-radius: 6px
}

.kontrcontent-li a, .kontrcontent-ul__more {
    font-size: 12px;
    background: #F6F6F6;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    border-radius: 6px;
    text-decoration: none
}

.kontrcontent-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 22px 0 0
}

.kontrcontent-ul__more {
    line-height: 16px;
    color: #302F2E;
    display: block;
    padding: 4px 6px;
    transition: .4s ease
}

.kontrcontent-li {
    padding: 6px 3px 0
}

.kontrcontent-li:nth-child(n+7):not(.kontrcontent-li_more) {
    display: none
}

.kontrcontent-li_more {
    display: block
}

.kontrcontent-li a {
    line-height: 16px;
    color: #302F2E;
    display: block;
    padding: 4px 6px;
    transition: .4s ease
}

.kontrcontent-li a:hover {
    background: #D88344;
    color: #fff;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-suptitle {
    padding: 20px 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #ABA9A8
}

.kontrcontent-suptitle button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #302f2e;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    display: block
}

.kontrcontent-download a, .kontrcontent-download a:hover, .kontrcontent-suptitle button:hover {
    -webkit-transition: .4s ease;
    -o-transition: .4s ease
}

.kontrcontent-suptitle button:hover {
    color: #D88344;
    transition: .4s ease
}

.kontrcontent-interviev {
    margin: 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 20px;
    color: #302F2E
}

.kontrcontent-audio2:hover .kontrcontent-audio2-absolute, .kontrcontent-interviev-what:hover .kontrcontent-interviev-absolute {
    display: block
}

.kontrcontent-interviev-what {
    margin: 1px 0 0 4px;
    cursor: pointer;
    position: relative
}

.kontrcontent-interviev-absolute {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    background: #FFF;
    border-radius: 6px;
    width: 253px;
    padding: 8px 12px;
    z-index: 1;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #302F2E;
    bottom: 36px;
    left: -119px;
    display: none
}

.kontrcontent-interviev-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-inner {
    padding: 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.kontrcontent-audio {
    background: #F6F6F6;
    border-radius: 6px;
    width: 262px;
    padding: 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.kontrcontent-audio-button button {
    border: 1px solid #302F2E;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.kontrcontent-audio-play button {
    border: 1px solid #D88344;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.kontrcontent-audio-button button:hover {
    border: 1px solid #D88344
}

.kontrcontent-audio-button2 button, .kontrcontent-audio-button2 button:hover {
    border: 1px solid #E6E5E4;
    cursor: inherit
}

.kontrcontent-audio-button button:hover svg path {
    fill: #D88344
}

.kontrcontent-audio-button2 button svg path, .kontrcontent-audio-button2 button:hover svg path, .kontrcontent-download-icon2 path {
    fill: #E6E5E4
}

.kontrcontent-audio-restagle {
    background: #E6E5E4;
    border-radius: 20px;
    width: 182px;
    height: 4px;
    position: relative
}

.kontrcontent-audio-absolute {
    position: absolute;
    width: 49px;
    height: 4px;
    top: 0;
    left: 0;
    background: #D88344;
    border-radius: 20px
}

.kontrcontent-audio-absolute2 {
    position: absolute;
    background: #D88344;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    top: -2px;
    left: 43px
}

.kontrcontent-audio-soat {
    font-size: 12px;
    line-height: 14px;
    color: #302F2E
}

.kontrcontent-audio2-absolute, .kontrcontent-download-absolute, .kontrcontent-download2-absolute {
    border-radius: 6px;
    line-height: 16px;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1))
}

.kontrcontent-audio-soat2 {
    color: #E6E5E4
}

.kontrcontent-audio2 {
    position: relative
}

.kontrcontent-audio2-absolute {
    position: absolute;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    background: #FFF;
    width: 253px;
    padding: 8px 12px;
    z-index: 1;
    font-size: 12px;
    text-align: center;
    color: #302F2E;
    bottom: 50px;
    left: 0;
    display: none
}

.kontrcontent-audio2-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-download a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    color: #302F2E;
    text-decoration: none;
    transition: .4s ease
}

.kontrcontent-download-absolute, .kontrcontent-download2-absolute {
    background: #FFF;
    padding: 8px 12px;
    z-index: 1;
    font-size: 12px;
    text-align: center
}

.kontrcontent-download2 a {
    color: #E6E5E4;
    cursor: inherit
}

.kontrcontent-download-icon {
    margin: 0 4px 0 0
}

.kontrcontent-download-what {
    position: relative;
    cursor: pointer;
    margin: 3px 0 0 4px
}

.kontrcontent-download-what:hover .kontrcontent-download-absolute {
    display: block
}

.kontrcontent-download-absolute {
    position: absolute;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    width: 253px;
    color: #302F2E;
    bottom: 36px;
    left: -119px;
    display: none
}

.kontrcontent-download-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-download a:hover {
    color: #D88344;
    transition: .4s ease
}

.kontrcontent-download a:hover .kontrcontent-download-icon path {
    fill: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-download2 a:hover {
    color: #E6E5E4;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-download2 a:hover .kontrcontent-download-icon2 path {
    fill: #E6E5E4;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-download2:hover .kontrcontent-download2-absolute {
    display: block
}

.kontrcontent-download2 {
    position: relative
}

.kontrcontent-download2-absolute {
    position: absolute;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    width: 273px;
    color: #302F2E;
    bottom: 50px;
    left: -15px;
    display: none
}

.kontrcontent-download2-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-ocenka {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.kontrcontent-ocenka-number {
    font-size: 16px;
    line-height: 22px;
    color: #F90
}

.kontrcontent-ocenka-stars {
    margin: 0 8px 0 6px
}

.kontrcontent-ocenka-review {
    font-size: 14px;
    line-height: 19px;
    color: #ABA9A8
}

.kontrcontent-contacts-title {
    text-align: center;
    padding: 22px 0 0;
    font-size: 16px;
    line-height: 22px;
    color: #302F2E
}

.kontrcontent-button button, .kontrcontent-link a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    line-height: 24px;
    height: 40px
}

.kontrcontent-link {
    padding: 16px 0 0
}

.kontrcontent-link a {
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #D88344;
    border-radius: 41px;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-link a:hover {
    background: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-button {
    padding: 8px 0 0
}

.kontrcontent-button button {
    font-size: 16px;
    color: #D88344;
    display: block;
    border: 2px solid #D88344;
    border-radius: 41px;
    width: 100%;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-button button:hover {
    background: #D88344;
    color: #fff;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-social-title {
    padding: 20px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 19px;
    color: #ABA9A8
}

.kontrcontent-social-absolute, .kontrcontent-social2-absolute {
    background: #FFF;
    border-radius: 6px;
    color: #302F2E;
    font-size: 12px;
    line-height: 16px;
    z-index: 1
}

.kontrcontent-social-what {
    margin: 2px 0 0 4px;
    cursor: pointer;
    position: relative
}

.kontrcontent-social-what:hover .kontrcontent-social-absolute {
    display: block
}

.kontrcontent-social-absolute {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    width: 253px;
    padding: 8px 12px;
    text-align: center;
    bottom: 36px;
    left: -119px;
    display: none
}

.kontrcontent-social-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-social-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0 0
}

.kontrcontent-border2, .kontrcontent-social-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.kontrcontent-social-li {
    padding: 0 8px 0 0
}

.kontrcontent-social-li:last-child {
    padding: 0
}

.kontrcontent-social-li a {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-social-li a img + img, .kontrcontent-social-li a:hover img {
    display: none;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-social-li a:hover img + img {
    display: block;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-social-li2 a {
    opacity: .3;
    cursor: inherit
}

.kontrcontent-social-ul2:hover .kontrcontent-social2-absolute {
    display: block
}

.kontrcontent-social-ul2 {
    position: relative
}

.kontrcontent-social2-absolute {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    width: 273px;
    padding: 8px 12px;
    text-align: center;
    bottom: 50px;
    left: -22px;
    display: none
}

.kontrcontent-social2-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) center 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.kontrcontent-contacts-title2 {
    padding: 22px 0 0;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -.03em;
    color: #566058
}

.kontrcontent-contacts-link a {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -.03em;
    display: block;
    text-decoration: underline;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #d88344
}

.kontrcontent-contacts-link a:hover {
    text-decoration: none;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-border2 {
    background: -o-linear-gradient(351.75deg, #566058 43.67%, #39483C 80.34%);
    background: linear-gradient(98.25deg, #566058 43.67%, #39483C 80.34%);
    border-radius: 24px;
    padding: 36px 50px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.kontrcontent-border2-button button, .kontrcontent-centr-link a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    color: #FFF;
    border-radius: 41px
}

.kontrcontent-border2-left {
    max-width: 707px
}

.kontrcontent-border2-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #FFF
}

.kontrcontent-border2-pd {
    padding: 20px 0 0
}

.kontrcontent-border2-suptitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #FFF
}

.kontrcontent-border2-right {
    max-width: 406px
}

.kontrcontent-border2-button {
    padding: 16px 0
}

.kontrcontent-border2-button button {
    font-size: 16px;
    line-height: 24px;
    display: block;
    width: 100%;
    height: 48px;
    background: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.error-link a, .kontrcontent-centr-link a {
    display: inline-block;
    text-decoration: none
}

.kontrcontent-border2-button button:hover {
    background: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-border2-suptitle img {
    margin: 0 8px 0 0
}

.kontrcontent-centr-link {
    padding: 32px 0 0;
    text-align: center
}

.kontrcontent-centr-link a {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 56px;
    background: #D88344;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-centr-link a:hover {
    background: #C57133;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.kontrcontent-mobile, .kontrcontent-ocenka-mb, .kontrcontent-top-ul-mb {
    display: none
}

.kontrfilter-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #D88344;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    position: relative
}

.favorites__top, .kontrfilter-button-number {
    display: -ms-flexbox;
    -webkit-box-align: center
}

.kontrfilter-button-number {
    position: absolute;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: -.02em;
    color: #D88344;
    background: #FFF;
    border: 1px solid #D88344;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 3px;
    right: 3px
}

.error-link a, .favorites-title, .kontrnone-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.kontrfilter {
    display: none
}

.kontrnone {
    background: #F6F6F6;
    border-radius: 16px;
    padding: 32px 24px;
    margin: 32px 0 0
}

.kontrnone-icon {
    text-align: center
}

.kontrnone-title {
    padding: 8px 0 0;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #302F2E
}

.kontrnone-suptitle {
    padding: 8px 0 0;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ABA9A8
}

.error-oops, .error-suptitle {
    font-size: 24px;
    line-height: 32px;
    text-align: center
}

.header-logo2 a svg path {
    stroke: #302F2E
}

.header-link2 {
    color: #302F2E
}

.header-button2 button {
    background: #D88344;
    color: #fff
}

.error {
    padding: 120px 0;
    background: #F6F6F6
}

.error-oops {
    color: #ABA9A8
}

.error-img {
    text-align: center;
    padding: 24px 0
}

.error-suptitle {
    color: #302F2E
}

.error-link {
    padding: 32px 0 0;
    text-align: center
}

.error-link a {
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    padding: 16px 56px
}

.companynaw-link a:hover svg path, .statyya-img-button button:hover svg path, .statyya-info-li a:hover svg path, .statyya-inner-link a:hover .statyya-inner-link-arrow path {
    fill: #D88344
}

.semechki-li2 a, .semechki-li2:before {
    color: #302F2E
}

.favorites {
    padding: 48px 0 0
}

.favorites__top {
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.favorites-title {
    font-size: 40px;
    line-height: 56px;
    color: #302F2E
}

.favorites-title span {
    margin: 0 0 0 12px;
    color: #ABA9A8;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.modal {
    position: fixed;
    top: 0;
    z-index: 12;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, .5)
}

.js-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.accordion6 .link6, .companynaw-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.js-modal .modal__inner {
    transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.6, -.28, .74, .05);
    -o-transition: transform .5s cubic-bezier(.6, -.28, .74, .05);
    transition: transform .5s cubic-bezier(.6, -.28, .74, .05);
    transition: transform .5s cubic-bezier(.6, -.28, .74, .05), -webkit-transform .5s cubic-bezier(.6, -.28, .74, .05);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%)
}

.js-modal.is-open {
    visibility: visible;
    opacity: 1;
    overflow: auto
}

.js-modal.is-open .modal__inner {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.accordion6 li.open6 .link6 svg, .accordion7 li.open7 .link7 svg, .reviews-sl .slick-prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg)
}

.modal-nowrap {
    overflow: hidden !important
}

.modal-close-button {
    z-index: 1;
    position: absolute;
    top: 32px;
    right: 32px
}

.modal-border {
    position: relative;
    padding: 64px 32px 48px;
    width: 600px;
    background: #FFF;
    border-radius: 20px
}

.modal-title {
    font-size: 24px;
    line-height: 32px;
    color: #302F2E
}

.accordion6 .link6, .companynaw-li a, .modal-suptitle {
    line-height: 24px;
    color: #302F2E
}

.modal-pd {
    padding: 14px 0 0
}

.modal-suptitle {
    padding: 16px 0 0;
    font-size: 16px
}

.accordion6 {
    width: 100%;
    margin: 0
}

.accordion6 .link6 {
    cursor: pointer;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.companynaw-li a, .companynaw-li a span {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    position: relative
}

.accordion6 .filter-pd3 {
    padding: 20px 0 0
}

.accordion6 .link6 svg {
    margin: 0
}

.accordion6 li.open6 .link6 svg {
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.filter-none, .kontrcontent-favorites, .kontrcontent-mb-link {
    display: none
}

.companynaw {
    padding: 57px 0 10px;
    border-bottom: 1px solid #E6E5E4
}

.companynaw-wrap {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.companynaw-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.companynaw-li {
    padding: 0 24px 0 0
}

.companynaw-li a {
    display: block;
    text-decoration: none;
    font-size: 18px
}

.companynaw-li a:before {
    position: absolute;
    height: 3px;
    left: 0;
    width: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    bottom: -12px;
    background: #D88344;
    content: ""
}

.companynaw-li a:active:before, .companynaw-li a:hover:before {
    width: 100%
}

.companynaw-li a span {
    top: -5px;
    margin: 0 0 0 10px;
    font-size: 16px;
    line-height: 22px;
    color: #F90
}

.companynaw-link a {
    display: block
}

.accordion7 {
    width: 100%;
    margin: 0
}

.accordion7 .link7 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 32px;
    line-height: 40px;
    color: #302F2E;
    position: relative;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    padding: 24px 32px
}


.accordion7 .link7 svg {
    margin: 0
}

.accordion7 li.open7 .link7 svg {
    transform: rotate(180deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.company-price-none {
    display: none
}

.company-price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #E6E5E4
}

.company-contract-link a {
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 16px;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    color: #D88344;
    background: rgba(216, 131, 68, .1);
    border-radius: 8px
}

.company-contract-link a:hover {
    background: #D88344;
    color: #fff
}

.company-contract-link a:hover .company-contract-icon path, .company-contract-link a:hover .company-contract-what svg path {
    fill: #fff
}

.company-contract-icon {
    margin: 0 8px 0 0
}

.company-contract-what {
    margin: 0 0 -4px 8px;
    position: relative;
    cursor: pointer
}

.company-contract-what:hover .company-contract-absolute {
    display: block
}

.company-contract-absolute {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    background: #FFF;
    width: 260px;
    padding: 8px 12px;
    z-index: 1;
    font-size: 12px;
    text-align: center;
    bottom: 46px;
    left: -117px;
    display: none
}


.company-contract-absolute:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0
}

.company-suptitle {
    padding: 24px 0 0;
    font-size: 18px;
    line-height: 28px;
    color: #302F2E
}

.company-ul {
    display: flex;
    padding: 24px 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.company-li {
    padding: 8px 8px 0 0
}

.company-li a {
    font-size: 12px;
    text-decoration: none;
    padding: 4px
}

.company-li a:hover {
    background: #D88344;
    color: #fff
}


.company-coment {
    padding: 32px 48px;
    border-bottom: 1px solid #E6E5E4
}

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

.company-coment-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.company-coment-text {
    padding: 0 0 0 20px
}

.company-coment-name {
    font-size: 24px;
    line-height: 33px;
    color: #302F2E
}

.company-coment-data {
    padding: 4px 0 0;
    font-size: 16px;
    line-height: 22px;
    color: #ABA9A8
}

.company-coment-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.company-coment-star {
    margin: 0 2px 0 0
}

.company-coment-star:last-child {
    margin: 0
}

.company-coment-title {
    padding: 32px 0 0;
    font-size: 16px;
    line-height: 32px;
    color: #302F2E
}

.company-coment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 0
}

.company-coment-block {
    margin: 0 16px 0 0
}

.company-coment-block:last-child {
    margin: 0
}

.company-coment-image {
    position: relative
}

.company-coment-absolut {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 4px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, .6)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
    font-size: 20px;
    line-height: 32px;
    color: #FFF;
    border-radius: 12px
}


.company-block2 {
    width: 25%;
    padding: 110px 0 0 30px
}

.company-border {
    padding: 32px 24px;
    background: #FFF;
    -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    border-radius: 12px
}

.company-border-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #302F2E
}

.company-border-button button, .company-border-button2 button {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.company-border-button button {
    color: #FFF;
    height: 40px;
    background: #D88344;
    border-radius: 33px
}

.company-border-button button:hover {
    background: #C57133
}

.company-border-button2 {
    padding: 8px 0 0
}

.company-border-button2 button {
    color: #D88344;
    height: 40px;
    border: 1px solid #D88344;
    border-radius: 33px
}

.company-suget, .company-suget a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -.03em
}

.company-border-button2 button:hover {
    background: #D88344;
    color: #fff
}

.company-suget {
    padding: 24px 0 0;
    color: #566058;
    text-align: center
}

.company-suget a {
    color: #d88344;
    text-decoration: underline
}

.aboutour-link a, .company-suget a:hover, .form-info a, .statyya-info-li a, .statyya-inner-link a, .statyya-nav-li a {
    text-decoration: none
}

.company-suget-mb, .companymobile {
    display: none
}

.company-social-title {
    padding: 20px 0 0;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 19px;
    color: #ABA9A8
}

.company-social-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0 0
}

.company-social-li {
    padding: 0 8px 0 0
}

.company-social-li:last-child {
    padding: 0
}

.company-social-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.company-social-li a img + img, .company-social-li a:hover img {
    display: none;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.company-social-li a:hover img + img {
    display: block;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.company-fixed {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #FFF;
    border-top: 1px solid #E4E7EA;
    padding: 17px 0 24px
}

.company-interview-audio-mb, .company-interview-suptitle-mb {
    display: none
}

.aboutour-link, .aboutwork-absolut {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.aboutwork {
    padding: 76px 0 0
}

.aboutwork-container {
    padding: 0;
    max-width: 1920px
}

.aboutwork-img {
    position: relative;
    margin: 65px 0 0
}

.aboutwork-absolut {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 4px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 35px;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: #FFF;
    background: rgba(0, 0, 0, .4)
}

.aboutour {
    padding: 120px 0 0
}

.aboutour-width {
    max-width: 887px;
    margin: 0 auto
}

.aboutour-pd {
    padding: 8px 0 0
}

.aboutour-title {
    padding: 24px 0 0;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #3D3B39
}

.aboutour-link {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 48px 0 0
}

.aboutbg-wrap, .aboutour-link a {
    display: -webkit-box;
    display: -ms-flexbox
}

.aboutour-link a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #D88344;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 242px;
    height: 48px;
    border: 2px solid #D88344;
    border-radius: 46px
}

.aboutour-link a svg {
    margin: 0 0 0 4px
}

.aboutour-link a:hover {
    background: #D88344;
    color: #fff
}

.aboutbg, .aboutteam, .form-input input, .form-input2 input {
    background: #F6F6F6;
}

.aboutour-link a:hover svg path {
    stroke: #fff
}

.aboutbg {
    margin: 120px 0 0;
    padding: 120px 0;
}

.aboutbg-wrap {
    display: flex
}

.aboutteam-wrap, .aboutvalues-wrap {
    display: -webkit-box;
    display: -ms-flexbox
}

.aboutbg-block {
    padding: 0 115px 0 0;
    width: 51%
}


.aboutbg-pd {
    padding: 8px 0 0
}

.aboutbg-suptitle {
    padding: 24px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: black;
    text-indent: 30px;
    text-align: justify;
}

.aboutbg-block2 {
    width: 49%
}

.aboutbg-wrap-pd {
    padding: 216px 0 0
}

.aboutbg-block-number {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 0 0 115px
}

.aboutbg-block2-number {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.aboutcoco {
    padding: 96px 0;
    background: #566058
}

.aboutcoco-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    max-width: 1022px;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #FFF;
    margin: 0 auto
}

.aboutvalues {
    padding: 106px 0 0
}

.aboutvalues-wrap {
    display: flex;
    padding: 45px 0 0
}

.aboutvalues-block {
    width: 33.3333333%;
    margin: 0 100px 0 0
}

.form-input input, .form-input2 input {
    margin: 0;
    width: 100%;
    border-radius: 8px
}

.aboutvalues-block:last-child {
    margin: 0
}

.aboutvalues-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #000;
    min-height: 45%
}

.aboutvalues-suptitle {
    padding: 10px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #000
}

.aboutteam {
    margin: 120px 0 0;
    padding: 120px 0 100px
}

.aboutteam-title {
    padding: 16px 0 0;
    max-width: 951px;
    font-size: 20px;
    line-height: 32px;
    color: #302F2E
}

.aboutteam-container {
    padding: 0 20px
}

.aboutteam-wrap {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form-border, .statyya-wrap {
    display: -webkit-box;
    display: -ms-flexbox
}

.aboutteam-block {
    width: 25%;
    padding: 40px 15px 0
}

.aboutteam-name {
    padding: 20px 0 0;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #302F2E
}

.aboutteam-position {
    font-size: 16px;
    line-height: 24px;
    color: #ABA9A8
}

.form {
    padding: 120px 0 0;
    margin-bottom: 120px;
}

.form-border {
    display: flex;
    background: #FFF;
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    border-radius: 20px
}

.form-img {
    width: 51%
}

.form-block {
    width: 49%;
    padding: 54px 58px 48px
}

.form-img img {
    border-radius: 20px 0 0 20px;
    margin: 0 0 -6px;
    height: 100%
}

.form-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #302F2E
}

.form-input input, .form-input2 input, .form-suptitle {
    font-size: 14px;
    line-height: 20px
}

.form-form {
    padding: 8px 0 0
}

.form-suptitle {
    padding: 24px 0 0;
    color: #918F96
}

.form-input {
    padding: 8px 0 0
}

.form-input input {
    color: #000;
    padding: 0 0 0 16px;
    height: 48px
}

.form-input input::-webkit-input-placeholder {
    color: #ABA9A8
}

.form-input input::-moz-placeholder {
    color: #ABA9A8
}

.form-input input:-ms-input-placeholder {
    color: #ABA9A8
}

.form-input input::-ms-input-placeholder {
    color: #ABA9A8
}

.form-input input::placeholder {
    color: #ABA9A8
}

.form-input2 {
    padding: 8px 0 0
}

.form-input2 input {
    color: #000;
    padding: 0 0 50px 16px;
    height: 100px
}

.form-button, .form-info {
    padding: 24px 0 0
}

.form-input2 input::-webkit-input-placeholder {
    color: #ABA9A8
}

.form-input2 input::-moz-placeholder {
    color: #ABA9A8
}

.form-input2 input:-ms-input-placeholder {
    color: #ABA9A8
}

.form-input2 input::-ms-input-placeholder {
    color: #ABA9A8
}

.form-input2 input::placeholder {
    color: #ABA9A8
}

.form-button button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    width: 100%;
    height: 56px;
    background: #D88344;
    border-radius: 41px
}

.statyya-info-title, .statyya-inner-link-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.form-info, .form-info a {
    font-size: 14px;
    line-height: 20px
}

.form-button button:hover {
    background: #C57133
}

.form-info {
    color: #918F96
}

.form-info a {
    color: #D88344
}

.form-info a:hover {
    color: #C57133
}

.statyya {
    padding: 48px 0 0;
    margin-bottom: 120px;
}

.statyya-wrap {
    display: flex
}

.statyya-info, .statyya-info-left {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.statyya-block {
    width: 68%
}

.statyya-block2 {
    width: 32%;
    padding: 0 0 0 80px
}

.statyya-pd {
    padding: 16px 0 0
}

.statyya-info {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.statyya-info-left {
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.statyya-info-right, .statyya-info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center
}

.statyya-info-text {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #ABA9A8;
    padding: 0 20px 0 0
}

.statyya-info-text:last-child {
    padding: 0
}

.statyya-info-text img {
    margin: 0 8px 0 0
}

.statyya-info-right {
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.statyya-info-title {
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.statyya-info-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 16px
}

.statyya-info-li {
    padding: 0 4px 0 0
}

.statyya-info-li:last-child {
    padding: 0
}

.statyya-info-li a {
    position: relative;
    display: block
}

.statyya-info-li a:hover .statyya-info-absolut {
    display: block
}

.statyya-info-absolut {
    display: none;
    position: absolute;
    bottom: 44px;
    left: -25px;
    width: 74px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #302F2E;
    background: #FFF;
    border-radius: 6px;
    z-index: 1;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1))
}

.statyya-info-absolut:before {
    position: absolute;
    content: "";
    background: url(../svg/statyya-info-absolut.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    left: 0;
    bottom: -12px
}

.statyya-pd2 {
    padding: 8px 0 0
}

.statyya-img {
    position: relative;
    padding: 24px 0 0
}

.statyya-seriy {
    padding: 48px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #ABA9A8
}

.statyya-pd3 {
    padding: 60px 0 0
}

.statyya-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #302F2E
}

.statyya-suptitle span, .statyya-title2 {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.statyya-suptitle {
    padding: 16px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.statyya-pd4 {
    padding: 32px 0 0
}

.statyya-title2 {
    font-size: 24px;
    line-height: 32px;
    color: #302F2E
}

.statyya-link {
    padding: 8px 0 0
}

.statyya-link a {
    display: block;
    font-size: 16px;
    line-height: 20px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #ABA9A8
}

.statyya-link a:hover {
    color: #D88344
}

.statyya-ul {
    padding: 12px 0 0 25px
}

.statyya-li {
    padding: 12px 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E;
    list-style: disc
}

.statyya-border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 24px 0 0;
    padding: 40px;
    background: #F6F6F6;
    border-radius: 16px
}

.statyya-border-title {
    width: 95%;
    padding: 0 0 0 24px;
    font-size: 14px;
    line-height: 24px;
    color: #302F2E
}

.statyya-pd5 {
    padding: 24px 0 0
}

.statyya-img-absolut {
    position: absolute;
    width: 100%;
    top: 24px;
    bottom: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border-radius: 20px
}

.statyya-ol {
    padding: 12px 0 0;
    counter-reset: myCounter
}

.statyya-ol .statyya-li2:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    border-radius: 50%;
    border: 1px solid #D88344;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3px 0 0;
    font-family: gilroy-medium;
    font-size: 14px;
    line-height: 24px;
    color: #D88344;
    width: 24px;
    height: 24px
}

.statyya-li2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0 0
}

.statyya-border2, .statyya-inner {
    display: -webkit-box;
    display: -ms-flexbox
}

.statyya-li2 p {
    padding: 0 0 0 10px;
    width: 95%;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E
}

.statyya-border2 {
    margin: 24px 0 0;
    background: #566058;
    border-radius: 16px;
    padding: 40px;
    display: flex
}

.statyya-border2-text {
    width: 95%;
    padding: 0 0 0 24px
}

.statyya-border2-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF
}

.statyya-border2-suptitle {
    padding: 10px 0 0;
    font-size: 14px;
    line-height: 24px;
    color: #FFF
}

.statyya-restagles {
    padding: 32px 0;
    margin: 60px 0 0;
    border-top: 1px solid #E6E5E4;
    border-bottom: 1px solid #E6E5E4
}

.statyya-inner {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 60px 0 0
}

.statyya-inner-link {
    height: 100%
}

.statyya-inner-link a {
    height: 100%;
    background: #FFF;
    border: 1px solid #E6E5E4;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 12px 12px 4px;
    width: 370px
}

.statyya-inner-link a:hover .statyya-inner-link-title {
    color: #D88344
}

.statyya-inner-link-img {
    margin: 0 0 0 8px
}

.statyya-inner-link-text {
    width: 70%;
    padding: 0 0 0 8px
}

.statyya-inner-link-title {
    font-size: 14px;
    line-height: 20px;
    color: #ABA9A8
}

.statyya-inner-link-suptitle {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #302F2E
}

.statyya-inner-link-dr a {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1)
}

.statyya-inner-link-text-tr {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    text-align: right;
    padding: 0 8px 0 0
}

.statyya-nav-border {
    background: #ededed;
    border-radius: 12px;
    padding: 24px
}

.statyya-nav-title {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #302F2E
}

.statyya-nav-li, .statyya-nav-li a {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px
}

.statyya-nav-ul {
    padding: 8px 0 0 25px
}

.statyya-nav-li {
    padding: 16px 0 0;
    list-style: disc;
    color: #302F2E
}

.statyya-nav-li:hover, .statyya-nav-li:hover a {
    color: #D88344
}

.statyya-nav-li a {
    color: #302F2E;
    display: block
}

.statyya-nav-border-mb {
    display: none
}

.statyi {
    padding: 48px 0 0;
    margin-bottom: 120px;
}

.statyi-container {
    padding: 0 20px
}

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

.statyi-block {
    width: 33.33333333%;
    padding: 32px 15px 16px
}

.aboutwork-img-mb, .company-img-mb {
    display: none
}

.sec-header__wrap {
    padding: 56px 0
}

.sec-header__wrap p {
    font-size: 1rem;
}

.sec-header__content {
    text-align: center;
    max-width: 975px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.sec-header__title {
    margin-bottom: 33px
}

.sec-about__wrap {
    padding-top: 280px;
    padding-bottom: 134px
}

.sec-about__content {
    margin-top: 47px
}

.sec-header.terms-of-use, .sec-header.sec-support, .sec-header.sec-privacy-policy {
    margin-bottom: 120px;

}

.sec-form {
    background: #F6F6F6
}

.sec-form__wrap {
    padding: 120px 0
}

@media screen and (max-width: 1470px) {


    .kontrcontent-social-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 94% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-social-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 253px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 36px;
        left: auto;
        right: -29px;
        display: none
    }
}

@media screen and (max-width: 1370px) {
    .kontrcontent-img img, .kontrcontent-sl, .kontrcontent-sl .slick-list, .kontrcontent-sl .slick-track, .kontrcontent-slayder, .kontrcontent-slayder-block, .kontrcontent-slayder-img, .kontrcontent-slayder-img img {
        height: 100%
    }

    .infosec-block {
        width: 33.3333333%;
        margin: 0 100px 0 0
    }

    .listsec-border {
        padding: 56px 20px 56px 56px;
        border-radius: 24px 100px 24px 24px;
        background-color: #566058;

    }
}

@media screen and (max-width: 1360px) {
    .kontrslayd-overflo {
        overflow: auto;
        white-space: nowrap
    }

    .kontrslayd-overflo::-webkit-scrollbar {
        width: 0;
        height: 0
    }
}

@media screen and (max-width: 1300px) {
    .listsec-border {
        padding: 56px 20px 56px 56px;
        border-radius: 24px 100px 24px 24px;
        background-color: #566058;
    }

    .kontrcontent-audio {
        background: #F6F6F6;
        border-radius: 6px;
        width: 222px;
        padding: 8px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .kontrcontent-audio-restagle {
        background: #E6E5E4;
        border-radius: 20px;
        width: 70%;
        height: 4px
    }

    .block-about__left {
        width: 472px
    }

    .block-about__img {
        width: 100%
    }
}

.plain-page-text p {
    font-size: 1rem;
}

@media screen and (max-width: 1200px) {


    .padding-top {
        padding-top: 81px
    }

    .work {
        padding: 90px 0
    }


    .header-link, .work-border {
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-align: center
    }

    .title, .work-title {
        color: #FFF;
        text-align: center
    }

    .sec-header.terms-of-use, .sec-header.sec-support, .sec-header.sec-privacy-policy {
        margin-bottom: 80px;
    }

    .header-link {
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        font-size: 14px;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .contractors-button button, .title, .title2 {
        font-size: 32px;
        line-height: 40px;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
    }

    .title span:before {
        position: absolute;
        content: "";
        width: 100%;
        bottom: 0;
        border-bottom: 4px solid #D88344
    }

    .work-title {
        padding: 16px 0 0;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px
    }

    .work-button button {
        width: 60px;
        height: 60px;
        background: #D88344;
        border-radius: 50%;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .work-input input, .work-input2 input {
        font-size: 14px;
        line-height: 24px;
        margin: 0;
        width: 100%;
        color: #3D3B39;
        padding: 0 0 0 24px;
        height: 35px;
        background: 0 0;
        border: none
    }

    .work-input input {
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    .work-input2 input {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-left: 1px solid #E6E5E4
    }

    .work-border {
        margin: 32px 0 0;
        background: #FFF;
        padding: 10px 8px;
        /*border: 1px solid #E6E5E4;*/
        border-radius: 64px;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .contractors-button button, .work-inner {
        display: -webkit-box;
        display: -ms-flexbox
    }

    .work-inner {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 24px 0 0
    }

    .background {
        background-size: 1300px
    }

    .infosec-block {
        width: 33.3333333%;
        margin: 0 20px 0 0
    }

    .fag, {
        margin: 80px 0 0
    }

    .steps {
        padding: 80px 0 0
    }

    .steps-block {
        width: 50%
    }

    .steps-block2 {
        width: 50%;
        padding: 0 0 0 20px
    }

    .title2 span:before {
        position: absolute;
        content: "";
        width: 100%;
        bottom: -2px;
        border-bottom: 4px solid #D88344
    }

    .steps-pd {
        padding: 20px 0 0
    }

    .get {
        padding: 46px 0 80px
    }

    .get-border {
        padding: 32px 24px 61px;
        border-radius: 24px;
        background-size: 350px
    }

    .get-button {
        padding: 32px 0 0
    }

    .contractors-button button {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #D88344
    }

    .contractors-button {
        padding: 0 0 0 13px
    }

    .contractors-block {
        width: 25%;
        padding: 0 8px
    }

    .contractors-owerflow {
        overflow: auto;
        white-space: nowrap
    }

    .contractors-owerflow::-webkit-scrollbar {
        width: 0;
        height: 0
    }

    .contractors-wrap {
        padding: 32px 27px 0;
        width: 1350px
    }

    .contractors-container {
        padding: 0
    }

    .contractors, .reviews {
        padding: 80px 0 0
    }

    .what-block {
        width: 25%;
        padding: 0 8px
    }

    .what-owerflo {
        overflow: auto;
        white-space: nowrap
    }

    .what-owerflo::-webkit-scrollbar {
        width: 0;
        height: 0
    }

    .what-wrap {
        padding: 32px 27px 0;
        width: 1350px
    }

    .what-container {
        padding: 0
    }

    .statyya {

        margin-bottom: 80px;
    }

    .what {
        padding: 80px 0 0
    }

    .listsec-title {
        padding: 16px 0 0;
        max-width: 501px;
        font-size: 14px;
        line-height: 20px;
        color: #FFF
    }

    .whysec-link {
        padding: 40px 0 0
    }

    .listsec, .whysec {
        padding: 80px 0 0
    }

    .whysec-block2 {
        width: 57%;
        padding: 0 0 0 10px
    }

    .useful {
        padding: 80px 0 0
    }

    .accordion-absolute {
        position: absolute;
        top: 47px;
        width: 140px;
        left: -50px
    }

    .accordion-absolute2 {
        position: absolute;
        top: 313px;
        width: 120px;
        right: -20px
    }

    .fag {
        background: #F6F6F6;
        padding: 80px 0
    }

    .articles {
        padding: 80px 0 0
    }

    .articles-container {
        padding: 0 25px
    }

    .articles-li {
        position: relative;
        width: 33.333333%;
        padding: 20px 10px 0
    }

    .footer-logo a img {
        width: 164px
    }

    .footer-li {
        position: relative;
        padding: 0 10px
    }

    .footer-absolute {
        left: 10px
    }


    .contractors-absolute-button button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #D88344;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .aboutwork-absolut, .kontrcontent-audio {
        display: -webkit-box;
        display: -ms-flexbox
    }

    .header-favorite {
        position: relative;
        margin: 0 10px 0 0
    }

    .kontrcontent-audio {
        background: #F6F6F6;
        border-radius: 6px;
        width: 182px;
        padding: 8px 10px;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .kontrcontent-audio-restagle {
        background: #E6E5E4;
        border-radius: 20px;
        width: 60%;
        height: 4px
    }

    .kontrcontent-border2-left {
        max-width: 550px
    }

    .background-kontr {
        background-size: 1700px
    }

    .kontrcontent-contacts {
        padding: 28px 10px 15px;
        width: 21%
    }

    .company-border-title {
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: #302F2E
    }


    .aboutcoco-title, .aboutwork-absolut {
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
        color: #FFF
    }

    .aboutwork-absolut {
        position: absolute;
        width: 100%;
        top: 0;
        bottom: 4px;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 35px;
        font-size: 32px;
        line-height: 41px;
        background: rgba(0, 0, 0, .4)
    }

    .aboutbg-block {
        padding: 0 20px 0 0;
        width: 51%
    }

    .aboutwork-img {
        position: relative;
        margin: 40px 0 0
    }

    .aboutbg, .aboutteam {
        margin: 80px 0 0;
        background: #F6F6F6
    }

    .aboutour {
        padding: 80px 0 0
    }

    .aboutbg {
        padding: 80px 0
    }

    .aboutbg-wrap-pd {
        padding: 80px 0 0
    }

    .aboutbg-block-number {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 0 0 0 20px
    }

    .aboutcoco-title {
        max-width: 1022px;
        font-size: 24px;
        line-height: 40px;
        text-align: center;
        margin: 0 auto
    }

    .aboutvalues {
        padding: 80px 0 0
    }

    .aboutvalues-block {
        width: 33.3333333%;
        margin: 0 20px 0 0
    }

    .aboutvalues-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 40px 0 0
    }

    .aboutvalues-suptitle {
        padding: 10px 0 0;
        font-size: 14px;
        line-height: 20px;
        color: #000
    }

    .aboutour-title {
        padding: 16px 0 0;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #3D3B39
    }

    .aboutour-pd {
        padding: 0
    }

    .aboutour-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 24px 0 0
    }

    .aboutbg-suptitle {
        padding: 16px 0 0;
        font-size: 16px;
        line-height: 24px;
        color: #000
    }

    .aboutteam {
        padding: 80px 0
    }

    .form-suptitle {
        padding: 16px 0 0;
        font-size: 14px;
        line-height: 20px;
        color: #918F96
    }

    .form-form {
        padding: 0
    }

    .form-block {
        width: 49%;
        padding: 30px
    }

    .form {
        padding: 80px 0 0;
        margin-bottom: 80px;

    }

    .statyya-block2 {
        width: 30%;
        padding: 0 0 0 20px
    }

    .statyya-block {
        width: 70%
    }

    .block-select__dropdown {
        margin-top: 25px
    }

    .block-select__dropdown-el {
        font-size: 14px;
        padding: 5px 16px
    }

    .block-select__val, .form-el__placeholder, .inp-def {
        font-size: 14px
    }
}

@media screen and (max-width: 1150px) {
    .kontrcontent-social2-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 65% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: -77px;
        display: none
    }

    .kontrcontent-download a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
        line-height: 16px;
        text-decoration: none;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .kontrcontent-info {
        border-right: 1px solid #E6E5E4;
        width: 45%;
        padding: 24px 10px
    }

    .kontrcontent-ocenka {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .kontrcontent-ocenka-review {
        width: 100%;
        text-align: center
    }

    .company-border {
        padding: 32px 10px;
        background: #FFF;
        -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
        box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
        border-radius: 12px
    }

    .company-block2 {
        width: 25%;
        padding: 110px 0 0 10px
    }
}

@media screen and (max-width: 1050px) {
    .js-modal {
        display: block
    }

    .modal-border {
        max-width: 600px;
        width: 100%;
        margin: 30px auto 0
    }
}

@media screen and (max-width: 1024px) {
    .infosec-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .infosec-block {
        width: 50%;
        margin: 0;
        padding: 0 10px 48px
    }

    .infosec-block:last-child {
        padding: 0 10px
    }

    .infosec-container {
        padding: 0 25px
    }

    .get-border {
        padding: 32px 24px 61px;
        border-radius: 24px;
        background-size: 300px
    }

    .whysec-absolute {
        display: none
    }

    .whysec-block {
        width: 50%
    }

    .whysec-block2 {
        width: 50%;
        padding: 0 0 0 10px
    }

    .useful-sl .slick-next, .useful-sl .slick-prev {
        display: none !important
    }

    .useful-container {
        padding: 0 0 0 27px
    }

    .useful-sl .slick-slide {
        margin: 0 8px !important
    }

    .useful-sl .slick-list {
        padding: 0 15% 0 0 !important
    }

    .accordion-absolute, .accordion-absolute2 {
        display: none
    }

    .accordion .link {
        font-size: 16px;
        line-height: 24px
    }

    .accordion .link p {
        width: 90%;
        padding: 0 24px 0 0
    }

    .accordion-title {
        font-size: 14px;
        line-height: 20px;
        color: #302F2E
    }

    .footer-ul {
        display: block
    }

    .footer-li {
        padding: 16px 0 0
    }

    .footer-li:first-child {
        padding: 0
    }

    .footer-absolute {
        left: 0
    }

    .accordion4 li {
        position: relative;
        width: 50%;
        padding: 30px 10px 0
    }

    .articles-absolute {
        left: 10px
    }

    .articles-absolute3 {
        right: 10px;
        left: auto
    }

    .footer-social-ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: center;
    }

    .kontrcontent-border {
        border-radius: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .company-block2 {
        display: none
    }

    .company-block {
        width: 100%
    }

    .company-suget-mb {
        display: block;
        text-align: left;
        padding: 24px 0 0
    }

    .companymobile {
        display: block;
        padding: 40px 0 0
    }

    .companynaw {
        padding: 32px 0 13px
    }

    .company-dni, .company-names-mb {
        display: none
    }

    .accordion7 .link7, .company-fixed-buttons {
        display: -ms-flexbox;
        -webkit-box-align: center
    }


    .accordion7 .link7 {
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #302F2E
    }

    .company-verified {
        padding: 0
    }

    .company-restagle {
        margin: 40px -35px;
        position: relative;
        width: auto
    }

    .company-restagle-mr {
        margin: 60px -35px 40px
    }

    .accordion7 .link7 {
        cursor: pointer;
        display: -webkit-box;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        padding: 24px 32px
    }

    .company-border-button button, .company-border-button2 button, .statyya-seriy {
        font-size: 16px;
        line-height: 24px
    }

    .company-fixed {
        display: block
    }

    .company-fixed-buttons {
        display: -webkit-box;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding: 16px 0 0
    }

    .company-border-button {
        width: 50%;
        padding: 0 4px 0 0
    }

    .company-border-button2 {
        width: 50%;
        padding: 0 0 0 4px
    }

    .statyya-block, .statyya-img img {
        width: 100%
    }

    .company-fixed-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 16px 0 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .company-social-title {
        padding: 0
    }

    .company-social-ul {
        padding: 0 0 0 10px
    }

    .statyya, .statyya-seriy {
        padding: 24px 0 0
    }

    .footer-company {
        margin: 60px 0 166px
    }

    .statyya-nav-border-mb {
        margin: 24px 0 0;
        display: block
    }

    .modal-quiz__content, .modal-quiz__final, .modal-quiz__final-left, .modal-quiz__thanks {
        margin-top: 50px
    }

    .statyi-block-mb, .statyya-block2 {
        display: none
    }

    .statyya-seriy {
        color: #ABA9A8
    }

    .block-select__dropdown-el, .block-select__placeholder {
        font-size: 14px
    }

    .statyya-pd3 {
        padding: 48px 0 0
    }

    .statyya-pd4 {
        padding: 24px 0 0
    }

    .statyi-block {
        width: 50%;
        padding: 24px 15px 0
    }

    .statyi-block .useful-img img {
        width: 100%
    }

    .work-border__block {
        padding-left: 10px
    }

    .work .work-border {
        margin-left: -20px;
        margin-right: -20px
    }

    .block-info {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100
    }

    .company-fixed {
        z-index: 10
    }

    .company-fixed + .companymobile + .companynaw + .company + .useful + .contractors + .company-fixed + .kontrslayd + .kontrcontent {
        padding-bottom: 200px
    }

    .block-quiz__content-el {
        width: 50%
    }

    .block-quiz__content_2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .block-quiz__content_2 .block-quiz__content-el {
        width: 33.333333%
    }

    .block-quiz-two {
        display: block
    }

    .block-quiz-two__el {
        width: 100%;
        margin-bottom: 30px
    }

    .block-quiz__title {
        margin-bottom: 20px
    }

    .modal-quiz__title {
        margin-bottom: 30px
    }

    .modal-quiz__final-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0
    }

    .modal-quiz__final-left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .modal-quiz__final-right {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-left: auto
    }

    .block-about__left {
        display: none
    }

    .block-about-el__bottom {
        display: block
    }

    .block-about-el__img {
        -o-object-fit: contain;
        object-fit: contain;
        height: 300px;
        width: 100%
    }
}

@media screen and (max-width: 992px) {


    .steps-block {
        width: 40%
    }

    .steps-block2 {
        width: 60%;
        padding: 0 0 0 20px
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: 275px;
        display: none
    }

    .kontrcontent-border2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 24px 12px
    }

    .kontrcontent-border2-left {
        max-width: 100%;
        padding: 0 0 24px
    }

    .kontrcontent-border2-right {
        width: 100%;
        max-width: 100%;
        padding: 24px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .2)
    }

    .block-quiz-info__img {
        width: 300px;
        height: 300px
    }

    .block-quiz-selects__el {
        width: 50%;
        margin-bottom: 16px
    }

    .modal-quiz__final-img {
        height: 320px;
        -o-object-position: top;
        object-position: top
    }
}

@media screen and (max-width: 900px) {
    .header-link, .kontrcontent-top-title a {
        text-decoration: none;
        -o-transition: .4s ease
    }

    .kontrcontent-img {
        width: 100%
    }

    .kontrcontent-img img {
        border-radius: 20px 20px 0 0;
        width: 100%;
        height: 360px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .kontrcontent-mobile {
        display: block;
        width: 100%;
        padding: 16px 12px;
        border-bottom: 1px solid #E6E5E4;
        background: #fff;
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .tab-content {
        overflow: visible;
        display: none
    }

    .tab-content.current {
        display: block
    }

    .kontrcontent-none, .kontrcontent-top {
        display: none
    }

    .kontrcontent-contacts {
        width: 100%;
        padding: 20px 12px
    }

    .kontrcontent-info {
        width: 100%;
        border-right: none;
        padding: 20px 12px 0
    }

    .kontrcontent-top-title a {
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        color: #302F2E;
        -webkit-transition: .4s ease;
        transition: .4s ease;
        text-align: center
    }

    .kontrcontent-top-addres {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 4px 0 0
    }

    .kontrcontent-ocenka-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .kontrcontent-ul {
        padding: 14px 0 0
    }

    .kontrcontent-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .kontrcontent-audio {
        width: 100%
    }

    .kontrcontent-audio-restagle {
        background: #E6E5E4;
        border-radius: 20px;
        width: 92%;
        height: 4px
    }

    .kontrcontent-top-ul-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .kontrcontent-download-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 0 0
    }

    .kontrcontent-download {
        padding: 0 0 0 7px
    }

    .kontrcontent-mobile-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 0 0
    }

    .kontrcontent-contacts-title {
        padding: 16px 0 0
    }

    .kontrcontent-link {
        width: 50%;
        padding: 0 4px 0 0
    }

    .kontrcontent-button {
        width: 50%;
        padding: 0 0 0 4px
    }

    .kontrcontent-contacts-title2 {
        padding: 0
    }

    .kontrcontent-download2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 36px;
        left: -15px;
        display: none
    }

    .kontrcontent-ocenka-review {
        width: auto;
        text-align: center
    }

    .kontrcontent-mb-link {
        display: block
    }

    .kontrcontent-top-title-favorites a {
        text-align: left
    }

    .kontrcontent-top-addres-favorites {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .kontrcontent-ocenka-mb-favorites {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 16px 0 0
    }

    .kontrcontent-audio-favorites, .kontrcontent-contacts-favorites, .kontrcontent-download-favorites, .kontrcontent-interviev-favorites, .kontrcontent-li-favorites, .kontrcontent-suptitle-favorites {
        display: none
    }

    .kontrcontent-info-favorites {
        padding: 20px 12px
    }

    .get-border {
        padding: 32px 24px 165px;
        border-radius: 24px;
        background-size: 300px;
        background-position: 80% 100%
    }

    .header-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
        line-height: 20px;
        -webkit-transition: .4s ease;
        transition: .4s ease
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: 227px;
        display: none
    }

    .block-form__info {
        padding: 20px 15px
    }

    .title-def_med {
        font-size: 36px
    }

    .block-form__info-descrp {
        padding-left: 0;
        font-size: 18px
    }
}


@media screen and (max-width: 768px) {
    .accordion4 li, .articles-absolute, .contractors-absolute-button, .footer-button button, .footer-multi, .footer-ul3, .kontrcontent-selection-block, .kontrcontent-selection-button button, .kontrwork-li, .listsec-link a, .steps-block2, .steps-button, .steps-button button, .steps-button2, .steps-button2 a, .whysec-block, .whysec-block2 {
        width: 100%
    }

    .footer-li, .header-wrap, ul.tabs li {
        position: relative
    }

    .text-more__text {
        -webkit-line-clamp: 4
    }

    .header-nav, .work-border, .work-inner {
        display: none
    }

    .work-mobile-button {
        display: block;
        padding: 32px 0 0
    }

    .steps-block {
        display: none
    }

    .steps-block2 {
        padding: 0
    }

    .steps-suptitle {
        max-width: 100%
    }

    .steps-pd2 {
        padding: 32px 0 0
    }

    .steps-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 40px 0 0
    }

    .steps-button2 {
        padding: 16px 0 0
    }

    .reviews-sl .slick-next, .reviews-sl .slick-prev {
        display: none !important
    }

    .reviews-sl .slick-slide {
        margin: 0 8px !important
    }

    .reviews-container {
        padding: 0 0 0 27px
    }

    .reviews-sl .slick-list {
        padding: 0 5% 0 0 !important
    }

    .reviews-border {
        background: #F6F6F6;
        border-radius: 20px;
        padding: 40px 24px
    }

    .listsec-border {
        padding: 32px 24px 180px;
        background-size: 193px;
        background-position: 50% 130%
    }

    .whysec-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .whysec-block2 {
        padding: 40px 0 0
    }

    .whysec-img {
        text-align: center
    }

    .useful-sl .slick-list {
        padding: 0 5% 0 0 !important
    }

    .articles-accordion {
        display: block
    }

    .articles-container, .articles-content, .footer-block, .title-none {
        display: none
    }

    .articles-content {
        padding: 0
    }

    .accordion4 {
        margin: 0
    }

    .accordion4 li {
        padding: 16px 0 0
    }

    .articles-drop {
        padding: 0 36px 0 24px
    }

    .footer-top {
        padding: 0 0 32px;
        display: block
    }

    .footer-link {
        text-align: left;
        padding: 16px 0 0
    }

    .footer-button {
        padding: 32px 0 0
    }

    .footer-li:first-child {
        padding: 16px 0 0
    }

    .footer-social-ul-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 32px 0 16px
    }

    .footer-social-li:last-child {
        padding: 0
    }

    .footer-social-ul {
        padding: 32px 0 0
    }

    .footer-middle {
        padding: 16px 0;
        display: block
    }

    .footer-accordion {
        display: block
    }

    .footer-social-ul-dk, .footer-ul2 {
        display: none
    }

    .footer-ul2 {
        padding: 0
    }

    .contractors-absolute {
        margin: 0;
        padding: 30px 35px 0;
        height: 844px;
        overflow: hidden
    }

    .contractors-absolute-mb {
        display: block
    }

    .contractors-absolute-mb button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        color: #ABA9A8
    }

    .contractors-absolute-mb button img {
        margin: 0 8px 0 0
    }

    .contractors-absolute-top {
        padding: 24px 0 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .contractors-absolute-button {
        padding: 4px 0 0
    }

    .contractors-absolute-wrap {
        padding: 0;
        display: block;
        overflow: auto;
        height: 680px
    }

    .articles-absolute {
        left: 0;
        top: 90px;
        padding: 0 16px 16px
    }

    .footer-bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .footer-multi {
        padding: 32px 0 0
    }

    .header-favorite {
        display: none
    }

    .error-link a, .footer-logo a {
        display: inline-block
    }

    .footer-absolute {
        padding: 0;
        top: 100%
    }

    .burger, .mt-munu-mb .header-navigation-wr {
        display: block !important
    }

    .kontrwork-title br, .title-color2 br {
        display: none
    }

    .mt-mobile {
        right: 0
    }

    .header-right {
        padding: 0 44px 0 0
    }

    .body-open .header-logo a svg path {
        fill: #302F2E;
        stroke: #302F2E
    }

    .semechki {
        padding: 24px 0 0
    }

    .title-color2 {
        font-size: 24px;
        line-height: 32px;
        text-align: left
    }

    .kontrwork-li, .kontrwork-title {
        font-size: 14px;
        line-height: 20px
    }

    .kontrwork {
        padding: 49px 0
    }

    .kontrwork-title {
        padding: 16px 0 0;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        text-align: left;
        color: #FFF
    }

    .kontrwork-ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 16px 0 0
    }

    .kontrwork-li {
        padding: 0 0 12px
    }

    .kontrwork-make {
        padding: 44px 0 0;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 900;
        font-size: 16px;
        line-height: 24px;
        color: #FFF;
        text-align: center
    }

    .kontrfilter {
        display: block
    }

    .tab-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    ul.tabs li {
        margin: 0;
        cursor: pointer;
        padding: 10px 16px;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 12px;
        line-height: 20px;
        color: #302F2E;
        border: 1px solid #E6E5E4
    }

    .error-link a, .favorites-title {
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: 600;
    }

    .error-oops, .error-suptitle {
        font-size: 14px;
        line-height: 20px;
        text-align: center
    }

    .kontrslayd-container {
        padding: 0
    }

    .kontrslayd-wrap {
        padding: 0 31px
    }

    .kontrcontent {
        padding: 24px 0 0
    }

    .kontrcontent-selection {
        margin: 32px 0 28px;
        background: 0 0;
        border-radius: 24px;
        padding: 0
    }

    .kontrcontent-selection-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0
    }

    .kontrcontent-selection-block {
        padding: 24px 0 0
    }

    .kontrcontent-selection-pd {
        padding: 0
    }

    .kontrcontent-selection-button {
        padding: 24px 0 0
    }

    .error-oops {
        color: #ABA9A8
    }

    .error-img {
        padding: 9px 0
    }

    .error-suptitle {
        color: #302F2E
    }

    .error-link a {
        text-decoration: none;
        font-size: 16px;
        line-height: 24px;
        color: #FFF;
        background: #D88344;
        border-radius: 41px;
        padding: 10px 32px
    }

    .error-link {
        padding: 12px 0 0;
        text-align: center
    }

    .favorites {
        padding: 24px 0 0
    }

    .favorites-title {
        font-size: 32px;
        line-height: 40px;
        color: #302F2E
    }

    .title-center {
        text-align: left
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: 161px;
        display: none
    }

    .company-interview {
        padding: 0 35px 40px;
        border: none;
        border-bottom: 1px solid #ABA9A8;
        border-radius: 0;
        margin: 0 -35px
    }

    .company-interview-icon {
        display: none
    }

    .company-price-owerflo {
        overflow: auto;
        white-space: nowrap
    }

    .company-price-owerflo::-webkit-scrollbar {
        width: 0;
        height: 0
    }

    .company-price-wrap {
        width: 725px
    }

    .company-price-block2 {
        width: 20.3%
    }

    .company-price-block {
        width: 18.8%
    }

    .aboutour-title {
        text-align: left
    }

    .quiz-acts {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .quiz-acts__btns {
        width: 100%;
        margin-top: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .modal-quiz__bottom {
        margin-top: 0;
        border-top: 1px solid #E4E7EA;
        padding: 20px 35px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: #fff
    }

    .modal-quiz__quiz {
        padding-bottom: 150px
    }

    .block-quiz__content_2 .block-quiz__content-el {
        width: 50%
    }

    .block-quiz-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .block-quiz-info__content {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .block-quiz-info__img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        height: 200px;
        width: 100%
    }

    .block-quiz-select__img, .block-quiz-select__left {
        width: 211px;
        margin-right: 20px
    }

    .modal-content {
        padding: 50px 0
    }

    .modal-quiz__final-right {
        padding-left: 110px
    }

    .modal-quiz__final-info {
        right: auto;
        left: 0
    }

    .modal-quiz__thanks-info {
        left: 63px;
        right: auto
    }
}

@media screen and (max-width: 640px) {
    .get-button button, .useful-img img {
        width: 100%
    }

    .get-border {
        padding: 32px 24px 212px;
        border-radius: 24px;
        background-size: 250px;
        background-position: 50% 100%
    }

    .footer-bottom {
        padding: 32px 0 0
    }

    .footer-li3 {
        padding: 0 0 12px
    }

    .footer-li3:before {
        display: none
    }

    .footer-ul3 {
        display: block
    }

    .articles-absolute-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .articles-absolute-block {
        width: 50%
    }

    .kontrcontent-like {
        position: absolute;
        top: 12px;
        left: 12px
    }

    .infosec-block {
        width: 100%
    }

    .whysec-border {
        width: 200px;
        padding: 13px 22px;
        background: #FFF;
        -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
        box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
        border-radius: 12px
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: 98px;
        display: none
    }

    .companynaw-owerflo {
        overflow: auto;
        white-space: nowrap
    }

    .companynaw-owerflo::-webkit-scrollbar {
        width: 0;
        height: 0
    }

    .companynaw-container {
        padding: 0
    }

    .companynaw-wrap {
        padding: 0 35px
    }

    .company-verified {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .company-verified-block {
        width: 100%;
        padding: 0 0 12px
    }


    .company-interview-audio-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .company-interview-audio-dk {
        display: none
    }

    .company-interview-suptitle-mb {
        font-size: 12px;
        line-height: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .company-interview-suptitle-dk {
        display: none
    }

    .company-interview-title {
        font-family: Manrope-SemiBold;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #302F2E
    }

    .company-interview-info {
        width: 90%;
        padding: 0 0 0 13px
    }

    .company-interview-wrap {
        padding: 24px 0 0;
        max-width: 550px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .company-interview-what {
        margin: 0 0 -4px 4px;
        position: relative;
        cursor: pointer
    }

    .company-see {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .company-see-block {
        width: 50%
    }

    .company-contract-link a {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 10px 16px;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        text-decoration: none;
        font-size: 14px;
        line-height: 19px;
        color: #D88344;
        background: rgba(216, 131, 68, .1);
        border-radius: 8px
    }


    .company-coment-name {
        font-size: 20px;
        line-height: 24px;
        color: #302F2E
    }

    .company-coment-data {
        padding: 4px 0 0;
        font-size: 14px;
        line-height: 20px;
        color: #ABA9A8
    }

    .company-coment-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .company-coment-right {
        width: 100%;
        padding: 12px 0 0
    }

    .company-coment-title {
        padding: 24px 0 0;
        font-size: 16px;
        line-height: 32px;
        color: #302F2E
    }

    .company-coment {
        padding: 32px 35px;
        border-bottom: 1px solid #E6E5E4
    }

    .company-coment-block-mb {
        display: none
    }


    .statyya-info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .statyya-info-right {
        width: 100%;
        padding: 16px 0 0
    }

    .statyya-border {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 24px 32px
    }

    .statyya-border-title {
        width: 100%;
        padding: 24px 0 0
    }

    .statyya-border2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 24px 32px
    }

    .statyya-border2-text {
        width: 100%;
        padding: 24px 0 0
    }

    .statyya-restagles {
        border-top: none;
        border-bottom: none;
        padding: 40px 0 0;
        margin: 0
    }

    .statyya-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 32px 0 0
    }

    .statyya-inner-link {
        width: 100%
    }

    .statyya-inner-link a {
        background: #FFF;
        border: none;
        border-top: 1px solid #E6E5E4;
        border-bottom: 1px solid #E6E5E4;
        border-radius: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 35px;
        text-decoration: none;
        width: auto;
        margin: 0 -35px
    }

    .sec-about__title br, .sec-header .text-sec br, .statyi-block-mb2 {
        display: none
    }

    .statyi-block {
        padding: 24px 0 0;
        width: 100%
    }

    .statyi-container {
        padding: 0 35px
    }

    .statyi {
        padding: 24px 0 0;
        margin-bottom: 80px;
    }

    a.page-numbers {
        margin: 0 !important;
    }

    span.page-numbers.current {
        margin: 0 !important;
    }

    .title-def_main {
        font-size: 24px
    }

    .block-form__info-descrp, .text-sec {
        font-size: 14px
    }

    .text-sec {
        line-height: 1.45
    }

    .title-def_border::after {
        width: 190px
    }

    .sec-header__wrap {
        padding: 94px 0
    }

    .sec-header__title {
        padding: 0 5px;
        line-height: 1.3;
        margin-bottom: 7px
    }

    .title-def_border {
        padding-bottom: 15px
    }

    .sec-about__wrap {
        padding-top: 127px
    }

    .sec-about__title {
        font-size: 32px;
        text-align: left;
        line-height: 1.25
    }

    .block-about-el {
        padding: 0;
        border: 0
    }

    .sec-about__content {
        margin-top: 56px
    }

    .block-about-el__top {
        display: block
    }

    .block-about-el__icon {
        margin-bottom: 11px
    }

    .block-about__right {
        width: 300px;
        max-width: 300px;
        overflow: visible;
        margin-left: 0
    }

    .sec-about {
        overflow: hidden
    }

    .block-about-el__body {
        padding-right: 10px
    }

    .block-about-el__bottom {
        margin-top: 37px;
        height: 280px;
        background: #F6F6F6;
        border: .5px solid #F6F6F6;
        border-radius: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .block-about-el__img {
        width: auto;
        max-width: 100%;
        height: 253px
    }

    .block-about__right-el {
        margin-bottom: 0
    }

    .title-def_med {
        font-size: 24px
    }

    .block-form {
        overflow: visible
    }

    .block-form__info {
        margin-left: -35px;
        width: 100vw;
        padding: 37px
    }

    .block-form__title {
        margin-bottom: 17px
    }

    .form-title {
        font-size: 16px
    }

    .block-form-drag__title, .modal-write__to {
        font-size: 14px
    }

    .form-button button {
        height: 47px
    }

    .sec-form__wrap {
        padding-bottom: 80px
    }

    .modal-def-2__wrap {
        padding: 0;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .modal-write__title {
        display: none
    }

    .modal-content-2__topmob {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: -35px;
        margin-right: -35px;
        border-bottom: 1px solid #F6F6F6;
        padding-bottom: 16px;
        margin-bottom: 26px;
        padding-top: 17px
    }

    .modal-write__next {
        width: 100%;
        margin-top: 19px
    }

    .modal-content-2 {
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 0 35px 48px
    }

    .modal-content-2__close {
        top: 17px;
        right: 34px
    }

    .textarea-def {
        padding: 16px 13px
    }

    .modal-write__describe {
        margin-top: 18px
    }

    .modal-write__prevmob {
        position: absolute;
        cursor: pointer;
        top: 0;
        height: 100%;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        left: 34px
    }

    .modal-write__prevmob.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .modal-delete__title, .modal-write__prev {
        display: none
    }

    .modal-write__send {
        width: 100%
    }

    .inp-def_2 {
        height: 48px
    }

    .modal-thanks {
        padding-top: 32px
    }

    .block-form-drag__text {
        font-size: 12px
    }

    .block-form-drag {
        height: 88px
    }

    .block-images-files__el {
        width: 74px
    }

    .kontrcontent-block__act {
        top: 20px;
        left: 20px
    }
}

@media screen and (max-width: 575px) {
    .contractors-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .contractors-button {
        width: 100%;
        padding: 4px 0 0
    }

    .kontrcontent-audio-restagle {
        background: #E6E5E4;
        border-radius: 20px;
        width: 85%;
        height: 4px
    }

    .accordion-content {
        padding: 14px 0 0
    }

    .company-contract-absolute, .kontrcontent-social2-absolute {
        position: absolute;
        border-radius: 6px;
        padding: 8px 12px;
        z-index: 1;
        line-height: 16px;
        color: #302F2E;
        display: none;
        text-align: center
    }

    .kontrcontent-social2-absolute {
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 273px;
        font-size: 12px;
        bottom: 50px;
        left: 66px
    }

    .company-contract-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 103% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .company-contract-absolute {
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 260px;
        font-size: 12px;
        bottom: 46px;
        left: -232px
    }

    .aboutwork-img-mb {
        display: block;
        width: 100%
    }

    .aboutwork-absolut, .aboutwork-img-dk {
        display: none
    }

    .company-img-mb {
        display: block;
        width: 100%
    }

    /*.company-img-dk {*/
    /*    display: none*/
    /*}*/
    .block-select-socials, .modal-quiz__bottom {
        display: block
    }

    .modal-quiz .title2 {
        font-size: 24px;
        line-height: 1.34
    }

    .modal-quiz__title {
        margin-bottom: 24px
    }

    .block-quiz__title, .quiz-acts__text {
        font-size: 16px
    }

    .block-radio__text, .form-el__text, .form-el__title, .text-info {
        font-size: 14px
    }

    .block-quiz__title {
        margin-bottom: 20px
    }

    .block-quiz__content {
        margin-left: -5px;
        margin-right: -5px
    }

    .block-quiz__content-el {
        padding: 0 5px;
        margin-bottom: 16px
    }

    .block-radio__img {
        height: 96px
    }

    .block-radio__content {
        padding: 14px;
        height: 48px
    }

    .modal-quiz__content, .modal-quiz__final, .modal-quiz__final-left, .modal-quiz__thanks {
        margin-top: 25px
    }

    .quiz-acts__text {
        text-align: center;
        margin-bottom: 18px
    }

    .quiz-acts__btns {
        margin-top: 22px;
        gap: 20px
    }

    .quiz-acts__btns button {
        padding-left: 5px;
        padding-right: 5px;
        width: 50%
    }

    .quiz-acts__progress {
        margin: 0
    }

    .block-quiz-two, .modal-quiz__btn {
        margin-top: 20px
    }

    .modal-quiz__quiz {
        padding-bottom: 168px
    }

    .block-quiz-info__img {
        height: 156px
    }

    .block-quiz-select__img {
        height: auto;
        border-radius: 12px
    }

    .block-quiz-select__img, .block-quiz-select__left {
        width: 97px;
        margin-right: 10px
    }

    .form-el__text {
        margin-left: 10px
    }

    .block-quiz-two__el {
        margin-bottom: 20px
    }

    .block-quiz-two__el .checkbox-el_2 {
        height: auto;
        padding: 8px 10px
    }

    .block-select-socials-el__dec, .checkbox-el_2 {
        padding-left: 16px
    }

    .block-quiz-two__el .block-quiz__title {
        margin-bottom: 12px
    }

    .block-quiz-selects__el, .block-quiz_select .block-quiz__content-el {
        width: 100%
    }

    .checkbox-el_2 {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .block-quiz-select__left {
        width: 155px
    }

    .block-radio__info {
        top: 12px;
        left: 12px;
        height: 32px;
        width: 32px;
        border-radius: 4px
    }

    .block-radio__info svg {
        width: 20px
    }

    .block-radio__info {
        font-size: 12px
    }

    .modal-quiz__final-img {
        width: 210px;
        max-width: 100%;
        border-radius: 8px 8px 40px;
        height: auto
    }

    .modal-quiz__final-info {
        top: 41px
    }

    .block-select-socials__el {
        width: 100%
    }

    .modal-quiz__final-title {
        margin-bottom: 10px
    }

    .modal-quiz__successfully {
        margin-bottom: 20px
    }
}

@media screen and (max-width: 480px) {
    .kontrcontent-download-absolute, .kontrcontent-social2-absolute {
        font-size: 12px;
        line-height: 16px;
        color: #302F2E;
        position: absolute
    }

    .listsec-border {
        padding: 32px 24px 180px;
        background-size: 193px;
        background-position: 50% 120%
    }

    .accordion .link p {
        width: 85%;
        padding: 0 24px 0 0
    }

    .kontrcontent-download a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
        line-height: 16px;
        text-decoration: none;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .whysec-absolute {
        display: none
    }

    .kontrcontent-download-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 67% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-download-absolute {
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 253px;
        padding: 8px 12px;
        z-index: 1;
        text-align: center;
        bottom: 36px;
        left: -153px;
        display: none
    }

    .company-interviev-absolute, .kontrcontent-social2-absolute {
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        padding: 8px 12px;
        z-index: 1;
        text-align: center
    }

    .kontrcontent-social2-absolute {
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        width: 273px;
        bottom: 50px;
        left: 17px;
        display: none
    }

    .kontrcontent-border2-suptitle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 16px;
        line-height: 24px;
        color: #FFF
    }

    .kontrcontent-border2-suptitle img {
        margin: 3px 8px 0 0
    }

    .company-interviev-absolute {
        position: absolute;
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        width: 253px;
        font-size: 12px;
        line-height: 16px;
        color: #302F2E;
        bottom: 46px;
        left: -224px;
        display: none
    }

    .company-interviev-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 103% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .aboutour-link a {
        width: 100%
    }

    .company-interview-restagle {
        width: 80%;
        background: #E6E5E4;
        border-radius: 20px;
        height: 4px
    }
}

@media screen and (max-width: 415px) {
    .kontrcontent-top-li .wrap-hint__hint {
        left: -12px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .kontrcontent-top-li .wrap-hint__hint:before {
        background-position: left
    }

    .whysec-br {
        display: block
    }

    .accordion .link p {
        width: 84%;
        padding: 0 24px 0 0
    }

    .kontrcontent-audio-restagle {
        background: #E6E5E4;
        border-radius: 20px;
        width: 75%;
        height: 4px
    }

    ul.tabs li {
        margin: 0;
        cursor: pointer;
        padding: 10px;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 12px;
        line-height: 20px;
        color: #302F2E;
        position: relative;
        border: 1px solid #E6E5E4
    }

    .kontrcontent-download a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 11px;
        line-height: 16px;
        text-decoration: none;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .kontrcontent-social2-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 51% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-download-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 253px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 36px;
        left: -203px;
        display: none
    }

    .kontrcontent-download-absolute:before {
        position: absolute;
        content: "";
        background: url(../svg/kontrcontent-social-absolute.svg) 91% 0 no-repeat;
        width: 100%;
        height: 16px;
        bottom: -12px;
        left: 0
    }

    .company-see-block {
        width: 100%
    }
}

@media screen and (max-width: 395px) {
    .kontrcontent-download-absolute, .kontrcontent-download2-absolute, .kontrcontent-interviev-absolute, .kontrcontent-social2-absolute {
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        display: none
    }

    .kontrcontent-download-absolute:before, .kontrcontent-download2-absolute:before, .kontrcontent-interviev-absolute:before {
        position: absolute;
        content: "";
        height: 16px
    }

    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 273px;
        z-index: 1;
        bottom: 50px;
        left: 5px
    }

    .kontrcontent-interviev-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 253px;
        z-index: 1;
        bottom: 36px;
        left: -176px
    }

    .kontrcontent-interviev-absolute:before {
        background: url(../svg/kontrcontent-social-absolute.svg) 78% 0 no-repeat;
        width: 100%;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-download2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 273px;
        z-index: 1;
        bottom: 36px;
        left: -72px
    }

    .kontrcontent-download2-absolute:before {
        background: url(../svg/kontrcontent-social-absolute.svg) 68% 0 no-repeat;
        width: 100%;
        bottom: -12px;
        left: 0
    }

    .kontrcontent-download-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        width: 253px;
        z-index: 1;
        bottom: 36px;
        left: -228px
    }

    .kontrcontent-download-absolute:before {
        background: url(../svg/kontrcontent-social-absolute.svg) 104% 0 no-repeat;
        width: 100%;
        bottom: -12px;
        left: 0
    }
}

@media screen and (max-width: 375px) {
    .kontrcontent-top-border, .kontrcontent-top-border2 {
        display: -webkit-box;
        -webkit-box-align: center;
        width: 25px;
        height: 25px;
        border-radius: 6px
    }

    .kontrcontent-top-border {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: rgba(22, 159, 77, .1)
    }

    .kontrcontent-top-border2 {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: rgba(245, 153, 14, .1)
    }

    ul.tabs li {
        margin: 0;
        cursor: pointer;
        padding: 10px 5px;
        font-family: "Manrope", sans-serif;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
        font-size: 12px;
        line-height: 20px;
        color: #302F2E;
        position: relative;
        border: 1px solid #E6E5E4
    }


    .kontrslayd-container {
        padding: 0
    }

    .kontrslayd-wrap {
        padding: 0 11px
    }

    .contractors-container {
        padding: 0
    }

    .contractors-wrap {
        padding: 32px 7px 0;
        width: 1350px
    }

    .reviews-container {
        padding: 0 0 0 7px
    }

    .what-container {
        padding: 0
    }

    .what-wrap {
        padding: 32px 7px 0;
        width: 1350px
    }

    .useful-container {
        padding: 0 0 0 7px
    }

    .companynaw-container {
        padding: 0
    }

    .companynaw-wrap {
        padding: 0 15px
    }

    .company-restagle {
        margin: 40px -15px;
        position: relative;
        width: auto
    }

    .company-restagle-mr {
        margin: 60px -15px 40px
    }

    .company-interview {
        padding: 0 35px 40px;
        border: none;
        border-bottom: 1px solid #ABA9A8;
        border-radius: 0;
        margin: 0 -15px
    }


    .aboutteam-container {
        padding: 0
    }

    .aboutteam-wrap {
        width: 2654px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 0 7px
    }

    .aboutwork-container {
        padding: 0
    }

    .statyya-inner-link a {
        background: #FFF;
        border: none;
        border-top: 1px solid #E6E5E4;
        border-bottom: 1px solid #E6E5E4;
        border-radius: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 15px;
        text-decoration: none;
        width: auto;
        margin: 0 -15px
    }

    .company-interview-restagle {
        width: 70%;
        background: #E6E5E4;
        border-radius: 20px;
        height: 4px
    }
}

@media screen and (max-width: 320px) {
    .kontrcontent-social2-absolute {
        position: absolute;
        -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
        background: #FFF;
        border-radius: 6px;
        width: 273px;
        padding: 8px 12px;
        z-index: 1;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        color: #302F2E;
        bottom: 50px;
        left: -31px;
        display: none
    }

    .kontrcontent-download a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 7px;
        line-height: 16px;
        text-decoration: none;
        -webkit-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease
    }

    .header-logo a svg {
        width: 130px;
        height: 44px
    }
}

.slick-list, .slick-slider, .slick-track {
    position: relative;
    display: block
}

.slick-slider {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 0
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.reviews-sl .slick-slide, .useful-sl .slick-slide {
    margin: 0 15px
}

.slick-track:after, .slick-track:before {
    display: table;
    content: ""
}

.slick-slide, .slick-slide.slick-loading img {
    display: none
}

.slick-track:after {
    clear: both
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.reviews-sl .slick-list {
    padding: 0
}

.useful-sl .slick-list {
    padding: 0
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(../slick.html);
    src: url(../slickd41d.html?#iefix) format("embedded-opentype"), url(../slick-2.html) format("woff"), url(../slick-3.html) format("truetype"), url(../slick-4.html#slick) format("svg")
}

.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat #211E27;
    width: 40px;
    height: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    border: 7px solid transparent
}

.reviews-sl .slick-next, .reviews-sl .slick-prev {
    width: 44px;
    height: 44px;
    border: 1px solid #302F2E;
    bottom: auto
}

.reviews-sl .slick-prev {
    left: auto;
    right: 71px;
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: block;
    border-radius: 50%;
    top: -82px;
    z-index: 1;
    transform: rotate(180deg)
}

.kontrcontent-sl .slick-prev, .useful-sl .slick-prev {
    left: auto;
    z-index: 1;
    -webkit-transform: rotate(180deg)
}

.reviews-sl .slick-prev:hover {
    background: url(../svg/slayder-arrow2.svg) 50% 50% no-repeat;
    border: 1px solid #D88344
}

.reviews-sl .slick-next {
    right: 15px;
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    display: block;
    top: -59px
}

.reviews-sl .slick-next:hover {
    background: url(../svg/slayder-arrow2.svg) 50% 50% no-repeat;
    border: 1px solid #D88344
}

.useful-sl .slick-next, .useful-sl .slick-prev {
    width: 44px;
    height: 44px;
    border: 1px solid #302F2E;
    -webkit-transition: .3s;
    bottom: auto
}

.useful-sl .slick-prev {
    right: 71px;
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat;
    -o-transition: .3s;
    transition: .3s;
    display: block;
    border-radius: 50%;
    top: -90px;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.useful-sl .slick-prev:hover {
    background: url(../svg/slayder-arrow2.svg) 50% 50% no-repeat;
    border: 1px solid #D88344
}

.useful-sl .slick-next {
    right: 15px;
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    display: block;
    top: -67px
}

.useful-sl .slick-next:hover {
    background: url(../svg/slayder-arrow2.svg) 50% 50% no-repeat;
    border: 1px solid #D88344
}

.kontrcontent-sl .slick-next, .kontrcontent-sl .slick-prev {
    background: url(../svg/slayder-arrow.svg) 50% 50% no-repeat;
    width: 44px;
    height: 44px;
    border: 1px solid #302F2E;
    -webkit-transition: .3s;
    -o-transition: .3s;
    display: none !important;
    bottom: auto
}

.kontrcontent-sl .slick-prev {
    right: 71px;
    transition: .3s;
    border-radius: 50%;
    top: -82px;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.kontrcontent-sl .slick-next {
    right: 15px;
    transition: .3s;
    border-radius: 50%;
    top: -59px
}

.content-next {
    right: 0;
    /*background: url(/wp-content/uploads/link-arrow.svg) 50% 50% no-repeat #211E27;*/
    width: 40px;
    height: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    border: 7px solid transparent
}

.slick-dots li, .slick-dots li button {
    padding: 0;
    border-radius: 50%;
    cursor: pointer
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
    margin-top: 0
}

.slick-dots {
    position: absolute;
    bottom: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    background: #FFF;
    opacity: .5;
    width: 100%;
    height: 100%;
    color: transparent;
    border: 0;
    outline: 0
}

.slick-dots li.slick-active button {
    opacity: 1
}

/**
***********************************************************************************************************************
 */


::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}


a.get-listed-href {
    color: white;
    text-decoration: none;
}

.header-button button {
    background: #d88344;
}

.header-button button:hover {
    background: #C57133;
    transition: .4s ease;
}

.plain-page-text p {
    text-align: justify;
    padding: 0.2em;
    font-size: 1rem;
}

.plain-page-text h2 {
    padding: 1em;
}

.plain-page-text h3 {
    padding: 0.5em;
}

.plain-page-text h4 {
    padding: 0.3em;
}

.plain-page-text li {
    text-align: justify;
    list-style: circle;
    margin-left: 1.5em;
}

.sec-header__wrap {
    padding: 56px 0;
    margin-top: 3em;
    background-color: #ededed;
    border-radius: 10px;
}

.infosec-suptitle {
    text-align: justify;
}

.company-tresh {
    position: sticky;
    top: 110px;
}

.accordion-title li {
    padding-left: 2em;
    margin-bottom: 0.1em;
}

.sec-about__wrap {
    padding-top: 120px;
}

.useful-img img {
    object-fit: cover;
    width: 100%;
    height: 298px;
    border-radius: 1.1em;
}

.accordion-title ul li span {
    font-weight: 600;
}

.statyi-container {
    padding: 18px 20px;
}

.whysec-title span {
    font-weight: 600;
}

.statyya-img img {
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .listsec-border {
        padding: 32px 24px 258px;
        background-size: 193px;
        background-position: 50% 92%;
    }
}


.mask-loader {

    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.39);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .kontrwork-li {
        justify-content: center;
    }
}

.articles-title {
    padding: 0 0 5px 12px;
    font-size: 20px;
    color: #7d7d7d;
}

.accordion4 .link4, .accordion5 .link4, .articles-drop {
    background-color: #e3e3e300;
    color: #cbcbcb;
    border: solid 1px;
    border-radius: 8px;
}

.articles-icon img {
    max-width: 45px;
    border-radius: 3px;
    max-height: 30px;
}

.articles-icon img {
    width: 40px;
}

img.social-icon {
    width: 54px;
    height: 62px;
}

h1.title {
    text-align: center;
}

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

a.common-link {
    color: inherit;
    text-decoration: auto;
}

.company-price-owerflo table {
    width: 100%;
    padding: 20px;
}

.circle-image {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 132px;
    height: 132px;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-interview-audio {
    justify-content: center;
}

.wrapper-gal {
    width: 320px;
    height: 223px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.wrapper-gal img {
    min-width: 100%;
    min-height: 100%;
    flex-shrink: 0;
}

.hov-star {
    background-color: #ffffffa1;
    height: 20px;
    position: absolute;
    right: 0px;
    width: 60px;
    mix-blend-mode: screen;
}

.strong-wrap-stars {
    width: 88px;
    position: relative;
}

.ct-star {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 2px;
    height: 16px;
    width: 16px;
}

.checkbox-square {
    width: 12px;
    height: 9px;
    fill: none;
}

.ct-title-wrap-top {
    width: 75%;
    margin: auto;
    text-align: center;
}

.kontrwork-title {
    padding: 20px 0 0;
    text-align: center;
    color: #FFF;
    width: 70%;
    margin: auto;
    min-height: 4em;
}

.nothing_to_show {
    margin: auto;
    text-align: center;
    padding: 2em 1em 1em 1em;
    font-size: larger;
}

.work-block {
    width: 22%;
}

.work-block3 {
    width: 35%;
}

.work-block2 {
    width: 35%;
}

.work-block5 {
    width: 8%;
}

.kontrcontent-top-icon {
    width: 52px;
    height: 52px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.company-img-dk {
    border-radius: 10px;
}

img.img-home-page-articles {
    width: 382px;
    height: 271px;
}


.accordion4 .link4, .articles-drop {
    display: -ms-flexbox;
    -webkit-box-align: center;
    width: 100%;
    height: 41px;
    padding: 27px 13px 21px 13px;
}

.accordion-states-list {
    background-color: #D88344;
    color: #fff;
    border-radius: 41px;
}

img.company-img-logo {
    position: absolute;
    padding: 15px;
}

img.round-corner {
    border-radius: 10px;
}

.steps {
    padding-bottom: 60px;
}

.kontrcontent-audio-button {
    width: 100%;
}

.company-interview-audio {
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}

img.no-photo-audio {
    width: 100%;
}

.kontrcontent-selection {
    margin: 32px 0 0;

}


.kontrcontent-audio {
    padding: 0px;
    justify-content: center;
}

.sc_player_container1 {
    display: inline;
    padding: 0px;
    margin: 0px;
    padding-top: 4px;
}

img.no-media {
    padding: 4px;
    opacity: 50%;
}

li.highlighted {
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #a5a5a5;
}

.nothing_to_show {
    margin: 50px auto;
    text-align: center;
    padding: 1em 1em 1em 1em;
    font-size: larger;
    border: 1px solid #E6E5E4;
    border-radius: 24px;
}

h2.gform_title {
    text-align: center;
    padding: 0em 0em 1em 0em;
    font-size: 2em;
}

input#gform_submit_button_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 56px;
    padding: 10px 53px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0 auto;
}

.aboutteam-title {
    max-width: unset;
}

@media screen and (max-width: 800px) {
    .aboutteam-overflo {
        white-space: unset;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 800px) {
    .aboutteam-wrap {
        display: flex;
        /* width: 2654px; */
        -ms-flex-wrap: nowrap;
        flex-wrap: unset;
        padding: 0 27px;
        width: unset;
        flex-direction: column;
    }
}

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

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

.get-listed-b2-title {
    font-size: 2em;
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 1em;
}

.get-listed-b2-text {
    font-size: 1.5em;
    margin: 0 auto;
}

section.get-listed-section-b2 {
    margin: 4em 1em;
}

input#gform_submit_button_2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 56px;
    padding: 10px 53px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0 auto;
}

/***************************************************/

audio {
    width: 300px;
    height: 30px;
    border-radius: 10px;
}


/***********************************************************************/


.kontrcontent-download a {
    margin-left: 10px;
}

.kontrcontent-audio {
    width: unset;
}

.form-support {
    padding: 10% 11%;
    background-color: white;
    margin-top: 30px;
    border-radius: 10px;
    text-align: left;
}

input#gform_submit_button_3[type="submit"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 56px;
    padding: 10px 53px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0 auto;
}

div#gform_confirmation_message_3 {
    text-align: center;
}

.aboutwork-container-wrap {
    color: white;
    padding: 4%;
    max-width: 887px;
    margin: 0 auto;
}

.container.about-container-2 {
    margin-top: 70px;
    background: url(../jpg/background-min-blank-min.jpg);
    background-size: cover;
    max-width: unset;
}

.about-block-2-title {
    font-size: 32px;
    padding: 24px 0;
    text-align: center;
}

.about-block-2-sign {
    text-align: right;
    padding: 20px;
    font-style: italic;
    color: #cfcece;
}

.aboutwork-container-wrap {
    color: white;
    padding: 60px 0;
    max-width: 887px;
    margin: 0 auto;
}

.aboutwork {
    padding: 40px 0 0;
}

@media screen and (max-width: 640px) {
    .articles-absolute-wrap {
        max-height: 20em;
        overflow: auto;
    }
}

.articles-absolute {
    top: 121px;
    left: 28px;
    width: 22vw;
}

.articles-absolute-wrap {
    /*-webkit-appearance: none;*/
    overflow: auto;
    max-height: 30em;
    overflow-x: hidden;
}

/*@media screen and (max-width: 575px) {*/
/*    .company-img-dk {*/
/*        display: block;*/
/*    }*/
/*}*/
.kontrwork {
    padding: 12px 0 80px 0;
}

section.filter-listing {
    margin-top: -100px;
}

@media screen and (max-width: 1200px) {
    section.filter-listing {
        margin-top: -77px;
    }
}

section.list-of-state-section {
    padding: 0 71px;
    max-width: 1390px;
    margin: 0 auto;
}

.list-of-state-wrap {
    overflow: scroll;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 1em;
}

.state-city-slider {
    display: inline-block;
    padding: 5px 18px;
    border: solid 1px gray;
    border-radius: 31px;
    margin: 0 2px;
}

.state-city-slider-link a {
    text-decoration: unset;
    color: black;
}

@media screen and (max-width: 768px) {
    section.list-of-state-section {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .kontrcontent {
        padding: 116px 0 0;
    }
}

.empty-download-contract {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    color: #bdbdbd;
    text-decoration: none;
    transition: .4s ease;
}

.kontrcontent-li {
    line-height: 16px;
    color: #302F2E;
    display: block;
    padding: 4px 6px;
    font-size: 12px;
    background: #F6F6F6;
    -webkit-transition: .4s ease;
    border-radius: 6px;
    text-decoration: none;
    margin: 2px;
}

.kontrcontent-ul__more {

    padding: unset;

}

.empty-social-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ABA9A8;
    border-radius: 50%;
    transition: .4s ease;
    opacity: 50%;
}

.s-icons {
    position: relative;
}

.social-absolute-hint {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    background: #FFF;
    border-radius: 6px;
    width: 253px;
    padding: 8px 12px;
    z-index: 100;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #302F2E;
    bottom: 79px;
    right: -98px;
    display: none;
}

.social-absolute-hint:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0;
}

h1.favorites-h1 {
    display: inline-block;
    font-size: 50px;
}

.favorites-nothing-to-show {
    text-align: center;
}

.kontrcontent-ocenka {
    /*display: none;*/
}


.block-links-acts {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.block-links-acts {
    position: relative;
}

.like-contractor {
    padding: 0 10px;
    display: flex;
}

.company-addres {
    padding-top: 12px;
}

.company-price-owerflo {
    padding: 20px;
}

.fancybox__content img {
    border-radius: 20px;
}

.nothing-text {
    background-color: #ededed;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    white-space: normal;
}

.kontrcontent-slayder .kontrcontent-slayder-block img, .kontrcontent-slayder .kontrcontent-slayder-img img {
    max-height: 388px;
}

.statyya-block2 ul {
    list-style: disc;
    padding: 2em;
}

.statyya-block2 li {
    padding: 16px 0 0;
    color: #302F2E;
}

.statyya-block2 a {
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #302F2E;
    display: block
}

.statyya-block2 a:hover {
    color: #D88344;
}

table {
    border: none;
    margin-bottom: 20px;
    border-collapse: collapse;
    table-layout: auto;
}

table th {
    font-weight: 600;
    padding: 20px 5px;
    background: #fff;
    text-align: center;
    border: 1px solid #ddd;
}

table td {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 25px 5px;
    text-align: center;
}

table thead tr th:first-child, .table tbody tr td:first-child {
    border-left: none;
}

table thead tr th:last-child, .table tbody tr td:last-child {
    border-right: none;
}

table tbody tr:nth-child(odd) {
    background: #f3f3f3;
}

img.company-img-logo {
    max-width: 250px;
    max-height: 100px;
}

@media screen and (max-width: 575px) {
    .company-img-mb {
        display: block;
        width: 100%;
        border-radius: 10px;
    }
}

/*@media screen and (max-width: 575px) {*/
/*    img.company-img-dk {*/
/*        display: none;*/
/*    }*/
/*}*/
.kontrcontent-li:hover {
    background: #D88344;
    color: white;
}

.kontrcontent-li_more:hover {
    background: #c2c2c2;

    & .kontrcontent-ul__more {
        background: #c2c2c2;
    }
}

.kontrcontent-slayder-img img {
    max-height: 388px;
}

.company-see-img {

}

.company-see-img img {
    object-fit: cover;
    width: 100%;
    min-height: 22vh;
}

@media screen and (max-width: 800px) {
    .aboutbg-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 800px) {
    .aboutbg-block2 {
        width: 100%;
        padding: 24px 0 0;
    }
}

@media screen and (max-width: 800px) {
    .aboutbg-block {
        width: 100%;
        padding: 0;
    }
}

.aboutbg-title {
    font-size: 32px;
    line-height: 38px;
    color: #000;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .aboutbg-wrap.aboutbg-wrap-pd {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 800px) {
    .aboutvalues-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 800px) {
    .aboutvalues-wrap {
        display: flex;
        flex-direction: column;
    }

}

@media screen and (max-width: 800px) {
    .aboutvalues-block {
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .title2 {
        text-align: center;
    }

    .aboutteam-block {
        width: 100%;
    }

    .form-border {
        display: flex;
        flex-direction: column;
    }

    .form-img {
        width: 100%;
    }

    .form-block {
        width: 100%;
    }

    .form-img img {
        border-radius: 20px 20px 0 0;
        margin: 0 0 -6px;
        height: 100%;
    }

    .company-see-img img {
        object-fit: cover;
        width: 100%;
        height: 28vw;
    }

    .articles-absolute {
        top: 121px;
        left: 28px;
        width: 75vw;
    }
}

@media screen and (max-width: 640px) {
    .block-form__info {
        margin: auto;
        border-radius: 20px 20px 0 0;
    }

    .company-see-img img {
        object-fit: cover;
        width: 100%;
        height: 50vw;
    }

}

/*.useful-block {*/
/*    width: 382px;*/
/*}*/

img.company-img-dk.img-home-page-articles {
    object-fit: cover;
    width: 400px;
    height: 200px;
}

.statyya-wrap p {
    padding: 0.5em 0;
}

.tmp-button-wrap {
    width: 211px;
    margin: auto;
}

.modal-window {
    position: relative;
}

.modal-window-content {
    position: fixed;
    top: 12%;
    left: 30%;
    background-color: gainsboro;
    width: 46%;
    height: 80%;
    border-radius: 25px;
}

.close-button-modal {
    display: flex;
    justify-content: flex-end;
    margin: 20px;
    font-weight: 600;
    cursor: pointer;
}

.modal-window-form {
    padding: 0px 59px;
}


.form-info {
    margin-bottom: 20px;
}

.button-wrap-send {
    display: flex;
    justify-content: flex-end;
}

.label-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}


.send-error-message-02 {
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    color: red;
}

.send-error-message {
    color: red;
}


@media screen and (max-width: 768px) {
    .header-button {
        display: none;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}


/*  New block of stars
    BEGIN
*/


svg.ct-star2 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 3px;
    height: 16px;
    width: 15px;
    padding-bottom: 2px;
}

.ct-reputation-block {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4px;
    margin-bottom: 4px;
    border: 1px #c3c3c3;
    border-style: none none solid none;
}

.ct-reputatin-icon-number {
    display: flex;
}

.ct-stars-block {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}

.ct-source-name {
    width: 63px;
    line-height: 16px;
    color: #3D3B39;
    font-weight: 400;
    height: 16px;
}

.ct-rating-block {
    /*background-color: #F6F6F6;*/
    border-radius: 10px;
    padding: 7px;
    font-size: 12px;
}

/*.kontrcontent-info {*/
/*    width: 43%;*/
/*}*/
.kontrcontent-contacts {
    min-width: 288px;
}

.ct-not-social {
    padding-top: 3px;
}

.ct-reputatin-icon-number {
    display: flex;
    background-color: #D88344;
    padding: 0px 6px;
    align-items: center;
    border-radius: 21px;
}

.ct-reputation-number {
    color: white;
}

.ct-stars {
    padding: 0 3px;
}

.kontrcontent-contacts {
    padding: 20px 17px 15px;
}

.kontrcontent-contacts-title {
    padding: 7px 0 0;
    line-height: normal;
}

/*.kontrcontent-link {*/
/*    padding: 9px 0 0;*/
/*}*/
.kontrcontent-social-title {
    padding: 10px 0 0;
}

.kontrcontent-social-ul {
    padding: 2px 0 0;
}

.kontrcontent-contacts-title2 {
    padding: 0 0 0;
}

.hov-star {
    mix-blend-mode: lighten;
}

.ct-review {
    width: 67px;
}

.rev-num {
    display: inline-flex;
    width: 18px;
    justify-content: flex-end;
}

.ct-internal-block {
    display: inline-flex;
}

@media screen and (max-width: 900px) {
    .kontrcontent-inner {
        display: flex;
        flex-direction: column;
    }
}

.hint-rating {
    display: inline-flex;
    margin: 1px 0 0 4px;
    cursor: pointer;
    position: relative;
}

.hint-rating-content {
    position: absolute;
    -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .1));
    background: #FFF;
    border-radius: 6px;
    width: 319px;
    padding: 8px 12px;
    z-index: 1;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #302F2E;
    bottom: 24px;
    left: -152px;
    display: none;
}

.hint-rating:hover > .hint-rating-content {
    display: block;
}

.hint-rating-content:before {
    position: absolute;
    content: "";
    background: url(../svg/kontrcontent-social-absolute.svg) 50% 0 no-repeat;
    width: 100%;
    height: 16px;
    bottom: -12px;
    left: 0;
}

.editor ol li {
    list-style-type: decimal;
    margin-left: 36px;
}

.editor ol {
    margin-bottom: 10px;
}

.kontrcontent-selection-suptitle {
    max-width: none;
}

.ct-sup {
    padding: 5px 0;
}

.kontrcontent-contacts {
    padding: 9px 17px 12px;
}

.kontrcontent-info {
    padding: 19px 25px;
}

.background.padding-top {
    /*background: url(/wp-content/uploads/background-min-blank-min.jpg) center 0 no-repeat;*/
    background-color: #6c6c6c;
}

/*@media screen and (max-width: 768px) {*/
/*    .background.padding-top {*/
/*        background: url(/wp-content/uploads/background-mobile-min.jpg) center 0 no-repeat;*/
/*    }*/
/*}*/

.back-img {
    position: absolute;
    right: 0;
    z-index: -1;
    width: 37vw;
    bottom: 0;
}

@media screen and (max-width: 640px) {
    .back-img {
        position: absolute;
        right: 0;
        left: 0;
        z-index: -1;
        width: 41vw;
        bottom: 0;
        margin: 0 auto;
    }
}


img.back-img-listsec {
    position: absolute;
    right: 3vw;
    bottom: 32px;
    max-width: 232px;
}

@media screen and (max-width: 768px) {
    img.back-img-listsec {
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 184px;
        bottom: 32px;
    }
}

.top-block-line-1 {
    text-align: center;
    color: #d88344;
    font-size: 25px;
    font-weight: 600;
}

.top-block-line-3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

@media screen and (max-width: 768px) {
    .top-block-line-1 {
        text-align: center;
        color: #d88344;
        font-size: 14px;
        font-weight: 600;
    }

    .top-block-line-3 {
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 40px;
        color: white;
    }

    .top-block-line-3 {
        margin-bottom: 24px;
    }

    .kontrwork {
        padding: 51px 0 80px 0;
    }
}


/*.header-wrap {*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: flex-end;*/
/*    position: relative;*/
/*}*/
.header-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*.header-logo {*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/
/*svg.logo-text {*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/
/*.site-descriptor {*/
/*    font-size: 19px;*/
/*    color: white;*/
/*    width: 294px;*/
/*    position: absolute;*/
/*    left: 60px;*/
/*    top: 3px;*/
/*}*/


.icon-and-disc {
    display: flex;
    align-items: center;
}

.site-descriptor {
    font-size: 17px;
    color: white;
    width: 275px;
    padding-left: 7px;
    z-index: -1;
    text-decoration: unset;
}

@media screen and (max-width: 1200px) {
    .site-descriptor {
        font-size: 15px;
        color: white;
        width: 275px;
        padding-left: 7px;
        z-index: -1;
        text-decoration: unset;
    }

    /*svg.logo-icon {*/
    /*    width: unset;*/
    /*    height: 44px*/
    /*}*/
    /*svg.logo-text {*/
    /*    width: 164px;*/
    /*    height: 44px;*/
    /*}*/
    /*.site-descriptor {*/
    /*    font-size: 19px;*/
    /*    color: white;*/
    /*    width: 294px;*/
    /*    position: absolute;*/
    /*    left: 60px;*/
    /*    top: 3px;*/
    /*}*/
}

.pagination-button-block {
    display: flex;
    margin-top: 21px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

button.pagination-button {
    margin: 10px;
    background: #D88344;
    border-radius: 41px;
    width: 39px;
    height: 39px;
    color: white;
    font-size: 16px;
    text-align: center;
}

button.passive-paginating-button {
    opacity: 50%;
    cursor: default;
}

span.pagination-point {
    display: flex;
    background: #D88344;
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

ul.breadcrumbs-list {
    padding: 48px 0 0 0;
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 16px;
    user-select: none;
}


a.breadcrumbs-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .4s ease;
    /*color: white;*/
    /* padding: 2px 2px 3px 0px; */
    margin: 4px 0px;
    /* background-color: gray; */
    border-radius: 8px;
    text-transform: capitalize;
    /*cursor: pointer;*/
}

a.breadcrumbs-link.breadcrumbs-link-finish {
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    cursor: auto;
}

svg.br-arrow {
    height: 13px;
    width: 13px;
    margin-bottom: -2px;
}

/*a.breadcrumbs-link:hover {*/
/*    color: #d88344;*/
/*}*/

li.breadcrumbs-item.br-dropdown-listing {
    position: relative;
}

ul.dropdown-list-locations {
    position: absolute;
    background-color: white;
    z-index: 5;
    padding: 0 10px;
    border: solid 1px black;
    border-radius: 8px;
    width: max-content;
    left: 4px;
}

/*a.br-first-level {*/
/*    text-transform: uppercase;*/
/*}*/

a.br-first-level.breadcrumbs-link.br-dropdown-title-link {
    border: solid 1px black;
    padding: 3px 7px 4px 10px;
    margin-right: 7px;
    margin-top: 1px;
    margin-left: 4px;
}


.some-tag, .about-block-2-title {
    font-size: 40px;

    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

.about-block-2-text {
    padding: 24px 0 0;
    font-size: 16px;
    line-height: 24px;
    text-indent: 30px;
    text-align: justify;
}

@media screen and (max-width: 1200px) {
    .some-tag, .about-block-2-title {
        font-size: 32px;
    }

    .about-block-2-text {

    }
}

@media screen and (max-width: 800px) {
    .some-tag, .about-block-2-title {
        font-size: 32px;
    }

    .about-block-2-text {

    }
}

h2.title2.ct-block-title {
    text-align: center;
}

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

.ct-block-social-icons {
    margin-top: 42px;
}

.aboutteam-title {
    font-size: 16px;
    margin: 36px 0;
}

/*.useful-img.ct-carousel-img {*/
/*    width: 422px;*/
/*    height: 300px;*/
/*}*/
/*@media screen and (max-width: 1200px) {*/
/*    .useful-img.ct-carousel-img {*/
/*        width: unset;*/
/*        height: unset;*/
/*    }*/
/*}*/


.cookie-block {
    position: fixed;
    bottom: 0;
    width: 100vw;
    background-color: white;
    padding: 13px 19px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
}

.cookie-title {
    font-size: 21px;
    padding: 0 20px;
}

.cookie-button button {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background: #D88344;
    border-radius: 41px;
    height: 48px;
    width: 188px;
    transition: .4s ease;
    color: white;
}

.company-coment-img {
    width: 60px;
}

.ct-resize-stars {
    transform: scale(1.2);
}

.ct-contractor-stars-summery {
    display: flex;
    align-items: center;
}

.form-block-support {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header.fixed .site-descriptor {
    color: black;
}

.company-interview.company-add-block-01 {
    padding: 14px 20px;
    margin: 22px 0;
    display: grid;
    grid-row-gap: 7px;
}

.company-add-block-01 .company-dni {
    padding: 0;
}

.com-info-block-01 {
    padding-left: 11px;
}

.block-rating-page {
    margin-top: 20px;
}

.add-block-01-line {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .company-suget-mb {
        display: none;
    }
}


@media screen and (max-width: 1024px) {
    .cookie-title {
        font-size: 14px;
        padding: 0 20px;
    }
}

.ct-taxonomy-description {
    border: 1px solid #E6E5E4;
    border-radius: 24px;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
    padding: 27px;
}

@media screen and (max-width: 575px) {
    .company-img-dk {
        display: none;
    }
}

.text-more__text > p {
    display: inline;
}


.ct-data-source-line {
    display: flex;
    padding: 3px;
    margin: 3px;
    justify-content: space-between;
}

.ct-data-source-title {
    font-weight: bold;
}


.ct-listing-h2 {
    padding: 16px 24px;
    margin: 17px 0 -22px 0;
    border: solid 1px #e6e5e4;
    border-radius: 24px;
    /*background: linear-gradient(166deg, white, #f1f1f1);*/
}

h1.contractor-page-h1 {
    font-size: inherit;
    font-weight: inherit;
}

h2.listing-h2 {
    font-size: 25px;
    font-weight: normal;
    color: #515151;
}

h2.contractor-page-h2 {
    font-size: inherit;
    font-weight: inherit;
}

h3.listing-h3 {
    font-weight: inherit;
    font-size: inherit;
}

@media screen and (max-width: 768px) {
    h2.listing-h2 {
        font-size: 20px;
    }
}

h1.contact-us-h1 {
    display: flex;
    justify-content: center;
}

.contact-us-wrap.page-content {
    font-size: 19px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.contact-us-wrap.contact-us-couple-blocks {
    display: grid;
    align-items: center;
    margin-bottom: 120px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 16px;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

@media screen and (max-width: 1200px) {
    .contact-us-wrap.contact-us-couple-blocks {
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
    }
}

.con-us-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 15px 15px;
    margin: 15px 15px;
    border: solid 1px #e6e5e4;
    border-radius: 24px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .contact-us-wrap.contact-us-couple-blocks {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

.con-us-block-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    font-size: clamp(15px, 2vw, 17px);
}

.con-us-block-content.con-us-map-section {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.con-us-map {
    border-radius: 7px;
}

.con-us-line {
    display: flex;
    justify-content: space-between;
    padding: 2px 15px;
    align-items: center;
}

.con-us-title {
    text-wrap: nowrap;
    margin-right: 8px;
}

.con-us-content {
    word-break: break-all;
}

.con-us-block-title {
    margin: 4px 10px;
    font-size: 19px;
}

@media screen and (max-width: 768px) {
    .con-us-block-content.con-us-map-section {
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.rating-updated {
    margin: 32px 0 -34px 25px;
}


.cat-nav-category {
    display: flex;
    padding: 3px 13px;
    margin: 4px 0;
    border: solid 1px #e7e7e7;
    border-radius: 10px;
    justify-content: space-between;
}

a.cat-nav-link {
    text-decoration: none;
    font-size: 15px;
    color: black;
    text-transform: uppercase;
}

.cat-nav-count {
    padding: 0px 0px 0 15px;
    font-size: 14px;
}

a.cat-nav-link.passive {
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.cat-nav-category:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.cat-nav-category {
    display: flex;
    padding: 3px 13px;
    margin: 0px 6px 0 0;
    border: solid 1px #e7e7e7;
    border-radius: 10px;
    justify-content: space-between;
    width: fit-content;
}

.container.cont-for-h1 {
    display: flex;
    /*justify-content: center;*/
}

.container.articles-nav-container {
    margin: 35px auto 0;
}

ul.cat-nav-ul {
    display: flex;
    flex-wrap: wrap;
}

li.cat-nav-li {
    margin: 4px 0;
}

.fb-photo-wrap {
    display: flex;
}

@media screen and (max-width: 640px) {
    img.round-corner.fb-photo-img {
        /*height: 10vh;*/
        object-fit: contain;
    }

}

.author-top-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1.h1-author {
    font-size: 36px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
}

.title-top-block {
    padding: 0 129px 0 0;
}

.author-content {
    padding: 28px 0 0 0;
}

.author-under-h1 {
    font-size: 22px;
}

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

a.author-social-link {
    margin: 5px;
}

.author-article-text-block {
    margin: 0 0 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author-article-description {
    margin: 10px 0;
}

@media screen and (max-width: 640px) {
    .author-top-block {
        flex-direction: column-reverse;
    }

    .title-top-block {
        padding: 29px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .author-article-wrap {
        flex-direction: column;

    }

    a.author-article-link {
        padding: 10px 0;
    }

    .author-article-description {
        padding: 5px 0;
    }

    .author-date-published {
        padding: 5px 0;
    }

    .author-article-text-block {
        margin: 12px 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.author-social-link svg {
    width: 40px;
}

.author-top-img {
    min-width: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 24px;
    padding: 4px 0 0 0;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

.author-article-wrap {
    border: solid 1px gray;
    border-radius: 15px;
    padding: 15px 19px;
    margin: 21px 0;
    display: flex;
}

a.author-article-link {
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.author-articles-title {
    margin: 15px;
    font-size: 23px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.author-article-wrap img {
    border-radius: 10px;
}

.author-block {
    text-align: end;
}

a.archive-author-link-to-url {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.container.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.page-numbers {
    display: inline-flex;
    background: #D88344;
    border-radius: 41px;
    width: 39px;
    height: 39px;
    color: white;
    font-size: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

a.next.page-numbers {
    width: 120px;
}

a.prev.page-numbers {
    width: 120px;
}

span.page-numbers.current {
    display: inline-flex;
    background: #D88344;
    border-radius: 41px;
    width: 39px;
    height: 39px;
    color: white;
    font-size: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

img.fb-avatar {
    border-radius: 50%;
}

.dots {
    display: inline-flex;
    background: #fff;
    border-radius: 41px;
    width: 39px;
    height: 39px;
    color: #000;
    font-size: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.plain-page-text pre.mono-text {
    font-family: monospace;
    text-align: left;
    font-size: 0.8em;
    padding: 1em;
    margin: 1em;
    background-color: #535353;
    color: white;
    border-radius: .5em;
}

@media (max-width: 1220px) {
    .plain-page-text {
        padding: 0 1em;
    }
}

@media (max-width: 768px) {
    .statyya p img {
        max-height: 400px;
    }
}

@media (max-width: 520px) {
    .statyya p img {
        max-height: 300px;
    }
}