@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    border: none;
    text-decoration: none;
    list-style: none;
}

a{
    color: white;
}

html{
    background: rgb(45 44 49);
    scroll-behavior: auto;
}

body{
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background: white;
}

.container{
    max-width: 1573px;
    width: 100%;
    height: 100%;
    margin: auto;
}

section{
    padding-top: 103px;
}

.titles{
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #000000;
}

.titles span{
    color: #b0cb21;
}

.sub_titles{
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
}

.buttons{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    width: 100%;
    /*background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);*/
    background: #000000;
    padding: 16px 0;
    box-sizing: border-box;
    cursor: pointer;
    animation: buttonsAnim 2s infinite;
    position: relative;
    overflow: hidden;
}

.buttons::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 50px;
    background: rgba(255, 255, 255, 0.544);
    transform: rotate(-30deg);
    top: 0;
    left: -300%;
    box-shadow:  0 0 10px white;
}

.buttons:hover::before{
    animation: btnHover 3s infinite;
}

@keyframes btnHover {
    0%{
        left: -300%;
    }
    100%{
        left: 300%;
    }
}


.openMenu,
.closeMenu,
header .wrap_call_mob,
nav .wrap_quest_online,
nav .buttons{
    display: none;
}

header{
    position: sticky;
    top: 0;
    z-index: 5;
    background: #2D2C30;
    padding: 10px 0;
    box-sizing: border-box;
}

.wrap_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .wrap_logo{
    display: flex;
    align-items: center;
    max-width: 393px;
}

.wrap_logo img{
    width: 80px;
    display: block;
}

.wrap_logo span{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-left: 28px;
}

.btn_quest_online{
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    margin-right: 16px;
}

.btn_quest_online:last-child{
    margin-right: 0;
}

.btn_quest_online{
    width: 112px;
    padding: 6px;
    box-sizing: border-box;
    background: #22C35E;
    cursor: pointer;
    transition: .3s;
}

.wrap_btn_quest_online{
    display: flex;
}

.btn_quest_online:hover{
    transform: scale(1.05);
}

.wrap_quest_online > span{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
    display: block;
}

/* .btn_quest_online span::before{
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 8px;
} */

/* .btn_quest_online.whatsApp span::before{
    background: url(../img/svg/WA.svg);
}

.btn_quest_online.telegram span::before{
    background: url(../img/svg/telegr.svg);
} */

.btn_quest_online.telegram{
    background: #0088CC;
}

.btn_quest_online.vider{
    background: #7360F2;
}

.btn_quest_online.inst{
    background: linear-gradient(45deg, #FFD521 14.64%, #FFD020 18.54%, #FEC01E 23.42%, #FCA71B 28.82%, #FA8316 34.59%, #F85510 40.67%, #F51E09 46.91%, #F30005 50%, #F20007 50.25%, #E1003B 56.83%, #D30067 63.29%, #C70088 69.49%, #BF00A0 75.38%, #BB00AF 80.81%, #B900B4 85.36%);
}

header .buttons{
    padding: 13px 0;
    max-width: 280px;
    margin-left: 115px;
}

header .wrap_call > a{
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    transition: .3s;
}

header .wrap_call > a:hover{
    transform: translateY(-5px);
}

header .wrap_call > a::before{
    content: '';
    display: block;
    background: url(../img/svg/call.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

header .wrap_call{
    margin-left: 82px;
}

header .wrap_call .text_call{
    display: flex;
    align-items: center;
}

header .wrap_call .text_call > h6{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #79E467;
}

header .wrap_call .text_call > span{
    width: 8px;
    height: 8px;
    display: block;
    background: #79E467;
    margin-right: 8px;
    border-radius: 50%;
    animation: callAnimElipse 2s infinite;
}

@keyframes callAnimElipse {
    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.5);
    }

    100%{
        transform: scale(1);
    }
}

nav.nav{
    position: sticky;
    top: 100px;
    width: 100%;
    z-index: 6;
    background: #2D2C30;
    padding: 10px 0;
    box-sizing: border-box;
}

.list_nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_nav > li{
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    transition: .3s;
    color: #FFFFFF;
    cursor: pointer;
}

.list_nav > li:hover{
    transform: translateY(-5px);
}

.container_home{
    padding-top: 0;
    background: url(../img/home/bg.png);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 128px);
    max-height: 850px;
    min-height: 730px;
}

.wrap_home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.wrap_img_home{
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.wrap_img_home img{
    max-height: 663px;
    height: 100%;
    object-fit: contain;
}

.wrap_inp_submit_home{
    display: flex;
    margin-top: 79px;
}

input[type=text]{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
    padding: 16px 0 16px 22px;
    box-sizing: border-box;
    margin-right: 40px;
    max-width: 272px;
    width: 100%;
}

.wrap_inp_submit_home .buttons{
    max-width: 304px;
}

.wrap_form_home{
    max-width: 50%;
    width: 100%;
}

.wrap_form_home form h1{
    font-weight: 700;
    font-size: 56px;
    line-height: 60px;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 610px;
}

.wrap_form_home form h2{
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
}

.wrap_form_home .wrap_perData{
    margin-top: 27px;
}

.wrap_perData span{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.wrap_perData span a{
    color: white;
    margin-left: 5px;
}

.wrap_perData span a:hover{
    text-decoration: underline;
}

.wrap_perData span::before{
    content: '';
    display: block;
    background-image: url(../img/svg/persDataForm.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.container_types_ceiling{
    padding-top: 135px;
}

.container_types_ceiling .sub_titles{
    margin-top: 25px;
}

.btn_tabs{
    border: 1px solid #2D2C30;
    border-radius: 100px;
    background: white;
    padding: 16px 0;
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #2D2C30;
    margin-right: 14px;
    cursor: pointer;
}

.btn_tabs.active{
    background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);
    color: #FFFFFF;
    border: none;
}

.btn_tabs:last-child{
    margin-right: 0;
}

.wrap_types_ceiling{
    margin-top: 35px;
}

.wrap_btn_tabs{
    display: flex;
    justify-content: space-between;
}

.tab_content {
    display: none;
    overflow: hidden;
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab_content.active{
    display: block;
}

.wrap_types_ceiling .wrap_content_tabs{
    margin-top: 64px;
}

.item_content_type_ceiling{
    display: flex;
    align-items: center;
}

.wrap_info_type_ceiling{
    margin-left: 134px;
    max-width: 684px;
}

.wrap_info_type_ceiling > h2{
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    color: #000000;
    margin-bottom: 17px;
}

.wrap_info_type_ceiling > h3{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
}

.wrap_info_type_ceiling > h4{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin-top: 60px;
}

.wrap_img_type_ceiling{
    max-width: 616px;
    width: 100%;
}

.wrap_img_type_ceiling img{
    width: 100%;
}

.wrap_btn_type_ceiling .buttons{
    max-width: 272px;
}

.buttons.btn_type_ceiling_calc{
    background: white;
    border: 2px solid #b0cb21;
    margin-left: 32px;
    color: #b0cb21;
    max-width: 372px;
}

.wrap_btn_type_ceiling{
    display: flex;
    margin-top: 16px;
}

.wrap_photo{
    display: flex;
    max-width: 100%;
    width: 100%;
}

.item_photo{
    height: 100%;
}

.item_photo img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .item_photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

.swiper_portfolio {
    width: 100%;
    max-height: 700px;
    margin-left: auto;
    margin-right: auto;
}

.swiper_portfolio .swiper-slide{
    height: 300px;
}

.wrap_photo{
    margin-top: 56px;
}

.container_photo{
    padding-top: 127px;
}

.container_var_profil{
    padding-top: 135px;
}

.item_var_profil{
    margin-top: 56px;
    max-width: 480px;
    position: relative;
}

.wrap_img_profil{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.wrap_img_profil img{
    width: 100%;
    height: 100%;
    display: block;
}

.wrap_text_var_profil{
    position: absolute;
    padding: 18px 22px;
    bottom: 0px;
    box-sizing: border-box;
    width: 100%;
    transition: .3s;
}


.wrap_text_var_profil > h3,
.wrap_text_var_profil > h4{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.item_var_profil_white .wrap_text_var_profil > h3,
.item_var_profil_white .wrap_text_var_profil > h4{
    color: black;
}

.wrap_text_var_profil > h4{
    font-weight: 400;
    transition: .3s;
}

.wrap_var_profil{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wrap_calculation_photo{
    display: flex;
    align-items: center;
}

.wrap_img_calculation_photo{
    max-width: 616px;
    width: 100%;
}

.wrap_img_calculation_photo img{
    width: 100%;
}

.list_calc_photo > li{
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.wrap_info_calculation_photo{
    margin-left: 134px;
}

.wrap_info_calculation_photo > h2{
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #000000;
}



.list_calc_photo > h3,
.list_calc_photo > li h4,
.list_calc_photo > li span{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.list_calc_photo > li span{
    background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 23px;
    color: white;
}

.list_calc_photo{
    margin-top: 32px;
}

.btn_WA,
.btn_Telegr,
.btn_viber{
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 16px 0;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    transition: .3s;
    margin-right: 5px;
}

.btn_WA:hover,
.btn_Telegr:hover,
.btn_viber:hover{
    transform: translateY(-3px);
}

.wrap_calc_btns{
    margin-top: 53px;
    display: flex;
}

.btn_WA{
    background: #25D366;
}

.btn_viber{
    background: #7360F2;
}

.btn_WA::before,
.btn_Telegr::before{
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn_WA::before{
    background-image: url(../img/svg/WA.svg);
}

.btn_Telegr::before{
    background-image: url(../img/svg/telegr.svg);
}


.btn_Telegr{
    background: #0088CC;
}

.container_calculation_photo{
    padding-top: 144px;
}

.wrap_quality{
    margin-top: 57px;
}

.container_quality{
    padding-top: 127px;
}

.tab_content_quality{
    margin-top: 64px;
}

.item_content_quality_ceiling{
    display: flex;
    align-items: center;
}

.wrap_img_quality_ceiling{
    max-width: 1024px;
    width: 100%;
}

.wrap_img_quality_ceiling img{
    width: 100%;
}

.wrap_info_quality_ceiling{
    padding: 33px 30px 40px;
    box-sizing: border-box;
    max-width: 448px;
    width: 100%;
    background: #2D2C30;
    margin-left: -200px;
}

.list_info_quality_ceiling > h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.list_info_quality_ceiling > li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.list_info_quality_ceiling > li:last-child{
    margin-bottom: 0;
}

.list_info_quality_ceiling > li span{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
}

.container_akcii{
    padding-top: 135px;
}

.wrap_akcii{
    margin-top: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap_content_left .wrap_bg_akcii{
    max-width: 888px;
    width: 100%;
}

.wrap_content_right .wrap_bg_akcii{
    max-width: 616px;
    width: 100%;
}

.wrap_bg_akcii img{
    width: 100%;
    display: block;
}

.wrap_bg_akcii{
    box-shadow: 0px 5px 20px rgba(118, 106, 122, 0.25);
}

.wrap_content_left{
    position: relative;
}

.wrap_content_akcii{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 55px;
}

.wrap_content_akcii > img{
    position: absolute;
    right: 40px;
    max-width: 315px;
    width: 100%;
}

.wrap_text_akcii{
    max-width: 428px;
}

.wrap_content_left .wrap_text_akcii > h2,
.wrap_content_right .wrap_text_akcii > h2{
    font-style: normal;
    font-weight: 400;
    font-size: 58px;
    line-height: 40px;
    text-transform: uppercase;
    color: #000000;
}

.wrap_content_left .wrap_text_akcii > h2 span,
.wrap_content_right .wrap_text_akcii > h2 span{
    font-weight: 900;
    color: #6A69BB;

}

.wrap_content_right .wrap_text_akcii > h2 span{
    animation: animSkidka 2s infinite 0s;
    display: inline-block;
}

.wrap_content_left .wrap_text_akcii > h2 span{
    animation: animSkidka 2s infinite 3s;
    display: inline-block;
}

@keyframes animSkidka {
    50%{
        /* color: #7f7def; */
        transform: scale(1.2);
    }
}

.wrap_content_left .wrap_text_akcii > h3{
    margin-top: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #000000;
}

.wrap_text_akcii > h4{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.wrap_content_left .wrap_text_akcii > h4{
    margin-top: 72px;
    max-width: 234px;
    margin-bottom: 17px;
}

.wrap_text_akcii .buttons{
    max-width: 272px;
}

.wrap_content_right{
    position: relative;
}

.wrap_content_right .wrap_text_akcii > h4{
    margin-top: 15px;
    margin-bottom: 28px;
}

.container_guarantees{
    padding-top: 135px;
}

.item_guarantees > h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    max-width: 350px;
}

.item_guarantees{
    margin-right: 64px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(118, 106, 122, 0.25);
    padding: 40px 37px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wrap_guarantees{
    display: flex;
}

.item_guarantees:last-child{
    margin-right: 0;
}

.wrap_guarantees{
    margin-top: 57px;
}

.img_guarantees{
    margin-bottom: 25px;
    max-width: 104px;
    width: 100%;
}

.img_guarantees img{
    width: 100%;
}

.wrap_company{
    margin-top: 57px;
    display: flex;
    align-items: center;
}

.wrap_info_company{
    margin-left: 270px;
}

.wrap_img_company{
    position: relative;
    display: flex;
    align-items: center;
    max-width: 752px;
    width: 100%;
}

.wrap_img_company img{
    width: 100%;
}

.list_company > li{
    max-width: 400px;
    margin-bottom: 19px;
}

.list_company > li:last-child{
    margin-bottom: 0;
}

.list_company > li > h3{
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    color: #000000;
}

.list_company > li > h3 span{
    color: #b0cb21;
}

.list_company > li > h4{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin-top: 9px;
}

.company_img_abs{
    position: absolute;
    right: -200px;
    max-width: 408px;
}

.container_company{
    padding-top: 135px;
}

.container_safety .item_guarantees > h3{
    max-width: 100%;
    line-height: 28px;
}

.wrap_formCost{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.container_formCost{
    padding-top: 144px;
}

.wrap_img_formCost{
    max-width: 616px;
    width: 100%;
}

.wrap_img_formCost img{
    width: 100%;
}

.wrap_info_formCost{
    max-width: 714px;
    margin-right: 167px;
}

.list_formCost{
    margin-top: 32px;
}

.list_formCost > h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 35px;
}

.list_formCost >  li{
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 63px;
    min-height: 40px;
}

.list_formCost >  li::before{
    content: '';
    display: block;
    background-image: url(../img/svg/mar_formCost.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
}

.list_formCost >  li:last-child{
    margin-bottom: 0;
}

.container_formCost .formCost{
    display: flex;
    margin-top: 57px;
    margin-bottom: 26px;
}   

.container_formCost input[type = text]{
    background: #FAF9FB;
}

.container_formCost .formCost .buttons{
    max-width: 304px;
}

.container_formCost .wrap_perData span,
.container_formCost .wrap_perData span a{
    color: #000000;
}

.wrap_stages_order{
    margin-top: 54px;
}

.item_stages_order{
    max-width: 373px;
}

.number_stahes_order{
    font-weight: 200;
    font-size: 120px;
    line-height: 96px;
    color: #b0cb21;
}

.item_stages_order > h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    color: #000000;
    margin: 30px 0 4px;
}

.item_stages_order > h4{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    max-width: 350px;
}

.item_stages_order > h4 a{
    font-weight: 700;
    color: #000000;
}

.wrap_stages_order{
    display: flex;
    justify-content: space-between;
}

.container_stages_order{
    padding-top: 135px;
}

.container_formCostBlack{
    padding: 39px 0 61px;
    margin-top: 137px;
    background: #2D2C30;
}

.container_formCostBlack .wrap_img_formCost{
    max-width: 480px;
}

.container_formCostBlack .wrap_formCost{
    justify-content: flex-start;
}

.container_formCostBlack .titles,
.container_formCostBlack .list_formCost > h3,
.container_formCostBlack .list_formCost > li,
.container_formCostBlack .wrap_perData span,
.container_formCostBlack .wrap_perData span a{
    color: white;
}


.container_formCostBlack .wrap_info_formCost{
    margin-right: 255px;
}

.container_question{
    padding-top: 135px;
}

.wrap_question{
    margin-top: 16px;
}

.list_question > li{
    max-width: 752px;
    width: 100%;
    padding: 18px 24px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 2px solid #b0cb21;
    transition: .3s;
    margin-top: 24px;
}

.question{
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question::after{
    content: '';
    display: block;
    background-image: url(../img/svg/icon_quest.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    transition: .3s;
}

.list_question > li.active .question::after{
    transform: rotate(180deg);
}

.list_question > li{
    cursor: pointer;
}

.list_question > li h3{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-top: 24px;
    display: none;
}

.list_question{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.wrap_contact_btns{
    display: flex;
    margin-top: 41px;
}

.list_info_contact{
    margin-top: 56px;
}

.wrap_contact{
    display: flex;
    justify-content: space-between;
}

.wrap_maps_contact{
    max-width: 888px;
    width: 100%;
}

.wrap_maps_contact iframe{
    width: 100%;
    height: 456px;
}

.wrap_info_contact{
    max-width: 500px;
    width: 100%;
}

.list_info_contact > li{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.list_info_contact > li a{
    color: #000000;
}

.list_info_contact > li{
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
}

.icon_info_cont{
    margin-right: 23px;
    max-width: 28px;
    width: 100%;
}

.icon_info_cont img{
    width: 100%;
}

.container_contact{
    padding-top: 135px;
}

footer{
    padding: 25px 0 16px;
    box-sizing: border-box;
    margin-top: 144px;
    background: #2D2C30;
}

footer .wrap_logo{
    display: flex;
    align-items: center;
    max-width: 365px;
}

.wrap_logo_footer > h6{
    margin-top: 21px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #F9F9FB;
}

.wrap_logo a{
    cursor: pointer;
}

.wrap_footer{
    display: flex;
    justify-content: space-between;
}

.list_footer_cont{
    display: flex;
    align-items: flex-start;
}

.list_footer_cont > li{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    display: flex;
    align-items: flex-end;
}

.list_footer_cont > li:last-child{
    margin-left: 105px;
}

.icon_footer_cont{
    margin-right: 21px;
    max-width: 28px;
    width: 100%;
}

.icon_footer_cont img{
    width: 100%;
}

.wrap_logo_TG{
    text-align: center;
    margin-top: 10px;
}

.wrap_logo_TG img{
    width: 165px;
    display: block;
    margin: auto;
}

.container_formModal,
.container_thank{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.485);
    width: 100%;
    height: 100vh;
    z-index: 11;
}

.item_formModal{
    max-width: 888px;
    width: 100%;
    background: white;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
}

.closeFormModal{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.wrap_form_modal{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 100px 0;
    box-sizing: border-box;
    overflow: auto;
}

.conainer_closeFormModal{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}


.img_formModal{
    max-width: 398px;
    width: 100%;
    padding-top: 26px;
}

.img_formModal img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_formModal{
    padding: 63px 0 79px 70px;
    box-sizing: border-box;
}

.formModal input[type=text]{
    background: #FAF9FB;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.formModal{
    max-width: 336px;
    margin-top: 38px;
}

.formModal .buttons{
    margin-top: 24px;
}

.formModal  .wrap_perData span,
.formModal  .wrap_perData span a{
    color: #000000;
    margin: 0;
}

.formModal .wrap_perData span {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 26px;
    margin-top: 15px;
}

.formModal .wrap_perData span::before {
    position: absolute;
    left: 0;
}

.content_formModal > h3{
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #2D2C30;
    margin-top: 11px;
}

/* .item_var_profil .wrap_img_profil picture:last-child{
    display: none;
}

.item_var_profil .wrap_img_profil picture{
    height: 100%;
}

.item_var_profil:hover .wrap_img_profil picture:last-child{
    display: block;
    height: 100%;
}

.item_var_profil:hover .wrap_img_profil picture:first-child{
    display: none;
} */


.container_banner_rasrochka{
    margin-top: 150px;
    max-width: 100%;
    width: 100%;
    background-image: url(../img/banner_cart.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 536px;
    color: white;
}

.wrap_banner_rasr h2{
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 58px;
    text-transform: uppercase;
    max-width: 683px;
}

.wrap_banner_rasr h3{
    background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);
    border-radius: 50px;  
    max-width: 300px;
    width: 100%;
    text-align: center; 
    padding: 20px 0; 
    margin-top: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 18px;
    text-transform: uppercase;
}

.wrap_banner_rasr h4{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    max-width: 514px;
    margin-top: 40px;
}

.wrap_banner_rasr{
    padding-top: 70px;
}


/* .swiper_portfolio .item_photo{
    height: 100%;
    max-height: 300px;
    max-width: 100%;
} */

.container_sotka{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #7371ce7a;
    z-index: 15;
}

.wrapper_sotka{
    max-width: 1920px;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_sotka{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 11px #b0cb21;
    border-radius: 30px;
    max-width: 28.541667%; /* 548/1920 */
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    text-align: center;
}

.form_sotka input[type = text]{
    background: #FFFFFF;
    border: 1px solid #b0cb21;  
    padding: 15px 0 15px 30px;
    box-sizing: border-box;
    font-weight: 400;
    color: #9B9B9B;
    margin: 0;
    margin-bottom: 19px;
    max-width: 60.218978%; /* 330/548 */

}

.modal_sotka h2{
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
}

.modal_sotka h3{
    font-weight: 400;
    color: #000000;
}

.modal_sotka h3,
.form_sotka input[type = text]{
    font-size: 18px;
    line-height: 22px;
}

.kod_sotka{
    margin: 24px 0;
    background: #7775CD;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 10px 0;
}

.kod_sotka,
.modal_sotka h2{
    font-size: 30px;
    line-height: 40px;
}

.modal_sotka h3 span{
    font-weight: 700;
}

.modal_sotka h3{
    margin: auto;
    margin-bottom: 10px;
    max-width: 310px;
}

.modal_sotka .buttons{
    max-width: 49.635036%; /* 272/548 */
}

.close_sotka{
    position: absolute;
    top: 15px;
    right: 20px;
    max-width: 4.744526%; /* 26/548 */
    width: 100%;
    cursor: pointer;
}
.close_sotka img{
    width: 100%;
    display: block;
}

.container_sotka{
    display: none;
}
.banner_one{
    padding-top: 70px;
    box-sizing: border-box;
    background-image: url(../img/banners/1/backgr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-swiper_banners{
    padding-top: 0;
}

.wrapper-swiper_banners{
    min-height: 752px;
    max-height: 850px;
    height: calc(100vh - 128px);
    box-sizing: border-box;
}
.banner_one{
    /*height: 100%;*/
    height: 95%;   
    position: relative;
}

.content_bottom_banner_one{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
}

.item_bottom_banner_one{
    width: 50%;
    display: flex;
    align-items: center;
    padding: 10px 0;
    padding-left: 48px;
    box-sizing: border-box;
}

.item_bottom_banner_one .procent{
    font-weight: 700;
    font-size: 96px;
    line-height: 60px;
    color: #FFFFFF;
}

.content_bottom_banner_one .item_bottom_banner_one:nth-child(1){
    /*background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);*/
    background: rgba(0, 0, 0, 0.81);
}

.content_bottom_banner_one .item_bottom_banner_one:nth-child(2){
    background: rgba(0, 0, 0, 0.81);
}


.item_bottom_banner_one > ul > li{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.item_bottom_banner_one > ul{
    margin-left: 14px;
}

.item_bottom_banner_one:nth-child(2) > ul > li{
    font-size: 20px;
    line-height: 20px;
}

.banner_one h2{
    font-weight: 700;
    font-size: 56px;
    line-height: 60px;
    text-transform: uppercase;
    color: #000000;
    /*background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);*/
    padding: 21px 56px;
    box-sizing: border-box;
}

.content_banner_one{
    max-width: 50%;
}

.content_banner_one h3{
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: right;
    padding-right: 36px;
    box-sizing: border-box;
    margin-top: 30px;
}

.content_banner_one form{
    background: rgba(255, 255, 255, 0.43);
    */border: 3px solid #FFFFFF;*/
    border-radius: 5px;
    padding: 10px 30px 30px;
    box-sizing: border-box;
    max-width: 75.159236%; /* 590/785 */
    width: 100%;
}

.content_banner_one form > div{
    display: flex;
    margin-top: 10px;
}

.content_banner_one form .buttons,
.content_banner_one form input[type=text]{
    padding: 13.5px 0;
}

.content_banner_one form input[type=text]{
    padding-left: 22px;
}

.content_banner_one form{
    text-align: center;
    margin: 10px 0;
}

.content_banner_one form h4{
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.content_banner_one form h5{
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000000;
    margin: 5px 0;
}

.content_banner_one form h5 span{
    color: #33E9ED;
}

.content_banner_one form h6{
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.banner_two{
    padding: 90px 0 20px;
    box-sizing: border-box;
    background-image: url(../img/banners/2/backgr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.content_banner_two h2{
    font-weight: 700;
    font-size: 96px;
    line-height: 96px;
    text-transform: uppercase;
    color: #b0cb21;
}

.content_banner_two h3{
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    color: #000000;
    margin: 30px 0;
}

.content_banner_two h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    color: #000000;
}

.item_banner_two{
    max-width: 39.160839%; /* 616/1573 */
    width: 100%;
    margin-right: 4.068659%; /* 64/1573 */
}

.item_banner_two{
    background-position: bottom right;
    background-size: cover;
    padding: 30px;
    box-sizing: border-box;
    border: 2px solid #DADADA;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

.item_banner_two:nth-child(1){
    background-image: url(../img/banners/2/item_1.png);
}

.item_banner_two:nth-child(2){
    background-image: url(../img/banners/2/item_2.png);
}


.content-item_banner_two h4,
.content-item_banner_two h5{
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #000000;
}

.content-item_banner_two h4{
    font-weight: 800;
    color: #b0cb21;
    margin-top: 12px;
}

.wrapper-items_banner_two .buttons{
    margin-top: 20px;
    max-width: 44.155844%; /* 272/616 */
    width: 100%;
}

.wrapper-items_banner_two{
    margin-top: 30px;
    display: flex;
}

.content-item_banner_two span{
    display: block;
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.banner_three{
    height: 100%;
    background-image: url(../img/banners/3/backgr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.img_banner_three{
    background-image: url(../img/banners/3/items.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.swiper_banners{
    height: 100%;
}

.swiper_banners .swiper-slide{
    height: auto;
}

.section-installment{
    position: relative;
    padding: 0;
    margin-top: 80px;
    background-image: url(../img/installment/backgr.png);
}

.content-installment{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 600px;
    padding-top: 50px;
    box-sizing: border-box;
}

.wrapper-installment{
    position: relative;
}

.img-installment{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    max-width: 26.145038%; /* 411/1572 */
    width: 100%;
}

.img-installment img{
    width: 100%;
    display: block;
}

.content-installment h2{
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
}

.content-installment h3{
    font-weight: 700;
    font-size: 32px;
    line-height: 70px;
    color: #FFFFFF;
    padding: 17px 44px;
    box-sizing: border-box;
    background: #7473CD;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
}

.img-carts_installment{
    position: absolute;
    bottom: 0;
    right: 10px;
    max-width:50%; 
    width: 100%;
}

.img-carts_installment img{
    width: 100%;
    display: block;
}

.container_notification{
	display: none;
	position: fixed;
	z-index: 20;
	right: 20px;
    top: 50px;
}

.container_notification_people{
	top: 10px;
}

.container_notification_call{
	top: 70px;
}

.notification{
	position: relative;
	padding: 15px 20px 15px 10px;
	background: linear-gradient(90deg, #b0cb21 0%, #AF9BC0 137.66%);
	border: 1px solid #b0cb21;
	animation: notification_people 2s infinite;
	border-radius: 10px;
}

.close_notification{
	position: absolute;
	right: 5px;
	top: 5px;
	max-width: 10px;
	width: 100%;
	cursor: pointer;
}

.close_notification img{
	display: block;
	width: 100%;
}

.text_notification{
	color: white;
	font-size: 12px;
}

@keyframes notification_people {
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.05);
	}
	100%{
		transform: scale(1);
	}
}

.grecaptcha-badge{
    z-index: 999999;
}

.list_footer_cont > li{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.list_footer_cont > li > div{
    display: flex;
    align-items: center;
}

.list-social{
    display: flex;
    column-gap: 10px;
}

.list-social img{
    display: block;
    width: 100%;
}

.list-social > li{
    max-width: 30px;
}

nav .list-social{
    display: none;
}