.socseti a div {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    background-repeat: no-repeat;
    margin: 0 10px 0 0;
}

.vk {
    background-image: url(/images/vk_black.svg);
}

.vk:hover {
    background-image: url(/images/vk_color.svg);
}

.insta {
    background-image: url(/images/insta_black.svg);
}

.insta:hover {
    background-image: url(/images/insta_color.svg);
}

.facebook {
    background-image: url(/images/facebook_black.svg);
}

.facebook:hover {
    background-image: url(/images/facebook_color.svg);
}

.twitter {
    background-image: url(/images/twitter_black.svg);
}

.twitter:hover {
    background-image: url(/images/twitter_color.svg);
}

.youtube {
    background-image: url(/images/youtube_black.svg);
}

.youtube:hover {
    background-image: url(/images/youtube_color.svg);
}

.telegram {
    background-image: url(/images/telegram_black.svg);
}

.telegram:hover {
    background-image: url(/images/telegram_color.svg);
}

.skype {
	background-image: url(/images/skype_black.svg);
}

.skype:hover {
	background-image: url(/images/skype_color.svg);
}

.max {
	background-image: url(/images/max_black.svg);
}

.max:hover {
	background-image: url(/images/max_color.svg);
}

/* Класс для увеличения картинки */

.zoom-img {}


/* Класс для галлереи */

.gallery {}


/* Класс для формы */

.form-submit-toggle {}


/* Класс для кнопки заказать звонок */

.callback-toggle {}


/******** Magnific-Popup *********/

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}


/******* Image Cover ********/

.img-cover {
    background-size: cover;
    background-position: center;
}

.img-cover_inited>img {
    visibility: hidden;
}


/**********************************/

.main {
    padding: 145px 510px 90px 0;
}

.component {
    width: 100%;
}

.left,
.right {
    width: 30%;
}

.insidepage .contentBlock {
    padding: 30px 0 90px;
}


/* Пагинация */

.pagination>ul {
    margin-top: 15px;
    display: flex;
    list-style: none;
    margin-bottom: 5px;
}

.pagination>ul li {
    margin-right: 20px;
}

.pagination>ul li a {
    text-decoration: none;
    font-weight: 600;
}


/* Модалка */

.wrapLabel {
    position: relative;
    margin-bottom: 0;
}

.wrapLabel span {
    font-weight: 300;
    padding-left: 25px;
    font-size: 12px;
    display: block;
    position: relative;
}

.wrapLabel span a {
    color: #ef5e07;
}

.wrapLabel span:before {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    content: '';
    background: #fff;
    border: 1px solid #000;
    border-radius: 0px;
}

.wrapLabel span:after {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 4px;
    top: calc(50% - 4px);
    content: '';
    background: #dd6a1c;
    /*border-radius: 2px;*/
    opacity: 0;
}

.wrapLabel input:checked+span:after {
    opacity: 1;
}

.wrapLabel input {
    width: 10px !important;
    height: 10px !important;
    left: 0 !important;
    top: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
}

html.lock {
    overflow: hidden;
}


/*  */

@font-face {
    font-family: 'Buyan';
    src: url(/fonts/BuyanThin.ttf) format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'Buyan';
    src: url(/fonts/BuyanRegular.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Buyan';
    src: url(/fonts/BuyanBold.ttf) format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Light.ttf) format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Regular.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Bold.ttf) format('truetype');
    font-weight: 700;
}

:root {
    --colorHead: #ff0000;
}

body {
    color: #000;
    font-size: 18px;
    font-family: 'Buyan';
    font-weight: 400;
    line-height: 1.2;
}

body p {
    margin-top: 0;
    margin-bottom: 15px;
}

.wrapHead {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.h1,
h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    position: relative;
    text-align: center;
    background-color: #fff;
    padding: 0 50px;
    z-index: 1;
}

.wrapHead::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--colorHead);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
}

.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    min-width: 370px;
}

.wrapLabel {
    position: relative;
    margin-bottom: 0;
}

.wrapLabel span {
    font-weight: 200;
    padding-left: 25px;
    font-size: 13px;
    display: block;
    position: relative;
}

.wrapLabel span a {
    color: #ef5e07;
}

.wrapLabel span:before {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    content: '';
    background: #fff;
    border: 1px solid #a5a5a5;
    border-radius: 3px;
}

.wrapLabel span:after {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 4px;
    top: calc(50% - 4px);
    content: '';
    background: #dd6a1c;
    border-radius: 2px;
    opacity: 0;
}

.wrapLabel input:checked+span:after {
    opacity: 1;
}

.wrapLabel input {
    width: 10px !important;
    height: 10px !important;
    left: 0 !important;
    top: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
}

.flexSA {
    display: flex;
    justify-content: space-around;
}

.flexSB {
    display: flex;
    justify-content: space-between;
}

.flexCenter {
    display: flex;
    justify-content: center;
}

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

.flexW {
    display: flex;
    flex-wrap: wrap;
}

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

.flexStart {
    display: flex;
    justify-content: flex-start;
}

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

*:before,
*:after {
    line-height: 0;
}

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

.imgW img {
    max-width: 100%;
    max-height: 100%;
}

.darkImg {
    display: none;
}


/* header */

.wrapHeader {
    position: relative;
}

.leftHeader {
    position: fixed;
    padding: 0 45px 0 60px;
    top: 0;
    left: 0;
    width: calc(100% - 510px);
    height: 145px;
    background: #fff;
    z-index: 5;
}

.insidepage .leftHeader {
    box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 6%);
}

.menuTop ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuTop a {
    font-size: 19px;
    color: #000;
    text-decoration: none;
    display: block;
    padding: 0 30px;
}

.leftHeader .mail img {
    margin-right: 10px;
}

.leftHeader .mail a {
    font-size: 19px;
    color: #000;
    text-decoration: underline;
}

.rightHeader {
    position: fixed;
    top: 0;
    right: 0;
    width: 510px;
    z-index: 1043;
    transition: all 0.4s;
}

.mainButtRight {
    display: none;
}

.wrapTop {
    background: url(/images/backRight.jpg) repeat-y top left;
}

.topBlock {
    height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.topBlock a {
    font-size: 30px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
}

.topBlock img {
    margin-right: 10px;
}

.topBlock .socBlock a:last-child img {
    margin-right: 0;
}

.wrapTop .name {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    background: var(--colorHead);
    font-size: 25px;
    margin-left: 16px;
    letter-spacing: 1px;
}

.wrapBottomBlock {
    height: calc(100vh - 200px);
    background: url(/images/backRight.jpg) repeat-y top left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}

.sendBlock {
    padding-left: 18px;
    height: calc(100% - 295px);
    /* overflow: auto; */
    position: relative;
    z-index: 3;
}

.sendBlock .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: var(--colorHead);
}

.sendBlock .menuRight:nth-child(1),
.sendBlock .menuRight:nth-child(3) {
    display: none;
}

.menuRight {
    padding: 20px 45px 50px;
    border-bottom: 1px dashed #acacac;
}

.menuRight ul {
    list-style: none;
}

.menuRight a {
    color: #000;
    font-size: 30px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 15px;
}

.menuRight li:last-child a {
    margin-bottom: 0;
}

.menuRight a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--colorHead);
}

.menuRight a::after {
    position: absolute;
    content: '»';
    color: #000;
    font-size: 30px;
    top: 10px;
    left: calc(100% + 10px);
}

.wrapBotBlock {
    padding-left: 18px;
    height: 295px;
    background: url(/images/backRightBottom.jpg) no-repeat bottom left;
    position: relative;
    z-index: 0;
}

.wrapBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.btnStyle {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    border-bottom: 1px solid #c55b5a;
    border-radius: 5px;
    background: linear-gradient(to top, #af2322, #e62e2e);
    color: #fff;
    font-size: 25px;
    padding: 0 20px;
    height: 65px;
    box-shadow: 0 4px 0 0 #691818;
    white-space: nowrap;
    transition: .2s;
}

.btnStyle:hover {
    box-shadow: 0 2px 0 0 #691818;
    margin-top: 2px;
}

.btnStyle .imgW {
    margin-right: 15px;
}

.botBlock {
    text-align: right;
    align-items: flex-end;
    padding: 0 50px 80px 0;
    height: 100%;
}

.botBlock .txt {
    font-size: 12px;
}

.botBlock a {
    font-size: 12px;
    color: var(--colorHead);
    text-decoration: underline;
}


/* End header */


/* wrapContentBlock */

.bannerTop {
    padding: 145px 0 90px;
}

.bannerMain {
    display: none;
}

.bannerTop .imgW {
    position: relative;
    height: calc(100vh - 235px);
    width: calc(100% - 510px);
}

.bannerTop .imgW img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
}

.bannerTop .imgW .wrapSvg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 100%;
}

.bannerTop .imgW .wrapSvg svg {
    width: 100%;
    height: 100%;
}

.bannerTop #pulse {
    animation: pulse 1.5s infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.bannerTop #pulse *{
    transition:all 0.4s;
}
.bannerTop .st4 {
    fill: #ac2826;
}

.bannerTop .st3 {
    stroke: #ac2826;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}
.bannerTop #pulse:hover .st3{
    stroke: #000;
}
.bannerTop #pulse:hover .st4{
    fill:#000
}
/* End wrapContentBlock */


/* footer */

.wrapFooter {
    padding: 0 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 510px);
    background: #e5e5e5;
    height: 90px;
    z-index: 6;
}

.wrapMobLine {
    display: none;
}

.insidepage .wrapFooter {
    box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 6%);
}

.wrapFoot {
    height: 100%;
}

.wrapFoot .name {
    font-size: 22px;
    font-weight: 700;
    margin-right: 50px;
}

.menuBottom ul {
    display: flex;
    justify-content: space-between;
}

.menuBottom ul a {
    display: block;
    color: #000;
    text-decoration: underline;
    font-size: 22px;
    margin-right: 50px;
}

.menuBottom ul li:last-child a {
    margin-right: 0;
}


/* End footer */

.white-popup {
    background: #fff;
    width: 100%;
    width: 1200px;
    height: auto;
    max-height: 650px;
    margin: auto 600px auto auto;
    position: relative;
    padding: 40px 25px 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0);
}

.modal-text {
    overflow: auto;
    max-height: 53vh;
}

.modal-text * {
    font-family: 'Roboto';
    font-weight: 300;
}

.modal-text strong {
    font-weight: 700;
}

.modal-text ul {
    list-style: disc;
    list-style-position: outside;
    margin-bottom: 20px;
    margin-left: 20px;
}

.modal-text ul li {
    font-size: 16px;
}

.modal-text li::marker {
    color: var(--colorHead);
}

.wrapGrid2 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.wrapGrid3 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.wrapGrid4 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.nucGrid2.imgW,
.nucGrid3.imgW,
.nucGird4.imgW {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nucGrid2 img,
.nucGrid3 img,
.nucGrid4 img {
    /* object-fit: cover;
    width: 100%;
    height: 100%; */
    height: auto;
}

.wrapPart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

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

.wrapPart img {
    max-height: 55px;
}

.wrapAC {
    margin-bottom: 60px;
}

.nucAdv {
    margin-bottom: 25px;
}

.nucAdv .imgW {
    width: 47px;
    margin-right: 20px;
}

.nucAdv .name {
    font-size: 20px;
    font-family: 'Buyan';
    font-weight: 400;
}

.wrapAC .txtBlock {
    padding-left: 55px;
    border-left: 1px solid rgba(0, 0, 0, 50%);
    width: calc(100% - 400px);
}

.wrapAC .txtBlock ul:last-child {
    margin-bottom: 0;
}

#form-popup strong,
#advertisement strong,
#pavilon strong {
    font-family: 'Buyan';
    font-weight: 700;
}

#izgotovlenie .nucGrid2 {
    display: flex;
    justify-content: flex-start;
}

#izgotovlenie .nucGrid2 .imgW {
    align-items: flex-start;
    width: 120px;
    padding-right: 20px;
}

#izgotovlenie .nucGrid2 .txtBlock {
    width: calc(100% - 120px);
}

#izgotovlenie .nucGrid2 .txtBlock .title,
.wrapDesign .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.wrapDesign .imgW {
    align-items: flex-start;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 120px;
}

.wrapDesign .txtBlock {
    width: calc(100% - 75px);
}


/* --- Media styles --- */


/* container */

@media screen and (min-width:1300px) {
    .container {
        width: 900px;
    }
}

@media screen and (min-width:1400px) {
    .container {
        width: 930px;
    }
}

@media screen and (min-width:1500px) {
    .container {
        width: 960px;
    }
}

@media screen and (min-width:1600px) {
    .container {
        width: 1060px;
    }
}

@media screen and (min-width:1700px) {
    .container {
        width: 1160px;
    }
}

@media screen and (min-width:1800px) {
    .container {
        width: 1205px;
    }
}

@media screen and (min-width:1900px) {
    .container {
        width: 1320px;
    }
}


/* End container */

@media screen and (max-height:900px) {
    .topBlock {
        height: 125px;
    }
    .wrapTop .name {
        font-size: 23px;
    }
    .wrapBottomBlock {
        height: calc(100vh - 185px);
    }
    .menuRight {
        padding: 20px 45px 20px;
    }
    .menuRight a {
        font-size: 25px;
    }
    .menuRight a::after {
        font-size: 25px;
    }
    .menuRight a::before {
        width: 7px;
        height: 7px;
    }
    .wrapBtn {
        margin-top: 30px;
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-height:700px) {
    .leftHeader {
        height: 75px;
        width: calc(100% - 450px);
    }
    .wrapFooter {
        height: 50px;
        width: calc(100% - 450px);
    }
    .bannerTop {
        padding: 75px 0 50px;
    }
    .bannerTop .imgW {
        height: calc(100vh - 125px);
        width: calc(100% - 450px);
    }
    .rightHeader {
        width: 450px;
    }
    .topBlock {
        height: 125px;
    }
    .wrapTop .name {
        font-size: 23px;
    }
    .wrapBottomBlock {
        height: calc(100vh - 160px);
    }
    .menuRight {
        padding: 0 45px 20px;
    }
    .menuRight a {
        font-size: 25px;
    }
    .menuRight a::before {
        width: 7px;
        height: 7px;
    }
    .main {
        padding-right: 450px;
    }
    .wrapBtn {
        margin-top: 15px;
    }
    .btnStyle {
        font-size: 20px;
        padding: 5px 20px;
        height: 45px;
    }
    .btnStyle svg {
        width: 30px;
    }
}

@media screen and (max-height:600px) {
    .leftHeader {
        width: calc(100% - 380px);
    }
    .wrapFooter {
        width: calc(100% - 380px);
    }
    .bannerTop .imgW {
        width: calc(100% - 380px);
    }
    .rightHeader {
        width: 380px;
    }
    .topBlock {
        height: 125px;
    }
    .topBlock a {
        font-size: 26px;
    }
    .topBlock img {
        max-width: 20px;
    }
    .topBlock .socBlock img {
        max-width: 30px;
    }
    .wrapTop .name {
        height: 50px;
        font-size: 20px;
    }
    .menuRight {
        padding: 0 30px 20px;
    }
    .menuRight a {
        font-size: 21px;
    }
    .botBlock a {
        max-width: 190px;
    }
    .main {
        padding: 75px 380px 50px 0;
    }
}

@media screen and (max-width:1599),
screen and (max-height: 630px) {
    .menuRight a {
        font-size: 21px;
    }
}

@media screen and (min-width:1921px) {
    .leftHeader {
        left: calc((100% - 1920px) / 2);
        width: calc(1920px - 510px);
    }
    .rightHeader {
        right: calc((100% - 1920px) / 2);
    }
    .wrapFooter {
        left: calc((100% - 1920px) / 2);
        width: calc(1920px - 510px);
    }
}

@media screen and (max-width:1750px) {
    .leftHeader {
        width: calc(100% - 450px);
    }
    .wrapFooter {
        width: calc(100% - 450px);
    }
    .bannerTop .imgW {
        width: calc(100% - 450px);
    }
    .menuTop a {
        padding: 0 20px;
    }
    .rightHeader {
        width: 450px;
    }
    .topBlock {
        height: 125px;
    }
    .wrapTop .name {
        height: 60px;
        font-size: 23px;
    }
    .wrapBottomBlock {
        height: calc(100vh - 160px);
    }
    .menuRight {
        padding: 0 45px 20px;
    }
    .menuRight a {
        font-size: 25px;
    }
    .menuRight a::after {
        font-size: 25px;
    }
    .menuRight a::before {
        width: 7px;
        height: 7px;
    }
    .wrapFoot .name {
        font-size: 18px;
        padding-right: 20px;
    }
    .menuBottom ul a {
        font-size: 18px;
    }
    .main {
        padding: 145px 450px 90px 0;
    }
    /* .white-popup {
        max-width: calc(100vw - 500px);
        margin-right: 450px;
    } */
    .callback-modal {
        margin-right: 840px;
    }
}

@media screen and (max-width:1699px) {
    .white-popup {
        max-width: 1000px;
        width: 100%;
    }
    .callback-modal {
        margin-right: 750px;
    }
}

@media screen and (max-width:1599px) {
    .white-popup {
        max-width: 800px;
    }
    .callback-modal {
        margin-right: 700px;
    }
}

@media screen and (max-width:1499px) {
    .leftHeader {
        height: 75px;
        padding: 0 25px;
    }
    .logo img {
        max-width: 150px;
    }
    .menuTop a {
        font-size: 18px;
        padding: 0 20px;
    }
    .leftHeader .mail a {
        font-size: 18px;
    }
    .wrapFooter {
        height: 50px;
        padding: 0 25px;
    }
    .wrapFoot .name {
        font-size: 18px;
    }
    .menuBottom ul a {
        font-size: 18px;
        margin-right: 30px;
    }
    .bannerTop {
        padding: 75px 0 50px;
    }
    .bannerTop .imgW {
        height: calc(100vh - 125px);
        width: calc(100% - 450px);
    }
    .main {
        padding: 75px 450px 50px 0;
    }
    .white-popup {
        margin-right: 550px;
    }
    .callback-modal {
        margin-right: 650px;
    }
}

@media screen and (max-width:1399px) {
    .leftHeader {
        width: calc(100% - 380px);
    }
    .wrapFooter {
        width: calc(100% - 380px);
    }
    .bannerTop .imgW {
        width: calc(100% - 380px);
    }
    .rightHeader {
        width: 380px;
    }
    .topBlock {
        height: 110px;
    }
    .topBlock a {
        font-size: 26px;
    }
    .topBlock img {
        max-width: 20px;
    }
    .topBlock .socBlock img {
        max-width: 30px;
    }
    .wrapTop .name {
        height: 50px;
        font-size: 20px;
    }
    .menuRight {
        padding: 0 30px 20px;
    }
    .botBlock {
        padding-right: 20px;
    }
    .botBlock a {
        max-width: 190px;
    }
    .main {
        padding: 75px 380px 50px 0;
    }
    .wrapBtn {
        margin-top: 15px;
    }
    .btnStyle {
        font-size: 20px;
        padding: 5px 20px;
        height: 45px;
    }
    .btnStyle svg {
        width: 30px;
    }
    .white-popup {
        margin-right: 450px;
    }
    .callback-modal {
        margin-right: 600px;
    }
}

@media screen and (max-width:1299px) {
    .h1,
    h1 {
        font-size: 30px;
    }
    .leftHeader {
        width: 100%;
        padding-right: 70px;
    }
    .wrapFooter {
        width: 100%;
    }
    .bannerTop .imgW {
        width: 100%;
    }
    .rightHeader {
        left: 100%;
        z-index: 10;
    }
    .mainButtRight {
        position: absolute;
        left: -45px;
        transition: all 0.4s;
        top: 15px;
        width: 45px;
        height: 45px;
        background: var(--colorHead);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 13px 5px;
    }
    .mainButtRight .line {
        width: 100%;
        position: relative;
        height: 2px;
        background: #fff;
        transition: all 0.4s;
    }
    .mainButtRight .line:nth-child(2):before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        content: '';
        transition: all 0.4s;
    }
    .wrapHeader.activeMainRight .rightHeader {
        left: auto;
        right: 0;
    }
    .wrapHeader.activeMainRight .mainButtRight {
        left: auto;
        right: 0;
        background: transparent;
    }
    .wrapHeader.activeMainRight .mainButtRight .line:nth-child(1),
    .wrapHeader.activeMainRight .mainButtRight .line:nth-child(3) {
        opacity: 0;
        background: var(--colorHead);
    }
    .wrapHeader.activeMainRight .mainButtRight .line:nth-child(2) {
        transform: rotate( 45deg);
        background: var(--colorHead);
    }
    .wrapHeader.activeMainRight .mainButtRight .line:nth-child(2):before {
        transform: rotate( -90deg);
        background: var(--colorHead);
    }
    .main {
        padding: 75px 0 50px;
    }
    .wrapPart {
        grid-template-columns: repeat(3, 1fr);
    }
    .white-popup {
        max-width: 1200px;
        margin: auto;
    }
    .callback-modal {
        margin: auto;
    }
}

@media screen and (max-width:1199px) {
    .wrapPart {
        grid-gap: 30px;
    }
}

@media screen and (max-width:991px) {
    .leftHeader {
        padding: 0 25px;
    }
    .mainButtRight {
        display: none;
    }
    .rightHeader {
        left: 0;
        top: 100%;
        width: 100%;
        height: calc(100vh - 50px);
        z-index: 10;
    }
    .wrapTop {
        background: #f4f4f4;
    }
    .topBlock {
        height: 90px;
    }
    .topBlock a {
        font-size: 22px;
    }
    .topBlock img {
        max-width: 15px;
    }
    .topBlock .socBlock img {
        max-width: 25px;
    }
    .wrapTop .name {
        margin-left: 0;
    }
    .menuRight {
        padding: 20px 30px 20px;
    }
    .menuRight a {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .menuRight a::after {
        font-size: 20px;
    }
    .wrapBottomBlock {
        background: url(/images/bannerBg.png) no-repeat bottom left, #fff;
        padding-top: 0;
    }
    .wrapBotBlock {
        background: #f4f4f4;
        height: 50px;
    }
    .botBlock {
        padding: 0 25px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    .botBlock a {
        max-width: 100%;
    }
    .wrapHeader.activeMain .rightHeader {
        top: 0;
    }
    .wrapBottomBlock {
        height: calc(100% - 140px);
    }
    .sendBlock {
        height: calc(100% - 50px);
        overflow-y: auto;
    }
    .sendBlock .menuRight:nth-child(1),
    .sendBlock .menuRight:nth-child(3) {
        display: block;
    }
    .menuTop {
        display: none;
    }
    .wrapFooter {
        background: var(--colorHead);
        z-index: 11;
    }
    .wrapFoot {
        display: block;
    }
    .wrapFoot>.name {
        display: none;
    }
    .menuBottom {
        display: none;
    }
    .wrapMobLine {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .wrapMobLine .wrapLine {
        width: 50px;
        height: 50px;
        padding: 15px 10px;
        margin-right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .wrapMobLine .line {
        width: 100%;
        position: relative;
        height: 2px;
        background: #fff;
        transition: all 0.4s;
    }
    .wrapMobLine .line:nth-child(2):before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        content: '';
        transition: all 0.4s;
    }
    .wrapMobLine .name {
        color: #fff;
    }
    .activeMain .wrapMobLine .line:nth-child(1),
    .activeMain .wrapMobLine .line:nth-child(3) {
        opacity: 0;
    }
    .activeMain .wrapMobLine .line:nth-child(2) {
        transform: rotate( 45deg);
    }
    .activeMain .wrapMobLine .line:nth-child(2):before {
        transform: rotate( -90deg);
    }
    /* .white-popup {
        max-width: calc(100vw - 50px);
        margin-right: auto;
    } */
    .wrapPart {
        grid-template-columns: repeat(2, 1fr);
    }
    .wrapBtn {
        padding-bottom: 20px;
    }
    .wrapGrid4 {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
    .wrapAC .txtBlock {
        width: calc(100% - 300px);
    }
}

@media screen and (max-width:767px) {
    .all-cnt {
        overflow-y: auto;
    }
    .h1,
    h1 {
        font-size: 25px;
        padding: 0 30px;
    }
    .leftHeader {
        padding: 0 15px;
        background: transparent;
        position: relative;
    }
    .bannerTop .imgW {
        height: 100%;
    }
    .bannerTop .wrapSvg {
        display: none;
    }
    .bannerMain {
        display: block;
    }
    .wrapBannerMain {
        padding: 30px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 15px;
        justify-content: space-between;
    }
    .nucBannerMain {
        display: block;
        margin-bottom: 15px;
        color: #000;
        font-size: 22px;
    }
    .nucBannerMain img {
        margin-right: 15px;
    }
    .rightHeader .wrapTop,
    .rightHeader .sendBlock,
    .bannerTop .wrapBannerMainBlock {
        display: none;
    }
    .bannerTop {
        /* height: 100vh;
        overflow-y: auto; */
        background: url(/images/bannerBg.png) no-repeat bottom left;
        padding-top: 0;
    }
    .bannerTop>.imgW {
        /* position: absolute;
        z-index: -1;
        display: block;
        left: 0;
        top: 0; */
        display: none;
    }
    /* .bannerTop .imgW img {
        overflow: visible;
        object-fit: none;
        max-width: none;
        max-height: none;
        width: auto;
        filter: grayscale(100%);
        opacity: 0.1;
    } */
    .wrapTop {
        background: transparent;
    }
    .rightHeader {
        height: 100vh;
    }
    .sendBlock {
        height: 100%;
        overflow-y: auto;
        padding: 0 15px;
    }
    .wrapBottomBlock {
        flex-direction: column-reverse;
        height: calc(100% - 50px);
    }
    .wrapBotBlock {
        padding: 0 15px;
        background: transparent;
    }
    .wrapBannerMainBlock {
        height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 0 15px;
    }
    #izgotovlenie .nucGrid2 {
        flex-direction: column;
    }
    #izgotovlenie .nucGrid2 .imgW {
        align-items: center;
        width: auto;
        padding: 0;
        margin-bottom: 10px;
    }
    #izgotovlenie .nucGrid2 .txtBlock {
        width: 100%;
    }
}

@media screen and (max-width:675px) {}

@media screen and (max-width:640px) {
    .wrapAC {
        margin-bottom: 20px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .wrapAC .txtBlock {
        width: 100%;
        border: none;
        padding-left: 0;
    }
}

@media screen and (max-width:600px) {
    .wrapBannerMain {
        grid-template-columns: 1fr;
    }
    .wrapPart {
        grid-template-columns: 1fr;
    }
    .wrapGrid2 {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .wrapGrid3 {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .wrapGrid4 {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

@media screen and (max-width:485px) {
    .logo img {
        max-width: 120px;
        margin-right: 10px;
    }
    .leftHeader .mail a {
        font-size: 16px;
    }
    .nucBannerMain {
        font-size: 16px;
    }
    .nucBannerMain img {
        max-width: 25px;
    }
    .wrapMobLine .name {
        font-size: 16px;
    }
    .wrapMobLine .wrapLine {
        padding: 17px 10px;
    }
    .callback-modal .wrapInput {
        grid-template-columns: 1fr;
        margin-bottom: 10px;
    }
    .callback-modal input {
        margin-bottom: 0;
    }
    .botLineMF {
        flex-direction: column;
        justify-content: flex-start;
    }
    .callback-modal .wrapLabel {
        margin-bottom: 10px;
    }
    .wrapDesign {
        flex-direction: column;
    }
    .wrapDesign .imgW {
        align-items: center;
        margin-right: 0;
        width: auto;
    }
    .wrapDesign .txtBlock {
        width: 100%;
    }
}

@media screen and (max-width:425px) {}

@media screen and (max-width:400px) {
    .wrapTop .name {
        font-size: 18px;
        padding: 0 15px;
    }
    .menuRight a {
        font-size: 18px;
        padding-left: 15px;
    }
    .menuRight a::after {
        font-size: 18px;
        left: calc(100% + 5px);
    }
}

@media screen and (max-width:370px) {}

@media screen and (max-width:1599),
screen and (max-height: 630px) {
    .menuRight a {
        font-size: 21px;
    }
}


/**/

@media (prefers-color-scheme: dark) {
    .lightImg {
        display: none;
    }
    .darkImg {
        display: block;
    }
    body {
        color: #fff;
        background: #000;
    }
    .leftHeader,
    .white-popup,
    .h1,
    h1 {
        background: #000;
    }
    .menuTop a,
    .menuBottom ul a,
    .menuRight a,
    .topBlock a {
        color: #fff;
    }
    .menuRight a::after {
        color: #fff;
    }
    .wrapFooter {
        background: #5e5e5e;
    }
    .wrapTop {
        background: url(/images/backRightDark.png) repeat-y top left;
    }
    .wrapBottomBlock {
        background: url(/images/backRightDark.png) repeat-y top left
    }
    .wrapBotBlock {
        background: url(/images/backRightBottomDark.png) no-repeat bottom left;
    }
}

@media (prefers-color-scheme: dark) and (max-width: 991px) {
    .wrapTop {
        background: #5e5e5e;
    }
    .wrapFooter {
        background: var(--colorHead);
    }
    .wrapBottomBlock {
        background: url(/images/bannerBg.png) no-repeat bottom left, #5e5e5e;
        padding-top: 0;
    }
    .wrapBotBlock {
    .wrapBotBlock {
        background: transparent;
    }
}

@media (prefers-color-scheme: dark) and (max-width: 767px) {
    .leftHeader {
        background: transparent;
    }
    .wrapTop {
        background: transparent;
    }
    .nucBannerMain {
        color: #fff;
    }
}