@font-face { font-family: 'Montserrat'; src: url('/local/templates/main/fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'), url('/local/templates/main/fonts/Montserrat/Montserrat-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Montserrat'; src: url('/local/templates/main/fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'), url('/local/templates/main/fonts/Montserrat/Montserrat-Medium.woff') format('woff'); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: 'Montserrat'; src: url('/local/templates/main/fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'), url('/local/templates/main/fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'); font-weight: 600; font-style: normal; font-display: swap; } @font-face { font-family: 'Montserrat'; src: url('/local/templates/main/fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'), url('/local/templates/main/fonts/Montserrat/Montserrat-Bold.woff') format('woff'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: 'Montserrat'; src: url('/local/templates/main/fonts/Montserrat/Montserrat-Light.woff2') format('woff2'), url('/local/templates/main/fonts/Montserrat/Montserrat-Light.woff') format('woff'); font-weight: 300; font-style: normal; font-display: swap; }
.swiper-wrapper {
    will-change: transform;
}

body {
    margin: 0;
    position: relative;
    /*min-height: 100vh;*/
}

html {
    scroll-behavior: smooth;
}

/*
html:not(.has-scroll-init) {
	cursor: wait;
	overflow: hidden
}
*/

a {
    color: #A4A4A4;
    transition: color 0.3s;
}

a:hover {
    color: #FD0140;
}

.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    animation: loader 10s ease-in-out infinite;
    z-index: 10;
    background: #FCB334;
}

.loader__img {
    width: 300px;
    height: 300px;
    background: url(../images/svg/logo.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

@keyframes loader {
    0% {
        background: #FCB334;
    }
    15% {
        background: #693882;
    }
    35% {
        background: #0174B3;
    }
    55% {
        background: #FCB334;
    }
    75% {
        background: #ff3a55;
    }
    95% {
        background: #FCB334;
    }
    100% {
        background: #FCB334;
    }
}

@media (max-width: 600px) {
    .loader__img {
        width: 200px;
        height: 200px;
    }
}

:root {
    --gap: 55px;
    --letter-scale: 3;
    --delay: 0.1s;
    --rotate: 270deg;
    --time: 5s;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loader2 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    /*animation: loader 10s ease-in-out infinite;*/
    z-index: 10;
    background: #fff;
    transition: 0.6s;
}

/*
.wrapper {
	transition: 0.6s;
	transform: translateX(100%)
}
.body--loaded .wrapper {
	transform: translateX(0%)
}
.body--loaded .loader2 {
	transform: translateX(-100%)
}
*/
body > .wrapper {
    transform: none;
}

/*
.loader2 svg path{
	fill: #fff !important;
}*/
.bq-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bq-logo__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    will-change: transform;
}


.bq-logo__letter {
    height: calc(36px * var(--letter-scale));
    -webkit-animation: rotation var(--time) ease-in-out infinite;
    animation: rotation var(--time) ease-in-out infinite;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bq-logo__letter--b {
    width: calc(21px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 6);
    animation-delay: calc(var(--delay) * 6);
}

.bq-logo__letter--q {
    width: calc(24px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 5);
    animation-delay: calc(var(--delay) * 5);
}

.bq-logo__letter--u {
    width: calc(23px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 4);
    animation-delay: calc(var(--delay) * 4);
}

.bq-logo__letter--a {
    width: calc(22px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 3);
    animation-delay: calc(var(--delay) * 3);
}

.bq-logo__letter--d {
    width: calc(23px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 2);
    animation-delay: calc(var(--delay) * 2);
}

.bq-logo__letter--r {
    width: calc(16px * var(--letter-scale));
    -webkit-animation-delay: calc(var(--delay) * 1);
    animation-delay: calc(var(--delay) * 1);
}

.bq-logo__letter--o {
    width: calc(21px * var(--letter-scale));
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.bq-logo__letter .letter-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bq-logo__letter-side {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bq-logo__letter-side--front {
    -webkit-transform: translateZ(var(--gap));
    transform: translateZ(var(--gap));
}

.bq-logo__letter-side--back {
    -webkit-transform: rotateY(180deg) translateZ(var(--gap)) scale(-1, -1);
    transform: rotateY(180deg) translateZ(var(--gap)) scale(-1, -1);
}

.bq-logo__letter-side--top {
    -webkit-transform: rotateX(90deg) translateZ(var(--gap));
    transform: rotateX(90deg) translateZ(var(--gap));
}

.bq-logo__letter-side--bottom {
    -webkit-transform: rotateX(-90deg) translateZ(var(--gap));
    transform: rotateX(-90deg) translateZ(var(--gap));
}

.bq-logo-outer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

@-webkit-keyframes rotation {
    30% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    100% {
        -webkit-transform: rotateX(var(--rotate));
        transform: rotateX(var(--rotate));
    }
}

@keyframes rotation {
    30% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    100% {
        -webkit-transform: rotateX(var(--rotate));
        transform: rotateX(var(--rotate));
    }
}

@media (max-width: 767px) {
    :root {
        --gap: 30px;
        --letter-scale: 1.5;
    }
}


html {
    /*overflow: hidden;*/
    width: 100%;
}

/*
.has-scroll-smooth body, body {
	overflow: hidden;
	width: 100%;
}
*/
@media (max-width: 991px) {
    body {
        /*background: #000;*/
    }
}

@media (max-width: 767px) {
    /*
	.has-scroll-smooth body {
		overflow: auto;
		height: auto;
	}
	*/
    .wrapper-scroll {
        transform: none !important
    }
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh
}

.inner {
    position: relative;
    z-index: 2;
    background: #fff;
    /*will-change: transform;*/
}


.c-scrollbar {
    width: 10px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    transform-origin: center right;
    transform: scaleX(1);
    transition: transform .2s linear;
    z-index: 2;
}

.c-scrollbar:hover {
    transform: scaleX(1.3);
    cursor: -webkit-grab;
    cursor: grab
}

.c-scrollbar_thumb {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.c-scrollbar_thumb:hover {
    cursor: pointer
}

.wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.wrapper img {
    width: auto;
    height: auto;
}

@media (max-width: 767px) {
    .wrapper-scroll {
        padding-top: 84px;
    }

    .page--first-screen .wrapper-scroll {
        padding-top: 0px;
    }
}

@media (max-width: 500px) {

    .wrapper-scroll {
        padding-top: 60px;
    }
}


.wrapper--inner {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.content {
    flex-grow: 1;
    -ms-flex-grow: 1;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}


@media (min-width: 1500px) {
    .main-top .container {
        width: 1500px;
    }

    .container {
        width: 1220px;
    }
}

@media (min-width: 1800px) {
    .main-top .container {
        width: 1680px;
    }

    .container {
        width: 1410px;
    }
}

@media (min-width: 2200px) {
    .main-top .container {
        width: 1850px;
    }

    .container {
        width: 1570px;
    }
}

p {
    margin-bottom: 0.75em;
}


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

html,
body {
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: #000;
    font-size: 27px;
    line-height: 1.625;
    color: #111111;
    /*font-display: swap;*/
}

body.body--fixed {
    overflow: hidden;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
    margin-top: 60px;
    /*font-display: swap;*/
}

h2, h3, .h2, .h3 {
    margin-bottom: 30px;
    margin-top: 45px;
}

h4, h5, .h4, .h5 {
    margin-bottom: 20px;
    margin-top: 35px;
}

h1,
.h1 {
    font-size: 95px;
    line-height: 1.2;

    font-size: 70px;
    font-weight: 600;
}

h2,
.h2 {
    font-size: 52px;
    line-height: 1.375;

    font-weight: 600;
    font-size: 39px;
}

h3,
.h3 {
    font-size: 39px;
    font-size: 32px;
    line-height: 1.375;
}

h4,
.h4 {
    font-size: 34px;
    line-height: 1.4;
    font-size: 27px;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: 0.05em;
}


h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
    margin-bottom: 0;
}

.front-btn,
.underline-btn {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
    line-height: 1.3;
    text-decoration: none !important;
    letter-spacing: 0.05em;
    color: #000;
    /*font-display: swap;*/
}

.front-btn:before,
.underline-btn:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #000;
    transition: width .5s;
}

.front-btn span,
.underline-btn span {
    transition: .3s;
    display: block;
}

.front-btn:hover span,
.underline-btn:hover span {
    transform: translate(0, 2px);
}


.border-btn {
    overflow: hidden;
    display: inline-block;
    margin: 0 auto;
    line-height: 1.53;
    padding: 0.5em 1.8em;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    color: #000000;
    background: transparent;
    border: 2px solid #FD0140;
    transition: all 0.3s;
    border-radius: 1.53em;
    z-index: 1;
    position: relative;
    cursor: pointer;
}

.border-btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0px;
    right: 0;
    z-index: -1;
    background-color: #FD0140;
    border-radius: 1.53em;
    transition: all 0.3s ease;
}

.section__block .border-btn:hover,
.border-btn:hover,
.border-btn:focus {
    color: #fff;
    border: 2px solid transparent;
    text-decoration: none;
}

.border-btn:hover:after,
.border-btn:focus:after {
    left: 0;
    width: 100%;
}

@media (max-width: 2200px) {
    /*
	h2,
	.h2 {
		font-size: 48px;
	}
	h1,
	.h1 {
		font-size: 87px
	}
	*/
    h6,
    .h6 {
        font-size: 22px;
    }

    html, body {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 30px;
    }
}

@media (min-width: 1500px) and ( max-height: 750px) {
    /*
	h2,
	.h2 {
		font-size: 40px
	}
	h1,
	.h1 {
		font-size: 70px
	}
	*/
    h5,
    .h5 {
        font-size: 21px
    }

    html, body {
        font-size: 20px;
    }

    h4,
    .h4 {
        font-size: 25px;
    }
}

@media (min-width: 1800px) and ( max-height: 750px) {
    /*
	h2,
	.h2 {
		font-size: 47px;
	}
	h1,
	.h1 {
		font-size: 82px
	}
	*/
    html, body {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 30px;
    }
}

@media (min-width: 1800px) and ( max-height: 650px) {
    /*
	h1,
	.h1 {
		font-size: 70px;
	}*/
}

@media (max-width: 1800px) {
    /*
	h2,
	.h2 {
		font-size: 44px;
		margin-bottom: 50px;
	}
	h1,
	.h1 {
		font-size: 75px
	}*/
    h2,
    .h2 {
        margin-bottom: 50px;
    }

    html, body {
        font-size: 22px;
    }

    h4,
    .h4 {
        font-size: 27px;
    }

}


@media (max-width: 1500px) {
    /*
	h2,
	.h2 {
		font-size: 40px;
	}
	h1,
	.h1 {
		font-size: 70px;
	}*/
    h3,
    .h3 {
        font-size: 30px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }

    html, body {
        font-size: 20px;
    }

    h4,
    .h4 {
        font-size: 25px;
    }
}

@media (max-width: 1399px) {
    h1, .h1 {
        font-size: 60px;
    }

    h2, .h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

/*
@media (max-width: 1230px) {
	h2,
	.h2 {
		font-size: 35px;
	}
	h1,
	.h1 {
		font-size: 60px;
	}


}*/

@media (max-width: 991px) {

    h1, .h1 {
        font-size: 50px;
        margin-bottom: 35px;
        margin-top: 50px;
    }

    h2, .h2 {
        font-size: 27px;
        margin-bottom: 30px;
    }


    h5,
    .h5 {
        font-size: 16px;
    }

    html, body {
        font-size: 18px;
    }

    h4,
    .h4 {
        font-size: 22px;
    }

    h3,
    .h3 {
        font-size: 26px;
    }

    h2, h3, .h2, .h3 {
        margin-bottom: 25px;
        margin-top: 40px;
    }

    h4, h5, .h4, .h5 {
        margin-bottom: 17px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 45px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    .border-btn {
        padding: 0.4em 1.6em;
    }
}

@media (max-width: 500px) {
    h2,
    .h2 {
        font-size: 25px;
    }

    h1,
    .h1 {
        font-size: 35px;
        margin-bottom: 25px;
        margin-top: 40px;
    }

    html, body {
        font-size: 14px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    h3,
    .h3 {
        font-size: 21px;
    }

    h2, h3, .h2, .h3 {
        margin-bottom: 20px;
        margin-top: 35px;
    }

    h4, h5, .h4, .h5 {
        margin-bottom: 10px;
        margin-top: 25px;
    }

    .border-btn {
        padding: 0.4em 1.2em;
    }
}

@media (max-width: 400px) {
    h1,
    .h1 {
        font-size: 30px;
    }

    .border-btn {
        border-width: 1px;
    }
}

@media (max-width: 350px) {
    h1,
    .h1 {
        font-size: 27px;
    }
}


.content {
    padding-top: 88px;
}

@media (max-width: 767px) {
    .content {
        padding-top: 20px;
    }
}

@media (max-width: 550px) {
    .content {
        padding-top: 0;
    }
}

.inversion {
    color: #000;
}

.inversion {
    position: relative;
    z-index: 105;
}


.word,
.char {
    display: inline-block;
}

.IE #cursor {
    display: none;
}

.cursor-pull.swiper-container-initialized {
    cursor: move;
}

#cursor {
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    z-index: 99999;
    background-color: #D63161;
    transition: width .3s, height .3s, margin .3s, opacity .3s;
    overflow: hidden;

    background-color: #FD0140;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#cursor.cursor--no {
    opacity: 0;
}

#cursor.cursor--inversion {
    width: 170px;
    height: 170px;
    margin-left: -85px;
    margin-top: -85px;
    background-color: white;
    mix-blend-mode: difference;
}

#cursor.cursor--pull {
    background-image: url(../images/svg/main_mouse_move.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(238, 238, 238, 0.3);
    background-size: contain;
}

#cursor.cursor--pull:before,
#cursor.cursor--see:before,
#cursor.cursor--detail:before,
#cursor.cursor--btn:before {
    content: "";
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    /*font-display: swap;*/
    color: #fff;
    text-align: center;
    line-height: 120px;
    font-size: 16px;
    background-color: #FD0140;
    transform: scale(0);
}

#cursor.cursor--pull:before,
#cursor.cursor--see:before,
#cursor.cursor--detail:before,
#cursor.cursor--vacancy-anketa:before,
#cursor.cursor--btn:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    border-radius: 50%;
}

#cursor.cursor--more {
    background-image: url(../images/cursor-more.svg);
    height: 152px;
    width: 152px;
    margin-left: -76px;
    margin-top: -76px;
}

#cursor.cursor--prev {
    background-image: url(../images/slider-left-arrow.svg);
    height: 152px;
    width: 152px;
    margin-left: -76px;
    margin-top: -76px;
}

#cursor.cursor--next {
    background-image: url(../images/slider-right-arrow.svg);
    height: 152px;
    width: 152px;
    margin-left: -76px;
    margin-top: -76px;
}


#cursor.cursor--pull:before, #cursor.cursor--see:before {
    content: "посмотреть";
}

#cursor.cursor--see:before {
    transform: scale(1);
}

#cursor.cursor--pull.cursor--see:before {
    transform: scale(1);
}

#cursor.cursor--detail:before {
    content: "Подробнее";
    transform: scale(1);
}

#cursor.cursor--detail--1:before {
    content: "Подробнее";
}

#cursor.cursor--detail--2:before {
    content: "Там интересно";
    font-size: 14px;
}

#cursor.cursor--detail--3:before {
    content: "tap-tap";
}

#cursor.cursor--detail--4:before {
    content: "Что, что там?";
}

#cursor.cursor--detail--5:before {
    content: "посмотреть";
}

#cursor.cursor--detail--6:before {
    content: "click";
}


#cursor.cursor--btn:before {
    content: "click";
    transform: scale(1);
}

#cursor.cursor--btn--1:before {
    content: "tap-tap";
}

#cursor.cursor--btn--2:before {
    content: "Там подробности";
    font-size: 13px;
}

#cursor.cursor--btn--3:before {
    content: "click";
}


#cursor.cursor--vacancy-anketa {
    width: 152px;
    height: 152px;
    margin-left: -76px;
    margin-top: -76px;
    background-color: #fff;
}

#cursor.cursor--vacancy-anketa:before {
    content: "";
    background-color: #fff;
    transform: scale(1);
    background-image: url(../images/svg/vacancy-cursor.svg);
    background-position: center;
    background-repeat: no-repeat;
}

#cursor.cursor--click {
    width: 40px !important;
    height: 40px !important;
    margin-left: -20px !important;
    margin-top: -20px !important;
    background-color: white !important;
    mix-blend-mode: difference !important;
    background-image: none !important;
}

#cursor.cursor--front-slider {
    background-color: white;
    mix-blend-mode: difference;

}

#cursor.cursor--detail,
#cursor.cursor--front-slider,
#cursor.cursor--see,
#cursor.cursor--pull,
#cursor.cursor--btn {
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
}


@media (max-width: 1229px) {
    #cursor.cursor--vacancy-anketa {
        width: 120px;
        height: 120px;
        margin-left: -60px;
        margin-top: -60px;
    }
}

@media (max-width: 991px) {
    .Mobile #cursor,
    .touch #cursor {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #cursor {
        display: none !important;
    }
}


/**/

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
}

.wrapper-header {
    display: none;
}

header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5s;

    background: linear-gradient(281.4deg, #693882 -4.43%, #5A44F2 98.06%);
    background: #fff;
}

header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5s;
    background: #fff;
}


.header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    padding: 26px 46px;

    position: relative;

    z-index: 2;
}

.header__logo {
    position: relative;
    width: 195px;
}

.header__logo:before {
    content: "";
    display: block;
    padding-top: 24%;
}

.header__logo img {
    width: 100%;
    transition: opacity .3s;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.header__logo svg {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

body .header__logo-svg {
    fill: #FD0140;
    transition: 0.3s;
}

.header__logo-wrd {
    transition: opacity 0.3s;
}

.header__logo-q {
    transition-delay: 0.05s;
}

.header__logo-o {
    transition-delay: 0.3s;
}

.header__logo-r {
    transition-delay: 0.25s;
}

.header__logo-d {
    transition-delay: 0.2s;
}

.header__logo-a {
    transition-delay: 0.15s;
}

.header__logo-u {
    transition-delay: 0.1s;
}


.header__tel a,
.header__mail span,
.header__link {
    font-family: 'Montserrat', sans-serif;
    /*font-display: swap;*/
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;

}

.header__link span {
    color: inherit;
}

.header__right {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
}

.header__link {
    margin-right: 73px;
    text-decoration: none;
}

.header__tel {
    margin-right: 73px;
    margin-left: auto;
    display: flex;
}

.header__mail {
    margin-right: 73px;
    position: relative;
    cursor: pointer;
}


.header__mail:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #000;
    width: 100%;
    transition: background .3s;
}

.header__mail span,
.header__link span {
    transition: .3s;
    display: block;
    font-weight: 600;
}

.header__mail:hover span,
.header__link:hover span {
    transform: translate(0, 2px);
}

.header__burger {
    position: relative;
    width: 54px;
    height: 45px;
    right: 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.header__burger span {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.3s ease;
}

.header__burger span:before,
.header__burger span:after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #000;
    position: absolute;
    transition: 0.3s ease;
}

.header__burger span:before {
    top: -15px;
}

.header__burger span:after {
    top: 15px;
}

.header__tel,
.header__mail {
    transition: .3s
}

.header__previous {
    position: absolute;
    left: 0px;
    bottom: -100px;
    width: 75px;
    height: 75px;
    background: #000;
    display: block;
}

.header__previous:before, .header__previous:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;

}

.header__previous:after {
    background: url(../images/svg/ico-arr-previous.svg) no-repeat center;
    z-index: 2;
}

.header__previous:before {
    background: url(../images/gif.gif) no-repeat center;
    background-size: cover;
    opacity: 0;
    transition: 0.3s;
}

.header__previous:hover:before,
.page--scroll-top .header-logo__full-b,
.page--scroll .header-logo__full-w,
.page--scroll-down .header-logo__b {
    opacity: 1;
}

.page--scroll-down .header__burger span:before, .page--scroll-down .header__burger span:after, .page--scroll-down .header__burger span,
.page--scroll-down .header__mail:before {
    background-color: #000;
}


.page--scroll-top .header__burger span,
.page--scroll-top .header__burger span:before,
.page--scroll-top .header__burger span:after,
.page--scroll-top .header__mail:before {
    background-color: #000;
}

.page--scroll.page--scroll-down .header__logo-svg {
    fill: #FD0140;
}

.page--first-screen .header__logo-svg,
.page--scroll.page--scroll-wt .header__logo-svg {
    fill: #fff;
}

.page--scroll-wt .header__burger span,
.page--scroll-wt .header__burger span:before,
.page--scroll-wt .header__burger span:after,
.page--scroll-wt .header__mail:before {
    background-color: #fff;
}


.page--scroll-wt .header__tel a,
.page--scroll-wt .header__mail,
.page--scroll-wt .header__mail span,
.page--scroll-wt .header__link {
    color: #fff;
}


/*
.page--scroll-down .header__burger span,
.page--scroll-down .header__burger span:before,
.page--scroll-down .header__burger span:after,
.page--scroll-down .header__mail:before {
	background-color: #fff;
}
.page--scroll-down .header__tel a,
.page--scroll-down .header__mail,
.page--scroll-down .header__mail span {
	color: #fff;
}
*/


@media (min-width: 767px) {

    .page--scroll-down .header-logo__full-w {
        opacity: 0;
    }

    .page--scroll-down .header__tel,
    .page--scroll-down .header__mail,
    .page--scroll-down .header__link {
        opacity: 0;
        pointer-events: none;
    }

    .page--scroll-down .header__logo-q {
        transition-delay: 0.3s;
    }

    .page--scroll-down .header__logo-u {
        transition-delay: 0.25s;
    }

    .page--scroll-down .header__logo-a {
        transition-delay: 0.2s;
    }

    .page--scroll-down .header__logo-d {
        transition-delay: 0.15s;
    }

    .page--scroll-down .header__logo-r {
        transition-delay: 0.1s;
    }

    .page--scroll-down .header__logo-o {
        transition-delay: 0.05s;
    }

    .page--scroll-down .header__logo-wrd:not(.header__logo-b) {
        opacity: 0;
    }

    .page--scroll-up header:before {
        opacity: 1;
    }

    .page--scroll-up .header__logo-svg {
        fill: #fff;
        fill: #FD0140;
    }

    .page--scroll-up .header__tel,
    .page--scroll-up .header__mail,
    .page--scroll-up .header__link {
        transition-delay: 0.4s;
    }

    .page--scroll-up .header__tel a,
    .page--scroll-up .header__mail,
    .page--scroll-up .header__mail span {
        color: #fff;
        color: #FD0140;
        color: #000;
    }

    .page--scroll-up .header__mail:before {
        background-color: #fff;
        background-color: #000;
    }

    .page--scroll-up .header__burger span,
    .page--scroll-up .header__burger span:before,
    .page--scroll-up .header__burger span:after {
        background-color: #fff;
        background-color: #000;
    }

    .page--scroll-wt.page--scroll-up header:before {
        opacity: 0;
    }

    .page--scroll-wt.page--scroll-up header:after {
        opacity: 1;
    }

    .page--scroll-wt.page--scroll-up .header__logo-svg {
        fill: #000;
        fill: #FD0140;
    }

    .page--scroll-wt.page--scroll-up .header__tel a,
    .page--scroll-wt.page--scroll-up .header__mail,
    .page--scroll-wt.page--scroll-up .header__mail span {
        color: #000;
    }

    .page--scroll-wt.page--scroll-up .header__burger span,
    .page--scroll-wt.page--scroll-up .header__burger span:before,
    .page--scroll-wt.page--scroll-up .header__burger span:after,
    .page--scroll-wt.page--scroll-up .header__mail:before {
        background-color: #000;
    }
}

@media (max-width: 2200px) {
    .header__tel a,
    .header__mail span,
    .header__link {
        font-size: 24px;
    }

    .header__logo {
        width: 170px;
    }

    .header__previous {
        bottom: -85px;
        width: 65px;
        height: 65px;
    }

    .header {
        padding: 26px 40px;
    }
}

@media (max-width: 1500px) {
    .header__tel a,
    .header__mail span,
    .header__link {
        font-size: 20px;
    }

    .header__tel,
    .header__mail,
    .header__link {
        margin-right: 40px;
    }

    .header__logo {
        width: 150px;
    }

    .header__burger {
        width: 42px;
        height: 36px;
    }

    .header__burger span:before {
        top: -11px;
    }

    .header__burger span:after {
        top: 11px;
    }

    .header__previous {
        bottom: -72px;
        width: 58px;
        height: 58px;
    }

    .header {
        padding: 26px 34px;
    }
}

@media (max-width: 1229px) {

    .header__tel a,
    .header__mail span {
        font-size: 18px;
        line-height: 24px;
    }

    /*
	.header__mail {
		margin-right: 70px;
	}
	.header__tel {
		margin-right: 100px;
	}*/
}

@media (max-width: 991px) {
    .header {
        padding: 26px 20px
    }

    .header__tel a,
    .header__mail span {
        font-size: 16px;
        line-height: 22px;
    }

    /*
	.header__tel {
		margin-right: 50px;
	}
	.header__mail {
		margin-right: 30px;
	}
	*/
    header .container {
        padding: 0 15px;
    }

    .header__logo {
        width: 130px;
    }

    .header__burger {
        height: 32px;
    }


}

@media (max-width: 767px) {
    header {
        position: absolute;
        /*display: none !important;	*/
    }

    .wrapper-header {
        display: block;
        position: absolute;
        z-index: 20;
        width: 100%;
        height: 84px;
        top: 0;
        left: 0;
        display: none !important;
    }

    /*
	.wrapper-header header {
		display: block !important;
	}*/
    .header__tel {
        margin-right: 30px;
        display: none;
    }

    .header {
        padding: 26px 15px;
    }

    .header__burger {
        width: 37px
    }

    .header__burger span {
        height: 3px;
    }

    .header__burger span:before,
    .header__burger span:after {
        height: 3px;
    }

    .header__burger span:before {
        top: -10px;
    }

    .header__burger span:after {
        top: 10px;
    }

    .header__previous {
        bottom: -45px;
        width: 45px;
        height: 45px;
    }


    body.page--first-screen .header__logo-svg {
        fill: #fff;
    }

    body.page--first-screen .header__burger span,
    body.page--first-screen .header__burger span:before,
    body.page--first-screen .header__burger span:after,
    body.page--first-screen .header__mail:before {
        background-color: #fff;
    }

    /*.page--first-screen .header__slogan,*/
    body.page--first-screen .header__tel a,
    body.page--first-screen .header__mail,
    body.page--first-screen .header__mail span {
        color: #fff;
    }

    .header__previous {
        background: transparent;
    }

    .header__previous:after {
        background: url(../images/svg/ico-arr-previous-black.svg) no-repeat center;
    }

    .header__previous:before {
        display: none
    }
}

@media (max-width: 550px) {


    .header__mail,
    .header__tel {
        display: none;
    }

    .header__burger {
        margin-left: auto;
    }
}

@media (max-width: 500px) {
    .wrapper-header {
        height: 66px;
    }

    .header__logo {
        width: 95px;
    }

    .header__burger {
        height: 26px;
    }

    .header {
        padding: 20px 15px;
    }
}


/**/

.callback-popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
    pointer-events: none;
    transition: clip-path 1s, -webkit-clip-path 1s;
    background-color: #fff;
    clip-path: circle(0% at 50% 50%);
    -webkit-clip-path: circle(0% at 50% 50%);
    overflow: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-align-items: center;
}

.callback-popup .form-row {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 25px;
}

.callback-popup .form-row .form-group {
    padding-left: 15px;
    padding-right: 15px;
}

.callback-popup .form-row .form-up {
    left: 15px;
}

.callback-popup--active {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
    pointer-events: all;
}

.custom-popup-close {
    width: 42px;
    height: 42px;
    background-image: url(../images/svg/close-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 50px;
    top: 25px;
    cursor: pointer;
}

.callback-popup__inner {
    padding: 70px 15px;
}

.callback-popup__top {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}

.callback-popup .form-group {
    width: 50%;
}

.callback-popup__submit {
    margin-left: auto;
    margin-right: 137px;
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0;
    margin-top: 70px;
    outline: none;
}


.form-group .callback-popup__submit {
    margin: 0;
}

.callback-popup__submit:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: #000;
    width: 100%;
    transition: width .5s;
}

.callback-popup__submit span {
    transition: .3s;
    display: block;
    font-weight: 600;
}

.callback-popup__submit:hover span {
    transform: translate(0, 2px);
}

@media (max-width: 1500px) {
    .custom-popup-close {
        width: 37px;
        height: 37px;
    }
}

@media (max-width: 767px) {
    .custom-popup-close {
        top: 26px;
        right: 23px;
    }

    .callback-popup__inner {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .callback-popup .form-group {
        width: 100%;
    }

    .callback-popup__submit {
        margin-top: 50px;
    }

    .callback-popup .form-row {
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    .custom-popup-close {
        width: 25px;
        height: 25px;
    }

    .callback-popup .form-group--file {
        padding-top: 0;
    }

    .callback-popup__inner {
        padding: 20px;
    }
}


/**/

.menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    pointer-events: none;
    will-change: contents;
    /*
	transition: clip-path 1s, -webkit-clip-path 1s;
	clip-path: circle(0% at 50% 50%);
	-webkit-clip-path: circle(0% at 50% 50%);
	*/
    clip-path: circle(0% at 50% 50%);
    -webkit-clip-path: circle(0% at 50% 50%);

    /*background: #000;*/
    background: linear-gradient(106.34deg, #FF0038 3.85%, #E8007D 97.86%);
}

/*
.menu--active {
	clip-path: circle(100% at 50% 50%);
	-webkit-clip-path: circle(100% at 50% 50%);
}
*/
.menu--active {
    pointer-events: auto;
}

.menu__list {
    width: calc(100% - 532px);
    padding: 75px 0px
}

.menu-list__item {
    display: block;
    text-decoration: none;
    margin-bottom: 42px;
}

.menu-list__item:last-child {
    margin-bottom: 0;
}

.menu-list__item span {
    font-family: 'Montserrat', sans-serif;
    /*font-display: swap;*/
    font-weight: 600;
    font-size: 70px;
    line-height: 80px;
    color: #FFFFFF;
    /*
	-webkit-text-stroke: 1px #fff;
	color: rgba(0, 0, 0, 0);

	*/
    transition: .5s;
    display: inline-block;
}

.menu-list__item:hover span {
    color: #fff;
    transform: translateX(70px);
}

.menu--black .menu-list__item span {
    -webkit-text-stroke: 1px #000;
}

.menu--black .menu-list__item:hover span {
    color: #000;
}

.menu__fones,
.menu-fones__item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-fones__item {
    opacity: 0;
    transition: .5s;
}

.menu-fones__item--active {
    opacity: 1;
}

.menu-fones__item-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.5s ease;
    opacity: 0;
}

.menu-fones__item--active .menu-fones__item-img {
    opacity: 1;
}

.menu-fones__item-img-item {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s ease;
}

.menu-fones__item-img-item:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 55%;
}

.menu-fones__item-img-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*display: none;*/
}

/*
.menu-fones__item--active .menu-fones__item-img-item img {
	display: block;
}*/
.menu-fones__item--portfolio .menu-fones__item-img-item:before {
    padding-top: 65%;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--1 {
    width: 30%;
    left: 5%;
    top: 0;
    opacity: 0.7;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--2 {
    top: 5%;
    width: 20%;
    left: 40%;
    opacity: 0.5;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--3 {
    left: 0;
    width: 35%;
    bottom: 0;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--4 {
    left: 42%;
    width: 21%;
    bottom: 13%;
    opacity: 0.5;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--5 {
    left: 45%;
    width: 12%;
    bottom: 47%;
    opacity: 0.3;
}

.menu-fones__item--active.menu-fones__item--portfolio .menu-fones__item-img-item--6 {
    right: 0%;
    width: 32%;
    top: 30%;
    opacity: 0.8;
}


.menu-fones__item--vacantion .menu-fones__item-img-item:before {
    padding-top: 72%;
}

.menu-fones__item--vacantion .menu-fones__item-img-item--1 {
    width: 63.5%;
    left: 0;
    top: 0;
    transform: translateX(-15%);
}

.menu-fones__item--vacantion .menu-fones__item-img-item--2 {
    bottom: 0%;
    width: 63.5%;
    right: 0%;
    transform: translateX(15%);
}

.menu-fones__item--vacantion.menu-fones__item--active .menu-fones__item-img-item {
    transform: translateX(0%);
}


.menu-fones__item--agency .menu-fones__item-img-item:before {
    padding-top: 119%;
}

.menu-fones__item--agency .menu-fones__item-img-item--1 {
    top: 0%;
    width: 100%;
    right: 0%;
}


.menu-fones__item--gotovye-resheniya .menu-fones__item-img-item:before {
    padding-top: 74.6%;
}

.menu-fones__item--gotovye-resheniya .menu-fones__item-img-item--1 {
    top: 0%;
    width: 100%;
    right: 0%;
}

.menu-fones__item--gotovye-resheniya .menu-fones__item-img {
    transform: scale(0.6) translateX(40%);
    width: 766px;
    height: 572px;
}

.menu-fones__item--gotovye-resheniya.menu-fones__item--active .menu-fones__item-img {
    transform: scale(1) translateX(20%);
}


.menu-fones__item--contacts .menu-fones__item-img-item:before {
    padding-top: 84%;
}

.menu-fones__item--contacts .menu-fones__item-img-item--1 {
    top: 0%;
    width: 100%;
    right: 0%;
}

.menu-fones__item--contacts .menu-fones__item-img-item--2 {
    top: 0%;
    width: 50%;
    left: 0%;
    transform: translateX(-55%) translateY(-55%);
    opacity: 0;
}

.menu-fones__item--contacts .menu-fones__item-img-item--3 {
    bottom: 0%;
    width: 50%;
    right: 0%;
    transform: translateX(55%) translateY(55%);
    opacity: 0;
    transition: 0.5s ease;
}

.menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img-item--2 {
    transform: translateX(-25%) translateY(-25%);
    opacity: 1;
    transition-delay: 0.15s;
}

.menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img-item--3 {
    transform: translateX(25%) translateY(25%);
    opacity: 1;
    transition-delay: 0.3s;
}

.menu-fones__item--services .menu-fones__item-img-item:before {
    padding-top: 63.8%;
}

.menu-fones__item--services .menu-fones__item-img-item--1 {
    top: 0%;
    width: 100%;
    right: 0%;
}


.menu-fones__item--portfolio .menu-fones__item-img {
    transform: scale(1.5) translateX(40%);
    width: 1256px;
    height: 660px;
    transition: 0.75s ease;
}

.menu-fones__item--portfolio.menu-fones__item--active .menu-fones__item-img {
    transform: scale(1) translateX(60%);
}

.menu-fones__item--vacantion .menu-fones__item-img {
    width: 962px;
    height: 812px;
    transform: translateX(45%);
}

.menu-fones__item--services .menu-fones__item-img {
    transform: translateY(50%) translateX(30%);
    width: 825px;
    height: 500px;
}

.menu-fones__item--services.menu-fones__item--active .menu-fones__item-img {
    transform: translateY(0%) translateX(30%);
}

.menu-fones__item--agency .menu-fones__item-img {
    transform: translateX(80%);
    width: 745px;
    height: 886px;
}

.menu-fones__item--agency.menu-fones__item--active .menu-fones__item-img {
    transform: translateX(40%);
}

.menu-fones__item--contacts .menu-fones__item-img {
    height: 745px;
    width: 886px;
    transform: translateY(-50%) translateX(45%);
}

.menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img {
    transform: translateY(0%) translateX(45%);
}


@media (max-width: 1800px) {
    .menu-fones__item--portfolio .menu-fones__item-img {
        width: 1005px;
        height: 528px;
        transform: scale(1.5) translateX(20%);
    }

    .menu-fones__item--portfolio.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(40%);
    }

    .menu-fones__item--vacantion .menu-fones__item-img {
        width: 770px;
        height: 650px;
        transform: translateX(30%);
    }

    .menu-fones__item--services.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%)
    }

    .menu-fones__item--services .menu-fones__item-img {
        width: 660px;
        height: 400px;
        transform: translateY(50%);
    }

    .menu-fones__item--agency .menu-fones__item-img {
        width: 596px;
        height: 709px;
        transform: translateX(60%);
    }

    .menu-fones__item--agency.menu-fones__item--active .menu-fones__item-img {
        transform: translateX(20%);
    }

    .menu-fones__item--contacts .menu-fones__item-img {
        height: 596px;
        width: 709px;
        transform: translateY(-50%) translateX(20%);
    }

    .menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(20%);
    }


    .menu-fones__item--gotovye-resheniya .menu-fones__item-img {
        transform: scale(0.6) translateX(20%);
        width: 660px;
        height: 353px;

        width: 632px;
        height: 472px;
    }

    .menu-fones__item--gotovye-resheniya.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(0%);
    }


}

@media (max-height: 800px) and (min-width: 1230px) {
    .menu-fones__item--portfolio .menu-fones__item-img {
        width: 1005px;
        height: 528px;
        transform: scale(1.5) translateX(20%);
    }

    .menu-fones__item--portfolio.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(40%);
    }

    .menu-fones__item--vacantion .menu-fones__item-img {
        width: 770px;
        height: 650px;
        transform: translateX(30%);
    }

    .menu-fones__item--services.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%)
    }

    .menu-fones__item--services .menu-fones__item-img {
        width: 660px;
        height: 400px;
        transform: translateY(50%);
    }

    .menu-fones__item--agency .menu-fones__item-img {
        width: 596px;
        height: 709px;
        transform: translateX(60%);
    }

    .menu-fones__item--agency.menu-fones__item--active .menu-fones__item-img {
        transform: translateX(20%);
    }

    .menu-fones__item--contacts .menu-fones__item-img {
        height: 596px;
        width: 709px;
        transform: translateY(-50%) translateX(20%);
    }

    .menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(20%);
    }

    .menu-fones__item--gotovye-resheniya .menu-fones__item-img {
        transform: scale(0.6) translateX(20%);
        width: 660px;
        height: 353px;

        width: 632px;
        height: 472px;
    }

    .menu-fones__item--gotovye-resheniya.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(0%);
    }
}

@media (max-width: 1229px) {
    .menu-fones__item--portfolio .menu-fones__item-img {
        width: 753px;
        height: 398px;
        transform: scale(1.25) translateX(10%);
        transition: 0.5s ease;
    }

    .menu-fones__item--portfolio.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(20%);
    }

    .menu-fones__item--vacantion .menu-fones__item-img {
        width: 577px;
        height: 487px;
        transform: translateX(0%);
    }

    .menu-fones__item--services.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(-10%);
    }

    .menu-fones__item--services .menu-fones__item-img {
        width: 495px;
        height: 300px;
        transform: translateY(50%) translateX(-10%);
    }

    .menu-fones__item--agency .menu-fones__item-img {
        width: 447px;
        height: 531px;
        transform: translateX(25%);
    }

    .menu-fones__item--agency.menu-fones__item--active .menu-fones__item-img {
        transform: translateX(0%);
    }

    .menu-fones__item--contacts .menu-fones__item-img {
        height: 447px;
        width: 531px;
        transform: translateY(-50%) translateX(0%);
    }

    .menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(0%);
    }

    .menu-fones__item--gotovye-resheniya .menu-fones__item-img {
        transform: scale(0.6) translateX(0%);
        width: 495px;
        height: 265px;

        width: 532px;
        height: 396px;
    }

    .menu-fones__item--gotovye-resheniya.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(-20%);
    }
}

@media (max-width: 991px) {
    .menu-fones__item--portfolio .menu-fones__item-img {
        width: 502px;
        height: 264px;
        transform: scale(1.2) translateX(20%);
    }

    .menu-fones__item--portfolio.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(0%);
    }

    .menu-fones__item--vacantion .menu-fones__item-img {
        width: 385px;
        height: 325px;
        transform: translateX(-10%);
    }

    .menu-fones__item--services.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(-30%);
    }

    .menu-fones__item--services .menu-fones__item-img {
        width: 330px;
        height: 200px;
        transform: translateY(50%) translateX(-30%);
    }

    .menu-fones__item--agency .menu-fones__item-img {
        width: 298px;
        height: 354px;
        transform: translateX(20%);
    }

    .menu-fones__item--agency.menu-fones__item--active .menu-fones__item-img {
        transform: translateX(-15%);
    }

    .menu-fones__item--contacts .menu-fones__item-img {
        height: 298px;
        width: 354px;
        transform: translateY(-50%) translateX(-10%);
    }

    .menu-fones__item--contacts.menu-fones__item--active .menu-fones__item-img {
        transform: translateY(0%) translateX(-10%);
    }

    .menu-fones__item--gotovye-resheniya .menu-fones__item-img {
        transform: scale(0.6) translateX(-10%);
        width: 330px;
        height: 177px;
    }

    .menu-fones__item--gotovye-resheniya.menu-fones__item--active .menu-fones__item-img {
        transform: scale(1) translateX(-30%);
    }
}


.menu__logo {
    width: 195px;
    position: relative;
}

.menu__logo:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 24.1%;
}

.menu__logo img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s ease;
}

img.menu__logo-bl {
    opacity: 0;
}

.menu--black img.menu__logo-bl {
    opacity: 1;
}

.menu--black img.menu__logo-wt {
    opacity: 0;
}

.menu__close {
    width: 54px;
    height: 42px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}

.menu__close:before, .menu__close:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/svg/close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s ease;
}

.menu__close:after {
    background-image: url(../images/svg/close-dark.svg);
    opacity: 0;
}

.menu--black .menu__close:after {
    opacity: 1;
}

.menu--black .menu__close:before {
    opacity: 0;
}

.menu__top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
    padding: 0 50px;
}

.menu-top__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    padding: 26px 0;
}

.menu__soc {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    display: block;
}

.menu-soc__item {
    position: relative;
    width: 21px;
    height: 16px;
    display: block;
    margin-top: 30px;
    margin-right: 30px;
}

.menu-soc__item:last-child {
    margin-right: 0;
}

.menu-soc__item:before,
.menu-soc__item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu-soc__item:after {
    opacity: 0;
}

.menu--black .menu-soc__item:before {
    opacity: 0;
}

.menu--black .menu-soc__item:after {
    opacity: 1;
}

.menu-soc__item--be:before {
    background-image: url(../images/svg/be.svg);
}

.menu-soc__item--fb:before {
    background-image: url(../images/svg/fb.svg);
}

.menu-soc__item--in:before {
    background-image: url(../images/svg/in.svg);
}

.menu-soc__item--vk:before {
    background-image: url(../images/svg/vk.svg);
}

.menu-soc__item--tg:before {
    background-image: url(../images/svg/tg.svg);
}

.menu-soc__item--be:after {
    background-image: url(../images/svg/be-dark.svg);
}

.menu-soc__item--fb:after {
    background-image: url(../images/svg/fb-dark.svg);
}

.menu-soc__item--in:after {
    background-image: url(../images/svg/in-dark.svg);
}

.menu-soc__item--vk:after {
    background-image: url(../images/svg/vk-dark.svg);
}

.menu-soc__item--tg:after {
    background-image: url(../images/svg/tg-dark.svg);
}

.menu__btm {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    z-index: 3;
    padding: 0 50px 30px;
    padding-left: calc(50vw - 529px);
}

.menu__btm a {
    color: inherit;
    text-decoration: none;
}

.menu__btm .menu__btm-col--3 {
    margin-left: auto;
}

.menu__btm .menu__btm-col--2 {
    margin-left: 100px;
}

.menu--black .menu__btm {
    color: #000;
}

.menu__main {
    max-width: 1208px;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    z-index: 3;
    padding: 0px 75px;
    position: relative;
}

.menu__inner {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: auto;
    position: relative;
}

.menu__inner > .menu__inner {
    width: 100% !important;
}

.Firefox .menu__inner > .menu__inner {
    width: calc(100% + 17px) !important;
}

.menu__img {
    width: 532px;
    height: calc(100vh - 180px);
    position: relative;
}

.menu-img__item {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu-img__item--active {
    opacity: 1;
}

body.IE .menu-list__item span {
    color: #fff;
}

body.IE .menu .scroll-wrapper > .scroll-content {
    overflow: hidden !important;
}

@media (max-width: 2200px) {
    .menu__logo {
        width: 170px;
    }
}

@media (max-width: 1800px) {
    .menu-list__item span {
        font-size: 60px;
        line-height: 70px;
    }

    .menu-list__item {
        margin-bottom: 32px;
    }

    .menu__img {
        width: 429px;
    }

    .menu__list {
        width: calc(100% - 429px)
    }

}

@media (max-width: 1500px) {
    .menu-list__item span {
        font-size: 50px;
        line-height: 60px;
    }

    .menu-list__item {
        margin-bottom: 25px;
    }

    .menu__img {
        width: 345px;
    }

    .menu__list {
        width: calc(100% - 345px)
    }

    .menu__logo {
        width: 150px;
    }

    .menu__close {
        /*
		width: 37px;
		height: 37px;
		*/
        width: 42px;
        height: 37px;
    }
}

@media (max-height: 800px) and (min-width: 1230px) {
    .menu-list__item span {
        font-size: 40px;
        line-height: 50px;
    }

    .menu-list__item {
        margin-bottom: 15px;
    }

    .menu__logo {
        width: 130px;
    }

    .menu__main {
        max-width: 1095px;
    }

    .menu__btm {
        padding-left: calc(50vw - 472px);
    }
}

@media (max-width: 1229px) {
    .menu-list__item span {
        font-size: 40px;
        line-height: 50px;
    }

    .menu-list__item {
        margin-bottom: 15px;
    }

    .menu__logo {
        width: 130px;
    }

    .menu__main {
        max-width: 1095px;
    }

    .menu__btm {
        padding-left: calc(50vw - 472px);
    }
}

@media (max-width: 1095px) {
    .menu__btm {
        padding-left: 75px;
    }
}

@media (max-width: 991px) {
    .menu-list__item span {
        font-size: 30px;
        line-height: 40px;
    }

    .menu__logo {
        width: 130px;
    }

    .menu__main {
        max-width: 870px;
    }

    .menu__top {
        padding: 0 15px;
    }

    .menu__btm {
        padding-left: calc(50vw - 360px);
    }

    .menu__btm .menu__btm-col--2 {
        margin-left: 50px;
        max-width: 250px;
    }
}

@media (max-width: 870px) {
    .menu__btm {
        padding-left: 75px;
    }
}

@media (max-width: 767px) {
    .menu {
        background: linear-gradient(106.34deg, #FF0038 3.85%, #E8007D 97.86%);
    }

    .menu__img {
        display: none;
    }

    /*
	.menu-list__item span {
		font-size: 25px;
		line-height: 35px;
	}*/
    .menu-list__item span {
        font-size: 40px;
        line-height: 50px;
    }

    .menu__list {
        width: 100%;
        padding: 0;
    }

    .menu-list__item {
        text-align: center;
        margin-bottom: 10px;
    }

    .menu__main {
        padding: 60px 15px 20px;
        height: calc(100vh - 110px);
    }

    .menu-list__item:hover span {
        transform: none;
    }

    .menu__soc {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        width: 100%;
        position: static;
    }

    .menu-soc__item {
        margin-right: 30px;
        margin-top: 0;
    }

    .menu__fones {
        display: none;
    }

    .menu__top {
        padding: 0 15px;
    }

    .menu__btm {
        padding: 0 0px 15px;
        font-size: 14px;
        line-height: 20px;
    }

    .menu__btm-col {
        width: 33.33%;
        padding: 0 15px 10px;
    }

    .menu__btm .menu__btm-col--2 {
        margin-left: 0;
        font-size: 12px;
        line-height: 16px;
    }

    .menu__btm .menu__btm-col--3 {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .menu__logo {
        width: 95px;
    }

    .menu-top__wrap {
        padding: 20px 0;
    }

    .menu__close {
        width: 25px;
        height: 25px;
    }

    .menu__btm-col {
        width: 50%;
    }

    .menu__btm .menu__btm-col--2 {
        width: 100%;
        text-align: center;
        max-width: 100%;
    }

    .menu__btm-col--1 {
        text-align: right;
    }
}

@media (max-width: 450px) {
    .menu__btm {
        padding-bottom: 70px;
    }

    .menu-list__item span {
        font-size: 30px;
        line-height: 40px;
    }

    .menu__btm-col {
        padding: 0 15px 5px;
    }

    .menu__btm-col--2, .menu__btm-col--3 {
        display: none;
    }
}


.inputFile {
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    cursor: pointer;
    text-decoration: none;
}

.IE input[type='file'] {
    color: transparent;
    font-size: 0;
}

.inputFileBlock .preview {
    position: relative;
}

.inputFileBlock .preview.preview--active {
    width: 30px;
    height: 45px;
    display: none;
}

.inputFileBlock .preview img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: auto;
    height: auto;
}

.inputFileBlock .delete {
    width: 16px;
    height: 16px;
    margin-left: 16px;
    display: none;
    cursor: pointer;
    position: relative;
    background-image: url(../images/svg/close-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.inputFileBlock .delete:before,
.inputFileBlock .delete:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .2s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.inputFileBlock .delete:before {
    background-image: url(../images/svg/close-black.svg);
}

.inputFileBlock .delete:hover:before {
    opacity: 1;
}

.inputFileBlock .inputFile__info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.inputFileBlock .inputFile__info.inputFile__info--load {
    padding-left: 0;
}

.inputFileBlock .file-name {
    padding-left: 30px;
    font-size: 12px;
    width: calc(100% - 25px);
    overflow: hidden;
}

.inputFileBlock .file-size {
    display: none;
}

.form-group--file {
    float: left;
    cursor: pointer;
}

.form-group--file .inputFileBlock {
    max-width: 242px;
    position: relative;
}

.form-group--file label {
    display: block;
    padding-left: 30px;
    /*font-size: 0.8rem;*/
    line-height: 1.375rem;
    letter-spacing: 0.05em;
    color: #111111;
    min-height: 1.6rem;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding-top: 0.35rem;
}

.form-group--file label:before,
.form-group--file label:after {
    width: 0.8rem;
    height: 1.375rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    left: 0;
    top: 0.35rem;
    position: absolute;
    transition: .2s;
}

.form-group--file label:before {
    background-image: url(../images/svg/ico-add-file.svg);
    z-index: 1;
}

.form-group--file:hover label {
    text-decoration: underline;
}

.form-group--file:hover label:after {
    /*opacity: 1;*/
}

.form-group--file:hover label:before {
    /*opacity: 0;*/
}

.form-group {
    display: block;
    position: relative;
    padding-top: 16px;
    margin-top: 14px;
}

.form-group--static, .form-group--agree {
    position: static !important;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #42484B;
    position: relative;
    z-index: 1;
    outline: none;
    line-height: 1rem;
    font-size: 0.8rem;
    color: #6C6A6A;
    padding-bottom: 0.5rem;
    display: block;
    border-radius: 0;
}

.form-textarea {
    resize: none;
    height: 1.8rem;
}

.form-up {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #42484B;
    z-index: 0;
    line-height: 1rem;
    font-size: 1rem;
    transition: .3s;
}

.form-up.form-up--active {
    top: -0.2rem;
    font-size: 0.65em;
}


.form-group.error .form-input {
    border-color: #ff0d0d;
}

.form-group--textarea.error .form-textarea {
    border-color: #ff0d0d;
}

.form-textarea-cont {
    width: 100%;
    background-color: transparent;
    color: #6C6A6A;

    position: relative;
    z-index: 1;
    outline: none;
    line-height: 1.3;

}

.form-textarea-cont span {
    word-break: break-word;
    white-space: pre-wrap;
    opacity: 0;
    min-height: 1.6rem;
    display: block;
    padding-bottom: 0.5rem;
    padding-top: 0;
    letter-spacing: 0;
    line-height: 1rem;
    font-size: 0.8rem;
}

.form-textarea-cont textarea {
    position: absolute;
    top: 0;
    left: 0px;
    width: calc(100% + 1px);
    height: 100%;
    z-index: 2;
    overflow: hidden;
    resize: none;
    border: none;
    background: none;
    min-height: 20px;
    letter-spacing: 0;
    border-bottom: 1px solid #42484B;
    padding-top: 0rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .form-group--file label:before,
    .form-group--file label:after {
        width: 1rem
    }
}

@media (max-width: 767px) {
    .form-group--file label {
        padding-top: 0;
        line-height: 1.6rem;
    }

    .form-group--file label:before, .form-group--file label:after {
        top: 0;
    }

}

@media (max-width: 450px) {
    .form-group--file {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }

    .form-group--file label {
        font-size: 1.2rem;
    }

    .form-up {
        font-size: 1.2rem
    }
}


/*
.footer {
	color: #fff;
	font-size: 0.85rem
}
.footer-form {
	background: #000;
	color: #fff;
}
.footer-form__wr {
	padding: 95px 0 78px;
	border-bottom: 1px solid #fff;
}
.footer-form__col {
	width: 50%;
	float: left;
}
.footer-form__col--2 {
	padding-right: 70px;
	float: right;
	max-width: 48%;
}
.footer-form__title {
	color: #fff;
	margin: 0;
}
.footer-form__text {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 55px;
}
.footer-form__form-btn {
	background: none;
	box-shadow: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.75;
	border: none;
	padding: 0;
	padding-right: 105px;
	position: relative;
	outline: none;
}
.footer-form__form-btn:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 95px;
	height: 5px;
	background: url(../images/svg/footer_btn.svg) no-repeat center right;
	transition: 0.3s ease;
}
.footer-form__form-btn:hover:before {
	right: -5px;
}
.footer-form__form-item {
	position: relative;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.footer-form__form-item.error {
	border-color: #ff0d0d;
}
.footer-form__form-text {
	border: none;
	background: none;
	position: relative;
	z-index: 2;
	height: 35px;
	padding: 7px 0;
	line-height: 1.3;
	font-size: 0.8rem;
	width: 100%;
	outline: none;
	padding: 0;
}
.footer-form__form-label {
	position: absolute;
	font-size: 0.8rem;
	line-height: 1.3;
	color: #6C6A6A;
	left: 0;
	top: 7px;
	transition: 0.3s ease;
}
.footer-form__form-text:focus+.footer-form__form-label,
.footer-form__form-label.footer-form__form-label--active {
	font-size: 0.7rem;
	top: -10px;
}
.footer-form__form-text--textarea {
	position: absolute;
	width: 100%;
	height: 100%;
	resize: none;
	letter-spacing: 0;
	overflow: hidden;
	padding: 7px 0 18px;
}
.footer-form__form-block {
	min-height: 35px;
	word-break: break-word;
	white-space: pre-wrap;
	line-height: 1.3;
	font-size: 0.8rem;
	padding: 7px 0;
	opacity: 0;
}
.footer__main {
	background: #000;
	padding: 68px 0 58px;
}
.footer-main__wr {
	display: flex;
}
.footer__main-menu-item {
	width: 50%;
	float: left;
	margin-bottom: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 0.7rem;
	line-height: 35px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
.footer__main-menu-item a {
	text-decoration: none;
	color: #fff;
}
.footer__main-logo {
	width: 156px;
	margin-bottom: 26px;
}
.footer__main-logo img {
	max-width: 100%;
	height: auto !important;
}
.footer__main-address {
	line-height: 1.47;
	font-size: 0.8rem;
}
.footer__main-col--info {
	float: left;
	width: 26.4%;
	padding-right: 100px;
	order: -1;
}
.footer__main-menu {
	float: left;
	width: 460px;
	width: 41.3%;
}
.footer__main-col--partner {
	float: left;
	width: 32.3%;
}
.footer__main-partner-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.25;
	margin-bottom: 0.72em;
}
.footer__main-partner {
	margin-bottom: 48px;
}
.footer__main-partner-list {
	display: flex;
	align-items: center;
	display: -ms-flex;
	-ms-align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer__main-partner-item {
	max-width: 100px;
	padding-right: 40px;
	margin-bottom: 20px;
}
.footer__main-partner-item--arda
{
	max-width: 120px;
}
.footer__main-partner-item img {
	width: 100%;
}
.footer__main-partner-item--bitrix {
	max-width: 200px;
}

.footer__main-tel {
	margin-top: 70px;
    float: left;
    line-height: 1.47;
}
.footer__main-tel__item-link,
.footer__main-tel__item-link a,
.footer__main-mail__item-link,
.footer__main-mail__item-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.footer__main-tel__item-link,
.footer__main-mail__item-link {
    position: relative;
    padding-left: 1.1rem;
}
.footer__main-tel__item-link:before,
.footer__main-mail__item-link:before {
    content: "";
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background: url(../images/svg/footer_tel-white.svg) no-repeat center;
    background-size: contain;
}
.footer__main-mail__item-link:before {
	background: url(../images/svg/footer_mail-white_2.svg) no-repeat center;
    background-size: contain;
}


.footer__bottom-soc {
    width: 70px;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}
.footer__bottom-soc-item {
    height: 1rem;
    background: no-repeat center;
    background-size: contain;
}
.footer__bottom-soc-item--be {
    background-image: url(../images/svg/be-dark.svg);
    width: 1rem;
}
.footer__bottom-soc-item--fb {
    background-image: url(../images/svg/fb-dark.svg);
    width: 0.4rem;
}
.footer__bottom-soc-item--in {
    background-image: url(../images/svg/in-dark.svg);
    width: 0.75rem;
}
.footer__bottom-soc-item--vk {
    background-image: url(../images/svg/vk-dark.svg);
    width: 1rem;
}
.footer__bottom-soc-item--tg {
    background-image: url(../images/svg/tg-dark.svg);
    width: 1rem;
}



.footer__main-mailing-form {
	position: relative;
}
.footer__main-mailing-title {
	font-size: 0.8rem;
	line-height: 1.87;
	margin-bottom: 13px;
}
.footer__main-mailing-text {
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	border-radius: 3px;
	padding: 11px 40px 11px 12px;
	width: 100%;
	background: transparent;
	outline: none;
}
.footer__main-mailing-submit {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
	background: transparent url(../images/svg/footer_mailing.svg) center right 10px;
	background-repeat: no-repeat;
	outline: none;
	border: none;
}
.footer--white .footer-form {
	background: #fff;
}
.footer--white .footer-form__wr {
	padding-top: 25px;
}
.footer--white .footer-form__title,
.footer--white .footer-form__text,
.footer--white .footer-form__form-btn {
	color: #000;
}
.footer--white .footer-form__form-btn:before {
	background: url(../images/svg/footer_btn-black.svg) no-repeat center right;
}
.footer--white .footer-form__form-item {
	border-color: #000;
}
.footer__main-aferta {
	margin-top: 15px;
	font-size: 0.9em;
}

@media (max-width: 2200px) {

	.footer-form__form-btn {
		font-size: 20px;
	}
	.footer-form__text {
		font-size: 20px;
	}
}
@media (max-width: 1800px) {
	.footer-form__form-btn {
		font-size: 20px;
	}
	.footer__main-logo {
		width: 135px;
	}
}
@media (max-width: 1500px) {
	.footer-form__text {
		font-size: 18px;
	}
	.footer-form__form-btn {
		font-size: 20px;
	}
	.footer__main-logo {
		width: 120px;
	}
}
@media (max-width: 1230px) {
	.footer .container {
		padding: 0 15px;
	}
	.footer-form__col--2 {
		padding-right: 0;
		max-width: 500px;
	}
	.footer__main-col--1 {
		padding-right: 80px;
	}
	.footer__main-col--info {
		padding-right: 70px;
	}
	.footer__main-tel__item {
        margin-right: 15px;
    }
    .footer__main-tel__item-city {
        margin-right: 7px;
    }
}
@media (max-width: 991px) {
	.footer-form__col {
		width: 100%;
	}
	.footer-form__title {
		margin-bottom: 30px;
	}
	.footer-form__col--2 {
		max-width: 100%;
	}
	.footer-form__text {
		margin-bottom: 25px;
	}
	.footer__main-col--info {
		width: 35%
	}
	.footer__main-col--partner {
		width: 40%
	}
	.footer__main-menu {
		width: 25%;
	}
	.footer__main-menu-item {
		width: 100%;
		margin-bottom: 10px;
		line-height: 1.5;
	}
	.footer__main-partner-title {
		line-height: 1.2
	}
	.footer-form__text {
		font-size: 22px;
	}
}
@media (max-width: 767px) {
	.footer-main__wr {
		display: block;
	}
	.footer__main-col {
		width: 100%;
	}
	.footer__main-menu {
		margin-bottom: 40px;
	}
	.footer__main-menu-item {
		width: 33.33%;
		margin-bottom: 15px;
	}
	.footer__main-mailing {
		display: none;
	}
	.footer__main-partner {
		margin-bottom: 40px;
	}
	.footer__main-tel__item-link {
		padding-left: 1.5rem;
	}
	.footer__main-tel__item-link:before {
		width: 1rem;
		height: 1rem;
	}
	.footer__main-col--info {
		padding-right: 0px;
	}
	.footer-form__form-item {
		padding-bottom: 0;
	}
}
@media (max-width: 500px) {
	.footer, .footer__main-address {font-size: 1.2em;}

	.footer-form__wr {
		padding: 40px 0;
	}
	.footer-form__text {
		font-size: 18px;
	}
	.footer-form__form-btn:before {
		width: 80px;
	}
	.footer-form__form-btn {
		padding-right: 90px;
		font-size: 16px;
	}
	.footer__main-menu-item {
		width: 50%;
		margin-bottom: 25px;
		font-size: 1.2em;
	}
	.footer__main-address {
		font-size: 1em;
	}


}
.footer__bottom {
	background: #fff;
	padding: 21px 0;
	font-size: 0.85em;
}

.footer__bottom-copyright,
.footer__bottom-politic {
	float: left;
	font-weight: 500;
}
.footer__bottom-politic {
	text-decoration: none;
	color: #000;
	margin-left: 50px;
}
.footer__bottom-politic:hover {
	text-decoration: underline;
}
.footer__bottom-tel {
	float: right;
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	line-height: 25px;
}
.footer__bottom-tel__item {
	display: inline-block;
	margin-right: 40px;
}
.footer__bottom-tel__item:last-child {
	margin-right: 0;
}
.footer__bottom-tel__item-city {
	color: #777777;
	margin-right: 11px;
	display: inline-block;
}
.footer__bottom-tel__item-link,
.footer__bottom-tel__item-link a {
	color: #000;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
}
.footer__bottom-tel__item-link {
	position: relative;
	padding-left: 22px;
}
.footer__bottom-tel__item-link:before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	background: url(../images/svg/footer_tel.svg) no-repeat center;
	background-size: contain;
}

.footer__bottom-line {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.footer__bottom-line:last-child {
	margin: 0
}
.footer__bottom-aferta {
	width: calc(100% - 350px)
}

@media(max-width: 1230px) {
	.footer__bottom .container {
		padding: 0 15px;
	}
	.footer__bottom-tel__item {
		margin-right: 15px;
	}
	.footer__bottom-tel__item-city {
		margin-right: 7px;
	}
	.footer__bottom-tel__item-link {
		padding-left: 20px;
	}
	.footer__bottom-copyright, .footer__bottom-politic {
		font-size: 16px;
	}
	.footer__bottom-soc {
		padding: 3px 0;
	}
}
@media(max-width: 991px) {
	.footer__bottom {
		display: none;
	}
}
*/


footer .bqform_wrap .container {
    padding: 0;
}

footer {
    background-color: #111111;
    padding-top: 30px;
    padding-bottom: 55px;

    width: 100%;
    z-index: 1;
    transition: bottom 0.1s ease;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
}

.footer--front {
    padding-top: 300px;
}

footer.footer--fix {
    position: fixed;
    top: 0;
    bottom: auto;
}

footer.footer--min {
    top: auto;
    bottom: 0;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 87px;
    border-bottom: 1px solid #FFFFFF;
}

.footer_h2, _h2 {
    font-weight: 600;
    font-size: 39px;
    line-height: 55px;
    color: #FFFFFF;
}

.footer__col {
    width: 400px;
    padding-right: 30px;
}

.footer__form {
    max-width: 470px;
}

.footer__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 564px;
}

.footer-form__item {
    position: relative;
    margin-bottom: 15px;
}

.footer-form__item input {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    color: #fff;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
}

.footer-form__item span {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    line-height: 50px;
    font-weight: 400;
    font-size: 16px;

    transition: .3s;
    letter-spacing: 0.05em;

    color: #6C6A6A;
}

.footer-form__item--active span {
    bottom: 22px;
}

.footer__form button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    display: block;
    background-color: transparent;
    padding: 0;
    padding-right: 110px;
    position: relative;
    margin-top: 40px;
    border: none;
}

.footer__form button:before {
    content: '';
    width: 95px;
    height: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/footer-arrow.svg);
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    transition: .3s;
}

.footer__form button:hover:before {
    transform: translateX(10px);
}

.footer__middle {
    display: flex;
    flex-wrap: wrap;
    padding: 63px 0;
}

.footer-logo {
    margin-bottom: 111px;
}

.footer-info-list,
.footer-info-list a {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;

    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.footer-info-list.footer-address {
    font-size: 14px;
    color: #D9D9D9;
    margin-bottom: 8px;
    max-width: 200px;
}

.footer__middle .footer__col:last-child {
    display: flex;
    flex-wrap: wrap;
}

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 264px - 400px);
    padding-right: 30px;
}

.footer-menu__col {
    width: 50%;
    padding-right: 10px;
}

.footer-menu__col a {
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    color: #F1E8E9;
    display: block;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.footer-menu__col a.footer-menu__lvl2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
}

.footer__part {
    width: 264px;
    color: #fff;
}

.footer-part__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.footer-part__item {
    width: 25%;
    margin-bottom: 26px;
}

.footer-part__item img {
    max-width: 75%;
}

.footer-part__item:nth-child(2) img {
    max-height: 17px;
}

.footer-part__item--1c{
    width: 50%;
}
.footer-part__item--1c img {
    max-width: 90%;
}

.footer-part__title {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 50px;
}


.footer__bottom-bq {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-top: 7px;
}

.footer__bottom-bq.footer__bottom-bq--1 {
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.footer__soc {
    display: flex;
    justify-content: flex-end;
}

.footer__soc a {
    width: 20px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px;
}

.footer__soc a:last-child {
    margin-right: 0;
}

.footer__soc a.footer-soc__vk {
    background-image: url(../images/svg/vk.svg);
}

.footer__soc a.footer-soc__be {
    background-image: url(../images/svg/be.svg);
}

.footer__soc a.footer-soc__tg {
    background-image: url(../images/svg/tg.svg);
}

.footer__info {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #FFFFFF;
}

.footer__copy {
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    margin-left: auto;
    color: #FFFFFF;
}

.footer__main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 39px;
    line-height: 55px;
}

.footer-logo.footer-logo--adap {
    display: none;
}

.footer__subcol {
    margin: 0 auto;
}

.footer__subcol a {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
}

.footer__subcol a:first-child {
    margin-bottom: 10px;
}

@media (max-width: 1229px) {
    .footer__col {
        width: 300px
    }

    .footer__text {
        font-size: 20px;
        line-height: 30px;
    }

    .footer__top {
        padding-bottom: 50px
    }

    .footer__menu {

        width: calc(100% - 264px - 300px);
    }

    footer {
        padding-bottom: 40px;
        padding-top: 90px;
    }

    .footer--front {
        padding-top: 200px;
    }
}

@media (max-width: 991px) {
    .footer__part {
        width: auto;
        max-width: 500px;
        padding-top: 45px;
    }

    .footer__menu {
        width: calc(100% - 300px);
    }

    .footer__soc {
        padding-top: 0;
    }

    .footer__copy {
        width: 100%;
        text-align: right
    }

    .footer__middle {
        padding: 40px 0 20px;
    }

    .footer__top {
        padding-bottom: 40px
    }

    .footer-logo {
        margin-bottom: 30px
    }

    .footer--front {
        padding-top: 150px;
    }

    .footer__info {
        width: 100%;
        padding: 10px 0;
    }

    .footer__pol,
    .footer__copy {
        width: 50%
    }

    .footer__subcol {
        width: 50%;
        margin: 0;
    }

    .footer__subcol a {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer__main-title {
        margin-bottom: 15px
    }

    .footer__col,
    .footer__menu {
        width: 100%;
        padding-right: 0;
    }

    .footer-logo.footer-logo--adap {
        display: block;
        margin: 0;
    }

    .footer--front .footer-logo.footer-logo--adap,
    .footer--front .footer__middle .footer-logo,
    .footer__middle .footer-logo {
        display: none
    }

    .footer__text,
    .footer__form {
        max-width: 100%
    }

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

    .footer__col {
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

    }

    .footer__middle .footer__menu {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        width: 100%
    }

    .footer__middle .footer__col {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        padding-top: 30px;
    }

    .footer__middle .footer__part {
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3;
    }

    .footer__soc {
        justify-content: flex-start;
    }

    .footer__text {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 600px) {
    .footer__pol, .footer__copy {
        width: 100%;
        text-align: left;
    }

    .footer__info {
        margin-bottom: 20px
    }

    .footer--front {
        padding-top: 100px;
    }

    .footer__middle .footer__part {
        padding-top: 30px;
    }

    .footer__subcol a {
        margin-bottom: 10px;
    }
}


.footer-form {
    background: #111111;
    color: #fff;
}

.footer-form__wr {
    padding: 95px 0 78px;
    border-bottom: 1px solid #fff;
}

.footer-form__col {
    width: 50%;
    float: left;
}

.footer-form__col--2 {
    padding-right: 70px;
    float: right;
    max-width: 48%;
}

.footer-form__title {
    color: #fff;
    margin: 0;
}

.footer-form__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 55px;
}

.footer-form__form-btn {
    background: none;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.75;
    border: none;
    padding: 0;
    padding-right: 105px;
    position: relative;
    outline: none;
}

.footer-form__form-btn:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 95px;
    height: 5px;
    background: url(../images/svg/footer_btn.svg) no-repeat center right;
    transition: 0.3s ease;
}

.footer-form__form-btn:hover:before {
    right: -5px;
}

.footer-form__form-item {
    position: relative;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-form__form-item.error {
    border-color: #ff0d0d;
}

.footer-form__form-text {
    border: none;
    background: none;
    position: relative;
    z-index: 2;
    height: 35px;
    padding: 7px 0;
    line-height: 1.3;
    font-size: 0.8rem;
    width: 100%;
    outline: none;
    padding: 0;
}

.footer-form__form-label {
    position: absolute;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #6C6A6A;
    left: 0;
    top: 7px;
    transition: 0.3s ease;
}

.footer-form__form-text:focus + .footer-form__form-label,
.footer-form__form-label.footer-form__form-label--active {
    font-size: 0.7rem;
    top: -10px;
}

.footer-form__form-text--textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    resize: none;
    letter-spacing: 0;
    overflow: hidden;
    padding: 7px 0 18px;
}

.footer-form__form-block {
    min-height: 35px;
    word-break: break-word;
    white-space: pre-wrap;
    line-height: 1.3;
    font-size: 0.8rem;
    padding: 7px 0;
    opacity: 0;
}

@media (max-width: 2200px) {
    .footer-form__form-btn {
        font-size: 20px;
    }

    .footer-form__text {
        font-size: 20px;
    }
}

@media (max-width: 1800px) {
    .footer-form__form-btn {
        font-size: 20px;
    }
}

@media (max-width: 1500px) {
    .footer-form__text {
        font-size: 18px;
    }

    .footer-form__form-btn {
        font-size: 20px;
    }
}

@media (max-width: 1230px) {
    .footer-form__col--2 {
        padding-right: 0;
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .footer-form__col {
        width: 100%;
    }

    .footer-form__title {
        margin-bottom: 30px;
    }

    .footer-form__col--2 {
        max-width: 100%;
    }

    .footer-form__text {
        margin-bottom: 25px;
    }

    .footer-form__text {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .footer-form__form-item {
        padding-bottom: 0;
    }
}

@media (max-width: 500px) {
    .footer-form__wr {
        padding: 40px 0;
    }

    .footer-form__text {
        font-size: 18px;
    }

    .footer-form__form-btn:before {
        width: 80px;
    }

    .footer-form__form-btn {
        padding-right: 90px;
        font-size: 16px;
    }
}


.wrapper .inner {
    padding-bottom: 1px;
}

.content-bq {
    padding-bottom: 1px;
    position: relative;
    z-index: 10;
    background-color: #fff;
    /*padding-top: 190px;*/
}

body:not(.body--loaded) .content-bq {
    margin-bottom: 0;
}


.table-wrap {
    position: relative;
}

.tab-scroll-btn {
    width: 38px;
    height: 100%;
    opacity: .8;
    position: absolute;
    top: 0;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.tab-scroll-btn--right {
    right: 0;
    background-image: linear-gradient(270deg, #FFFFFF 42.95%, rgba(255, 255, 255, 0) 115.48%);
    display: none;
}

.tab-scroll-btn--right:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/svg/ico-arr-filter-2.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

.tab-scroll-btn--left {
    left: 0;
    background-image: linear-gradient(270deg, #FFFFFF 42.95%, rgba(255, 255, 255, 0) 115.48%);
    transform: scale(-1);
    display: none;
}

.tab-scroll-btn--left:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/svg/ico-arr-filter-2.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

.tab-scroll-btn--right-active .tab-scroll-btn--right {
    display: block;
}

.tab-scroll-btn--left-active .tab-scroll-btn--left {
    display: block;
}

#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background-image: url(../images/svg/ico-up.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 100;
    cursor: pointer;
}

@media (max-width: 1300px) {
    #toTop {
        width: 38px;
        height: 38px;
        right: 15px;
        bottom: 15px;
    }
}


.swiper-container-bq .swiper-pagination {
    position: static;
    margin-top: 39px;

    display: -ms-flex;
    display: flex;
}

.swiper-container-bq--pg-center .swiper-pagination {
    padding-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    -ms-justify-content: center;
}

.swiper-container-bq.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin-right: 13px;
    margin-left: 0;
    background-color: transparent;
    border: 1px solid #000;
    opacity: 1;
    outline: none;
}

.swiper-container-bq.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-container-bq.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active:focus {
    background-color: #FD0140;
    border: 1px solid #FD0140;
}

/*
.swiper-container-bq .swiper-pagination-lock {
	display: none;
}
*/
.swiper-slider__item {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 500px) {
    .swiper-container-bq .swiper-pagination {
        margin-top: 20px;
    }
}


/*for text*/
.line {
    display: block;
    overflow: hidden;
}

/**/
.graph {
    width: 100%;
    position: relative;
}

.graph:before {
    content: '';
    display: block;
    padding-top: 60%;
}

.graph,
.graph * {
    font-size: 16px;
    line-height: normal;
}

.graph > div {
    position: absolute !important;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .graph:before {
        padding-top: 80%;
    }

    .graph, .graph * {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .graph:before {
        display: none;
    }

    .graph > div {
        min-height: 360px;
        position: static !important;
    }

    .graph, .graph * {
        font-size: 10px;
    }
}


.clients-logo__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -45px;
    margin-right: -45px;
    width: calc(100% + 90px);
    justify-content: center;
}

.clients-logo__item {
    display: block;
    width: calc(16.66% - 90px);
    position: relative;
    margin: 0 45px 50px;
    display: block;
    filter: grayscale(1);
    opacity: .7;
    transition: .5s;
}

.clients-logo__item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s, transform 0.8s;
    transform: scale(0);
    cursor: default;
}

.clients-logo__item-link.click {
    cursor: pointer;
}

.clients-logo__item-link.active {
    z-index: 2;
    transform: scale(1);
    opacity: 1;
}


.clients-logo__item:before {
    padding-top: 100%;
    content: '';
    display: block;
}

.clients-logo__item img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100% - 60px);
    margin: auto;
    z-index: 2;
}

.clients-logo__item:hover {
    filter: inherit;
    opacity: 1;
    transform: scale(1.2)
}

.clients-logo .clients-logo__item img {
    display: none;
}

.clients-logo.anim-block--active .clients-logo__item img {
    display: block;
}

.clients-logo__all {
    text-align: center;
    padding-top: 100px;

}

.clients-logo__all a {
    display: inline-block;
    padding-bottom: 3px;
    position: relative;
}

.clients-logo__garage {
    display: none;
}


@media (max-width: 2200px) {

    .clients-logo__all {
        padding-top: 60px;
    }

}

@media (max-width: 1800px) {
    .clients-logo__item {
        width: calc(16.66% - 60px);
        margin: 0 30px 50px;
    }

    .clients-logo__list {
        margin-left: -30px;
        margin-right: -30px;
        width: calc(100% + 60px);
    }
}

@media (max-width: 1229px) {
    .clients-logo__all {
        padding-top: 50px;
    }

    .clients-logo__item {
        width: calc(20% - 60px);
        margin: 0 30px 30px;
    }

    .clients-logo__item:nth-child(n + 11) {
        display: none;
    }
}

@media (max-width: 991px) {
    .clients-logo__item {
        width: calc(25% - 60px);
        margin: 0 30px 20px;
    }

    .clients-logo__item:hover {
        filter: inherit;
        opacity: 1;
        transform: scale(1)
    }
}

@media (max-width: 600px) {
    .clients-logo__item {
        width: calc(25% - 30px);
        margin: 0 15px 10px;
    }

    .clients-logo__list {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px)
    }

}

@media (max-width: 500px) {
    .clients-logo__item {
        margin: 0 15px 0px;
        width: calc(33.33% - 30px);
    }

    .clients-logo__all {
        padding-top: 35px;
    }

    .clients-logo__item:nth-child(n + 10) {
        display: none;
    }

    .clients-logo__item img {
        max-height: calc(100% - 30px);
    }
}

@media (max-width: 450px) {


}


.tags {
    text-align: center;
}

.tags__item {
    overflow: hidden;
    color: #5551FF;
    border-radius: 1.53em;
    border: 2px solid #5551FF;
    margin-bottom: 1.1em;
    margin-right: 0.9em;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.53;
    padding: 0.6em 1.1em;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.tags__item:focus {
    outline: none;
}

.tags__item:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0px;
    right: 0;
    z-index: -1;
    background-color: #5551FF;
    border-radius: 1.53em;
    transition: all 0.3s ease;
}

.tags__item:hover,
.tags__item:focus,
.tags__item.active,
.services-det-head-tags__item:focus {
    color: #fff;
    border: 2px solid transparent;
}

.tags__item:focus:after,
.tags__item:hover:after,
.tags__item.active:after {
    left: 0;
    width: 100%;
}

.tags__item:last-child {
    margin-right: 0;
}

.tags__item--active {
    background: #5551FF;
    color: #fff;
}

@media (max-width: 991px) {
    .tags__item {
        margin-bottom: 0.9em;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .tags__item {
        font-size: 16px;
        margin-bottom: 0.5em;
        margin-right: 0.5em;
    }
}

@media (max-width: 500px) {
}


.variable__comp-slider .swiper-container {
    overflow: visible;
}

.variable__comp-slider .swiper-slide {
    width: auto;
}

.variable-comp-slider__container {
    height: 500px;
    overflow: hidden;
}

.variable-comp-slider__container a {
    display: block;
    height: 100%;
}

.variable-comp-slider__container img {
    display: block;
    height: 100%;
}

.variable-comp-slider__item {
    margin-right: 30px;
}

.variable-comp-slider-item__text {
    max-width: 360px;
    margin-top: 25px;
    font-size: 0.7em;
    line-height: 1.22;
    letter-spacing: 0.05em;
    color: #838282;
}

@media (max-width: 1500px) {
    .variable-comp-slider__container {
        height: 450px;
    }

    .variable-comp-slider-item__text {
        font-size: 0.8em;
        max-width: 324px;
    }
}

@media (max-width: 991px) {
    .variable-comp-slider__container {
        height: 400px;

    }
}

@media (max-width: 767px) {
    .variable-comp-slider__container {
        height: 350px;
    }

    .variable-comp-slider__item {
        margin-right: 15px;
    }
}

@media (max-width: 600px) {
    .variable-comp-slider__container {
        height: 300px;
    }

    .variable-comp-slider-item__text {
        max-height: calc(100vw - 30px)
    }
}


/* user consent */
.bqform.with-user-consent {
    position: relative;
}

.user-consent__label {
    float: left;
    margin: 14px 0 20px;
    width: 100%;
    font-size: 0.5rem;
    text-align: left;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.user-consent__label-text {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 0 0 0 5px;
    font-size: 0.7rem;
    text-decoration: underline;
}

.user-consent__checkbox-icon {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.user-consent__checkbox:checked + .user-consent__checkbox-icon {
    background: #000 url(../images/tick.svg) no-repeat center;
}

.user-consent__checkbox {
    -webkit-appearance: checkbox;
    display: block;
    float: left;
    opacity: 0; /* position: absolute; top: 0; left: 0; */
    height: 0;
    width: 0;
    visibility: hidden;
}

.user-consent__text {
    display: block;
    position: absolute;
    top: 100%;
    bottom: 0;
    right: 0;
    lefT: 0;
    margin: auto;
    background: #f9f9f9;
    z-index: 100;
    opacity: 0;
    overflow: hidden;
    text-align: left;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.user-consent__text.active {
    display: block;
    bottom: 0px;
    opacity: 1;
    top: 0;
}

.user-consent__title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.user-consent__desc {
    overflow: auto;
    position: absolute;
    top: 0px;
    bottom: 60px;
    width: 100%;
    background: #f9f9f9;
    z-index: 100;
    display: block;
    font-size: 0.65rem;
    padding: 0.75rem;
}

.user-consent__btns {
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 40px;
    text-align: center;
}

.user-consent__btn {
    min-width: 0;
    margin: 0 15px;
    text-align: center;
    font-size: 14px;
}

.user-consent__btn--cancel {
    border-color: #000;
    font-size: 13px;
}

.user-consent__btn--cancel:after {
    background: #000;
}

.user-consent__error {
    color: red;
}

.user-consent__label-text a {
    color: #FD0140;
}

.user-consent.error .user-consent__checkbox-icon {
    border-color: #ff0d0d;
}

.user-consent.error .user-consent__label-text {
    color: #ff0d0d;
}

.user-consent.error .user-consent__checkbox:checked ~ .user-consent__label-text {
    color: #000;
}

.user-consent.error .user-consent__checkbox:checked + .user-consent__checkbox-icon {
    border-color: #000;
}

.form-group--agree .user-consent__label {
    margin: 0;
}

.footer-form__form {
    position: relative;
}

.footer-form__form-item--agree {
    position: static;
}

.footer-form__form-item--agree .user-consent__checkbox-icon {
    border: 1px solid #fff;
}

.footer-form__form-item--agree .user-consent.error .user-consent__checkbox:checked + .user-consent__checkbox-icon {
    border-color: #fff;
}

.footer-form__form-item--agree .user-consent.error .user-consent__checkbox:checked ~ .user-consent__label-text {
    color: #fff;
}

.footer-form__form .user-consent__desc {
    color: #000;
}

@media (max-width: 1229px) {
    .user-consent__label-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .user-consent__label-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .user-consent__btn {
        font-size: 10px;
        margin: 0 7px;
    }
}

.section-block__link a {
    display: inline-block;
    position: relative;
    padding-right: 45px;
    transition: color 0.3s;
}

.section-block__link a:before {
    content: '';
    position: absolute;
    right: 0;
    width: 30px;
    height: 1px;
    background-color: #000000;
    top: 50%;
    transition: width 0.7s, right 0.7s, background 0.3s;
}

.section-block__link a:after {
    content: '';
    right: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(-45deg);
    top: calc(50% - 3px);
    transition: right 0.7s, border 0.3s;
}

.section-block__link a:hover {
    text-decoration: none !important;
    color: #FD0140;
}

.section-block__link a:hover:before {
    background-color: #FD0140;
    width: 45px;
    right: -15px;
}

.section-block__link a:hover:after {
    right: -15px;
    border-color: #FD0140;
}


.main-news {
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s ease;
}

.main-news.anim-block--down {
    opacity: 1;
    transform: translateY(0px);
    transition: none;
}

.anim-block--active.main-news {
    opacity: 1;
    transform: translateY(0px);
}

.main-news .h2 {
    margin-top: 0;
}

.main-news__img {
    height: 184px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 0;
    opacity: 0;
    transition: 1s;
    margin-left: -40px;
    position: relative;
}

.main-news__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.anim-block.anim-block--active .main-news__img img {
    display: block;
}

.main-news__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    padding-bottom: 21px;
    margin-bottom: 28px;
    border-bottom: 1px solid #8C8383;
    text-decoration: none;
}

.main-news__item:hover .main-news__img {
    width: 200px;
    opacity: 1;
}

.main-news__info {
    padding-left: 46px;
    max-width: calc(100% - 250px);
}

.main-news__title {
    font-style: normal;
    color: #000;
    margin-bottom: 12px;
}

.main-news__date {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
    color: #A7A7A7;
}

.main-news__wrap {
    position: relative;
}

.main-news__all {
    position: absolute;
    right: 0;
    top: 32px;
}

@media (max-width: 1800px) {
    .main-news__item {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .main-news__img {
        height: 165px;
    }

    .main-news__item:hover .main-news__img {
        width: 180px;
    }

    .main-news__all {
        top: 21px;
    }
}

@media (max-width: 1500px) {
    .main-news__item {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .main-news__img {
        height: 150px;
    }

    .main-news__item:hover .main-news__img {
        width: 163px;
    }
}

@media (max-width: 1229px) {
    .main-news__img {
        height: 128px;
    }

    .main-news__item:hover .main-news__img {
        width: 140px;
    }

    .main-news__all {
        top: 15px;
    }
}

@media (max-width: 991px) {

    .main-news__info {
        max-width: calc(100% - 230px);
        padding-left: 25px;
    }

    .main-news__title {
        max-width: 100%;
    }

    .main-news__item .main-news__img {
        width: 110px;
        height: 100px;
        opacity: 1;
    }

    .main-news__item:hover .main-news__img {
        width: 110px;
    }

    .main-news__img {
        margin-left: 0;
    }

    .main-news__all {
        top: 3px;
    }
}


@media (max-width: 600px) {
    .main-news__all {
        display: none;
    }

    .main-news__info {
        max-width: calc(100% - 110px);
    }
}

@media (max-width: 450px) {
    .main-news__img {
        display: none;
    }

    .main-news__info {
        max-width: 100%;
        padding-left: 0;
    }
}


.img-big__wr,
.img-big__img {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-big__left,
.img-big__right {
    position: absolute;
    top: -10px;
    width: 122px;
    height: calc(100% + 20px);
    background: #fff;
    transition: .75s ease;
    z-index: 2;
}

.img-big.aos-animate .img-big__left,
.img-big.aos-animate .img-big__right {
    width: 0;
}


.img-big__left {
    left: -5px;
}

.img-big__right {
    right: -5px;
}

@media (max-width: 1399px) {
    .img-big__left,
    .img-big__right {
        width: 80px
    }
}

@media (max-width: 1229px) {
    .img-big__left,
    .img-big__right {
        width: 60px
    }
}

@media (max-width: 991px) {
    .img-big__left,
    .img-big__right {
        width: 40px
    }
}

@media (max-width: 767px) {
    .img-big__left,
    .img-big__right {
        width: 0px
    }
}


a.rollup > span,
.rollup > span {
    display: block;
    position: relative;
    overflow: hidden;
}

a.rollup > span > span,
.rollup > span > span {
    display: block;
    transform-origin: left center;
}

a.rollup:focus > span > span,
.rollup:focus > span > span,
a.rollup:hover > span > span,
.rollup:hover > span > span {

    transform: translateY(-130%);
    transition: transform .6s;

}

a.rollup > span > span:after,
.rollup > span > span:after {
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 130%;
}

a.rollup:focus > span > span:after,
.rollup:focus > span > span:after,
a.rollup:hover > span > span:after,
.rollup:hover > span > span:after {
    transition: transform .6s;
}

a.rollup:hover,
.rollup:hover {
    color: #FD0140
}



