/*! 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:38px;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}

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

button{
    cursor:pointer;
    border:none;
}

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: "Overpass", sans-serif; */
    font-family: "Inter Tight", sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}

/* pagination */
.pagination{display:flex;align-items: center;gap:15px; width: 100%;padding: 0;}
.pagination .page-item.flex{align-items: center;justify-content: center;}
.pagination .page-item{width: 30px;height: 30px;font-size: 18px;line-height: 30px;text-align: center;color: #151515;}
.pagination .page-item a{color:#252525;}
.pagination .page-item.active{background-color: #72bf44;}
.pagination .page-item.active a{color: #ffffff;}

#mse2_results{margin-bottom:50px!important;}

.header::before{
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, #000000 0%, #72BF44 50%, #000000 100%);
    height: 12px;
    top: -12px;
    right: 0;
}
.header{
    position: absolute;
    width: 100%;
    top: 12px;
    right: 0;
    background: #72BF44;
    z-index: 10;
}
.header.fixed{
    position: fixed;
    top: 0;
    animation: headerAnim 0.3s;
}
.header.fixed::before{
    display: none;
}
@keyframes headerAnim{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0); 
    }
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_inner{
    display: flex;
    align-items: center;
   
}
.header_catalog-btn{
    font-weight: 600;
    line-height: 19.36px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    background: #252525;
    text-transform: uppercase;
    user-select: none;
    padding: 15px 14px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s;
}
.header_catalog-btn.active{
    background: #FFFFFF;
    color: #252525;
}
.header_catalog-burger{
    display: block;
    width: 19px;
    height: 15px;
    position: relative;
}
.header_catalog-burger::before{
    position: absolute;
    content: "";
    width: 100%;
    background-color: #fff;
    height: 3px;
    top: 0;
    right: 0;
    transition: all 0.3s;
}
.header_catalog-btn.active .header_catalog-burger::before{
    background-color: #252525;
    transform: rotate(45deg);
    top: 6px;
}
.header_catalog-btn.active .header_catalog-burger::after{
    background-color: #252525;
    transform: rotate(-45deg);
    bottom: 6px;
}
.header_catalog-btn.active .header_catalog-burger span{
    transform: scale(0);
}
.header_catalog-burger::after{
    position: absolute;
    content: "";
    width: 100%;
    background-color: #fff;
    height: 3px;
    bottom: 0;
    right: 0;
    transition: all 0.3s;
}
.header_catalog-burger span{
    position: absolute;
    content: "";
    width: 100%;
    background-color: #fff;
    height: 3px;
    top: 6px;
    right: 0;
    transition: all 0.3s;
}
.menu{
    display: flex;
    gap: 25px;
}
.menu li{
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
    padding: 40px 0;
}
.menu li .menu_drop{
    position: absolute;
    background: #FFFFFF;
    border-top: 1px solid #F3F3F3;
    box-shadow: 0px 25px 25px 0px #0000004D;
    top: 100%;
    left: -8px;
    padding: 22px 0;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.menu li:hover .menu_drop{
    opacity: 1;
    visibility: visible;
}
.menu li .menu_drop li{
    padding: 0;
}
.menu li .menu_drop a{
    font-weight: 700;
    line-height: 24.2px;
    color: #72BF44;
    font-size: 20px;
    text-transform: none;
    padding: 12px 30px;
    transition: all 0.3s;
    width: 100%;
    white-space: nowrap;
}
.menu li .menu_drop a:hover{
    background: #F6F6F6;
    color: #252525;
}
.menu a{
    font-size: 16px;
    line-height: 19.36px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    }
.header_links{
    display: flex;
    align-items: center;
}
.header_number{
    font-weight: 800;
    line-height: 21.78px;
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    position: relative;
    padding-left: 26px;
}
.header_number::before{
    position: absolute;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    width: 150px;
    height: 40px;
    font-weight: 600;
    line-height: 19.36px;
    color: #252525;
    font-size: 16px;
    border: 2px solid #FFFFFF;
    transition: all 0.3s;
}
.header_btn:hover{

    background: #ffffff00;
    color: #fff;
}
.header_catalog-drop{
    position: absolute;
    top: 100%;
    max-width: 1300px;
    width: 1300px;
    background: #FFFFFF;
    border-top: 1px solid #F3F3F3;
    box-shadow: 0px 25px 25px 0px #0000004D;
    right: 50%;
    transform: translateX(50%);
    padding: 35px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.header_catalog-drop.active{
    opacity: 1;
    visibility: visible;
}
.header_catalog-inner{
    display: flex;  
}
.header_catalog-titles{
    width: 370px;
    margin-right: 20px;
    position: relative;
}
.header_catalog-title{
    font-weight: 600;
    line-height: 21.92px;
    font-size: 18px;
    color: #72BF44;
    text-transform: uppercase;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 14px 20px;
}
.header_catalog-title.active::before{
    position: absolute;
    content: "";
    background-image: url(../img/title_arrow.svg);
    background-size: cover;
    width: 5px;
    height: 9px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.header_catalog-title.active{
    color: #252525;
    background: #F6F6F6;
}
.header_catalog-items{
    width: calc(100% - 390px);
    display: none;
    padding-left: 20px;
    border-left: 1px solid #72BF44;
    flex-wrap: wrap;
}
.header_catalog-items.active{
    display: flex;
}
.header_catalog-items .catalog_item{
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    padding: 20px;
    height: 194px;
}
.header_catalog-items .catalog_item img{
    width: 145px;
    height: 125px;
}
.aside{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-bottom: 1px solid #fff;
    z-index: 4;
}
.aside_item{
    background: #72BF44;
    border-style: solid;
    border-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s;
    border-width: 1px 0px 0 1px;
    position: relative;
}
.aside_item span{
    position: absolute;
    background: #000000;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    line-height: 14.52px;
    color: #fff;
    font-size: 12px;
    top: 4px;
    right: 2px;
}
.aside_item:hover{
    background: #518D2D;
}
.main{
    margin-top: 111px;
    position: relative;
}
.main_slide{
    min-height: 675px;
    background: linear-gradient(103.95deg, #D5D5D5 0.35%, #FFFFFF 59.28%);
    padding-top: 70px;
    overflow: hidden;
    position: relative;
}
.main_img{
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    display: flex;
    z-index: 1;
}
.main_img::before{
    position: absolute;
    content: "";
    background-image: url(../img/main_img-bef.svg);
    width: 53px;
    height: 513px;
    bottom: 0;
    left: -53px;
    background-size: cover;
}
.main_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_info{
    width: 55%;
}
.main_title{
    font-family: "Overpass", sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 69.12px;
    margin-bottom: 36px;
    color: #72BF44;
    text-transform: uppercase;
}
.main_logo{
    margin-bottom: 30px;
    display: flex;
}
.main_text{
    font-weight: 400;
    line-height: 41.14px;
    color: #252525;
    font-size: 34px;
    margin-bottom: 55px;
    max-width: 540px;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #72BF44;
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.04px;
    transition: all 0.3s;
}
.btn:hover{
    background: #252525;
}
.main_btn{
    width: 203px;
    gap: 28px;
    height: 65px;
}
.main_btn svg{
    margin-top: 4px;
}
.main_dots-wrapper{
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 2;
    width: 100%;
}
.main_dots .slick-dots{
    display: flex;
    gap: 15px;
}
.main_dots .slick-dots li{
    display: flex;
    padding: 0;
}
.main_dots .slick-dots button{
    padding: 0;
    font-size: 0;
    width: 29px;
    height: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #C6C6C6;
}
.main_dots .slick-dots .slick-active button{
    background: #72BF44;
    width: 72px;
}
.main_line{
    margin-top: 17px;
    display: flex;
    line-height: 38.72px;
    color: #0000001A;
    gap: 40px;
    font-size: 32px;
    white-space: nowrap;
    transform: translateX(-40%);
    animation: lineAnim 10s linear infinite;
}

@keyframes lineAnim{
    0%{
        transform: translateX(-40%);
    }
    100%{
        transform: translateX(-270%);
    }
}

.catalog {
    /* margin: 70px 0; */
    background-color: #f6f6f6;
    padding-top: 70px;
}

h2{
    font-weight: 800;
    line-height: 48.11px;
    color: #252525;
    font-size: 34px;
    font-family: "Overpass", sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.catalog_tabs{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 15px;
}

.tab{
    cursor: pointer;
}
.catalog_tab{
    /* background: #F6F6F6; */
    /* padding: 21px 24px; */
    /* font-size: 18px; */
    /* line-height: 21.78px; */
    color: #252525;
    font-weight: 400;
    /* text-transform: uppercase; */
}

.catalog_tab {
    font-size: 15px;
    color: #252525;
    font-weight: 400;
    margin-right: 30px;
    border-bottom: dotted 1px;
}
.catalog_tab.active{
    background: #72BF44;
    color: #fff;
}
.catalog_content{
    
    padding: 70px 0;
    display: none;
    position: relative;
    z-index: 1;
}
.catalog_content::before{
    position: absolute;
    content: "";
    background: #F6F6F6;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    height: 100%;
    width: 100vw;
}
.catalog_content.active{
    display: block;
}
.catalog_items{
    display: flex;
    flex-wrap: wrap;
}
.catalog_item{
    width: 25%;
    background-color: #fff;
    height: 296px;
    border: 1px solid #D3D3D3;
    margin-right: -1px;
    margin-bottom: -1px;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-weight: 600;
    line-height: 21.78px;
    color: #000000;
    font-size: 18px;
    transition: all 0.3s;
}
.catalog_item:hover{
    border: 1px solid #72BF44;
    z-index: 1;
    box-shadow: 0px 0px 40px 0px #00000040;

}
.catalog_item img{
    width: 224px;
    height: 196px;
    object-fit: contain;
    mix-blend-mode: darken;
}

.servise{
    margin: 70px 0;
}
.servise_items{
    display: flex;
    gap: 24px;
}
.servise_items + .sales_wrapper{
    margin-top: 70px;
}
.servise_item{
    flex: 1;
    height: 266px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.servise_item-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}
.servise_item-img::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #00000099;
}
.servise_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.servise_item-title{
    font-weight: 600;
    line-height: 38.72px;
    text-align: center;
    color: #fff;
    font-size: 32px;
}
.servise_item-old{
    font-weight: 300;
    line-height: 38.72px;
    text-align: center;
    color: #B9B9B9;
    font-size: 32px;
    text-decoration: line-through;
    margin-bottom: 20px;
}
.servise_item-price{
    background: #72BF44;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.56px;
    color: #fff;
    padding: 5px 12px;
}
.form_block{
    position: relative;
    padding-top: 80px;
    background-color: #000;
    margin: 70px 0;
    z-index: 1;
}
.form_block-wrapper{
    display: flex;
    justify-content: space-between;
}
.form_block-info{
    width: 640px;
}
.form_block-bg{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    opacity: 0.5;
}
.form_block-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form_block-title{
    font-weight: 800;
    line-height: 56.97px;
    color: #fff;
    font-size: 45px;
    font-family: "Overpass", sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.form_block-subtitle{
    font-size: 32px;
    line-height: 38.72px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 36px;
}
.form_block-sale{
    background: #72BF44;
    margin-bottom: 36px;
    padding: 14px 22px;
    width: fit-content;
    font-family: "Overpass", sans-serif;
    font-size: 55px;
    font-weight: 800;
    line-height: 69.63px;
    color: #fff;
    position: relative;
}
.form_block-sale::before{
    position: absolute;
    content: "";
    background-image: url(../img/form_arrow.svg);
    background-size: cover;
    width: 90px;
    height: 153px;
    right: -91px;
    top: 55px;
}
.form_block-desc{
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.56px;
    width: 244px;
}
.form_block-form{
    background: #72BF44;
    width: 500px;
    padding: 46px;
    margin-top: 24px;
}
.inp_page{
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    border: none;
    padding-left: 25px;
    font-size: 18px;
}
.inp_page::placeholder{
    color: #A0A0A0;
}
.form_block-file{
    display: block;
    margin-bottom: 20px;
}
.form_block-file span{
    display: flex;
    height: 60px;
    align-items: center;
    padding-left: 25px;
    color: #A0A0A0;
    cursor: pointer;
    font-size: 18px;
    background: #FFFFFF;
    position: relative;
}
.form_block-file span::before{
    position: absolute;
    content: "";
    border-left: 1px solid #DADADA;
    width: 80px;
    height: 100%;
    right: 0;
    top: 0;
    background: #EEEEEE;
    background-image: url(../img/file.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.form_block-file input{
    display: none;
}
.form_block-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    width: 100%;
    height: 60px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.78px;
    margin-bottom: 20px;
    color: #fff;
    transition: all 0.3s;
}
.form_block-btn:hover{
    background: #315E17;

}
.form_block-ok{
    font-weight: 400;
    line-height: 16.94px;
    color: #fff;
    font-size: 14px;
    display: flex;
}
.form_block-ok input{
    display: none;
}
.form_block-ok  span{
    display: block;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    margin-right: 9px;
    min-width:16px;
    cursor: pointer;
    position: relative;
}
.form_block-ok input:checked + span::before{
    position: absolute;
    content: "";
    background-image: url(../img/check.svg);
    background-size: cover;
    width: 10px;
    height: 8px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}

.offer_block{
    margin: 70px 0;
}
.offer_block-wrapper{
    display: flex;
    border: 1px solid #72BF44;
    position: relative;
}
.offer_block-wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/offer_block.svg);
    background-size: cover;
    width: 70px;
    height: 70px;
    top: 0;
    right: 36px;
}
.content .offer_block-wrapper::before{
    position: absolute;
    content: "";
    background-image: unset;
    background-size: cover;
    width: 70px;
    height: 70px;
    top: 0;
    right: 36px;
}
.offer_block-img{
    width: 380px;
    min-height: 280px;
    display: flex;
}
.offer_block-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer_block-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 380px);
    padding: 42px;
}
.offer_block-title{
    font-weight: 700;
    line-height: 38.72px;
    font-size: 32px;
    color: #72BF44;
}
.offer_block-text{
    line-height: 29.04px;
    color: #000000;
    font-size: 24px;
}
.sales{
    margin: 70px 0;
}
.sales_wrapper{
    display: flex;
    justify-content: space-between;
}
.sales_column{
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sales_column:nth-child(1) .sales_item:nth-child(1){
    height: 367px;
}
.sales_column:nth-child(1) .sales_item:nth-child(2){
    height: 432px;
}
.sales_column:nth-child(2) .sales_item:nth-child(1){
    height: 500px;
}
.sales_column:nth-child(2) .sales_item:nth-child(2){
    height:298px;
    padding: 32px;
}
.sales_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 10px 80px;
}
.sales_item-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    z-index: -1;
}
.sales_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sales_item-img::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0, 0.5);
}
.sales_item-title{
    font-family: "Overpass", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 43.04px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.sales_column:nth-child(2) .sales_item:nth-child(2) .sales_item-text{
    margin-bottom: 25px;
}
.sales_item-title span{
    color: #72BF44;
}
.sales_item-text{
    line-height: 29.04px;
    font-size: 24px;
    margin-bottom: 45px;
}
.sales_item-btn{
    min-width: 250px;
    height: 68px;
    padding: 10px 30px;
}
.sales_item-list{
    font-size: 24px;
    margin-bottom: 34px;
    line-height: 29.04px;
    text-align: left;
}
.sales_item-list li{
    margin-bottom: 30px;
    position: relative;
    padding-left: 37px;
}
.sales_item-list li::before{
    position: absolute;
    content: "";
    background-image: url(../img/item_text.svg);
    background-size: cover;
    width: 25px;
    height: 25px;
    left: 0;
    top: 0;
}
.sales_item-list li:last-child{
    margin-bottom: 0;
}
.about{
    padding: 70px 0;
    background: #F6F6F6;
}
/* .about_top-text{
    font-weight: 400;
    line-height: 24.2px;
    color: #252525;
    font-size: 20px;
    margin-bottom: 30px;
    border-left: 5px solid #72BF44 ;
    padding-left: 15px;
} */
.about_top-text p{
    font-weight: 400;
    line-height: 24.2px;
    color: #252525;
    font-size: 20px;
    margin-bottom: 30px;
    border-left: 5px solid #72BF44 ;
    padding-left: 15px;
}
.about_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about_img{
    width: 417px;
    height: 299px;
    position: relative;
    z-index: 2;
    display: flex;
}
.about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_info{
    position: relative;
    z-index: 1;
    width: 830px;
    padding: 34px 76px 30px 0;
}
.about_info::before{
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    right: 0;
    width: calc(100% + 264px);
    background: #72BF44;
    z-index: -1;
}
.about_logo{
    display: flex;
    margin-bottom: 28px;
}
.about_info p{
    font-size: 20px;
    line-height: 24.2px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
}
.about_info p:last-child{
    margin-bottom: 0;
}
.clients{
    margin: 70px 0;
}
.clients_slider{
    width: calc(100% + 24px);
}
.clients_slider .slick-track{
    display: flex;
}
.clients_slide{
    border: 1px solid #D3D3D3;
    margin-right: 24px;
    height: inherit;
    height: 100px;
    padding: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.clients_slide img{
    max-width: 100%;
    max-height: 100%;
}
.clients_slider .slick-arrow{
    position: absolute;
    top: -96px;
    padding: 0;
    width: 36px;
    height: 36px;
    z-index: 1;
    cursor: pointer;
    background: none;
    border: 1px solid #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.clients_slider .slick-arrow:hover{
    background: #72BF44;
    border: 1px solid #72BF44;
}
.clients_slider .slick-arrow:hover path{
    fill: #fff;
}
.clients_slider .slick-next{
    right: 24px;
}
.clients_slider .slick-prev{
    right: 65px;
}

.articles{
    padding: 70px 0;
    background: #F6F6F6;
    margin: 70px 0;
}
.articles_items{
    display: flex;
    gap: 25px;
}
.articles_item{
    flex: 1;
    border: 1px solid #D3D3D3;
}
.articles_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.articles_top h2{
    margin-bottom: 0;
}
.articles_more{
    color: #72BF44;
    font-size: 24px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 29.04px;
}
.articles_item-img{
    display: flex;
    width: 100%;
    height: 226px;
}
.articles_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articles_item-info{
    padding: 25px 22px;
}
.articles_item-title{
    font-weight: 600;
    line-height: 24.2px;
    color: #252525;
    font-size: 20px;
    margin-bottom: 10px;
}
.articles_item-text{
    font-weight: 400;
    line-height: 19.36px;
    color: #252525;
    font-size: 16px;
    margin-bottom: 20px;
}
.articles_item-link{
    line-height: 19.36px;
    color: #72BF44;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: underline;
}
.articles_item-link:hover{
    color: #315D17;
}
.center_blocks{
    align-items: center;
}
.form_block-title span{
    position: relative;
}
.form_block-title span::before{
    position: absolute;
    content: "";
    background: #72BF44;
    width: calc(100% + 26px);
    right: -13px;
    height: 100%;
    z-index: -1;
    top: -4px;
}
.contacts_tabs{
    display: flex;
    gap: 10px;
}
.contacts_tab{
    width: calc(50% - 5px);
    background: #9B9B9B;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    line-height: 21.78px;
    font-size: 18px;
    color: #fff;
}
.contacts_tab.active{
    background: #72BF44;
}
.contacts_content{
    padding: 124px 0 150px;
    position: relative;
    display: none;
}
.contacts_content.active{
    display: block;
}
.contacts_content-map{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.contacts_content-map iframe{
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
}
.contacts_inner{
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 30px 0px #00000040;
    background: #FFFFFF;
    border: 1px solid #72BF44;
    width: 380px;
    padding: 50px 30px;
}
.contacts_item{
    position: relative;
    padding-left: 28px;
    margin-bottom: 24px;
}
.contacts_item:last-child{
    margin-bottom: 0;
}
.contacts_item-img{
    position: absolute;
    left: 0;
    top: -2px;
}
.contacts_item-title{
    font-weight: 700;
    line-height: 21.78px;
    color: #72BF44;
    font-size: 18px;
    margin-bottom: 5px;
}
.contacts_item-text{
    font-size: 18px;
    line-height: 21.78px;
    color: #000;
    font-weight: 400;
}
.footer{
    background: #000000;
    border-top: 9px solid #72BF44;
    padding: 50px 0 0;
}
.footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid #6F6D6D;
}
.footer_inner{
    background: #1E1E1E;
    padding: 18px 0;
}
.footer_inner-wrapper{
    display: flex;
    justify-content: space-between;
}
.footer_logo{
    display: flex;
}
.footer_title{
    font-weight: 400;
    line-height: 29.04px;
    font-size: 24px;
    color: #fff;
}
.footer_title span{
    font-weight: 700;
    color: #72BF44;
}
.footer_wrapper-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.footer_wrapper-more{
    font-weight: 600;
    line-height: 19.36px;
    color: #fff;    
    font-size: 16px;

    transition: all 0.3s;
}
.footer_wrapper-more:hover{
    color: #72BF44;
}
.footer_wrapper-inner{
    width: calc(100% - 176px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 14px;
    border-bottom: 1px solid #6F6D6D;
}
.footer_wrapper-links{
    display: flex;
    gap: 10px;
}
.footer_wrapper-link{
    font-size: 16px;
    line-height: 19.36px;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border: 1px solid #6F6D6D;
    border-bottom: none;
    transition: all 0.3s;
    cursor: pointer;
}
.footer_wrapper-link:hover{
    color: #72BF44;
}
.footer_items{
    display: flex;
    margin-bottom: 40px;
    gap: 86px;
}
.footer_item a{
    font-weight: 400;
    line-height: 19.36px;
    color: #B3B3B3;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s;
}
.footer_item a:hover{
    color: #72BF44;
}
.footer_item li:last-child a{
    margin-bottom: 0;
}
.footer_inner-item{
    font-weight: 400;
    line-height: 19.36px;
    font-size: 16px;
    color: #898989;
    transition: all 0.3s;
}
a.footer_inner-item:hover{
    color: #72BF44;
}
.footer_content{
    display: none;
    gap: 86px;
}
.footer_content.active{
    display: flex;
}
.popup_body{
    box-shadow: 0px 10px 20px 0px #0000000D;
    background: #FFFFFF;
    width: 520px;
    padding: 30px 58px 52px;
}
.popup_body-title{
    font-weight: 700;
    line-height: 36.3px;
    text-align: center;
    font-size: 30px;
    margin-bottom: 23px;
    text-transform: uppercase;
}
.popup_body .inp_page{
    border: 1px solid #9B9B9B;
    margin-bottom: 20px;
}
.popup_body-btn{
    width: 100%;
    height: 60px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin: 30px 0;
}
.popup_body .form_block-ok{
    color: #252525;
}
.popup_body-text{
    font-size: 20px;
    line-height: 24.2px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 25px;
}
.popup_thanks-btn{
    width: 208px;
    height: 60px;
    cursor: pointer;
    margin: 0 auto;
}
.area_page{
    border: 1px solid #9B9B9B;
    height: 140px;
    padding: 20px 25px;
    width: 100%;
    display: block;
    resize: none;
}

.header_cart{
    position: fixed;
    top: 0;
    right: 0;
    width: 690px;
    padding: 30px 40px 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    background-color: #fff;
}
.header_cart.active{
    height: 100%;
    overflow-y: scroll;
    opacity: 1;
    visibility: visible;
}
.cart_open{
    cursor: pointer;
}
.header_cart-title{
    font-size: 30px;
    line-height: 36.3px;
    color: #252525;
    font-weight: 700;
    margin-bottom: 23px;
    text-transform: uppercase;
}
.header_cart-item{
    background: #F6F6F6;
    margin-bottom: 10px;
    padding: 34px 20px;
    justify-content: space-between;
    display: flex;
}
.header_cart-img{
    width: 90px;
    height: 90px;
    display: flex;
}
.header_cart-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_cart-info{
    width: calc(100% - 150px);
}
.header_cart-subtitle{
    font-weight: 400;
    line-height: 24.2px;
    color: #252525;
    margin-bottom: 5px;
    font-size: 20px;
}
.header_cart-delete{
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}
.header_cart-price{
    font-weight: 400;
    line-height: 29.04px;
    color: #252525;
    font-size: 24px;
}
.header_cart-inner{
    display: flex;
    align-items: center;
}
.header_cart-counter{
    display: flex;
    border: 1px solid #9B9B9B;
    background: #FFFFFF;
    width: 150px;
    height: 40px;
    margin-right: 20px;
    user-select: none;
}
.count_inp{
    width: calc(100% - 90px);
    background-color: none;
    border: none;
    text-align: center;
}
.count_btn{
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.header_cart-total{
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
    z-index: 1;
    padding: 22px 0;
}
.header_cart-total::before{
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 100%;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    background: #F6F6F6;
}
.header_cart-value{
    font-weight: 300;
    line-height: 36.3px;
    color: #252525;
    font-size: 30px;
}
.header_cart-value span{
    font-weight: 700;
}
.header_cart-btn{
    width: 100%;
    height: 60px;
}
.header_cart-close{
    top: 30px;
    right: 30px;
    position: absolute;
    cursor: pointer;
}
.menu_burger{
    display: none;
}
.crumbs{
    padding: 26px 0;
    display: flex;
    flex-wrap: wrap;
}
.crumb{
    font-weight: 400;
    line-height: 16.94px;
    color: #72BF44;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.crumb::after{
    position: relative;
    content: "";
    display: block;
    color: #9B9B9B;
    background-image: url(../img/crumb_arrow.svg);
    margin: 0 10px;
    width: 11px;
    height: 9px;
}
.crumb:last-child::after{
    display: none;
}
.crumb:last-child{
    color: #9B9B9B;
}
.main_steps{
    margin-bottom: 44px;
    padding-left: 38px;
    position: relative;
}
.main_steps::before{
    position: absolute;
    content: '';
    background-image: url(../img/main_arrow.svg);
    background-size: cover;
    width: 27px;
    height: 165px;
    top: 20px;
    left: 0;
}
.main_steps span{
    font-size: 34px;
    font-weight: 400;
    line-height: 41.14px;
    display: block;
}

.main_steps + .main_btn{
    width: 232px;
}
.catalog_page{
    position: relative;
    z-index: 1;
    padding: 70px 0;
}
.catalog_page::before{
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 100%);
    height: 680px;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.catalog_page-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    position: relative;
}
.catalog_page-aside{
    background: #F6F6F6;
    width: 306px;
}
.catalog_page-title{
    padding: 30px 20px;
    font-weight: 700;
    line-height: 37.98px;
    color: #252525;
    font-size: 30px;
    font-family: "Overpass", sans-serif; 
} 
.catalog_page-title span{
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 24.2px;
    font-family: "Inter Tight", sans-serif;
    padding-left: 30px;
    position: relative;
}
.catalog_page-title span::before{
    position: absolute;
    content: "";
    background-image: url(../img/catalog_page-title.svg);
    background-size: cover;
    width: 13px;
    height: 17px;
    left: 10px;
    top: -3px;
}
.catalog_list-title{
    font-weight: 600;
    line-height: 19.36px;
    color: #252525;
    font-size: 16px;
    padding: 15px 40px 15px 20px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    margin-bottom: 2px;
}
.catalog_list-title.active::before{
    transform: translateY(-50%) rotate(90deg);
}
.catalog_list-title::before{
    position: absolute;
    content: "";
    background-image: url(../img/aside_arrow.svg);
    width: 5px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    transition: all 0.3s;
}
a .catalog_list-title::before{
    content: unset;
}

.catalog_page-list{
    margin: 10px 20px;
    padding: 10px 0;
    display: none;
    border-left: 2px solid #FFFFFF;
}
.catalog_page-list a{
    font-size: 16px;
    line-height: 19.36px;
    color: #252525;
    font-weight: 300;
    padding-left: 20px;
    display: block;
    position: relative;
    margin-bottom: 15px;
}
.catalog_page-list li:last-child a{
    margin-bottom: 0;
}
.catalog_page-list a.active{
    color: #72BF44;
}
.catalog_page-list a.active::before{
    position: absolute;
    content: "";
    background-color: #72BF44;
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
}
.catalog_page-right{
    width: calc(100% - 330px);
}
.catalog_page-checks{
    margin: 30px 20px;
}
.catalog_page-check{
    font-size: 16px;
    font-weight: 300;
    line-height: 19.36px;
    margin-bottom: 15px;
    display: flex;
    color: #000000;
    cursor: pointer;
}
.catalog_page-check:last-child{
    margin-bottom: 0;
}
.catalog_page-check input{
    display: none;
}
.catalog_page-check span{
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: block;
    margin-right: 10px;
    border: 1px solid #9B9B9B;
    background-color: #fff;
    position: relative;
}

.catalog_page-check input:checked + span::before{
    position: absolute;
    content: "";
    background-image: url(../img/check.svg);
    background-size: cover;
    width: 11px;
    height: 9px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.catalog_page p{
    font-weight: 300;
    line-height: 19.36px;
    font-size: 16px;
    margin-bottom: 24px;
}
.catalog_page-items{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 24px;
}
.catalog_page-item{
    border: 1px solid #9B9B9B;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s;
    width: calc(33.333% - 16px);
}
.catalog_page-item:hover{
    box-shadow: 0px 10px 20px 0px #00000026;
    border: 1px solid #72BF44;
}
.catalog_page-img{
    height: 210px;
    display: flex;
    margin-bottom: 10px;
}
.catalog_page-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.catalog_page-subtitle{
    font-size: 16px;
    line-height: 24.2px;
    color: #252525;
    font-weight: 600;
    margin-bottom: 5px;
}

.catalog_page-top {min-height: 370px;}

.catalog_page-options{
    margin-top: auto;
    list-style: disc;
    font-size: 16px;
    font-weight: 300;
    line-height: 19.36px;
    color: #252525;
    padding: 20px ;
    z-index: 1;
    position: relative;
    margin-bottom: 20px;
}
.catalog_page-options::before{
    position: absolute;
    content: "";
    width: calc(100% + 40px);
    right: 50%;
    transform: translateX(50%);
    top: 0;
    background: #F3F3F3;
    height: 100%;
    z-index: -1;
}
.catalog_page-options li{
    margin-bottom: 10px;
}
.catalog_page-options li:last-child{
    margin-bottom: 0;
}
.catalog_page-btn{
    height: 65px;
    width: 100%;
}
.catalog_page-more{
    border: 1px solid #72BF44;
    width: 100%;
    height: 65px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #252525;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.04px; 
}
.sales_options{
    margin-bottom: 70px;
    display: flex;
    gap: 24px;
}
.sales_option{
    flex: 1;
    display: flex;
    min-height: 218px;
    justify-content: space-between;
    border: 1px solid #D3D3D3;
}
.sales_option-img{
    background: #72BF44;
    width: 168px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sales_option-title{
    width: calc(100% - 168px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-weight: 600;
    line-height: 24.2px;
    font-size: 20px;
    padding: 40px;
}
.sales_option-title span{
    color: #72BF44;
    text-transform: uppercase;
}

.advantages{
    padding: 70px 0;
    background-image: url(../img/advantages.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 70px 0;
}
.advantages_tabs{
    display: flex;
    margin-bottom: 30px;
    gap: 24px;
}
.advantages_tab{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    padding: 20px;
    font-size: 18px;
    line-height: 21.78px;
    color: #252525;
    font-weight: 700;
    position: relative;
}
.advantages_tab.active::before{
    position: absolute;
    content: "";
    background-image: url(../img/tab_bef.svg);
    background-size: cover;
    width: 26px;
    height: 13px;
    bottom: -13px;
    right: 50%;
    transform: translateX(50%);
}
.advantages_tab.active{
    background: #72BF44;
    color: #fff;
}
.advantages_tab-content{
    background: #FFFFFF;
    padding: 30px;
    font-weight: 300;
    line-height: 37px;
    color: #000000;
    font-size: 20px;
    display: none;
}
.advantages_tab-content.active{
    display: block;
}
.advantages_tab-content p{
    margin-bottom: 20px;
}
.advantages_tab-content p:last-child{
    margin-bottom: 0;
}
.faq_item{
    background: #F6F6F6;
    margin-bottom: 20px;
}
.faq_item:last-child{
    margin-bottom: 0;
}
.faq_item-title{
    font-weight: 700;
    line-height: 36.3px;
    color: #252525;    
    font-size: 30px;
    padding: 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}
.faq_item-title span{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}
.faq_item-title span::before{
    position: absolute;
    content: "";
    background: #252525;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    transition: all 0.3s;
}
.faq_item-title span::after{
    position: absolute;
    content: "";
    background: #252525;
    width: 2px;
    height: 14px;
    border-radius: 2px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    transition: all 0.3s;
}
.faq_item-text{
    display: none;
    padding: 20px 30px;
    line-height: 25px;
    font-size: 20px;
    color: #252525;
}
.faq_item-title.active{
    background: #72BF44;
    color: #fff;
}
.faq_item-title.active span::after{
    transform: translate(50%,-50%) rotate(90deg);
    background-color: #fff;
}
.faq_item-title.active span::before{
    background-color: #fff;
}
.catalog_filter-btn{
    display: none;
}
.catalog_page-aside_close{
    display: none;
}
.card_page{
    padding-top: 110px;
}
.card_page-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    position: relative;
    min-height: 480px;
}

.card_page-info{
    width: 660px;
    margin-left: auto;
}
.card_page-title{
    font-size: 25px;
    font-weight: 700;
    line-height: 40px;
    color: #252525;
    margin-bottom: 36px;
    font-family: "Overpass", sans-serif;
    text-transform: uppercase;
}
.card_page-options{
    border: 1px solid #9B9B9B;
    margin-bottom: 30px;
    padding: 30px;
}
.card_page-option{
    line-height: 21.78px;
    color: #252525;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    white-space: nowrap;
}
.card_page-option::after{
    position: relative;
    content: "";
    width: 80%;
    margin: 0 10px 5px;
    border: 1px dashed #25252573;
}
.card_page-option:last-child{
    margin-bottom: 0;
}
.card_page-option span{
    order: 1;
    /* min-width: 50px; */
}
.card_page-btns{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.card_page-btn{
    border: 1px solid #72BF44;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #252525;
    padding: 18px 20px;
    font-weight: 400;
    line-height: 29.04px;
    font-size: 24px;
}
.card_page-slider{
    width: 606px;
    position: absolute;
    left: 0;
    top: 0;
}
.card_page-slide{
    background: linear-gradient(230.85deg, #FFFFFF 0%, rgba(245, 245, 245, 0.56) 50.5%, #EBEBEB 100%);
    height: 478px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.card_page-slide img{
    max-width: 100%;
    max-height: 100%;
}
.card_page-slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #72BF44;
    width: 33px;
    height: 46px;
    cursor: pointer;
    z-index: 1;
    border: none;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
}
.card_page-slider .slick-next{
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}
.card_page-slider .slick-prev{
    left: 20px;
    background-image: url(../img/arrow_left.svg);
}
.card_table{
    margin-bottom: 70px;
    overflow: auto;
}
.card_table::-webkit-scrollbar{
    background: #B8DFA1;
    height: 26px;
}
.card_table::-webkit-scrollbar-thumb{
    background: #FFFFFF;
    border: 5px solid #B8DFA1;
}
.card_table-titles{
    display: flex;
}
.card_table-title{
    border: 1px solid #FFFFFF;
    background: #B8DFA1;
    padding: 8px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #252525;
    font-weight: 300;
    
    flex-direction: column;
}
.card_table-titles > .card_table-title{
    width: 9.5%;
}
.card_table-titles > .card_table-title:nth-child(1){
    width: 5%;
}
.card_table-titles > .card_table-title:nth-child(3), .card_table-titles > .card_table-title:nth-child(4){
    width:24%;
}
.card_table-title .card_table-title{
    width: 100%;
    flex: 1;
    border-right: none;
}
.card_table-title .card_table-title:last-child{
    border-right: none;
}
.inner_card-title{
    padding: 0;
}
.card_table-title .card_table-titles{
    width: 100%;
}
.card_table-title .card_table-titles .card_table-title{
    width: auto;
 
    
}
.card_table-title .card_table-titles .card_table-title:last-child{
    border-right: none;
}
.card_table-title .card_table-titles .card_table-title:first-child{
    border-left: none;
}
.card_table-items{
    display: block;
    width: 100%;
}
.card_table-items tr{
    display: flex;
    width: 100%;
}
.card_table-items td{
    font-size: 14px;
    font-weight: 300;
    line-height: 16.8px;
    text-align: center;
    color: #252525;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F3F3F3;
    width: 9.5%;
}
.card_table-items td:nth-child(1){
    width: 5%;
}
.card_table-items tbody{
    width: 100%;
    display: block;
}
.card_table-items td:nth-child(3),
.card_table-items td:nth-child(4),
.card_table-items td:nth-child(5){
    width: 8%;
}
.card_table-items td:nth-child(6),
.card_table-items td:nth-child(7){
    width: 12%;
}

.table-count{
    display: flex;
    justify-content: center;
}

.card_table-items .table_count,.table-row-product .table_count{
    display: flex;
    border: 1px solid #9B9B9B;
    background-color: #fff;
    width: 94px;
    height: 30px;
}
.card_table-items .table_count .count_inp,.table-row-product .count_inp {
    color: #000;
    width: calc(100% - 32px);
}
.card_table-items .table_count .count_btn,.table-row-product .count_btn{
    width: 16px;
    display: flex;
    justify-content: center;
    font-size: 14px;
}
.card_table-items .btn{
    width: 100%;
    height: 40px;
}
.card_table-items tr:nth-child(2n) td{
    background: none;
}

.card_page{
    margin-bottom: 70px;
}
.card_tabs-wrapper{
    background-image: url(../img/card_tabs-wrapper.jpg);
    background-size: cover;
    background-position: center;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}
.card_tabs-titles{
    width: 330px;
}
.card_tabs-title{
    background: #72BF44;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 29.04px;
    height: 65px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card_tabs-title.active{
    border: 1px solid #72BF44;
    background: none;
    color: #252525;
}
.card_tabs-content{
    width: calc(100% - 360px);
    display: none;
    padding-top: 20px;
}
.card_tabs-content.active{
    display: block;
}
.card_tabs-subtitle,.card_tabs-content strong{
    font-weight: 700;
    line-height: 24.2px;
    color: #000;
    font-size: 20px;
    margin-bottom: 25px;
    display: block;
}
.card_list,.card_tabs-content ul{
    list-style: disc;
    padding-left: 20px;
    font-size: 20px;
    line-height: 24.2px;
    font-weight: 300;
}
.card_list li,.card_tabs-content ul li{
    margin-bottom: 12px;
}
.card_inner{
    display: flex;
    gap: 30px 50px;
    flex-wrap: wrap;
}
.card_inner-options{
    display: flex;
    gap: 12px;
    flex-wrap:wrap;
}
.card_inner-option{
    flex-direction: column;
    display: flex;
    /* max-width: 118px; */
    width:115px;
    font-size: 14px;
    font-weight: 300;
    color: #0A0A0A;
    line-height: 15.4px;
}
.card_inner-option img{
    width: 110px;
    height: 110px;
    margin-bottom: 6px;
}
.card_inner-tegs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card_inner-teg{
    background: #B8DFA1;
    color: #4A7D2B;
    padding: 10px;
    font-weight: 700;
    line-height: 19.36px;
    font-size: 16px;
}
.card_inner-item{}
.card_instructions{
    /*display: flex;*/
}
.card_instructions-list,.card_tabs-content ol{
    /*width: 476px;*/
    margin-right: 30px;
}
.card_instructions-imgs{
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    width: 332px;
}
.card_instructions-img{
    display: flex;
    width: 160px;
    height: 128px;
}
.card_instructions-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_instructions-list,.card_tabs-content ol{
    font-weight: 400;
    padding-left: 20px;
    line-height: 24.2px;
    font-size: 20px;
}
.card_instructions-list li,.card_tabs-content ol li{
    margin-bottom: 10px;
}
.card_instructions-list li:last-child,.card_tabs-content ol li:last-child{
    margin-bottom: 0;
}
.card_data-img{
    display: flex;
    margin-bottom: 30px;
}
.card_data-table,.card_data table{
    display: block;
    width: 100%;
}
.card_data-table tbody,.card_data table tbody{
    display: block;
    width: 100%;
}
.card_data-table tr,.card_data table tr{
    width: 708px;
    display: flex;
}
.card_data-table th:nth-child(1),.card_data table th:nth-child(1){
    width: 522px;
}
.card_data-table th,.card_data table th{
    border: 1px solid #FFFFFF;
    background: #B8DFA1;
    width: 46px;
    padding: 8px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    line-height: 16.8px;
    text-align: center;
    font-size: 14px;
}
.card_data-table td,.card_data table td{
    padding: 8px 2px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #F3F3F3;
    border: 1px solid #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    color: #252525;
    line-height: 16.8px;
}
.card_data-table td:nth-child(1),.card_data table td:nth-child(1){
    width: 430px;
    text-align: left;
    justify-content: flex-start;
    padding-left: 10px;
}
.card_data-table tr:nth-child(2n + 1) td,.card_data table tr:nth-child(2n + 1) td{
    background-color: #fff;
}
.card_tabs-content .card_table,.card_data table{
    padding-bottom: 10px;
    overflow: auto;
}
.card_tabs-content .card_table::-webkit-scrollbar,.card_data table::-webkit-scrollbar{
    background: #B8DFA1;
    height: 26px;
}
.card_tabs-content .card_table::-webkit-scrollbar-thumb,.card_data table::-webkit-scrollbar-thumb{
    background: #FFFFFF;
    border: 5px solid #B8DFA1;
}
.card_tabs-content .card_table > .card_table-items,
.card_tabs-content .card_table > .card_table-titles{
    width: 1180px;
}



.card_tabs-content .card_table-items tr  td,
.card_tabs-content .card_table .card_table-titles > .card_table-title{
    width: 140px;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(3){
    width: 220px;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(5),
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(4){
    width: 325px;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(6){
    width: 114px;
}


.card_tabs-content .card_table-items tr  td:nth-child(4){
    width: 82px;
}
.card_tabs-content .card_table-items tr  td:nth-child(9),
.card_tabs-content .card_table-items tr  td:nth-child(6){
    width: 125px;
}
.card_tabs-content .card_table-items tr  td:nth-child(10),
.card_tabs-content .card_table-items tr  td:nth-child(7){
    width:61px;
}
.card_tabs-content .card_table-items tr  td:nth-child(11){
    width: 114px;
}
.card_tabs-content .card_table-items tr  td:nth-child(1),
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(1){
    width: 59px;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(3) .card_table-titles .card_table-title:nth-child(2){
    width: 82px;
    flex: none;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(4) .card_table-titles .card_table-title:nth-child(2){
    width: 125px;
    flex: none;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(4) .card_table-titles .card_table-title:nth-child(3){
    width: 61px;
    flex: none;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(5) .card_table-titles .card_table-title:nth-child(2){
    width: 125px;
    flex: none;
}
.card_tabs-content .card_table .card_table-titles > .card_table-title:nth-child(5) .card_table-titles .card_table-title:nth-child(3){
    width: 61px;
    flex: none;
}
.card_tabs-content .card_table .card_table-items tr:nth-child(2n) td{
    background-color: #fff;
}
.form_block-type{
    font-family: "Overpass", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 25.32px;
    padding: 10px 12px 5px;
    background: #72BF44;
    margin-bottom: 70px;
    text-transform: uppercase;
    width: fit-content;
}
.form_block-text{
    font-weight: 400;
    line-height: 29.04px;
    color: #fff;
    font-size: 24px;
    max-width: 440px;
}
.other{
    margin: 70px 0 140px; 
}
.other_slider{
    width: calc(100% + 24px);
}
.other_slider .catalog_page-item{
    margin: 0;
    margin-right: 24px;
}
.other_slider .slick-arrow{
    position: absolute;
    top: -78px;
    padding: 0;
    width: 36px;
    height: 36px;
    z-index: 1;
    cursor: pointer;
    background: none;
    border: 1px solid #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.other_slider .slick-arrow:hover{
    background: #72BF44;
    border: 1px solid #72BF44;
}
.other_slider .slick-arrow:hover path{
    fill: #fff;
}
.other_slider .slick-next{
    right: 24px;
}
.other_slider .slick-prev{
    right: 65px;
}
.crumbs_wrapper{
    margin-top: 110px;
}

.about_advantages{
    margin: 70px 0;
}
.about_advantages-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 24px;
}
.about_advantages-item{
    width: calc(25% - 18px);
    background: #F6F6F6;
    overflow: hidden;
    z-index: 1;
    padding: 30px 20px;
    position: relative;
}
.about_advantages-title{
    color: #72BF44;
    font-weight: 600;
    line-height: 24.2px;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about_advantages-text{
    line-height: 24.2px;
    font-size: 20px;
}
.about_advantages-number{
    position: absolute;
    font-weight: 900;
    line-height: 314.59px;
    color: #fff;
    z-index: -1;
    font-size: 260px;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
}
.about_advantages-img{
    margin-bottom: 24px;
}
.offer{
    padding: 90px 0;
    background-image: url(../img/offer.jpg);
    background-size: cover;
    background-position: center;
}
.offer_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer_info{
    width: 545px;
}
.offer h2{
    margin-bottom: 0;
}
.offer_subtitle{
    font-family: "Overpass", sans-serif; 
    font-size: 20px;
    font-weight: 800;
    line-height: 25.32px;
    margin-bottom: 70px;
    background: #72BF44;
    width: fit-content;
    color: #fff;
    padding: 6px 12px;
}
.offer_list{
    font-size: 24px;
    line-height: 29.04px;
    color: #252525;
    font-weight: 700;
    list-style: disc;
    padding-left: 40px;
}
.offer_list li{
    margin-bottom: 10px;
}
.offer_list li:last-child{
    margin-bottom: 0;
}
.offer_right{
    width: 445px;
}
.offer_btn{
    width: 406px;
    height: 65px;
    font-size: 24px;
    margin-bottom: 50px;
    margin-left: auto;
}
.offer_desc{
    line-height: 24.2px;
    color: #252525;
    font-size: 20px;
    text-align: right;
}
.history{
    padding: 70px 0;
    background: #F6F6F6;
}
.history_item{
    position: relative;
    margin-bottom: -78px;
    z-index: 1;
}
.history_item:last-child{
    margin-bottom: 0;
}
.history_item-info{
    width: 530px;
    margin-left: auto;
}
.history_item-img{
    width: 240px;
    height: 140px;
    display: flex;
    margin-bottom: 20px;
    background: #FFFFFF;
    position: relative;
}
.history_item-img::before{
    position: absolute;
    content: "";
    background-image: url(../img/history_item-bef.svg);
    width: 70px;
    height: 9px;
    left: -66px;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover;
}
.history_item:nth-child(2n) .history_item-img::before{
    right: -66px;
    left: auto;
    transform: translateY(-50%) rotate(180deg);
}
.history_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.history_item-title{
    font-weight: 700;
    line-height: 24.2px;
    color: #252525;
    margin-bottom: 10px;
    font-size: 20px;
}
.history_item-text{
    color: #252525;
    line-height: 24.2px;
    font-size: 20px;
}
.history_item:nth-child(2n) .history_item-info{
    margin-left: 0;
    text-align: right;
}
.history_item:nth-child(2n) .history_item-img{
    margin-left: auto;
}
.history_item-year{
    font-size: 200px;
    font-weight: 700;
    line-height: 241.99px;
    color: #252525;
    opacity: 0.03;
    right: 0;
    bottom: -62px;
    z-index: -1;
    position: absolute;
}
.history_item:nth-child(2n) .history_item-year{
    right: auto;
    left: 0;
}
.history_item-number{
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 56px;
    font-weight: 700;
    line-height: 36.3px;
    text-align: center;
    font-size: 30px;
    color: #252525;
}
.history_item-number::before{
    position: absolute;
    content: "";
    height: 80px;
    width: 2px;
    border: 1px dashed #72BF44;
    top: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%);
}






.table-card table{
    width: 100%;
}

.table-card table td{
    border: 1px solid #FFFFFF;
    background: #B8DFA1;
    padding: 8px 2px;
   
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #252525;
    font-weight: 300;
  
}

.table-card table .table-row-product td{
    background-color: #F3F3F3;
}

.table-card table .table-row-product--white td{
    background-color: #fff;
}

.table-card table .table-row-product .table-buy {
    padding:0;
    width: 119px;
}

.table-card table .table-row-product .table-buy .btn{
    height: 48px;
    width: 100%;
}
.card_table-items tr:nth-child(1) > th:nth-child(2) {
    width: 140px;
}
.card_table-items tr:nth-child(1) > th:nth-child(6) {
    width: 114px;
}
.card_table-items tr th table{
    display: block;
    width: 100%;
}
.card_table-items tr th table th{
    border-top: none;
    padding-left: 4px;
    border-right: none;
    padding-right: 4px;
}
.card_table-items tr:nth-child(1) > th:nth-child(2){
    border-right: none;
}
.card_table-items tr:nth-child(1) > th:nth-child(1){
    width: 5%;
}
.card_table-items tr:nth-child(1) > th:nth-child(3){
    width:220px;
    padding: 0;
}
.card_table-items tr:nth-child(1) > th:nth-child(4){
    width:325px;
    padding: 0;
}
.card_table-items th{
    border: 1px solid #FFFFFF;
    background: #B8DFA1;
    padding: 8px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #252525;
    font-weight: 300;
    
    flex-direction: column;
}
.card_table-items th{
    border-right: none;
}
.card_table-items tr:nth-child(1) > th:nth-child(5){
    width:326px;
    padding: 0;
}
.card_table-items tr:nth-child(1) > th:nth-child(3) tr:nth-child(1) th,
.card_table-items tr:nth-child(1) > th:nth-child(4) tr:nth-child(1) th,
.card_table-items tr:nth-child(1) > th:nth-child(5) tr:nth-child(1) th{
    width: 100%;
    flex: 1;
    border-right: none;
}
.card_table-items tr:nth-child(1) > th:nth-child(5) tr:nth-child(2) th:nth-child(1){
    width: 140px;
}

@media(max-width:1350px){
    .container {
        max-width: 1180px;
    }
    .header_catalog-drop{
        max-width: 1150px;   
    }
    .header_logo{
        width: 140px;
    }
    .header_logo img{
        width: 100%;
        height: auto;
    }
    .header_number{
        font-size: 16px;
    }
    .menu{
        gap: 15px;
    }
    .menu li{
        gap: 8px;
    }
    .catalog_tab{
        /* padding: 20px; */
        font-size: 16px;
    }
    .about_info{
        width: 700px;
    }
    .footer_wrapper-link {
        font-size: 14px;
    }
    .footer_wrapper-inner{
        padding-right: 0;
    }
    .header_catalog-items .catalog_item {
        font-size: 14px;
        line-height: 16px;
    }
    .catalog_page-img{
        height: 170px;
    }
    .sales_option-img{
        width: 140px;
    }
    .sales_option{
        min-height: 180px;
    }
    .card_page-info {
        width: 600px;
    }
    .card_page-slider {
        width: 510px;
    }
    .header_catalog-btn{
        margin-right: 10px; 
    }
    .card_instructions-img{
        width: 48%;
        height: auto;
    }
    .history_item-info {
        width: 450px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 968px;
    }
    .header_catalog-drop{
        max-width: 938px;   
    }
    .header_number{
        font-size: 0;
    }
    .menu a {
        font-size: 14px;
    }
    .header_catalog-btn{
        font-size: 14px;
        padding: 12px;
    }
    .main_title {
        font-size: 42px;
        line-height: 56px;
    }
    .main_text {
        line-height: 30px;
        font-size: 26px;
    }
    .main_img::before {
        width: 40px;
        height: 340px;
        left: -40px;
    }
    .main_slide{
        padding: 50px 0;
    }
    .header_catalog-titles {
        width: 240px;
    }
    .header_catalog-items {
        width: calc(100% - 240px);
    }
    .header_catalog-items .catalog_item img {
        width: 110px;
        height: 90px;
    }
    .header_catalog-title{
        font-size: 16px;
    }
    .header_catalog-items .catalog_item{
        height: auto;
    }
    .header_cart-item{
        padding: 16px;
    }
    .catalog_item{
        padding: 24px;
        height: auto;
    }
    .catalog_item img {
        width: 100%;
    }
    .servise_item-title {
        line-height: 26px;
        font-size: 22px;
    }
    .form_block-info {
        width: 430px;
    }
    .form_block-form{
        width: 430px;
        padding: 50px 24px;
    }
    .form_block-subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    .form_block-desc {
        font-size: 26px;
        line-height: 32px;
    }    
    .offer_block-text {
        line-height: 24px;
        font-size: 18px;
    }
    .offer_block-title {
        line-height: 32px;
        font-size: 24px;
    }    
    .sales_item{
        padding: 10px 40px;
    }
    .sales_item-title {
        font-size: 24px;
        line-height: 32px;
    }
    .sales_item-text {
        line-height: 24px;
        font-size: 18px;
    }
    .sales_item-list {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 24px;
    }
    .about_info {
        width: 500px;
    }
    .about_logo{
        width: 100%;
    }
    .about_logo img{
        width: 100%;
        height: auto;
    }
    .about_info p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .articles_item-img{
        height: 180px;
    }
    .form_block-title {
        line-height: 46px;
        font-size: 38px;
    }
    .footer_inner-item {
        line-height: 16px;
        font-size: 14px;
    }
    .footer_wrapper-top{
        flex-wrap: wrap;
    }
    .footer_wrapper-inner{
        width: 100%;
        margin-top: 20px;
    }
    .footer_wrapper-logo{
        margin-right: 20px;
    }
    .header_catalog-btn{
        margin-right: 10px;
    }
    .catalog_page-item{
        width: calc(50% - 12px);
    }
    .sales_options{
        flex-wrap: wrap;
    }
    .sales_option{
        width: calc(50% - 12px);
        flex: none;
    }
    .faq_item-title{
        font-size: 24px;
    }
    .card_page-info {
        width: 470px;
    }
    .card_page-slider {
        width: 450px;
    }
    .card_page-slide{
        height: 420px;
    }
    .card_page-btn {
        padding: 18px 14px;
        line-height: 22.04px;
        font-size: 18px;
    }
    .card_page-btns{
        gap: 10px   ;
    }
    .card_instructions-list,
    .card_list {
        padding-left: 20px;
        font-size: 18px;
        line-height: 22px;
    }
    .card_data-img{
        width: 100%;
    }
    .card_data-img img{
        width: 100%;
        height: auto;
    }
    .card_data-table{
        overflow: auto;
    }
    .card_instructions{
        flex-direction: column;
    }
    .card_data-table::-webkit-scrollbar{
        background: #B8DFA1;
        height: 26px;
    }
    .card_data-table::-webkit-scrollbar-thumb{
        background: #FFFFFF;
        border: 5px solid #B8DFA1;
    }
    .about_advantages-item {
        width: calc(33% - 13px);
    }
    .offer_info {
        width: 480px;
    }
    .history_item-info {
        width: 350px;
    }
}
@media (max-width: 991.98px){
    .container{
        max-width: 698px;
    }
    .header_catalog-drop{
        max-width: 668px;
    }
    .header::before{
        display: none;
    }
    .header{
        top: 0;
        position: fixed;
    }
    .header.header.fixed{
        animation: none;
    }
    .menu{
        max-width: 668px;
        margin: 30px auto 0;
        width: 100%;
        flex-direction: column;
    }
    .menu li{
        padding: 0;
        margin-bottom: 20px;
    }
    .header_catalog-wrapper{
        max-width: 668px;
        margin: 0 auto;
        width: 100%;
    }
    .header_catalog-btn{
        margin: 0;
        width: fit-content;
    }
    .header_catalog-drop{
        top: 0;
    }
    .header_inner{
        position: fixed;
        opacity: 0;
        padding-top: 40px;
        width: 100%;
        height: 100%;
        top: 56px;
        right: 0;
        background: #72BF44;
        transition: all 0.6s;
        visibility: hidden;
        padding-bottom: 40px;
        overflow: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    .header_inner.active{
        opacity: 1;
        visibility: visible;
    }
    .header_btn{
        display: none;
    }
    .header_wrapper{
        padding: 14px 0;
    }
    .main{
        margin-top: 56px;
    }
    .main_img{
        width: 100%;
    }
    .main_info{
        position: relative;
        z-index: 2;
        width: 100%;
    }
    .main_img::before{
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background: rgba(0,0,0, 0.5);
        left: auto;
    }
    .main_line{
        font-size: 24px;
        color: #fff;
        gap: 20px;
    }
    .main_text{
        color: #fff;
    }
    @keyframes lineAnim{
        0%{
            transform: translateX(-40%);
        }
        100%{
            transform: translateX(-200%);
        }
    }
    .aside{
        top: 6px;
        border: none;
        z-index: 11;
        right: calc(50% - 240px);
        transform: none;
        display: flex;
        justify-content: center;
        background: #72BF44;
    }
    .aside_item{
        border: none;
    }
    .catalog_item{
        width: 50%;
    }
    .catalog_tab{
        max-width: 280px;
        white-space: normal;
        margin-right: 15px;
        height: 62px;
        padding: 5px 20px;
        display: flex !important;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .catalog_tabs{
        display: block;
        width: calc(100% + (100vw - 668px) / 2);
    }
    .catalog_tab{
        border:unset;
        background-color:#fff;
    }
    .catalog_content{
        padding: 40px 0;
    }
    .servise_items{
        flex-wrap: wrap;
    }
    .servise_item{
        width: 48%;
        flex: none;
    }
    .form_block-wrapper{
        flex-direction: column;
    }
    .form_block-info {
        width: 100%;
        margin-bottom: 40px;
    }
    .form_block-form{
        margin: 0 auto;
    }
    .offer_block-img{
        width: 240px;
    }
    .offer_block-info {
        width: calc(100% - 240px);
        padding: 30px;
    }
    .sales_wrapper{
        flex-direction: column;
    }
    .sales_column{
        width: 100%;
        margin-bottom: 24px;
    }
    .sales_item{
        height: auto !important;
        padding: 24px !important; 
    }
    .about_top-text {
        line-height: 22px;
        font-size: 16px;
    }
    .about_wrapper{
        flex-direction: column;
    }
    .about_info{
        width: 100%;
        padding: 20px;
    }
    .about_info::before{
        width: 100%;
        height: calc(100% + 160px);
        bottom: 0;
        top: auto;
    }
    .clients h2{
        width: calc(100% - 200px);
    }
    .articles_top {
        flex-direction: column;
        align-items: flex-start;
    }
    .articles_items{
        flex-wrap: wrap;
    }
    .articles_item{
        width: 48%;
        flex: none;
    }
    .footer_wrapper-more{
        display: none;
    }
    .footer_wrapper-inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_wrapper-logo{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer_items{
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    .footer_item{
        width: calc(50% - 10px);
    }
    .footer{
        padding-bottom: 46px;
    }
    .footer_inner-wrapper{
        flex-direction: column;
        gap: 12px;
    }

    .header_links{
        margin-left: auto;
    }
    .menu_burger{
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .menu_burger::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s;
        top: 0;
        right: 0;
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s;
        bottom: 0;
        right: 0;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s;
        top: 9px;
        right: 0;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 9px;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .menu_burger.active span{
        transform: scale(0);
    }
    .menu li{
        flex-wrap: wrap;
    }
    .menu li .menu_drop{
        position: relative;
        opacity: 1;
        visibility: visible;
        top: auto;
        width: 100%;
        transform: none;
        background: none;
        display: none;
        border: none;
        left: auto;
        padding-top: 10px;
        transition: none;
        box-shadow: none;
        padding-bottom: 0;
    }
    .menu li .menu_drop a{
        color: #fff;
        font-size: 16px;
        padding: 0;
    }
    .menu a {
        font-size: 18px;
    }
    .menu li .menu_drop li:last-child{
        margin-bottom: 0;
    }
    .header_catalog-drop{
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 56px;
        padding-bottom: 120px;
        height: 100vh;
        z-index: 1;
        overflow: auto;
    }
    .header_catalog-inner{
        flex-direction: column;
    }
    .header_catalog-items{
        width: 100%;
        border: none;
        padding-left: 0;
    }
    .header_catalog-titles{
        width: calc(100% + 15px);
        margin-right: 0;
        overflow: auto;
        margin-bottom: 20px;
        display: flex;
    }
    .header_catalog-titles::-webkit-scrollbar{
        display: none;
    }
    .header_catalog-title.active::before{
        right: 50%;
        transform: translateX(50%) rotate(90deg);
        bottom: 10px;
        top: auto;
    }
    .header_catalog-title{
        margin-bottom: 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        text-align: center;
    }
    .main_steps span{
        color: #fff;
    }
    .catalog_page-wrapper{
        flex-direction: column;
  
    }
    .catalog_page{
        position: relative;
        z-index: 2;
    }
    .catalog_page-right{
        width: 100%;
    }
    .catalog_page-aside{
        position: fixed;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: all 0.3s;
        z-index: 2;
        top: 56px;
        overflow: auto;
        padding: 20px 0 100px;
        right: 0;
    }
    .catalog_page-aside.active{
        opacity: 1;
        visibility: visible;
    }
    .sales_option-img{
        width: 120px;
    }
    .sales_option-title {
        width: calc(100% - 120px);
    }
    .advantages_tabs{
        overflow: auto;
        width: calc(100% + (100vw - 668px) / 2);
        margin-bottom: 10px;
    }
    .advantages_tabs::-webkit-scrollbar{
        display: none;
    }
    .advantages_tab{
        min-width: 200px;
        margin-bottom: 16px;
    }
    .faq_item-title{
        padding-right: 60px;
    }
    .catalog_filter-btn{
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        cursor: pointer;
        font-weight: 700;
        font-size: 20px;
        width: fit-content;
        padding: 10px 16px;
    }
    .catalog_filter-btn svg{
        width: 32px;
        height: auto;
        margin-right: 4px;
    }
    .catalog_page-aside_close{
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .card_page{
        padding-top: 56px;
    }
    .card_page-wrapper{
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    .card_page-info{
        width: 100%;
        margin-bottom: 20px;
    }
    .card_page-slider{
        width: 100%;
    }
    .card_page-title{
        margin-bottom: 20px;
    }
    .card_page-btns{
        justify-content: flex-start;
    }
    .card_table{
        overflow: auto;
    }   
    .card_table::-webkit-scrollbar{
        background: #B8DFA1;
        height: 26px;
    }
    .card_table::-webkit-scrollbar-thumb{
        background: #FFFFFF;
        border: 5px solid #B8DFA1;
    }
    .card_table-items,
   .card_table > .card_table-titles{
        min-width: 1100px;
    }
    .card_tabs-wrapper{
        flex-direction: column;
    }
    .card_tabs-titles{
        width:calc(  100% + 30px);
        gap: 10px;
        display: flex;
        overflow: auto;
    }
    .card_tabs-content{
        width: 100%;
    }
    .card_tabs-title{
        min-width: 160px;
        padding: 5px 20px;
        font-size: 16px;
        text-align: center;
        line-height: 1.4;
        margin-right: 10px;
        display: flex !important;
    }
    .card_tabs-titles::-webkit-scrollbar{
        display: none;
    }
    .crumbs_wrapper{
        margin-top: 56px;
    }
    .about_advantages-items {
        gap: 20px 22px;
    }
    .about_advantages-title {
        line-height: 22.2px;
        font-size: 18px;
    }
    .about_advantages-text {
        line-height: 22.2px;
        font-size: 16px;
    }
    .offer_wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .offer_right{
        margin-top: 30px;
    }
    .offer_desc{
        text-align: left;
    }
    .offer_btn{
        margin-left: 0;
    }
    .history_item-info{
        width: 100%;
        margin-bottom: 20px;
    }
    .history_item-year{
        display: none;
    }
    .history_item:nth-child(2n) .history_item-info{
        text-align: left;
    }
    .history_item:nth-child(2n) .history_item-img{
        margin-left: 0;
    }
    .history_item-number{
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        text-align: left;
        margin-bottom: 10px;
    }
    .history_item-img::before{
        display: none;
    }
    .history_item{
        margin-bottom: 10px;
    }
    .history_item-number::before{
        display: none;
    }
    .history_item{
        display: flex;
        flex-direction: column-reverse;
    }
    .footer_item:first-child{
        order: 1;
    }
    .card_page-slider{
        position: relative;
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px){
    .container{
        max-width: 100%;
    }
    .main_title {
        font-size: 32px;
        line-height: 36px;
    }
    .main_logo{
        width: 290px;
    }
    .main_logo img{
        width: 100%;
        height: auto;
    }
    .main_text {
        line-height: 28px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    .main_slide{
        min-height: 0;
        padding-bottom: 80px;
    }
    .header_catalog-wrapper{
        margin: 0 15px;
    }
    .menu{
        margin: 30px 15px 0;
    }
    .header_catalog-title.active {
        background: #eeeeee;
    }
    h2 {
        line-height: 36px;
        font-size: 26px;
    }
    .catalog_tabs{
        width: calc(100% + 15px);
    }
    .catalog_item{
        width: 100%;
    }
    .servise_item{
        width: 100%;
        height: auto;
        padding: 30px 0;
    }
    .servise_item-price {
        font-size: 24px;
        line-height: 34px;
    }
    .form_block-form{
        width: 100%;
    }
    .offer_block-wrapper{
        flex-direction: column;
    }
    .offer_block-img{
        width: 100%;
        height: auto;
        min-height: 0px;
    }
    .offer_block-info{
        width: 100%;
        padding: 20px;
    }
    .offer_block-text {
        line-height: 22px;
        font-size: 16px;
    }
    .offer_block-title {
        line-height: 28px;
        font-size: 20px;
    }
    .offer_block-wrapper::before{
        width: 40px;
        height: 40px;
        right: 14px;
    }
    .sales_item-list {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 22px;
    }
    .sales_column:last-child{
        margin-bottom: 0;
    }
    .about_img{
        width: 100%;
        height: auto;
    }
    .clients h2{
        width: 100%;
    }
    .clients_slider .slick-arrow{
        display: none !important;
    }
    .clients_slider{
        width: calc(100% + 15px);
    }
    .clients_slide{
        width: 200px;
        height: 120px;
    }
    .articles_item{
        width: 100%;
    }
    .form_block-title {
        line-height: 38px;
        font-size: 26px;
    }
    .contacts_tab{
        padding: 10px;
        text-align: center;
    }
    .contacts_content-map{
        position: relative;
        width: 100%;
        height: 300px;
    }
    .contacts_content{
        padding-top: 0px;
        padding-bottom: 40px;
    }
    .contacts_inner{
        width: 100%;
        padding: 30px;
    }
    .footer_top{
        flex-direction: column;
        margin-bottom: 20px;
        padding-bottom: 20px;
        align-items: flex-start;
    }
    .footer_logo{
        margin-bottom: 20px;
    }
    .footer_wrapper-links{
        flex-direction: column;
    }
    .footer_wrapper-link {
        border-bottom: 1px solid #6F6D6D;
    }
    .header_cart{
        width: 100%;
        padding: 30px 20px;
        overflow: auto;
        height: 100%;
    }
    .header_cart-item{
        flex-direction: column;
        position: relative;
    }
    .header_cart-info{
        width: 100%;
    }
    .header_cart-delete{
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .header_cart-title{
        font-size: 24px;
    }
    .header_cart-total{
        flex-direction: column;
    }
    .header_cart-value{
        font-size: 24px;
    }
    .header_cart-close{
        top: 15px;
        right: 15px;
    }
    .popup_body{
        padding: 30px 20px;
    }
    .popup_body .inp_page{
        margin-bottom: 10px;
    }
    .popup_body-title {
        line-height: 30px;
        font-size: 24px;
    }
    .popup_body-btn{
        margin: 20px 0;
    }
    .popup_body-text {
        font-size: 16px;
        line-height: 20px;
    }
    .crumb{
        font-size: 12px;
    }
    .crumbs{
        padding: 12px 0;
    }
    .catalog_page{
        padding: 50px 0;
    }
    .catalog_page-item{
        width: 100%;
    }
    .catalog_page-img {
        height: 63vw;
    }
    .catalog_page-items{
        gap: 10px;
    }
    .sales_option{
        width: 100%;
        min-height: 0px;
    }
    .sales_options{
        gap: 10px;
    }
    .sales_option-img{
        width: 90px;
    }
    .sales_option-title {
        width: calc(100% - 90px);
        padding: 30px;
    }
    .sales_option-img img{
        width: 52px;
        height: auto;
    }
    .advantages{
        margin: 30px 0;
        padding: 30px 0;
    }
    .advantages_tabs{
        width: calc(100% + 15px);
        text-align: center;
    }
    .advantages_tab-content{
        font-size: 16px;
        line-height: 1.4;
    }
    .faq_item-title {
        font-size: 20px;
        line-height: 1.2;
        padding: 20px 40px 20px 20px;
    }
    .faq_item-text{
        font-size: 16px;
        padding: 20px;
        line-height: 1.4;
    }
    .faq_item{
        margin-bottom: 10px;
    }
    .card_page-title {
        font-size: 24px;
        line-height: 1.4;
    }    
    .card_page-options{
        padding: 20px;
    }
    .card_page-option{
        font-size: 16px;
    }
    .card_page-btns{
        flex-wrap: wrap;
    }
    .card_page-btn{
        width: 48%;
    }
    .card_page-slide {
        height: 80vw;
        padding: 20px;
    }
    .card_table{
        width: calc(100% + 15px);
        margin-bottom: 20px;
    }
    .card_tabs-titles{
        width: calc(100% + 30px);
    }
    .card_tabs-wrapper{
        padding: 20px 15px;
    }
    .card_inner-options{
        flex-wrap: wrap;
    }
    .card_instructions-imgs{
        width: 100%;
    }
    .card_instructions-list{
        width: 100%;
    }
   .other_slider  .catalog_page-item{
    width: 290px;
    }
    .other{
        margin-bottom: 50px;
    }
    .about_advantages{
        margin: 50px 0;
    }
    .about_advantages-items{
        gap: 20px 0;
        justify-content: space-between;
    }
    .about_advantages-item{
        width: 100%;
    }
    .offer{
        padding: 70px 0;
    }
    .offer_right,
    .offer_info{
        width: 100%;
    }
    .offer_list {
        font-size: 20px;
        line-height: 26px;
    }
    .offer_btn{
        width: 100%;
        font-size: 20px;
    }
    .history{
        padding: 50px 0;
    }
    .history_item-number{
        font-size: 24px;
    }
    .aside{
        bottom: 0;
        top: auto;
        transform: none;
        display: flex;
        width: 100%;
        right: 0;
        justify-content: center;
        background: #72BF44;
    }
    .aside_item{
        border: 1px solid #fff;
    }
    .footer_content{
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    .card_page-option span {
        min-width: 50px;
    }
}