/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}




@font-face{
    font-family: 'akzidenzgroteskpro';
    src: url('../fonts/AkzidenzGroteskPro-Regular.woff2') format('woff2'),
         url('../fonts/AkzidenzGroteskPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'akzidenzgroteskpro';
    src: url('../fonts/AkzidenzGroteskPro-Md.woff2') format('woff2'),
         url('../fonts/AkzidenzGroteskPro-Md.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'akzidenzgroteskpro';
    src: url('../fonts/AkzidenzGroteskPro-BoldEx.woff2') format('woff2'),
         url('../fonts/AkzidenzGroteskPro-BoldEx.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'akzidenzgrotes';
    src: url('../fonts/AkzidenzGroteskPro-Bold.woff2') format('woff2'),
         url('../fonts/AkzidenzGroteskPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'akzidenzgroteskpro';
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.scroll_trigger{
    position: absolute;
    top: 0;
    right: 0;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.scroll{
    display: flex;
    position: fixed;
    width: 70px;
    background: rgba(255, 255, 255, 0.3);
    height: 70px;
    border-radius: 50%;
    right: 11%;
    bottom: 130px;
    transform: scale(0);
    transition: all 0.3s;
    z-index: 2;
}
.scroll.fixed{
    transform: scale(1);
}
.scroll::before{
    position: absolute;
    content: "";
    background: #FBBA00;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    background-image: url(../img/scroll.svg);
    background-size: 15px 22px;
    background-repeat: no-repeat;
    background-position: center;
}
.aside{
    position: fixed;
    right: -200px;
    bottom: 300px;
    padding: 27px 45px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.aside:hover{
    right: 0;
}
.aside::before{
    position: absolute;
    content: "";
    background: linear-gradient(259.33deg, #FBBA01 13.58%, #F39201 72%);
    border-radius: 3px;
    transform: matrix(0.98, 0, -0.18, 1, 0, 0);
    width: 110%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.aside::after{
    position: absolute;
    content: "";
    background-image: url(../img/aside.svg);
    background-size: cover;
    width: 23px;
    height: 24px;
    top: 0;
    left: -12px;
    transform: scale(-1 , 1);
    transition: all 0.3s;
}
.aside:hover::after{
    transform: scale(1 , 1)
}
.aside_item{
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 18px;
    padding-left: 48px;
    position: relative;
    transition: all 0.3s;
}
.aside_item:hover{
    transform: translateX(-10px);
}
.aside_item img{
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(-25%,-50%);
}
.aside_item:nth-child(3){
    margin-bottom: 0;
}
.btn{
    background: linear-gradient(265.71deg, #FBBA00 9.13%, #F39200 91.54%);
    border-radius: 154px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    animation: btnAnim 1s ease infinite;
    cursor: pointer;
}
@keyframes btnAnim{
    0% {
        box-shadow: 0 0 0 0 rgb(251 184 0 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(251 184 0 / 0%);
    }
}
.header{
    padding: 15px 0;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo{
    display: flex;
    align-items: center;
}
.header_inner{
    display: none;
}
.header_logo-img{
    display: flex;
    margin-right: 15px;
}
.header_logo-img img{
    width: 100%;
    height: 100%;
}
.header_logo-text{
    font-size: 13px;
    line-height: 14px;
    color: #646464;
    width: 152px;
}
.header_parter{
    display: flex;
}
.header_adres{
    width: 185px;
    padding-left: 33px;
    position: relative;
    line-height: 18px;
    font-size: 14px;
}
.header_adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/adres.svg);
    background-size: cover;
    width: 20px;
    height: 32px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_number{
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
    position: relative;
    padding-left: 38px;
    transition: all 0.3s;
}
.header_number:hover{
    color: #FBBA00;
}
.header_number::before{
    position: absolute;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 33px;
    height: 33px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_order{
    height: 45.5px;
    width: 184px;
}

/* .main{
    padding: 124px 0 230px;
    background-image: url(../img/main_bg.jpg);
    background-size: cover;
    background-position: center;
}
.main_title{
    font-size: 40px;
    line-height: 64px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 11px;
    font-weight: 700;
}
.main_text{
    font-weight: 700 ;
    line-height: 32px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 113px;
    font-size: 20px;
}

.main_items{
    display: flex;
    justify-content: space-between;
}
.main_item{
    width: 320px;
    border-radius: 3px;
    transform: matrix(0.98, 0, -0.19, 1, 0, 0);
    padding: 20px 62px 20px 92px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 20px;
    display: flex;
    align-items: center;

    position: relative;
}
.main_item:nth-child(1){
    background: linear-gradient(262.51deg, rgba(196, 106, 0, 0) 7.01%, #EF8F00 70.77%);
}
.main_item:nth-child(2){
    background: linear-gradient(262.51deg, rgba(0, 80, 112, 0) 6.71%, #009EDD 70.85%);
}
.main_item:nth-child(3){
    background: linear-gradient(262.51deg, rgba(182, 42, 153, 0) 5.08%, #B62A99 71.74%);
}
.main_item span{
    transform: matrix(0.98, 0, .19, 1, 0, 0);
    display: block;
}
.main_item img{
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%) matrix(0.98, 0, .19, 1, 0, 0);
}
.zam_block-wrapper{
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 75px 60px;
    background-image: url(../img/zam_block.jpg);
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
}
.zam_block-title{
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 28px;
}
.zam_block-btn{
    height: 68px;
    text-transform: uppercase;
    width: 275px;
} */
/* .advantage{
    margin-bottom: 105px;
}
.advantage_title{
    font-size: 40px;
    line-height: 56px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
}
.advantage_title span{
    color: #3AAA35;
}
.advantage_items{
    display: flex;
    justify-content: space-between;
}
.advantage_item{
    width: 20%;
}
.advantage_item-img{
    display: flex;
    margin-bottom: 23px;
}
.advantage_item-title{
    font-weight: 700;
    font-size: 40px;
    line-height: 22px;
    margin-bottom: 18px;
}
.advantage_item-text{
    font-size: 18px;
    line-height: 22px;
} */

.catalog{
    padding: 90px 0 120px;
    background: #2A2A2A;
}
.catalog_title{
    font-size: 40px;
    line-height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 3px;
}
.catalog_title span{
    color: #B62A99;
}
.catalog_text{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
    line-height: 56px;
    margin-bottom: 44px;
}
.catalog_wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.catalog_item{
    width: 32%;
    background: #414141;
    margin-bottom: 45px;
}
.catalog_item-img{
    display: flex;
    width: 100%;
    height: 327px;
}
.catalog_item-img img{
    width: 100%;
    height: 100%;
}
.catalog_item-inner{
    padding: 20px 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 327px);
}
.catalog_item-title{
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 17px;
    line-height: 26px;
}
.catalog_item-size{
    padding-left: 36px;
    position: relative;
    font-size: 12px;
    color: #DFDFDF;
    line-height: 26px;
    margin-bottom: 17px;
}
.catalog_item-size::before{
    position: absolute;
    content: "";
    background-image: url(../img/catalog_item-size.svg);
    background-size: cover;
    width: 21px;
    height: 17px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.catalog_item-text{
    font-size: 14px;
    color: #DFDFDF;
    margin-bottom: 25px;
    line-height: 22px;
    width: 80%;
}
.catalog_item-btns{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.catalog_item-order{
    height: 45px;
    width: 142px;
    text-transform: uppercase;
}
.catalog_item-calc{
    width: 54px;
    background: #3AAA35;
    border-radius: 4px;
    height: 45px;
    position: relative;
    transition: all 0.3s;
}
.catalog_item-calc:hover{
    transform: scale(1.1);
}
.catalog_item-calc::before{
    position: absolute;
    content: "";
    background-image: url(../img/catalog_item-calc.svg);
    background-size: cover;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.catalog_item-price{
        font-weight: 700;
        font-size: 14px;
        color: #3AAA35;
        line-height: 22px;
}


.design{
    padding: 115px 0;
}
.design_title{
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    line-height: 22px;
    margin-bottom: 35px;
}
.design_title span{
    color: #3AAA35;
}
.design_text{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
}
.design_tabs{
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}
.design_tab{
    background: #FFFFFF;
    border: 1px solid #3AAA35;
    width: 161px;
    border-radius: 70px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    line-height: 22px;
    font-size: 18px;
    cursor: pointer;
}
.design_tab.active{
    background: #3AAA35;
    color: #fff;
}
.design_items{
    display: none;
    flex-wrap: wrap;
    min-height:405px ;
}
.design_items.active{
    display: flex;
}
.design_item{
    display: flex;
    flex-direction: column;
    width: 18%;
    margin-right: 2.5%;
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    
}
.design_item:nth-child(5n){
    margin-right: 0;
}
.design_item img{
    margin-bottom: 5px;
}

.options{
    padding: 115px 0;
    background: #2B2B2B;
}
.options_title{
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 50px;
    font-weight: 700;
}
.options_title span{
    color: #3AAA35;
}
.options_item{
    margin: 0 20px;
}
.options_item-img{
    border-radius: 50%;
    overflow: hidden;
    height: 186px;
    width: 186px;
    margin-bottom: 20px;
}
.options_item-img img{
    width: 100%;
    height: 100%;
}
.options_item-title{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.options_item-text{
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.options_wrapper .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    background-size: cover;
    width: 29px;
    height: 15px;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    border: none;
    z-index: 1;
}
.options_wrapper .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: -50px;
}
.options_wrapper .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -50px;
}

.quiz{
    padding: 105px 0;
}
.quiz_title{
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #3AAA35;
    margin-bottom: 30px;
    font-weight: 700;
}
.quiz_text{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
    line-height: 22px;
}
.quiz_wrapper{
    background-image: url(../img/quiz.jpg);
    background-size: cover;
    background-position: center;
    padding: 70px 75px 65px;
}
.quiz_item-title{
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 44px;
}
.quiz_item-text{
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 60px;
    line-height: 24px;
}
.quiz_item-btn{
    position: relative;
    box-shadow: 0px 7px 18px rgba(239, 125, 0, 0.7);
    height: 68px;
    width: 275px;
    margin-left: 40px;
    text-transform: uppercase;
    margin-bottom: 45px;
}
.quiz_item-btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/quiz_bef.png);
    background-size: cover;
    height: 133px;
    width: 139px;
    top: -37px;
    left: -88px;
}
.quiz_item-help{
    font-weight: 500;
    font-size: 16px;
    text-decoration-line: underline;
    color: #FFFFFF;
    line-height: 26px;
    position: relative;
    padding-left: 65px;
    transition: all 0.3s;
}
.quiz_item-help:hover{
    color: #FBBA00;
}
.quiz_item-help::before{
    position: absolute;
    content: "";
    background-image: url(../img/quiz_help.svg);
    background-size: cover;
    width: 45px;
    height: 45px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.certificates{
    margin-bottom: 95px;
}
.certificates_title{
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 54px;
    margin-bottom: 25px;
    text-align: center;
}
.certificates_title span{
    color: #B62A99;
}
.certificates_wrapper{
    display: flex;
    justify-content: space-between;
}
.certificates_item{
    display: flex;
    width: 49%;
}
.certificates_item img{
    width: 100%;
    height: 100%;
}

.works{
    padding: 80px 0 110px;
    background: #F0F0F0;
}
.works_title{
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin-bottom: 40px;
}
.works_title span{
    color: #FBBA00;
}
.works_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.works_item{
    display: flex;
    margin-bottom: 25px;
    width: 31%;
}
.works_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mounting{
    padding: 90px 0 120px;
}
.mounting_title{
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3AAA35;
    margin-bottom: 18px;
    font-weight: 700;
}
.mounting_subtitle{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #000000;
    line-height: 54px;
    margin-bottom: 50px;
}
.mounting_wrapper{
    display: flex;
    justify-content: space-between;
}
.mounting_left{
    width: 625px;
}
.mounting_text{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}
.mounting_img{
    width: 100%;
    height: auto;
    position: relative;
}
.mounting_img::before{
    position: absolute;
    content: "";
    background-image: url(../img/mounting_img-bef.png);
    background-size: cover;
    height: 205px;
    right: -65px;
    bottom: -17px;
    width: 502px;
}
.mounting_img img{
    width: 100%;
    height: 100%;
}
.mounting_inner{
    width: 430px;
}
.mounting_inner-title{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
}
.mounting_items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mounting_item{
    width: 49%;
    margin-bottom: 25px;
}
.mounting_item-img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 6px;
}
.mounting_item:nth-child(1) .mounting_item-img{
    border: 4px solid #FBBA00;
}
.mounting_item:nth-child(2) .mounting_item-img{
    border: 4px solid #D60B52;
}
.mounting_item:nth-child(3) .mounting_item-img{
    border: 4px solid #3AAA35;
}
.mounting_item:nth-child(4) .mounting_item-img{
    border: 4px solid #64B8E1;
}
.mounting_item-title{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 1px;
}
.mounting_item-text{
    font-size: 16px;
    line-height: 16px;
}
.mounting_btn{
    height: 68px;
    box-shadow: 0px 7px 18px rgba(251, 136, 0, 0.5);
    width: 314px;
}


.steps{
    padding: 100px 0 115px;
    background-image: url(../img/steps.jpg);
    background-size: cover;
    background-position: center;
}
.steps_title{
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    color: #FBBA00;
    margin-bottom: 21px;
    font-weight: 700;
}
.steps_text{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
    line-height: 54px;
}
.steps_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.steps_item{
    width: 30%;
    margin-bottom: 55px;
}
.steps_item-number{
    background: linear-gradient(75.16deg, #FBBA00 5.22%, rgba(251, 186, 0, 0) 87.62%);
    border-radius: 3px;
    transform: matrix(0.98, 0, -0.18, 1, 0, 0);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 38px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 24px;
}
.steps_item-number span{
    transform: matrix(0.98, 0, 0.18, 1, 0, 0);
}
.steps_item-text{
    line-height: 24px;
    color: #FFFFFF;
    font-size: 18px;
}
.steps_btn{
    height: 70px;
    width: 278px;
    margin: 20px auto 0;
    text-transform: uppercase;
    box-shadow: 0px 7px 18px rgba(251, 136, 0, 0.5);
}
.sample{
    padding: 100px 0;
}
.sample_title{
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    color: #3AAA35;
    margin-bottom: 20px;
    font-weight: 700;
}
.sample_subtitle{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    line-height: 54px;
    margin-bottom: 30px;
}
.sample_wrapper{
    display: flex;
    justify-content: space-between;
}
.sample_info{
    width: 625px;
}
.sample_text{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 54px;
}
.sample_inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
    align-items: center;
}
.sample_person-title{
    line-height: 26px;
    font-size: 20px;
    margin-bottom: 14px;
}
.sample_person-img{
    width: 130px;
    border:4px solid #3AAA35;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 11px;
}
.sample_person-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sample_person-name{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 3px;
}
.sample_person-text{
    font-size: 16px;
    line-height: 16px;
}
.sample_person-item{
    position: relative;
    padding-left: 46px;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 13px;
}
.sample_person-item:last-child{
    margin-bottom: 0;
}
.sample_person-item img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sample_desc{
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    font-weight: 500;
    width: 360px;
    padding: 22px 0;
    position: relative;
}
.sample_desc::after{
    position: absolute;
    content: "";
    width: 384px;
    height: 155.25px;
    background-image: url(../img/sample_desc.png);
    background-size: cover;
    bottom: -12px;
    right: 15px;
    transform: translateX(100%);
}
.sample_desc::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 300vh;
    background: #269122;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
}
.sample_form{
    width: 380px;
    padding: 33px 20px 20px;
    background-image: url(../img/sample_form.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.sample_form-title{
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 80px;
    line-height: 24px;
}
.sample_form-inp{
    width: 270px;
    background: #FFFFFF;
    border-radius: 154px;
    margin: 0 auto 10px;
    height: 57.33px;
    display: block;
    padding-left: 22px;
    border: none;
}
.sample_form-btn{
    width: 270px;
    box-shadow: 0px 7px 18px rgba(251, 136, 0, 0.5);
    margin: 0 auto;
    cursor: pointer;
    border: none;
    margin-bottom: 12px;
    height: 70px;
    text-transform: uppercase;
}
.sample_form-ok{
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    line-height: 11px;
    width: 250px;
    margin: 0 auto;
}

.size_title{
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    line-height: 54px;
    margin-bottom: 30px;
}
.size_title span{
    color: #B62A99;
}
.size_text{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    line-height: 54px;
    margin-bottom: 55px;
}
.size_tabel{
    margin-bottom: 55px;
}
.size_text span{
    display: block;
    line-height: 24px;
    font-size: 22px;
}
.size_names{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  23px 50px;
    border-radius: 3px;
    background: #B62A99;
}
.size_name{
    width: 20%;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.size_item{
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.size_item:nth-child(2n + 1){
    background: #FCF6F8;
}
.size_item-value{
    width: 20%;
    color: #474747;
    line-height: 20px;
    border-radius: 3px;
}
.size{
    margin-bottom: 115px;
}
.size_btn{
    height: 70px;
    width: 278px;
    text-transform: uppercase;
    margin: 0 auto;
    box-shadow: 0px 7px 18px rgba(251, 136, 0, 0.5);
}
.map_block-title{
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 50px;
}
.map_block-title span{
    color: #FBBA00;
}
.map_block-adres{
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    padding-left: 39px;
    position: relative;
    width: 305px;
    margin: 0 auto 50px; 
}
.map_block-adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/adres.svg);
    background-size: cover;
    width: 20px;
    height: 32px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.map_block-body{
    width: 100%;
    height: 450px;
}
.map_block-body iframe{
    width: 100%;
    height: 100%;
}
.footer{
    background: #232323;
    padding: 60px 0;
}
.footer_wrapper{
    display: flex;
    justify-content: space-between;
}
.footer_left{
    width: 195px;
}
.header_zam{
    display: none;
}
.footer_logo{
    display: flex;
    margin-bottom: 22px;
}
.footer_title{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 18px;
    margin-bottom: 20px;
}
.footer_items{
    display: flex;
    align-items: center;
}
.footer_item{
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    padding-left: 39px;
    position: relative;
    margin-right: 40px;
}
.footer_item::before{
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover;
}
.footer_item:last-child{
    margin-right: 0;
}
.footer_links{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer_item.time::before{
    background-image: url(../img/time.svg);
    width: 24px;
    height: 24px;
}
.footer_item.mail::before{
    background-image: url(../img/mail.svg);
    width: 22px;
    height: 23px;
}
.footer_item.adres::before{
    background-image: url(../img/footer_adres.svg);
    width: 24px;
    height: 24px;
}
.footer_number{
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 9px;
    font-weight: 700;
    position: relative;
    padding-left: 45px;
}
.footer_number::before{
    position: absolute;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    height: 33px;
    width: 33px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_order{
    height: 45.5px;
    width: 184px;
    margin-bottom: 20px;
}
.footer_polit{
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 2px;
}
.footer_sogl{
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
}
.footer a{
    transition: all 0.3s;
}
.footer a:hover{
    color: #FBBA00;
}

.popup_body{
    background: #FFFFFF;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    width: 730px;
    padding: 45px 55px 50px 400px;
}
.popup_body-title{
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'akzidenzgrotes';
}
.popup_body-title span{
    line-height: 20px;
    margin-top: 11px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    font-family: 'akzidenzgroteskpro';
}
.popup_body-inp{
    background: #FFFFFF;
    border-radius: 70px;
    margin-bottom: 15px;
    border: 1px solid #3AAA35;
    height: 59px;
    width: 100%;
    padding-left: 28px;
}
.popup_body-inp::placeholder{
    color: #000;
}
.popup_body-btn{
    height: 70px;
    width: 273px;
    margin-bottom: 25px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.popup_body-ok{
    line-height: 11px;
    text-align: center;
    color: #777777;
    font-size: 12px;
}
.popup_body-img{
    position: absolute;
    left: 0;
    height: 100%;
    width: 344px;
    display: flex;
    top: 0;
}
.popup_body-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup_btn{
    cursor: pointer;
}
textarea.popup_body-inp{
    padding: 25px 28px;
    height: 103px;
    resize: none;
    border-radius: 30px;
}
.header_close{
    display: none;
}
.menu_burger{
    display: none;
}
.catalog_show{
    display: none;
}
.design_show{
    display: none;
}
.thanks_btn{
    height: 70px;
    width: 273px;
}
.thanks{
    min-height: 80vh;
}

.managers{
    margin-bottom: 150px;
}
.managers_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.managers_items{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 650px);
}
.managers_item{
    width: 208px;
}
.managers_item-img{
    width: 100%;
    margin-bottom: 20px;
}
.managers_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.managers_item-title{
    font-size: 26px;
    text-align: center;
    color: #000000;
    line-height: 26px;
}
.managers_info{
    width: 650px;
    border-radius: 3px;
    border: 1px solid #FBBA00;
    border-left: none;
    padding: 40px 50px 45px 60px;
    margin-top: 35px;
}
.managers_title{
    font-size: 40px;
    line-height: 54px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin-bottom: 11px;
}
.managers_title span{
    color: #FBBA00;
}
.managers_text{
    line-height: 28px;
    font-size: 20px;
}
.liquidatio_main{
    padding: 72px 0 90px;
    background-image: url(../img/liquidatio_main.jpg);
    background-size: cover;
    background-position: center;
}
.liquidatio_main-title{
    font-weight: 900;
    font-size: 46px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 52px;
    margin-bottom: 5px;
}
.liquidatio_main-title span{
    font-weight: 400;
    display: block;
}
.liquidatio_main-text{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 32px;
    margin-bottom: 35px;
}
.liquidatio_main-subtitle{
    font-weight: 700;
    font-size: 28px;
    color: #4EC648;
    line-height: 36px;
    margin-bottom: 20px;
}
.liquidatio_main-time{
    width: 420px;
    margin-bottom: 42px;
}
#timer131d47e3e3cf81bbea7c5302dc3737b1{
    text-align: left !important;
}
.timer-element{
    text-align: center;
}
.liquidatio_main-items{
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}
.liquidatio_main-item{
    width: 23%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(41px);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 94px;
    padding: 20px 25px 20px 60px;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 18px;
}
.liquidatio_main-item img{
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
}
.liquidatio_main-btn{
    border-radius: 5px;
    background: #3AAA35;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    height: 71px;
    width: 300px;
    animation: btnAnim2 1s ease infinite;
}
.liquidatio{
    padding: 80px 0;
}
.liquidatio_title{
    font-weight: 900;
    font-size: 49px;
    text-transform: uppercase;
    color: #3AAA35;
    margin-bottom: 50px;
    line-height: 60px;
}
.liquidatio_item-title{
    font-size: 27px;
    line-height: 34px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}
.liquidatio_item-price{
    font-size: 24px;
    color: #000000;
    line-height: 31px;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
.liquidatio_item-price span::before{
    position: absolute;
    content: "";
    background-color: #D70000;
    left: -6px;
    right: 0;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.liquidatio_item-price span{
    z-index: 1;
    position: relative;
    background: #fff;
    margin-right: 5px;
}
.liquidatio_item-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.liquidatio_item-left{
    height: 374px;
    width: 540px;
}
.liquidatio_item-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.liquidatio_item-right{
    width: 520px;
}
.liquidatio_item-subtitle{
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
}
.liquidatio_item-options{
    padding-bottom: 38px;
    border-bottom: 1px solid #3AAA35;
    margin-bottom: 31px;
}
.liquidatio_item-option{
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #424242;
    margin-bottom: 7px;
    line-height: 18px;
}
.liquidatio_item-option::before{
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #424242;
}
.liquidatio_item-option:last-child{
    margin-bottom: 0;
}
.liquidatio_item-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.liquidatio_item-length{
    font-size: 16px;
    line-height: 21px;
    color: #000000;
}
.liquidatio_item-btn{
    width: 260px;
    background: #3AAA35;
    border-radius: 5px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    animation: btnAnim2 1s ease infinite;
}
.liquidatio_item{
    margin-bottom: 80px;
}
.liquidatio_item:last-child{
    margin-bottom: 0;
}
.liquidatio_footer-btn{
    width: 216px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3AAA35;
    border-radius: 5px;
    height: 51px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    animation: btnAnim2 1s ease infinite;
}
.liquidatio_header-btn{
    width: 184px;
    background: #3AAA35;
    border-radius: 5px;
    height: 45.5px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    animation: none;
    animation: btnAnim2 1s ease infinite;
}
@keyframes btnAnim2{
    0% {
        box-shadow: 0 0 0 0 rgb(58 170 53 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(58 170 53 / 0%);
    }
}







@media(max-width: 1199.98px) {
	.container {
		max-width: 960px;
	}
    .header_adres{
        display: none;
    }
    /* .main_item{
        padding-left: 70px;
    }
    .main_item img{
        left: 10px;
    } */
    .catalog_item{
        width: 48%;
    }
    .options_item{
        margin: 0 10px;
    }
    .options_wrapper {
        margin: 0 30px;
    }
    .mounting_left {
        width: 470px;
    }
    .mounting_text{
        font-size: 16px;
    }
    .mounting_inner {
        width: 395px;
    }
    .sample_desc::after {
        height: 130px;
        width: 320px;
        right: 30px;
    }
    .sample_info {
        width: 500px;
    }
    .footer_wrapper{
        flex-wrap: wrap;
    }
    .footer_links{
        width: 100%;
    }
    .sample_desc{
        width: 250px;
    }
    .sample_desc::after{
        right: 10px;
    }
    .managers_info {
        width: 575px;
        margin-top: 25px;
        padding: 30px 35px 30px 40px;
    }
    .managers_items {
        width: calc(100% - 575px);
    }
    .managers_title {
        font-size: 36px;
        line-height: 45px;
    }
    .managers_item {
        width: 165px;
    }
    .liquidatio_main-item{
        font-size: 14px;
        width: 24%;
    }
    .liquidatio_item-left{
        width: 450px;
        height: 316px;
    }
    .liquidatio_item-right {
        width: 445px;
    }
    .liquidatio_item-subtitle{
        margin-bottom: 20px;
    }
}
@media (max-width: 991.98px) {
	.container {
		max-width: 720px;
	}
    .header_wrapper{
        position: fixed;
        right: 0;
        background-color: #fff;
        width: 100%;
        bottom: -100%;
        height: 100%;
        z-index: 3;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 48px;
        transition: all 0.6s;
    }
    .header_wrapper  .header_logo-img{
        margin-bottom: 20px;
    }
    .header_wrapper  .header_logo-text{
        width: 100%;
        margin-bottom: 19px;
    }
    .header_parter{
        width: 91px;
        margin-bottom: 50px;
    }
    .header_parter img{
        width: 100%;
        height: 100%;
    }
    .header_wrapper.active{
        bottom: 0;
    }
    .header_inner{
        display: flex;
        justify-content: center;
    }
    .header_logo{
        flex-direction: column;
    }
    .header_logo-img{
        margin-right: 0;
    }
    .header_inner    .header_logo-img{
        margin-bottom: 2px;
    }
    .header_inner .header_logo-text{
        width: 100%;
    }
    .header_adres{
        display: block; 
        margin-bottom: 40px;
    }
    .header_number{
        margin-bottom: 40px;
    }
    .aside{
        bottom: 0;
        right: 0;
        transition: all 0.3s;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        background: #3AAA35;
        padding: 15px 20px;
    }
    .aside.fixed_nav{
        transform: translateY(100%);
    }
    .aside_item{
        margin-bottom: 0;
        font-size: 0;
    }
    .aside::before{
        display: none;
    }
    .aside::after{
        display: none;
    }
    /* .main_items{
        flex-direction: column;
    }
    .main_item{
        width: 400px;
        margin: 0 auto 15px;
    } */
    .header_order{
        margin-bottom: 40px;
        
    }
    .header_zam{
        width: 192px;
        background: #FFFFFF;
        border: 1px solid #F39201;
        border-radius: 154px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-size: 16px;
        color: #F39201;
        line-height: 24px;
    }
    .header_close{
        display: flex;
        position: absolute;
        top: 6px;
        right: 6px;
    }
    /* .main{
        padding: 80px 0 140px;
    } */
    .aside_item{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    .aside_item img{
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    /* .advantage_items{
        flex-wrap: wrap;
        margin-bottom: -35px;
    }
    .advantage_item{
        width: 48%;
        margin-bottom: 35px;
    } */
    .menu_burger{
        display: flex;
    }
    .catalog_show{
        display: flex;
        height: 52px;
        width: 191px;
        margin: 0 auto;
    }
    .catalog_show.none{
        display: none;
    }
    .catalog_item {
        width: 55%;
        display: none;
    }
    .catalog_item.show{
        display: block;
    }
    .catalog_item:nth-child(1),
    .catalog_item:nth-child(2){
        display: block;
    }
    .catalog_wrapper{
        justify-content: center;
    }
    .design_tab{
        width: 110px;
        margin: 0 10px;
        font-size: 16px;
    }
    .design_items {
        min-height: 318px;
    }
    .quiz_wrapper{
        padding: 35px;
    }
    .works_item{
        margin-bottom: 0;
    }
    .works_wrapper {
        width: 80%;
        margin: 0 auto;
    }
    .works_wrapper .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        background-size: cover;
        width: 29px;
        height: 15px;
        padding: 0;
        cursor: pointer;
        font-size: 0;
        border: none;
        z-index: 1;
    }
    /* .works_item{
        width: 100%;
    } */
    .works_wrapper .slick-next {
        background-image: url(../img/arrow_right.svg);
        right: -50px;
    }
    .works_wrapper .slick-prev {
        background-image: url(../img/arrow_left.svg);
        left: -50px;
    }
    .mounting_wrapper{
        flex-direction: column-reverse;
    }
    .mounting_inner{
        width: 360px;
        margin: 0 auto 35px;
    }
    .mounting_left{
        width: 100%;
    }
    .mounting_text{
        font-size: 20px;
    }
    .mounting_img::before{
        right: 50%;
        transform: translateX(50%);
    }
    .mounting_btn{
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }
    .mounting_wrapper{
        position: relative;
        padding-bottom: 100px;
    }
    .mounting_items .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        background-size: cover;
        width: 29px;
        height: 15px;
        padding: 0;
        cursor: pointer;
        font-size: 0;
        border: none;
        z-index: 1;
    }
    .steps_item{
        width: 48%;
    }
    .sample_wrapper {
        flex-direction: column;
    }
    .sample_info{
        width: 100%;
        margin-bottom: 45px;
    }
    .sample_form{
        margin: 0 auto;
    }
    .size_item,
    .size_names{
        width: 840px;
    }
  
    .size_tabel{
        overflow-x: auto;
      margin-bottom: 17px;
    }
    .size_tabel-wrapper{
        position: relative;
        padding-bottom: 50px;
        margin-bottom: 35px;
    }
    .size_tabel-wrapper::before{
        position: absolute;
        content: "";
        background-image: url(../img/tabel_scroll.svg);
        background-size: cover;
        height: 32px;
        width: 114px;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }
    .footer_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer_left{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .footer_items{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    .footer_item{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer_links{
        align-items: center;
    }
    .footer_number{
        margin-bottom: 16px;
    }
    .footer_order{
        margin-bottom: 40px;
    }
    .aside_item:hover {
        transform: translateX(0px);
    }
    .sample_desc{
        width: 360px;
    }
    .managers_wrapper{
        flex-direction: column-reverse;
    }
    .managers_info{
        margin-top: 0;
        width: 100%;
        text-align: center;
        border: 1px solid #FBBA00;
        padding-bottom: 55px;
    }
    .managers_items{
        width: 40%;
        margin: 0 auto;
        flex-direction: column;
        margin-top: -40px;
        z-index: 1;
    }
    .managers_item{
        width: 100%;
        margin-bottom: 30px;
    }
    .managers{
        margin-bottom: 90px;
    }
    .liquidatio_main-items{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .liquidatio_main-item{
        width: 48%;
        margin-bottom: 25px;
    }
    .liquidatio_item-wrapper{
        flex-direction: column;
    }
    .liquidatio_item-left{
        margin-bottom: 20px;
        width: 100%;
        height: 480px;
    }
    .liquidatio_item-right{
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .container {
		max-width: 540px;
	}
    /* .main{
        padding: 40px 0 60px;
    }
    .main_title{
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .main_text{
        line-height: 24px;
        font-size: 16px;
        margin-bottom: 77px;
    } */
    .zam_block-wrapper{
        transform: none;
        flex-direction: column;
        padding: 45px 15px 55px;
        position: relative;
        background-position: 31%;
        z-index: 1;
    }
    .mounting_items .slick-next {
        background-image: url(../img/arrow_right.svg);
        right: -50px;
    }
    .mounting_items .slick-prev {
        background-image: url(../img/arrow_left.svg);
        left: -50px;
    }
    .mounting_item{
        margin-bottom: 0;
    }
    .zam_block-wrapper::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: -1;
        background: linear-gradient(90deg, rgba(47, 47, 47, 0.8) 5.79%, rgba(34, 34, 34, 0.2) 100%);
    }
   
    .zam_block .container{
        max-width: 100%;
        padding: 0;
    }
    .zam_block-title{
        text-align: center;
        margin-bottom: 38px;
    }
    /* .advantage{
        padding: 55px 0 65px;
        margin-bottom: 0;
    }
    .advantage_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    } */
    .catalog{
        padding: 65px 0 73px;
    }
    .catalog_item {
        width: 100%;
        margin-bottom: 25px;
    }
    .catalog_title{
        line-height: 28px;
        font-size: 22px;
    }
    .catalog_text{
        line-height: 56px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .catalog_item-img{
        height: 271px;
    }
    .catalog_item-inner{
        height: auto;
    }
    .catalog_item-title{
        font-size: 18px;
        margin-bottom: 15px;
    }
    .catalog_item-text{
        width: 100%;
    }
    .catalog_item-order{
        height: 37.29px;
        width: 117.66px;
    }
    .catalog_item-calc{
        width: 45px;
        height: 38px;
    }
    .catalog_item-price{
        line-height: 22px;
        font-size: 12px;
    }
    .design_items{
        justify-content: space-between;
    }
    .design_item{
        width: 48%;
        margin-right: 0;
    }
    .design_items{
        min-height: 0;
    }
    .design{
        padding: 60px 0;
    }
    .design_title{
        line-height: 22px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    .design_text{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    .design_tabs{
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-right: 73px;
    }
    .design_tab{
        width: 161px;
        height: 54px;
        font-size: 18px;
        margin-bottom: 5px;
        display: none;
    }
    .design_tab.show{
        display: flex;
    }
    .design_tab.active{
        display: flex;
    }
    .design_show{
        position: absolute;
        width: 54px;
        background: #FFFFFF;
        border: 1px solid #019EDD;
        height: 54px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        top: 0;
        right: calc(50% - 120px);
    }
    .design_show img{
        width: 21px;
        height: 11px;
    }
    .design_tabs{
        margin-bottom: 25px;
    }
    .options{
        padding: 60px 0;
    }
    .options_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 30px;
    }
    .quiz{
        padding: 50px 0;
    }
    .quiz_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 16px;
    }
    .quiz_text{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 33px;
    }
    .quiz .container:nth-child(2){
        max-width: 100%;
        padding: 0;
    }
    .quiz_wrapper{
        padding: 50px 15px;
    }
    .quiz_item-title{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 25px;
    }
    .quiz_item-text{
        line-height: 20px;
        font-size: 16px;
        margin-bottom: 45px;
    }
    .quiz_item-btn{
        margin-left: 60px;
        margin-bottom: 30px;
    }
    .certificates_wrapper {
        flex-direction: column;
    }
    .certificates_item{
        width: 100%;
        margin-bottom: 3px;
    }
    .certificates{
        margin-bottom: 60px;
    }
    .certificates_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    .certificates_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    .works{
        padding: 40px 0 70px;
    }
    .works_title{
        font-size: 22px;
        line-height: 54px;
        margin-bottom: 10px;
    }
    .mounting{
        padding: 40px 0 65px;
    }
    .mounting_title{
        line-height: 54px;
        font-size: 22px;
        margin-bottom: 7px;
    }
    .mounting_subtitle{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .mounting_inner-title{
        text-align: center;
        line-height: 26px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .mounting_text{
        text-align: center;
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .mounting_text br{
        display: none;
    }
    .mounting_item{
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }
    .mounting_img::before{
        height: 103.47px;
        width: 253.39px;
    }
    .steps{
        padding: 65px 0 70px;
    }
    .steps_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 25px;
    }
    .steps_text{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .sample{
        padding: 45px 0 55px;
    }
    .sample_title{
        line-height: 54px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .sample_subtitle{
        line-height: 24px;
        font-size: 18px;
    }
    .sample_text{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 17px;
    }
    .sample_inner{
        flex-direction: column;
        align-items: center;
    }
    .sample_person{
        margin-bottom: 35px;
        text-align: center;
    }
    .sample_person-img{
        margin: 0 auto 10px;
    }
    .sample_desc{
        width: 100%;
        padding-bottom: 60px;
    }
    .sample_desc::after{
        height: 116.04px;
        width: 287px;
        bottom: -58px;
        right: 50%;
        transform: translateX(50%);
    }
    .sample_info{
        margin-bottom: 75px;
    }
    .size{
        margin-bottom: 70px;
    }
    .size_title{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 18px;
    }
    .size_text{
        line-height: 24px;
        font-size: 18px;
     
        width: 276px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .size_text span{
        line-height: 20px;
        font-size: 16px;

        margin-top: 20px;
    }
    .size_names{
        padding: 15px;
    }
    .size_item{
        padding: 15px;
    }
    .size_item, .size_names {
        width: 680px;
    }
    .map_block-title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 27px;
    }
    .map_block-adres{
        line-height: 18px;
        font-size: 16px;
        margin-bottom: 35px;
    }
    .popup_body{
        padding: 215px 15px 40px;
    }
    .popup_body-img{
        top: 0;
        width: 100%;
        height: 200px;
    }

    .popup_body-title{
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }
    .popup_body-btn{
        margin: 0 auto 25px;
    }
    .managers{
        margin-bottom: 50px;
    }
    .managers_title{
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    .managers_text{
        line-height: 20px;
        font-size: 18px;
    }
    .managers_info{
        padding: 30px 15px 50px;
    }
    .managers_items{
        margin-top: -25px;
        width: 74%;
    }
    .managers_item-img{
        margin-bottom: 15px;
    }
    .managers_item-title{
        line-height: 26px;
        font-size: 24px;
    }
    .managers_item:last-child{
        margin-bottom: 0;
    }
    .mounting_item-text{
        text-align: center;padding: 0 5%;
    }
    .liquidatio_main-title{
        font-size: 32px;
        line-height: 40px;
    }
    .liquidatio_item-left{
        height: 375px;
    }
}
@media (max-width: 575.98px) {
    .container {
		max-width: 100%;
	}
    /* .main_item{
        width: 100%;
        font-size: 14px;
    }
    .main_item:last-child{
        margin-bottom: 0;
    } */
    /* .advantage_item{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .advantage_items{
        justify-content: center;
    }
    .advantage_title br{
        display: none;
    } */
    .options_item{
        text-align: center;
    }
    .options_item-img{
        margin: 0 auto 20px;
    }
    .options_wrapper .slick-next{
        right: -30px;
    }
    .options_wrapper .slick-prev{
        left: -30px;
    }
    .works_wrapper{
        width: 100%;
        padding: 0 15px;
    }
    .works_wrapper .slick-prev{
        left: -5px;
    }
    .works_wrapper .slick-next{
        right: -5px;
        background-position: right;
    }
    .works_wrapper .slick-arrow{
        width: 15px;
    }
    .mounting_inner{
        width: 100%;
    }
    .mounting_items .slick-next{
        right: 0;
    }
    .mounting_items .slick-prev{
        left: 0;
    }
    .steps_item{
        margin-bottom: 30px;
        width: 100%;
    }
    .steps_item-number{
        min-width: 58px;
        height: 48px;
        font-size: 26px;
        margin-right: 10px;
    }
    .steps_item-text{
        line-height: 18px;
        font-size: 16px;
    }
    .steps_item{
        display: flex;
    }
    .steps{
        background-position: right;
    }
    .sample_form{
        width: 100%;
        padding: 35px 10px 25px;
    }
    .sample_form-title{
        line-height: 22px;
        font-size: 18px;
    }
    .map_block-body{
        height: 225px;
    }
    .works_item{
        height: 245px;
    }
    .quiz_item-btn::before{
        display: none;
    }
    .quiz_item-btn{
        margin-left: 0;
    }
    /* .main{
        margin-bottom: 20px;
    } */
    .works_item {
        height: 275px;
        width: calc(100vw - 80px);
    }
    .liquidatio_main{
        background-size: auto 560px;
        background-position: 60% 0;
        background-repeat: no-repeat;
    }
    .liquidatio_main{
        padding: 55px 0 0;
    }
    .liquidatio_main-title{
        line-height: 28px;
        font-size: 20px;
        margin-bottom: 25px;
        text-align: center;
    }
    .liquidatio_main-text{
        text-align: center;
        line-height: 22px;
        width: 200px;
        margin: 0 auto 27px;
        font-size: 15px;
    }
    .liquidatio_main-subtitle{
        line-height: 33px;
        font-size: 26px;
        margin-bottom: 8px;
        text-align: center;
    }
    .liquidatio_main-time {
        transform: scale(0.7);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #timer131d47e3e3cf81bbea7c5302dc3737b1 {
        text-align: center !important;
    }
    .liquidatio_main .container{
        display: flex;
        flex-direction: column;
    }
    .liquidatio_main-items{
        order: 1;
        margin-bottom: 0;
    }
    .liquidatio_main-btn{
        height: 60.79px;
        margin: 0 auto 52px;
        width: 250px;
        font-size: 12px;
    }
    .liquidatio_main-item{
        width: 250px;
        margin: 0 auto 5px;
    }
    .liquidatio{
        padding: 65px 0;
    }
    .liquidatio_title{
        line-height: 32px;
        text-align: center;
        font-size: 24px;
        margin-bottom: 25px;
    }
    .liquidatio_item-title{
        line-height: 23px;
        font-size: 18px;
    }
    .liquidatio_item-left{
        height: 235px;
    }
    .liquidatio_item-subtitle{
        line-height: 16px;
        font-size: 12px;
    }
    .liquidatio_item-options{
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .liquidatio_item-inner{
        flex-direction: column;
        align-items: center;
    }
    .liquidatio_item-length{
        margin-bottom: 12px;
    }
    .liquidatio_item{
        margin-bottom: 45px;
    }
}




/* NEW CODE */


.main{
    padding-top: 95px;
    background-image: url(../img/main_bg.jpg);
    background-size: cover;
    background-position: center;
}
.main_title{
    line-height: 68px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 50px;
    margin-bottom: 25px;
}
.main_title span{
    font-weight: 800;
}
.main_text{
    font-size: 22px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 115px;
    font-weight: 500;
}
.main_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.main_items{
    width: 56%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main_item{
    width: 293px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(41px);
    border-radius: 8px;
    height: 102px;
    padding: 18px 18px 18px 80px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
}
 .main_item-text{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 22px;
    transition: all 0.3s;
}
.main_item:hover .main_item-text {
    color: #3AAA35;
}
.main_item img{
    position: absolute;
    left: 27px;
    top: 50%;
    transform: translateY(-50%);
}
.main_item:nth-child(1){
    border-left: 6px solid #FBBA00;
}
.main_item:nth-child(2){
    border-left: 6px solid #009EDD;
}
.main_item:nth-child(3){
    border-left: 6px solid #3AAA35;
}
.main_item:nth-child(4){
    border-left: 6px solid #D60F6C;
}
.main_inner{
    width: 380px;
    border-radius: 8px;
    background-image: url(../img/main_inner.jpg);
    background-size: cover;
    position: relative;
    padding: 30px 30px 50px;
}
.main_inner::before{
    position: absolute;
    content: "";
    border: 1px solid #3AAA35;
    border-radius: 8px;
    top: 8px;
    right: 8px;
    left: 8px;
    bottom: 8px;
}
.main_inner-title{
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    line-height: 28px;
    margin-bottom: 195px;
}
.main_inner-title span{
    font-weight: 700;
}
.main_inner-btn{
    width: 270px;
    height: 70px;
    margin: 0 auto;
    position: relative;
}
.advantage{
    padding: 155px 0 150px;
}
.advantage_wrapper{
    position: relative;
    background-image: url(../img/advantage_wrapper.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 80px 40px 60px 55px;
}
.advantage_wrapper::before{
    position: absolute;
    content: "";
    border-radius: 10px;
    border: 1px solid #3AAA35;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}
.advantage_subtitle{
    position: absolute;
    font-weight: 700;
    font-size: 65px;
    line-height: 22px;
    text-transform: uppercase;
    opacity: 0.5;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #3AAA35;
    color: rgba(0,0,0, 0);
    top: -12px;
    left: 54px;
}
.advantage_title{
    line-height: 22px;
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 60px;
}
.advantage_title span{
    font-weight: 800;
}
.advantage_items{
    display: flex;
    justify-content: space-between;
}
.advantage_item{
    margin-right: 55px;
}
.advantage_item:last-child{
    margin-right: 0;
}
.advantage_item-title{
    font-size: 36px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 27px;
}
.advantage_item-text{
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    
}
@media (max-width: 1799.98px){
    .main_inner-title {
        margin-bottom: 120px;
    }
    .main_text {
        margin-bottom: 60px;
    }
}

@media(max-width: 1199.98px) {
    .advantage_item {
        margin-right: 5px;
    }
}
@media(max-width:991.98px){
    .main_title{
        font-size: 42px;
        line-height: 1.4;
    }
    .main_text{
        margin-bottom: 60px;
    }
    .main_wrapper{
        flex-direction: column;
    }
    .main_items{
        width: 100%;
    }
    .main_inner{
        margin: 0 auto;
    }
    .main{
        padding-top: 135px;
        background-size:  1555px 80%;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .advantage_items{
        flex-wrap: wrap;
    }
    .advantage_item{
        width: 48%;
        margin-bottom: 25px;
    }
    .advantage_title{
        line-height: 1;
    }
    .advantage{
        padding: 100px 0;
    }
    .advantage_subtitle{
        font-size:42px;
    }
}
@media (max-width: 767.98px) {
    .main{
        padding-top: 105px;
        background-size: 1555px 62%;
    }
    .main_title{
        font-size: 30px;
        margin-bottom: 40px;
    }
    .main_title span{
        display: block;
    }
    .main_text{
        line-height: 24px;
        width: 190px;
        margin-bottom: 55px;
        font-size: 16px;
    }
    .main_item{
        width: 100%;
        margin-bottom: 10px;
        height: 77px;
    }
    .main_item-text{
        font-size: 14px;
        line-height: 18px;
    }
    .main_inner{
        width: 100%;
    }
    .main_inner-title{
        font-size: 18px;
    }
    .header_mobile{
        padding-top: 35px;
    }
    .main_inner-btn{
        max-width: 100%;
    }
    .advantage{
        padding: 70px 0;
    }
    .advantage_subtitle{
        left: 9px;
        font-size: 22px;
    }
    .advantage_wrapper{
        padding: 35px;
    }
    .advantage_title{
        text-align: center;
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .advantage_item{
        margin-right: 0;
        width: 100%;
    }
    .advantage_item-title{
        font-size: 35px;
        margin-bottom: 10px;
    }
    .advantage_item-text{
        font-size: 14px;
    }
    .thanks{
        min-height: 0;
        background-size: cover;
        padding: 80px 0 50px;
    }
}

/* NEW CODE */