/*! 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}



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: "Inter Tight", sans-serif;
    background: #EFF0F2;
    color: #272727;
}
a{
    text-decoration: none;
    transition: all 0.3s;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.scroll {
    border-radius: 50%;
    background-color: #2FB474;
    width: 38px;
    height: 38px;
    z-index: 8;
    position: fixed;
    bottom: 50px;
    right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    transform: scale(0);
}
.scroll.fixed {
    transform: scale(1);
}

.container{
    max-width: 1330px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.header{
    position: absolute;
    width: 100%;
    top: 20px;
    right: 0;
}
.header_wrapper{
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.header_logo{
    display: flex;
}
.header_title{
    line-height: 18.2px;
    color: #515151;
    width: 190px;
    font-size: 14px;
}
.header_catalog{
    font-weight: 500;
    line-height: 20.8px;
    color: #272727;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding: 30px 0;
}
.header_catalog:hover .header_catalog-drop{
    opacity: 1;
    visibility: visible;
}
.header_catalog-drop{
    position: absolute;
    box-shadow: 0px 15px 20px 0px #00000026;
    background: #FFFFFF;
    border-radius: 0 0 10px 10px;
    top: 100%;
    padding: 10px 30px 30px;
    right: 50%;
    transform: translateX(50%);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.header_catalog-drop li{
    margin-bottom: 10px;
}
.header_catalog-drop li:last-child{
    margin-bottom: 0;
}
.header_catalog-drop a{
    font-weight: 500;
    line-height: 20.8px;
    color: #272727;
    font-size: 16px;
    white-space: nowrap;
    padding-left: 18px;
    position: relative;
}
.header_catalog-drop a::before{
    position: absolute;
    content: "";
    background: #2FB474;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_item{
    line-height: 18.2px;
    color: #515151;
    gap: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.header_messages{
    display: flex;
    gap: 20px;
}
.header_number{
    font-size: 20px;
    line-height: 20px;
    color: #272727;
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}
.header_order{
    margin-left: auto;
    display: block;
    line-height: 18.2px;
    color: #2FB474;
    width: fit-content;
    font-size: 14px;
    text-decoration: underline;
}
.main{
    margin: 120px 0 60px;
}
.main_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.main_left{
    width: calc(50% - 10px);
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px;
}
.main_subtitle{
    font-size: 22px;
    font-weight: 500;
    line-height: 28.6px;
    margin-bottom: 10px;    
}
.main h1{
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 40px;
    font-weight: 500;
}
.main_option{
    font-weight: 500;
    line-height: 23.4px;
    margin-bottom: 10px;
    font-size: 18px;
    padding-left: 37px;
    position: relative;
}
.main_option span{
    color: #2FB474;
}
.main_option::before{
    position: absolute;
    content: "";
    background-image: url(../img/main_option.svg);
    background-size: cover;
    width: 22px;
    height: 22px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.main_option:last-child{
    margin-bottom: 0;
}
.main_btn{
    width: 320px;
    height: 75px;
    margin-top: 40px;
}
.jb_input input[type='submit'],
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2FB474;
    font-size: 18px;
    line-height: 21.78px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 15px;
}
.main_slider{
    width: calc(50% - 10px);
}
.main_slider div{
    height: 100%;
}
.main_slider .slick-dots{
    position: absolute;
    display: flex;
    bottom: 30px;
    right: 50%;
    gap: 8px;
    transform: translateX(50%);
}
.main_slider .slick-dots button{
    font-size: 0;
    background:none;
    border: none;
    cursor: pointer;
    background: #FFFFFF;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
}
.main_slider .slick-dots .slick-active button{
    background: #2FB474;
}
.main_slide{
    border-radius: 30px;
    overflow: hidden;
}
.main_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_items{
    display: flex;
    justify-content: space-between;
    background: #252525;
    border-radius: 30px;
    padding: 30px 60px;
}
.main_item{
    width: 20%;
    padding-top: 25px;
    position: relative;
}
.main_item::before{
    position: absolute;
    content: "";
    background: #FFFFFF;
    border-radius: 3px;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
}
.main_item-title{
    font-size: 22px;
    font-weight: 500;
    line-height: 28.6px;
    color: #F2F2F2;    
    margin-bottom: 5px;
}
.main_item-text{
    line-height: 19.5px;
    color: #B9B9B9;
    font-size: 15px;
}

.sale_line{
    background: #2BC079;
    margin: 60px 0;
    padding: 24px 0;
}
.sale_line-items{
    gap: 36px;
    display: flex;
    animation: lineAnim linear 10s infinite;
}
.sale_line-item{
    font-weight: 600;
    line-height: 26px;
    color: #FFFFFF;
    font-size: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 36px;

}
@keyframes lineAnim{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-31%);
    }
}
.catalog{
    margin: 60px 0 80px;
}
h2{
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 40px;
    font-weight: 500;
}
.catalog_items{
    display: flex;
    justify-content: space-between;
}
.catalog_item-column{
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.catalog_item{
    position: relative;
    padding: 20px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}
.catalog_item-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0;
    display: flex;
}
.catalog_item-img picture,
.catalog_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog_item-column:nth-child(2) .catalog_item:nth-child(2),
.catalog_item-column:nth-child(1) .catalog_item:nth-child(1){
    height: 540px;
}
.catalog_item-inner{
    display: flex;

    gap: 12px;
}
.catalog_item-info{
    width: calc(54% - 8px);
    background: #FFFFFF;
    border-radius: 15px;
    padding: 15px;
}
.catalog_item-link,
.catalog_item-price{
    width: calc(23% - 8px);
}
.catalog_item-title{
    font-weight: 500;
    line-height: 22px;
    color: #272727;
    font-size: 20px;
    margin-bottom: 5px;
    padding-left: 24px;
    position: relative;
}
.catalog_item-title::before{
    position: absolute;
    content: "";
    background: #2FB474;
    border-radius: 3px;
    width: 9px;
    height: 9px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.catalog_item-text{
    font-size: 14px;
    color: #646464;
    line-height: 16.8px;
}
.catalog_item-price{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    line-height: 17.6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 500;
}
.catalog_item-price::before{
    position: relative;
    content: "";
    display: block;
    background: #2FB474;
    border-radius: 3px;
    width: 9px;
    height: 9px;
}
.catalog_item-link{
    background: #2FB474;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 17.6px;
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
}
.catalog_item-link::before{
    position: absolute;
    content: "";
    background-image: url(../img/link_arrow.svg);
    background-size: cover;
    width: 13px;
    height: 13px;
    top: 15px;
    right: 15px;
}

.quiz{
    margin: 80px 0;

}
.quiz_wrapper{
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    padding: 100px 50px 30px;
    position: relative;
}
.quiz_wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/quiz_top.jpg);
    background-size: cover;
    height: 50px;
    width: 100%;
    top: 0;
    right: 0;
}
.quiz_top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-left: 28px;
    padding-right: 140px;
}
.quiz_title{
    font-weight: 500;
    line-height: 48.4px;
    font-size: 44px;
}
.quiz_text{
    line-height: 23.4px;
    color: #646464;
    width: 280px;
    font-size: 18px;
}
.quiz_item{
    display: flex;
}
.quiz_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about{
    margin: 80px 0;
}
.about_wrapper{
    display: flex;
    justify-content: space-between;
}
.about_info{
    width: 320px;
}
.about_text{
    line-height: 22.4px;
    margin-bottom: 105px;
    font-size: 16px;
}
.about_items{
    display: flex;
    justify-content: space-between;
}
.about_item-title{
    line-height: 75.4px;
    color: #2FB474;
    font-size: 58px;
}
.about_item-text{
    line-height: 23.4px;
    font-size: 18px;
}
.about_right{
    width: 890px;
}
.about_inner{
    background: #FFFFFF;
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.about_inner-info{
    width: 165px;
}
.about_inner-title{
    font-weight: 500;
    line-height: 21.6px;
    font-size: 18px;
    position: relative;
    padding-top: 30px;
}
.about_inner-title::before{
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    top: 0;
    left: 0;
    background: #2FB474;
    border-radius: 3px;
}
.about_inner-right{
    width: 650px;
}
.about_arrows{
    position: absolute;
    left: 30px;
    bottom: 20px;
    display: flex;
    gap: 30px;
}
.about_arrow{
    cursor: pointer;
}
.about_inner-slider{
    width: calc(100% + 10px);
}
.about_inner-slide{
    margin-right: 10px;
    border-radius: 15px;
    overflow: hidden;
    height: 180px;
}
.about_inner-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_inner-imgs{
    display: flex;
    gap: 10px;
}
.about_inner-img{
    width: calc(50% - 5px);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}
.about_inner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team{
    margin: 80px 0;
}
.team_wrapper{
    background: #FFFFFF;
    border-radius: 30px;
    padding: 60px 80px 70px;
}
.team_items{
    display: flex;
    gap: 10px;
}
.team_item{
    width: calc(20% - 8px);
}
.team_item-img{
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    height: 270px;
    margin-bottom: 10px;
}
.team_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team_item-title{
    font-weight: 500;
    line-height: 21.6px;
    margin-bottom: 5px;
    font-size: 18px;
}
.team_item-text{
    line-height: 18px;
    color: #595959;
    font-size: 15px;
}

.gallery{
    margin: 80px 0 60px;
}
.gallery_items{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gallery_item-wrapper{
    width: calc(33.33% - 13.333px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gallery_item-wrapper:nth-child(n+7){
    display: none;
}
.gallery_item-wrapper.active{
    display: flex;
}
.gallery_item{
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    height: 380px;
}
.gallery_item-wrapper:nth-child(2n) .gallery_item:nth-child(1),
.gallery_item-wrapper:not(:nth-child(2n)) .gallery_item:nth-child(2),
.gallery_item-wrapper:nth-child(3n + 1) .gallery_item:nth-child(2),
.gallery_item-wrapper:nth-child(3n + 2) .gallery_item:nth-child(1),
.gallery_item-wrapper:nth-child(3n + 3) .gallery_item:nth-child(2){
    height: 270px;
}
.gallery_item-wrapper:nth-child(3n + 1) .gallery_item:nth-child(1),
.gallery_item-wrapper:nth-child(3n + 2) .gallery_item:nth-child(2),
.gallery_item-wrapper:nth-child(3n + 3) .gallery_item:nth-child(1){
    height: 380px;
}
.gallery_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_link{
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    color: #2FB474;
    font-weight: 500;
    width: fit-content;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 ;
    text-decoration: underline;
}

.delivery{
    margin: 60px 0 80px;
}
.delivery h2{
    margin-bottom: 20px;
}
.delivery_subtitle{
    line-height: 22.4px;
    margin-bottom: 30px;
    font-size: 16px;
}
.delivery_wrapper{
    display: flex;
    justify-content: space-between;
}
.delivery_img{
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 295px;
    height: 383px;
}
.delivery_img:nth-child(2){
    width: 515px;
}
.delivery_info-img img,
.delivery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.delivery_info{
    width: 420px;
}
.delivery_info-text{
    line-height: 22.4px;
    margin-bottom: 20px;
    font-size: 16px;
}
.delivery_info-img{
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 20px;
    display: flex;
}
.delivery_info-desc{
    line-height: 19.6px;
    color: #595959;
    font-size: 14px;
}
.subscribe{
    margin: 80px 0;
}
.subscribe_wrapper{
    background-image: url(../img/subscribe_wrapper.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 60px 85px 85px;
    border-radius: 30px;
}
.subscribe_img{
    position: absolute;
    display: flex;
    bottom: 0;
    right: 142px;
    z-index: -1;
    pointer-events: none;
}
.subscribe_title{
    font-size: 44px;
    line-height: 48.4px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}
.subscribe_text{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    margin-bottom: 40px;
    width: 310px;
}
.subscribe_btn{
    width: 300px;
    height: 65px;
}

.reviews{
    margin: 80px 0;
}
.reviews_wrapper{
    background: #FFFFFF;
    border-radius: 30px;
    padding: 60px 80px;
}
.reviews_slide{
    margin-right: 30px;
}
.reviews_slide-img{
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    margin-bottom: 15px;
}
.reviews_slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews_slide-title{
    font-weight: 500;
    line-height: 22.4px;
    margin-bottom: 10px;
    font-size: 16px;
}
.reviews_slide-text{
    line-height: 21px;
    color: #414141;
    font-size: 15px;
}
.reviews_slider .slick-arrow{
    position: absolute;
    top: -80px;
    right: 0;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background: none;
}
.reviews_slider .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: 20px;
}
.reviews_slider .slick-prev{
    background-image: url(../img/arrow_left.svg);
    right: 85px;
}
.question{
    margin: 80px 0;
}
.question_wrapper{
    background-image: url(../img/question_wrapper.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 80px;
    border-radius: 30px;
}
.question_title{
    font-size: 54px;
    line-height: 59.4px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}
.question_text{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    margin-bottom: 30px;
    width: 420px;
}
.question_form{
    display: flex;
    flex-wrap: wrap;
    width: 530px;
    gap: 10px;
}
.question_form .jb_form{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.question_form .jb_input{
    width: 100%;
}
.question_form .jb_input:nth-child(1),
.question_form .jb_input:nth-child(2){
    width: calc(50% - 5px);
}
.question_form-inp{
    display: block;

    height: 65px;
    border-radius: 15px;
    border: none;
    padding-left: 30px;
}
.question_form-inp::placeholder{
    color: #272727;
}
.question_form-btn{
    width: 100%;
    height: 65px;
    cursor: pointer;
    border: none;
}
.question_form-ok{
    font-size: 12px;
    line-height: 14.4px;
    color: #A6A6A6;
}
.contacts{
    margin: 80px 0 40px;
}
.contacts_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
.contacts_top h2{
    margin-bottom: 0;
}
.contacts_items{
    display: flex;
    gap: 60px;
}
.contacts_item{
    line-height: 19.2px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contacts_item span{
    font-weight: 600;
    display: contents;
    
}
.contacts_map{
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 450px;
    border-radius: 30px;
}
.contacts_map iframe{
    width: 100%;
    height: 100%;
}
.footer{
    margin-bottom: 40px;
}
.footer_body{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 30px;
}
.footer_wrapper{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_logo{
    display: flex;
}
.footer_title{
    line-height: 18.2px;
    color: #515151;
    width: 190px;
    font-size: 14px;
}
.footer_catalog{
    font-weight: 500;
    line-height: 20.8px;
    color: #272727;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}
.footer_catalog:hover .footer_catalog-drop{
    opacity: 1;
    visibility: visible;
}
.footer_catalog-drop{
    position: absolute;
    box-shadow: 0px 15px 20px 0px #00000026;
    background: #FFFFFF;
    border-radius: 0 0 10px 10px;
    top: 100%;
    padding: 10px 30px 30px;
    right: 50%;
    transform: translateX(50%);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.footer_catalog-drop li{
    margin-bottom: 10px;
}
.footer_catalog-drop li:last-child{
    margin-bottom: 0;
}
.footer_catalog-drop a{
    font-weight: 500;
    line-height: 20.8px;
    color: #272727;
    font-size: 16px;
    white-space: nowrap;
    padding-left: 18px;
    position: relative;
}
.footer_catalog-drop a::before{
    position: absolute;
    content: "";
    background: #2FB474;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_item{
    line-height: 18.2px;
    color: #515151;
    gap: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.footer_messages{
    display: flex;
    gap: 20px;
}
.footer_number{
    font-size: 20px;
    line-height: 20px;
    color: #272727;
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}
.footer_order{
    margin-left: auto;
    display: block;
    line-height: 18.2px;
    color: #2FB474;
    width: fit-content;
    font-size: 14px;
    text-decoration: underline;
}
.footer_desc{
    line-height: 15.6px;
    margin: 20px 0 10px;
    color: #515151;
    font-size: 12px;
}
.footer_polit{
    line-height: 15.6px;
    color: #515151;
    font-size: 12px;
}
.popup_body{
    background: #f3f3f3 ;
    border-radius: 30px;
    width: 800px;
    padding: 60px;
}
.popup_body-img{
    display: flex;
    right: 54px;
    bottom: 0;
    position: absolute;
}
.popup_body-title{
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 20px;
    max-width: 330px;
    font-size: 40px;
}
.popup_body-text{
    font-weight: 500;
    line-height: 25.2px;
    max-width: 330px;
    margin-bottom: 30px;
    font-size: 18px;
}
.popup_body_form{
    width: 300px;
}
.jb_input input[type='tel'],
.jb_input input[type='text'],
.popup_body-inp{
        display: block;
        width: 100%;
        height: 65px;
        border-radius: 15px;
        border: none;
        margin-bottom: 10px;
        padding-left: 30px;
    }
    .popup_body-inp::placeholder{
        color: #272727;
    }
    .jb_input input[type='submit'],
    .popup_body-btn {
        width: 100%;
        height: 65px;
        margin-bottom: 10px;
    }
    .jbForCheckbox,
    .popup_body-ok{
        line-height: 14.4px;
        color: #A6A6A6;
        font-size: 12px;
    }
    .quiz_btn{
        display: none;
    }
    .menu_burger{
        display: none;
    }
    .header_mobile{
        display: none;
    }
    .cabins_page h1{
        margin-bottom: 20px;
    }
    .catalogue_items{
        display: flex;
        flex-wrap: wrap;
        gap: 50px 20px;
    }
    .catalogue_item{
        width: calc(33.333% - 13.333px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .catalogue_item-img{
        height: 270px;
        border-radius: 30px;
        display: flex;
        margin-bottom: 20px;
        overflow: hidden;
        width: 100%;
    }
    .catalogue_item-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .catalogue_item-title{
        font-weight: 500;
        line-height: 22px;
        font-size: 20px;
        color: #272727;
        margin-bottom: 20px;
    }
    .catalogue_item-inner{
        display: flex;
        width: 100%;
        margin-top: auto;
        align-items: center;
    }
    .catalogue_item-btn{
        width: 210px;
        margin-right: 30px;
        height: 55px;
    }
    .catalogue_item-price{
        font-weight: 400;
        line-height: 19.8px;
        font-size: 18px;
    }
    .ways{
        margin: 80px 0;
    }
    .ways_wrapper{
        background: #FFFFFF;
        border-radius: 30px;
        padding: 60px 80px 70px;
    }
    .ways_items{
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .ways_item{
        display: flex;
        width: 25%;
    }
    .ways_item img{
        width: 100%;
        height: auto;
    }
    .equipment{
        margin: 80px 0;
    }
    .equipment_wrapper{
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .equipment_item{
        width: calc(33.333% - 13.333px);
    }
    .equipment_item-title{
        background: #FFFFFF;
        border-radius: 15px;
        padding: 20px 30px;
        font-weight: 500;
        line-height: 22px;
        display: flex;
        align-items: center;
        font-size: 20px;
        position: relative;
        margin-bottom: 10px;
    }
    .equipment_item-title::before{
        position: relative;
        content: "";
        background: #2FB474;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        margin-right: 10px;
        display: block;
    }
    .equipment_item-list{
        background: #FFFFFF;
        border-radius: 15px;
        padding: 30px;
        height: calc(100% - 70px);
        line-height: 16.5px;
        color: #4B4B4B;
        list-style: disc;
        padding-left: 60px;
        font-size: 15px;
    }
    .equipment_item-list li{
        margin-bottom: 8px;
    }
    .equipment_item-list li:last-child{
        margin-bottom: 0;
    }

    .options{
        margin: 80px 0;
    }
    .options_slider{
        width: calc(100% + 20px);
    }
    .options_slide{
        background: #FFFFFF;
        border-radius: 20px;
        padding: 20px;
        margin-right: 20px;
    }
    .options_slide-img{
        height: 180px;
        border-radius: 15px;
        overflow: hidden;
        width: 100%;
        display: flex;
        margin-bottom: 10px;
    }
    .options_slide-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .options_slide-title{
        font-weight: 500;
        line-height: 19.2px;
        color: #272727;
        font-size: 16px;
    }
    .options_slider .slick-arrow{
        position: absolute;
        top: -80px;
        right: 0;
        width: 45px;
        height: 45px;
        cursor: pointer;
        font-size: 0;
        border: none;
        border-radius: 50%;
        background: none;
        background-color: #fff;
        background-position: center;
        background-repeat: no-repeat;
    }
    .options_slider .slick-next{
        background-image: url(../img/arrow_right2.svg);
        right: 20px;
    }
    .options_slider .slick-prev{
        background-image: url(../img/arrow_left2.svg);
        right: 85px;
    }

.catalogue_popup{
    background: #FFFFFF;
    border-radius: 30px;
    width: 1300px;
    padding: 60px;
}
.catalogue_popup-wrapper{
    position: relative;
}
.slick-dots li:only-child {
    display: none;
  }
.catalogue_popup-info{
    width: 560px;
    margin-left: auto;
    min-height: 470px;
}
.catalogue_popup-title{
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 20px;
    font-weight: 500;
}
.catalogue_popup-price{
    font-weight: 500;
    color: #2FB474;
    line-height: 19.8px;
    font-size: 18px;
    margin-bottom: 20px;
}
.catalogue_popup-inner{
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #2FB474;
    align-items: center;
}
.catalogue_popup-btn{
    width: 240px;
    height: 55px;
    margin-right: 30px;
}
.catalogue_popup-desc{
    line-height: 19.5px;
    color: #272727;
    width: 232px;
    font-size: 15px;
}
.catalogue_popup-imgs{
    width: 560px;
    position: absolute;
    top: 0;
    left: 0;
}
.catalogue_popup-img{
    height: 360px;
    margin-bottom: 10px;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
}
.catalogue_popup-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalogue_popup-dots{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.catalogue_popup-dot{
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    height: 45px;
    cursor: pointer;
    width: calc(14.285%  - 8.5714px);
}
.catalogue_popup-dot img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalogue_popup-option{
    line-height: 19.5px;
    color: #272727;
    font-size: 15px;
    margin-bottom: 5px;
}
.catalogue_popup-option:last-child{
    margin-bottom: 0;
}
.catalogue_popup-options{
    margin-bottom: 30px;
}
.catalogue_popup-lists{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.catalogue_popup-list{
    width: calc(50% - 10px);
}
.catalogue_popup-lists_title{
    font-weight: 400;
    line-height: 18.2px;
    font-size: 14px;
    margin-bottom: 5px;
}
.catalogue_popup-list ul{
    font-weight: 400;
    line-height: 18.2px;
    font-size: 14px;
    list-style: disc;
    padding-left: 20px;
}
.catalogue_popup-list ul li::marker{
    font-size: 12px;
}
.catalogue_popup-dot.active{
    border: 2px solid #2FB474;
}
.equipment_item-list .title{
    font-weight: 500;
    line-height: 17.6px;
    color: #272727;
    margin:  0 0 10px; 
    margin-left: -25px;
    font-size: 16px;
}
.equipment_item-list .title::marker{
    font-size: 0;
}
.catalogue_popup-tab .catalogue_popup-lists{
    display: none;
    margin: 10px 0 20px;
}
.catalogue_popup-tab .catalogue_popup-lists[style*="display: block"]{
	display:flex!important;
}
.catalogue_popup-tab{
    margin-bottom: -1px;
}
.catalogue_popup-arrows{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}
.catalogue_popup-arrow{
    cursor: pointer;
}
.catalogue_tab-title{
    font-weight: 500;
    line-height: 20.8px;
    cursor: pointer;
    position: relative;
    color: #2FB474;
    font-size: 16px;
    padding: 10px 0;
    border-top: 1px solid #D2D2D2;
    border-bottom: 1px solid #D2D2D2;
}
.catalogue_tab-title::before{
    position: absolute;
    content: "";
    background-image: url(../img/equipment_arrow.svg);
    background-size: cover;
    width: 16px;
    height: 9px;
    right: 0;
    top: 50%;
    transition: all 0.3s;
    transform: translateY(-50%);
}
.catalogue_tab-title.active::before{
    transform: translateY(-50%) rotate(-180deg);
}

.main_thanks-title{
    font-size: 54px;
    line-height: 54px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    color: #272727;
}
.main_thanks-text{
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    font-size: 20px;
    width: 308px;
    margin: 0 auto 60px;
    color: #272727;
}
.main_thanks-btn{
    width: 320px;
    height: 75px;
    margin: 0 auto;
}

.thanks_main .main_left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup_sogl h2:first-child,
.popup_polit h2:first-child{
    margin-top: 0;
}
.popup_sogl,
.popup_polit{
    width: 900px;
}
.popup_sogl ul{
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 30px;
}
.popup_sogl li{
    margin-bottom: 10px;
}
.popup_sogl a,
.popup_polit a{
    color: #000;
}
.popup_sogl h2,
.popup_polit h2{
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 34px;
    font-weight: 600;
    text-align: center;
}
.popup_sogl p,
.popup_polit p{
    margin-bottom: 16px;
}












    @media(max-width:1330px){
        .container {
            max-width: 1180px;
        }
        .main_left{
            padding: 30px;
        }
        .main_item {
            width: 22%;
        }
        .catalog_item-info {
            width: calc(50% - 8px);
        }
        .catalog_item-link, .catalog_item-price {
            width: calc(25% - 8px);
        }
        .catalog_item-price{
            font-size: 14px;
        }
        .quiz_top{
            padding: 0;
        }
        .about_right {
            width: 810px;
        }
        .about_inner-right {
            width: 600px;
        }
        .team_wrapper{
            padding: 40px;
        }
        .team_item-img{
            height: 252px;
        }
        .delivery_img:nth-child(2) {
            width: 440px;
        }
        .delivery_info {
            width: 380px;
        }
        .subscribe_img{
            right: 20px;
        }
        .reviews_wrapper{
            padding: 40px;
        }
        .catalogue_item-img{
            height: 240px;
        }
        .catalogue_popup-imgs{
            max-width: calc(100% - 580px);
        }
    }    
    @media (max-width: 1200px) {
        .container {
            max-width: 968px;
        }
       .header_wrapper .header_title{
            display: none;
        }
        .header_number {
            font-size: 18px;
            line-height: 18px;
        }
        .header_wrapper{
            padding: 0 15px;
        }
        .main_subtitle {
            font-size: 20px;
            line-height: 26px;
        }
        .main h1 {
            font-size: 42px;
            line-height: 48px;
            margin-bottom: 30px;
        }
        .main_option{
            font-size: 16px;
        }
        .main_items{
            padding: 30px;
        }
        .main_item-title {
            font-size: 20px;
        }
        .main_item {
            width: 23%;
        }
        .catalog_item{
            overflow: visible;
        }
        .catalog_item-inner{
            flex-wrap: wrap;
            margin-bottom: -80px;
        }
        .catalog_item-info{
            width: 100%;
        }
        .catalog_item-img{
            border-radius: 30px;
            overflow: hidden;
        }
        .catalog_item-link, .catalog_item-price {
            width: calc(50% - 6px);
        }
        .catalog_item-column{
            gap: 80px;
        }
        .catalog_items{
            margin-bottom: 160px;
        }
        .quiz_title{
            width: 500px;
        }
        .about_wrapper{
            flex-direction: column;
        }
        .about_info{
            width: 100%;
            margin-bottom: 30px;
        }
        .about_items{
            justify-content: flex-start;
            gap: 40px;
        }
        .about_text{
            margin-bottom: 20px;
        }
        .about_right{
            width: 100%;
        }
        .team_item-img{
            height: 200px;
        }
        .gallery_item{
            height: 320px !important;
        }
        
.gallery_item-wrapper:nth-child(2n) .gallery_item:nth-child(1), .gallery_item-wrapper:not(:nth-child(2n)) .gallery_item:nth-child(2) {
    height: 200px !important;
}
.delivery_img:nth-child(2) {
    width: 360px;
}
.delivery_info {
    width: 320px;
}
.delivery_img{
    width: 230px;
}
.subscribe_wrapper{
    padding: 40px;
}
.subscribe_img{
    width: 400px;
}
.subscribe_img img{
    width: 100%;
    height: auto;
}
.reviews_slide-img{
    height: 170px;
}
.question_wrapper{
    padding: 40px;
}
.contacts_top h2{
    width: 300px;
}
.footer_wrapper{
    flex-wrap: wrap;
    gap: 30px;
}
.catalogue_item-img {
    height: 54vw;
}
.catalogue_item-btn{
    margin-right: 10px;
}
.catalogue_item-btn{
    width: 160px;
}
.catalogue_item-title {
    font-size: 18px;
}
.ways_wrapper{
    padding: 40px;
}
.options_slide-img{
    height: 140px;
}
.catalogue_popup-imgs {
    max-width: calc(100% - 500px);
}
.catalogue_popup-info {
    width: 480px;
}
.scroll {
    right: 15px;
}
    }

    @media (max-width: 991.98px){
        .container{
            max-width: 698px;
        }
        .header{
            top: 10px;
            position: fixed;
            transition: all 0.3s;
            z-index: 10;
        }
        .header_wrapper .header_messages,
        .header_wrapper .header_order,
        .header_wrapper .header_item,
        .header_wrapper .header_catalog{
            display: none;
        }
       .header_wrapper .header_number{
        background: #2FB474;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 0;
        background-image: url(../img/phone_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
       }
       .header_wrapper    .header_links{
        order: -1;
       }
        .header_wrapper{
            padding: 15px;
        }
        .main{
            margin-top: 90px;
        }
        .main_wrapper{
            flex-direction: column;
        }
        .main_left{
            width: 100%;
            margin-bottom: 10px;
        }
        .main_slider{
            width: 100%;
        }
        .main_item{
            width: 45%;
        }
        .main_items{
            flex-wrap: wrap;
            gap: 30px 0;
        }
        .catalog_items{
            flex-direction: column;
        }
        .catalog_item-column{
            width: 100%;
            margin-bottom: 80px;
        }
        .quiz_top{
            flex-direction: column;
        }
        .quiz_title{
            width: 100%;
            margin-bottom: 20px;
        }
        .quiz_text{
            width: 100%;
        }
        .quiz_item{
            display: none;
        }
        .quiz_btn{
            display: flex;
            width: 100%;
            height: 75px;
        }
        .about_inner{
            flex-direction: column;
        }
        .about_inner-info{
            width: 100%;
            margin-bottom: 20px;
        }
        .about_arrows{
            position: relative;
            left: auto;
            bottom: auto;
            margin-top: 24px;
        }
        .team_item{
            margin: 0 5px;
        }
        .team_item-img{
            height: 260px;
        }
        .team_items{
            display: block;
            padding-bottom: 40px;
        }
        .team_items .slick-arrow{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 21px;
            height: 16px;
            cursor: pointer;
            font-size: 0;
            border: none;
            border-radius: 50%;
            background: none;
        }
        .team_items .slick-next{
            background-image: url(../img/arrow_right2.svg);
            left: 50px;
        }
        .team_items .slick-prev{
            background-image: url(../img/arrow_left2.svg);
            left: 0;
        }
        h2 br{
            display: none;
        }
        .gallery_items{
            gap: 8px;
        }
        .gallery_item-wrapper{
            gap: 8px;
            width: calc(50% - 4px);
        }
        .delivery_wrapper{
            flex-wrap: wrap;
        }
        .delivery_info{
            width: 100%;
            margin-top: 20px;
        }
        .delivery_img{
            width: 290px;
        }
        .subscribe_wrapper{
            padding-bottom: 300px;
        }
        .subscribe_img{
            right: 50%;
            transform: translateX(50%);
        }
        .reviews_slider .slick-next{
            right: 0;
        }
        .reviews_slider .slick-prev{
            right: 65px;
        }
        .contacts_top{
            flex-direction: column;
        }
        .contacts_top h2{
            width: 100%;
            margin-bottom: 30px;
        }
        .contacts_items{
            width: 100%;
        }
        .footer_wrapper{
            flex-direction: column;
            align-items: center;
        }
        .footer_title{
            text-align: center;
        }
        .footer_order{
            margin: 0 auto;
        }
        .footer_desc{
            text-align: center;
        }
        .footer_polit{
            display: block;
            text-align: center;
        }
        .menu_burger{
            display: block;
            background: #2FB474;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            position: relative;
        }
        .menu_burger::before{
            position: absolute;
            content: "";
            width: 20px;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
            top: 13px;
            right: 10px;
            transition: all 0.3s;
        }
        .menu_burger.active::before{
            transform: rotate(45deg);
            top: 19px;
        }
        .menu_burger::after{
            position: absolute;
            content: "";
            width: 20px;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
            bottom: 13px;
            right: 10px;
            transition: all 0.3s;
        }
        .menu_burger.active::after{
            transform: rotate(-45deg);
            bottom: 19px;
        }
        .menu_burger span{
            position: absolute;
            content: "";
            width: 20px;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
            top: 19px;
            right: 10px;
            transition: all 0.3s;
        }
        .menu_burger.active span{
            transform: scale(0)
        }
        .header_mobile{
            opacity: 0;
            visibility: hidden;
            position: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.6s;
            background: #FFFFFF;
            top: 0;
            right: 50%;
            height: 0;
            transform: translateX(50%);
            border-radius: 20px;
            width: 100%;
            padding-bottom: 60px;
            padding-top: 95px;
            max-width: 668px;
        }
        .header_mobile.active{
            opacity: 1;
            visibility: visible;
            height: auto;
        }
        .header_wrapper{
            position: relative;
            z-index: 1;
        }
        .header_title{
            text-align: center;
        }
        .header_item{
            margin-bottom: 15px;
        }
        .header_messages{
            margin: 25px 0 40px;
        }
        .header_order{
            margin: 0 auto;
        }
        .header_catalog-drop{
            position: relative;
            visibility: visible;
            opacity: 1;
            padding: 0;
            box-shadow: none;
        }
        .header_catalog svg{
            display: none;
        }
        .header_catalog{
            flex-direction: column;
        }
        .header_catalog-drop a{
            padding: 0;
            text-align: center;
            display: block;
        }
        .header_catalog-drop a::before{
            display: none;
        }
        .catalogue_item{
            width: calc(50% - 10px);
        }
        .ways_items{
            display: block;
            padding-bottom: 40px;
        }
        .ways_item{
            width: 33%;
        }
        .equipment_wrapper{
            flex-wrap: wrap;
        }
        .equipment_item{
            width: calc(50% - 10px);
        }
        .ways_items .slick-arrow{
            position: absolute;
            bottom: 0;
            width: 21px;
            height: 16px;
            cursor: pointer;
            font-size: 0;
            border: none;
            z-index: 2;
            font-size: 0;
            border: none;
            right: 50%;
            border-radius: 50%;
            background: none;
        }
        .ways_items .slick-next{
            background-image: url(../img/arrow_right2.svg);
            transform: translateX(30px);
        }
        .ways_items .slick-prev{
            background-image: url(../img/arrow_left2.svg);
            transform: translateX(-20px);
        }
        .options_slider{
            margin-top: 90px;
        }
        .catalogue_popup-info{
            width: 100%;
        }
        .catalogue_popup-imgs{
            width: 100%;
            position: relative;
            max-width: 100%;
            margin-bottom: 30px;
        }
        .catalogue_popup-img{
            height: 408px;
        }
        .thanks_main .main_left{
            padding: 50px 25px;
        }
        .header.fixed{
            top: 0;
            transform: translateY(-100%);
        }
        .header.fixed.up{
            transform: translateY(0%);
        }
    }
    @media (max-width: 767.98px){
        .container{
            max-width: 100%;
            padding: 0 15px;
        }
        .header_logo{
            width: 141px;
            height: auto;
        }
        .header_logo img{
            width: 100%;
            height: auto;
        }
        .main_left{
            padding: 30px 25px 25px;
        }
        .main_subtitle{
            line-height: 19.5px;
            font-size: 15px;
        }
        .main h1{
            line-height: 34px;
            margin-bottom: 20px;
            font-size: 34px;
        }
        .main_option{
            line-height: 19.5px;
            font-size: 15px;
            padding-left: 28px;
        }
        .main_btn{
            width: 100%;
            margin-top: 30px;
        }
        .main_slider .slick-dots{
            bottom: 15px;
        }
        .main_items{
            padding: 50px 45px;
            gap: 36px;
        }
        .main_item{
            width: 100%;
            padding-left: 32px;
            padding-top: 0;
        }
        .main_item::before{
            top: 8px;
        }
        .sale_line-item{
            font-size: 16px;
            gap: 26px;
        }
        .catalog{
             margin: 60px 0;
        }
        h2{
            line-height: 35.2px;
            margin-bottom: 20px;
            font-size: 32px;
        }
        .catalog_item-column:nth-child(2) .catalog_item:nth-child(2), .catalog_item-column:nth-child(1) .catalog_item:nth-child(1),
        .catalog_item{
            height: 75vw;
            padding: 10px;
            margin-bottom: 40px;
        }
        .catalog_item-title{
            line-height: 19.8px;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .catalog_item-text {
            font-size: 13px;
            line-height: 15.8px;
        }
        .catalog_item-info{
            border-radius: 30px;
        }
        .catalog_item-link{
            padding-top: 40px;
        }
        .catalog_item-inner{
            gap: 20px 10px;
            margin-bottom: -110px;
        }
        .catalog{
            margin-bottom: -100px;
        }
        .quiz_wrapper{
            padding: 64px 25px 50px;
        }
        .quiz_wrapper::before{
            height: 24px;
        }
        .quiz_title{
            line-height: 28.6px;
            font-size: 26px;
        }
        .quiz_text{
            font-size: 16px;
            line-height: 20.8px;
        }
        .quiz{
            margin-bottom: 60px;
        }
        .about_text{
            line-height: 21px;
            font-size: 15px;
        }
        .about_item-title{
            font-size: 48px;
            line-height: 62.4px;
        }
        .about_item-text{
            font-size: 16px;
            line-height: 20.8px;
        }
        .about_inner{
            padding: 20px;
        }
        .about_inner-title{
            padding-top: 0;
            padding-left: 24px;
            line-height: 16.8px;
            font-size: 14px;
        }
        .about_inner-right{
            width: 100%;
        }
        .about_inner-imgs{
            flex-direction: column;
        }
        .about_inner-img{
            width: 100%;
        }
        .team,
        .about{
            margin: 60px 0;
        }
        .team_wrapper{
            padding: 50px;
        }
        .team_item-img {
            height: 75vw;
        }
        .gallery{
            margin: 60px 0;
        }
        .gallery_item {
            height: 39vw !important;
        }
        .gallery_item-wrapper:nth-child(2n) .gallery_item:nth-child(1), .gallery_item-wrapper:not(:nth-child(2n)) .gallery_item:nth-child(2){
            height: 28vw !important;
        }
        .gallery_link{
            line-height: 17.6px;
            margin-top: 20px;
            font-size: 16px;
        }
        .delivery{
            margin: 60px 0;
        }
        .delivery_subtitle {
            line-height: 19.6px;
            font-size: 14px;
        }
        .delivery_img{
            width: 113px;
            height: 147px;
        }
        .delivery_img:nth-child(2){
            width: calc(100% - 121px);
        }
        .delivery_info-text{
            line-height: 19.6px;
            font-size: 14px;
        }
        .subscribe{
            margin: 60px 0;
        }
        .subscribe_wrapper{
            padding: 50px 20px 270px;
        }
        .subscribe_title{
            line-height: 35.2px;
            margin-bottom: 20px;
            font-size: 32px;
        }
        .subscribe_title br{
            display: none;
        }
        .subscribe_text{
            line-height: 22.4px;
            margin-bottom: 30px;
            font-size: 16px;
        }
        .subscribe_btn {
            width: 100%;
        }
        .subscribe_img{
            right: 45%;
            width: 320px;
        }
        .subscribe_wrapper{
            background-image: url(../img/subscribe_wrapper2.jpg);
        }
        .reviews{

            margin: 60px 0;
        }
        .reviews_wrapper{
            padding: 50px 25px 115px;
        }
        .reviews_slide-text {
            line-height: 20px;
            font-size: 14px;
        }
        .reviews_slider .slick-arrow{
            top: auto;
            bottom: -65px;
        }
        .reviews_slider .slick-next{
            left: 65px;
            right: auto;
        }
        .reviews_slider .slick-prev{
            left: 0;
            right: auto;
        }
        .question{
            margin: 60px 0;
        }
        .question_wrapper{
            padding: 60px 25px 230px;
            background: #252525;
        }
        .question_title{
            line-height: 35.2px;
            margin-bottom: 20px;
            font-size: 32px;
        }
        .question_text{
            width: 100%;
            font-size: 16px;
            line-height: 22.4px;
        }
        .question_form{
            width: 100%;
        }
        .question_form .jb_input:nth-child(1),
.question_form .jb_input:nth-child(2),
        .question_form-inp{
            width: 100%;
        }
        .question_wrapper{
            position: relative;
            overflow: hidden;
        }
        .question_wrapper::before{
            position: absolute;
            content: "";
            background-image: url(../img/question_wrapper-bef.png);
            background-size: cover;
            background-position: center;
            height: 220px;
            width: 100%;
            bottom: 0;
            right: 0;
        }
        .contacts{
            margin: 60px 0;
        }
        .contacts_items{
            flex-direction: column;
            gap: 20px;
        }
        .footer_body{
            padding: 40px;
        }
        .footer{
            margin-bottom: 20px;
        }
        .catalogue_item{
            width: 100%;
        }
        .catalogue_item-price {
            line-height: 16.8px;
            font-size: 16px;
        }
        .catalogue_item-btn{
            width: 170px;
            height: 50px;
        }
        .catalogue_items{
            gap: 40px;
        }
        .ways{
            margin: 60px 0;
        }
        .ways_wrapper{
            padding: 50px 25px;
        }
        .equipment_item{
            width: 100%;
        }
        .equipment_item-list{
            height: auto;
            display: none;
        }
        .equipment_wrapper{
            gap: 10px;
        }
        .equipment_item-title{
            margin-bottom: 0;
            font-size: 16px;
            position: relative;
        }
        .equipment_item-title::after{
            position: absolute;
            content: "";
            background-image: url(../img/equipment_arrow.svg);
            background-size: cover;
            width: 16px;
            height: 9px;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s;
        }
        .equipment_item-title.active::after{
            transform: translateY(-50%) rotate(-180deg);
        }
        .options_slider{
            padding-bottom: 65px;
            margin-top: 0;
        }
        .options_slider .slick-arrow{
            top: auto;
            bottom: 0;
        }
        .options_slider .slick-prev{
            left: 0;
            right: auto;
        }
        .options_slider .slick-next{
            left: 65px;
            right: auto;
        }
        .options{
            margin: 60px 0;
        }
        .equipment_item-list{
            margin-top: 10px;
        }
        .catalogue_popup{
            padding: 40px 20px;
        }
        .catalogue_popup-title{
            line-height: 22px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .catalogue_popup-price{
            line-height: 17.6px;
            font-size: 16px;
        }
        .catalogue_popup-inner{
            flex-direction: column;
            padding-bottom: 20px;
            align-items: flex-start;
        }
        .catalogue_popup-btn{
            margin-right: 0;
            margin-bottom: 10px;
        }
        .catalogue_popup-desc{
            font-size: 14px;
        }
        .catalogue_popup-img {
            height: 54vw;
        }
        
        .catalogue_popup-dots{
            gap: 3px;
        }
        .catalogue_popup-dot {
            height: 25px;
            border-radius: 7px;
            width: calc(14.285% - 2.5714px);
        }
        .catalogue_popup-option {
            line-height: 18px;
            font-size: 14px;
        }
        .catalogue_popup-list{
            width: 100%;
        }
        .equipment{
            margin: 60px 0;
        }
        .main_thanks-title{
            font-size: 34px;
            line-height: 34px;
        }
        .main_thanks-text{
            line-height: 20.8px;
            margin-bottom: 30px;
            font-size: 16px;
            width: 247px;
        }
        .main_thanks-btn{
            width: 100%;
        }
        .popup_sogl,
        .popup_polit{
            padding: 40px 20px;
        }
        .popup_sogl h2,
        .popup_polit h2{
            font-size: 22px;
        }
        .gallery_link{
            width: 100%;
            white-space: nowrap;
        }
        .popup_body{
            padding: 50px 25px 244px;
        }
        .popup_body-title{
            line-height: 28.6px;
            text-align: center;
            margin-bottom: 20px;
            font-size: 26px;
        }
        .popup_body-text{
            font-size: 16px;
            text-align: center;
            line-height: 22.4px;
        }
        .popup_body_form{
            width: 100%;
        }
        .popup_body-img{
            width: 149px;
            right: 50%;
            transform: translateX(50%);
        }
        .popup_body-img img{
            width: 100%;
            height: auto;
        }
        .catalog_item-column:nth-child(1) .catalog_item:nth-child(2){
            position: absolute;
            bottom: 110px;
        }
        .catalog_items{
            position: relative;
            padding-bottom: calc(75vw + 150px);
        }
        .about_item{
            min-width: 100px;
        }
    }