@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Regular.ttf")format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Medium.ttf")format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Semibold.ttf")format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Bold.ttf")format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --color-primary-dark: #000000;
    --color-primary-light: #ABD1C6;
    --color-light: #FEFFFD;
    --color-additional-light: #F9BC61;
    --color-additional-dark: #DD6264;
    --color-text: #111111;
    --color-button: #FFFFFF;
}

* {
	padding: 0px;
	margin: 0px;
	border: none;
    font-family: "Lato", Verdana, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #000;
}

*, *::before, *::after {
	box-sizing: border-box;
}

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
    font-style: normal;
}

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #fe8400 #FFFFFF;
}

::-webkit-scrollbar {
    height: 10px;
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--color-primary-light);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--color-additional-light)
}

header, main, footer, section{
    width: 100%
}
header{
    background: transparent;
    position: fixed;
    z-index: 999;
}
.header_fon{
    background: #212121;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/header_fon.svg);
    background-position: center left;
    background-size: contain;
}
.logo{
    margin-top: 5px;
    margin-bottom: 13px;
}
.phones{
    width: 215px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 8px;
}
.phones a{
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}
.phones svg{
    height: 36px;
    width: auto;
}
.container{
    max-width: 1200px;
    margin: 0 auto
}
.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mob_menu_logo{
    display: none;
}
#mob_menu{
    display: none;
}
#mob_menu a{
    display: block;
    width: fit-content;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 18px;
}
.menu{
    display: none;
    overflow: hidden;
    margin-top: -10px;
    border-radius: 10px;
    background: #343434;
    display: flex;
    gap: 24px;
}
.menu a{
    padding: 15px 20px;
    color: #FFFFFF;
    width: fit-content;
}
.menu button{
    width: fit-content;
    margin-left: auto;
    padding: 10px 20px;
    background: #fe8400;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}
.welcome{
    background: #212121;
}
.welcome_fon{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/main_fon.webp);
    background-position: top;
    background-size: 100% auto;
    padding-bottom: 55px;
}
.welcome_content{
    padding-top: 160px;
    max-width: 616px;
    display: flex;
    flex-direction: column;
}
.welcome_subtitle{
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #f64b4b;
    margin-bottom: 36px;
}
.welcome_title{
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    color: #FFFFFF;
}
.welcome_desc{
    font-weight: 400;
    font-size: 28px;
    line-height: 160%;
    color: #FFFFFF;
}
.welcome_line{
    height: 2px;
    width: 528px;
    background: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 26px;
    margin-top: 26px;
}
.welcome .btns{
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 24px
}
.btn{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 19px;
    width: 280px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    background: transparent;
}
.btn.primary{
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fe8400;
}
.btn.primary:hover{
    border: 1px solid #fe8400;
    background: #ffffff;
    color: #fe8400;
    transition: 0.5s;
}
.btn.secondary:hover{
    border: 1px solid #fe8400;
    color: #fe8400;
    transition: 0.5s;
}
.small_block{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.title_primary{
    text-align: center;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    color: #fe8400;
}
.desc_primary{
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: #fff;
}
.benefits{
    padding-top: 83px;
    padding-bottom: 100px;
}
.benefit_cards{
    margin-top: 46px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/benefits_fon.webp);
    background-position: center right;
    background-size: contain;
}
.benefit_card{
    display: flex;
    background: #FFFFFF;
    align-items: center;
    gap: 20px;
    width: 740px;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 28px 32px 28px 32px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.benefit_card_img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 54px;
    min-width: 54px;
    height: 122px;
    background: #f5f5f5;
}
.benefit_card_title{
    font-weight: 700;
    font-size: 21px;
    line-height: 150%;
    color: #161c2d;
}
.benefit_card_desc{
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #161c2d;
}
.pluses{
    padding-top: 100px;
    padding-bottom: 100px;
    background: #212121;
}
.pluses_cards{
    margin-top: 66px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.pluses_card_img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pluses_card_title{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    margin-bottom: 8px;
}
.pluses_card_title2{
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
    margin-bottom: 8px;
}
.pluses_card_desc{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #d6d6d6;
}
.vertical_logo{
    position: relative;
}
.vertical_logo_img{
    position: absolute;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/avto-spectr.png);
    background-position: top;
    background-size: 100% auto;
}
.vertical_logo_img.left_logo{
    width: 112px;
    height: 873px;
    top: -540px;
    left: 0px;
    transform: rotate(180deg);
}
.vertical_logo_img.right_logo{
    width: 112px;
    height: 873px;
    bottom: -540px;
    right: 0px;
}
.vertical_logo p{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 120px;
    line-height: 200%;
    letter-spacing: 0.05em;
}
.gallery{
    padding-top: 95px;
    padding-bottom: 159px;
}
.gallery_slider{
    margin-top: 81px;
}
.gallery_slide img{
    border-radius: 14px;
    width: 380px;
    margin-left: 10px;
    margin-right: 10px;
}
.gallery .desc_primary, .partners .desc_primary, .materials .desc_primary, .reviews .desc_primary{
    color: #000000;
}
.title_fullscreen{
    text-align: center;
    font-weight: 600;
    font-size: 38px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 55px;
}
.see_price{
    background-color: #000;
    padding-top: 71px;
    padding-bottom: 126px;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/price_fon.webp);
    background-position: center center;
    background-size: cover;
}
.see_price2{
    background-color: #000;
    padding-top: 71px;
    padding-bottom: 71px;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/price_fon2.webp);
    background-position: center center;
    background-size: cover;
}
.see_price .btn{
    margin-top: 24px;
}
.see_price2 .btn{
    margin-top: 50px;
}
.materials{
    padding-top: 115px;
    padding-bottom: 140px;
}
.materials_tabs{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px
}
.materials_tab{
    cursor: pointer;
    border-radius: 58px;
    padding: 12px 18px;
    background: #FFFFFF;
    color: #212121;
    border: 1px solid #00000020;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.materials_btn .materials_tab:hover{
    transition: 0.5s;
    background: #fe8400;
}
.materials_tab:hover{
    transition: 0.5s;
    border: 1px solid #fe8400;
}
.materials_tab.active{
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #212121;
    color: #FFFFFF
}
.materials_type{
    display: none;
}
.materials_type.active{
    display: block;
}
.materials_cards{
    margin-top: 96px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4,1fr);
}
.materials_card{
    border: 1px solid #ababab;
    border-radius: 15px;
    width: 285px;
    padding: 8px 8px 14px 8px;
}
.materials_card_img{
    width: 269px;
    height: 330px;
    overflow: hidden;
}
.materials_card_img img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.materials_card_title{
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    color: #000000;
}
.materials_card_desc{
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #000000;
}
.materials_card_line{
    height: 1px;
    background: #979797;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}
.materials_card_info p{
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #000000;
}
.materials_btn .materials_tab{
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    margin-top: 56px;
}
.materials_card{
    display: block;
}
.materials_card.hide{
    display: none;
}
.terms{
    padding-top: 74px;
    padding-bottom: 94px;
    background: #212121;
}
.terms_cards{
    display: flex;
    margin-top: 100px;
    gap: 100px;
}
.terms_card{
    width: 100%;
    padding-top: 38px;
    padding-left: 40px;
    padding-bottom: 32px;
    padding-right: 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 8px 24px 0 rgba(16, 24, 40, 0.08);
}
.terms_card_header{
    display: flex;
    justify-content: space-between;
}
.terms_card_title{
    font-weight: 600;
    font-size: 28px;
    line-height: 86%;
    color: #000000;
}
.terms_card_block_text p:first-child{
    font-weight: 600;
    font-size: 21px;
    line-height: 152%;
    color: #161c2d;
}
.terms_card_block_text p:last-child{
    font-weight: 400;
    font-size: 16px;
    line-height: 181%;
    color: #161c2d;
    opacity: 0.7;
}
.terms_card_block{
    display: flex;
    gap: 22px;
    margin-bottom: 21px;
}
.terms_card_block_img{
    min-width: 43px;
    height: 43px;
}
.terms .desc_primary{
    margin-top: 58px;
    margin-bottom: 20px;
    max-width: 720px;
    font-weight: 400;
    font-size: 28px;
    line-height: 160%;
    text-align: center;
    color: #ffffff;
}
.partners{
    padding-top: 137px;
    padding-bottom: 162px;
    overflow-x: hidden;
}
.partners_slide img{
    margin-left: 50px;
    margin-right: 50px;
}
.partners .desc_primary{
    max-width: 558px;
    margin-bottom: 80px;
}
.products{
    padding-top: 58px;
    background: #f5f5f5;
}
.products_title{
    font-weight: 700;
    font-size: 38px;
    line-height: 130%;
    text-align: center;
    color: #000000;
    margin-bottom: 70px;
}
.products_card_title{
    font-weight: 600;
    font-size: 28px;
    line-height: 160%;
    color: #0f0f0f;
}
.products_card_desc{
    font-weight: 400;
    font-size: 19px;
    line-height: 168%;
    color: #161c2d;
    opacity: 0.7;
}
.products_card_body{
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 434px;
}
.products_card{
    justify-content: center;
    display: flex;
    gap: 50px;
    padding-bottom: 80px;
}
.reviews{
    padding-top: 66px;
    padding-bottom: 114px;
}
.reviews_slider{
    margin-top: 42px;
}
.reviews_slide{
    padding: 24px 80px 24px 26px;
    border-radius: 15px;
    margin-left: 10px;
    margin-right: 10px;
    background: #dadada;
}
.reviews_slide_title{
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    color: #0f0f0f;
    margin-bottom: 16px;
}
.reviews_slide_desc{
    font-weight: 400;
    font-size: 21px;
    line-height: 150%;
    color: #0f0f0f;
    opacity: 0.8;
}
.faq{
    background: #212121;
    padding-top: 66px;
}
.reviews_btns{
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 56px;
}
.reviews_btns button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadada;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    transition: 0.5s;
}
.reviews_btns button.reviews_next{
    transform: rotate(180deg);
}
.reviews_btns button:hover{
    border: 1px solid #000000;
    background: #000000;
}
.reviews_btns button:hover svg path{
    stroke: #FFFFFF
}
.faq{
    padding-bottom: 42px;
}
.faq_container{
    margin-top: 63px;
    padding: 28px 60px;
    background: #ffffff;
    border-radius: 10px;
}
.faq_block{
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e7e9ed;
}
.faq_block_title{
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: 700;
    font-size: 21px;
    line-height: 152%;
    color: #161c2d;
}
.faq_block_body{
    display: none;
}
.faq_block_body{
    max-width: 800px;
    padding-top: 20px;
    font-weight: 400;
    font-size: 17px;
    line-height: 171%;
    color: #161c2d;
    opacity: 0.7;
}
.faq_block svg{
    transition: 0.5s;
}
.faq_block.active svg{
    transform: rotate(-90deg);
}
.faq_block.active .faq_block_body{
    display: block;
}
.faq_info{
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.faq_info_title{
    font-weight: 600;
    font-size: 28px;
    line-height: 160%;
    color: #fff;
}
.contacts{
    padding-top: 200px;
    padding-bottom: 285px;
    background: #212121;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/bottom_fon.webp);
    background-position: bottom;
    background-size: 100% auto;
}
.contacts_block{
    padding: 20px 30px;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 141px 200px -80px rgba(25, 58, 75, 0.3);
    background: #FFFFFF;
}
.contacts_block_info, .contacts_block_map{
    width: 50%;
}
.contacts_block_info{
    padding: 25px 10px 0px 24px;
}
.contacts_title{
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 48px;
    line-height: 50%;
    color: #000;
}
.contacts_card{
    margin-top: 35px;
    display: flex;
    gap: 13px;
}
.contacts_card p, .contacts_card a{
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    padding-bottom: 4px;
    padding-top: 4px
}
.contacts_card_text p:first-child{
    font-weight: 700;
}
.contacts_footer{
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    line-height: 114%;
    color: #000;
}
.contacts_block_map iframe{
    height: 100% !important;
}
footer{
    padding-top: 66px;
    padding-bottom: 80px;
    background: #212121;
}
.footer{
    display: flex;
    justify-content: space-between;
    gap: 68px;
}
.footer_block{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.footer_block p, .footer_block a{
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #ffffff;
}
.footer_block.footer_phone a{
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
}
.footer_logo{
    margin-bottom: 26px;
}
.footer_col_title{
    margin-top: 45px;
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}
.footer_col_menu{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer_col_menu a{
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #fff;
}
.footer_line{
    margin-top: 36px;
    margin-bottom: 32px;
    width: 100%;
    height: 1px;
    background: #575757;
}
.copyright{
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #fff;
}
.vertical_payment{
    position: absolute;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/payment.png);
    background-position: top;
    background-size: 100% auto;
    width: 112px;
    height: 873px;
    top: -350px;
    right: 0px;
    transform: rotate(0deg);
}
.vertical_delivery{
    position: absolute;
    background-repeat: no-repeat, no-repeat;
    background-image: url(img/delivery.png);
    background-position: top;
    background-size: 100% auto;
    width: 112px;
    height: 873px;
    bottom: -464px;
}
.constructor{
    margin-top: 150px;
    border-radius: 15px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #f5f5f5;
    padding: 21px 28px 58px 28px;
}
.constructor_img{
    display: flex;
    align-items: center;
    width: 500px;
    position: relative;
}
#constructor{
    position: relative;
}
#constructor .btn{
    position: absolute;
    width: fit-content;
    right: 14%;
}
.constructor_img img{
    position: absolute;
}
.constructor .title_primary{
    margin-bottom: 30px;
}
.constructor_block{
    display: flex;
    justify-content: space-between;
}
.constructor_params{
    width: 530px;
    background: #F8F3F3;
    border-radius: 14px;
    padding: 22px 34px 22px 40px;
}
.constructor_param{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}
.constructor_select{
    width: 268px;
    min-width: 268px;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #040f0f;
}
.constructor_select_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #212121;
    border-radius: 14px;
    padding: 6px 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.constructor_select .constructor_select_title_img{
    transition: 0.5s;
}
.constructor_select.active .constructor_select_title_img{
    transform: rotate(-180deg);
}
.constructor_select_container{
    z-index: 2;
    width: 268px;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #040f0f;
    margin-top: 12px;
    display: none;
    position: absolute;
    border: 1px solid #212121;
    border-radius: 14px;
    padding: 4px 6px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}
.constructor_select_body{
    padding-top: 2px;
    padding-bottom: 2px;
    max-height: 122px;
    overflow-y: scroll;
}
.constructor_select_body::-webkit-scrollbar-track {
    border-radius: 10px;
}
.constructor_select span{
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #040f0f;
}
.constructor_select_item{
    border-radius: 10px;
    padding: 2px 6px;
    cursor: pointer;
}
.constructor_select_item:hover{
    transition: 0.5s;
    background-color: #ffe9e9;
}
.constructor_param_mb{
    margin-bottom: 62px;
}
#auto_model .constructor_select_item{
    display: none;
}
.constructor_img{
    overflow: hidden;
}
.contacts_card_img{
    min-width: 55px;
}
#main_menu_btn {
    padding: 0px;
    background: transparent;
    border: 1px solid transparent;
}
#main_menu_btn:focus {
    outline-width: 0;
}
#main_menu_btn [class*='bar-'] {
    background: #FFFFFF;
    display: block;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease all;
    transition: .2s ease all;
    border-radius: 8px;
    height: 3px;
    width: 35px;
    margin-bottom: 6px;
}
#main_menu_btn .bar-bot {
    margin-bottom: 0;
}
#main_menu_btn.opened_main_menu .bar-top {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 15% 15%;
    transform-origin: 15% 15%;
}
#main_menu_btn.opened_main_menu .bar-mid {
    opacity: 0;
}
#main_menu_btn.opened_main_menu .bar-bot {
    -webkit-transform: rotate(45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 15% 95%;
    transform-origin: 15% 95%;
}
#main_menu_btn{
    display: none;
}
.view{
    display: block !important;
}
.constructor_select_title_body, .constructor_select_item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.constructor_circle{
    border: 1px solid #7e7e7e;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
}
.modal-win {
    display: flex;
    top: 0%;
    left: 0%;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 123123;
    background-color: rgba(0,0,0,.6);
    height: 100%;
    width: 100%;
}
.modal-position {
    position: relative;
}
.contacts-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e5e8ed;
    border-radius: 10px;
    padding: 28px 40px;
    max-width: 495px;
    box-shadow: 0 60px 80px -20px rgba(30, 33, 44, .16), 0 26px 24px -10px rgba(30, 33, 44, .1), 0 12px 10px -6px rgba(30, 33, 44, .08), 0 4px 4px -4px rgba(30, 33, 44, .05);
}
.contacts-section__form {
    background-color: #FFFFFF;
}
.close-modal {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url(../img/close.svg);
    background-repeat: no-repeat;
    background-size: 115%;
    position: absolute;
    top: 3%;
    left: 90%;
}
.header_social{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 16px;
    margin-bottom: 4px;
}
.constructor_note{
    max-width: 500px;
    margin-left: 10px;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.8;
}
.contacts-form__title {
    margin: 0 0 0px;
    width: 100%;
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    text-align: center;
    color: #1e212c;
}
.contacts-form__field {
    margin-bottom: 21px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form-field__caption {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 150%;
    color: #424551;
}
.form-field__input{
    border: 1px solid #d7dadd;
    border-radius: 4px;
    padding-left: 15px;
    width: 100%;
    height: 44px;
    font-size: 14px;
    line-height: 150%;
}
.custom-checkbox__input {
    position: absolute;
    opacity: 0;
}
.custom-checkbox__text {
    position: relative;
    display: inline-block;
    padding-left: 27px;
    font-size: 14px;
    line-height: 150%;
    color: #424551;
    margin-bottom: 10px;
}
.custom-checkbox__text::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 1px;
    display: inline-block;
    border: 1px solid #fe8400;
    border-radius: 3px;
    width: 16px;
    height: 16px;
    transition: background-color .3s ease-in-out;
}
.custom-checkbox__text::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 1px;
    width: 16px;
    height: 16px;
    background-image: url(../img/check.svg);
    background-position: center;
    background-size: 10px 8px;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.custom-checkbox__input:checked+.custom-checkbox__text::before {
    background-color: #fe8400;
}
.custom-checkbox__input:checked+.custom-checkbox__text::after {
    opacity: 1;
}
.form-field__input--big {
    padding-top: 10px;
    height: 66px;
    resize: none;
}
.centered{
    display: flex;
    align-items: center;
    justify-content: center;
}
.error_field{
    display: none;
    margin-top: -20px;
    margin-bottom: 10px;
    font-size: 12px;
    color: red;
}
.error_field_policy{
    margin-top: -10px;
}
.error_field.active{
    transition: 0.5s;
    display: block;
}
#form_constructor p:last-child{
    margin-bottom: 12px;
}
.complete_form_text span:first-child {
    margin-right: 4px;
}
.complete_form_text span:last-child {
    color: #fe8400;
}
.complete_form_text span{
    font-weight: 600;
    font-size: 14px;
}
.modal-win>div{
    max-height: 100%;
    overflow-y: auto;
}
@media (max-width:1440px) {
    .vertical_logo_img.left_logo {
        width: 40px;
        top: -752px;
    }
    .vertical_logo_img.right_logo {
        width: 40px;
        bottom: -754px;
    }
    .vertical_delivery {
        width: 40px;
        bottom: -726px;
    }
    .vertical_payment {
        width: 40px;
        top: -120px;
    }
}
@media (max-width:1280px) {
    .title_fullscreen{
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer {
        gap: 20px;
    }
    .contacts {
        padding-top: 100px;
        padding-bottom: 185px;
    }
    .gallery_slide img {
        max-width: 280px;
    }
    .terms_cards {
        gap: 40px;
    }
    .welcome_content {
        padding-left: 80px;
        padding-top: 160px;
        max-width: 700px;
    }
    .constructor {
        margin-top: 120px;
    }
    .container {
        width: 100%;
        max-width: none;
        margin: 0px 0px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .vertical_logo_img.left_logo, .vertical_logo_img.right_logo, .vertical_delivery, .vertical_payment{
        display: none;
    }
    .menu button {
        font-size: 18px;
    }
    .menu.container{
        width: 100%;
        padding: 0px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    .header_fon {
        background-position: center left -400px;
        background-size: 100% 100%;
    }
    .welcome_fon {
        background-size: 1400px;
    }
    .phones {
        height: 100%;
        padding-bottom: 0px;
    }
    .header_social {
        margin-bottom: -6px;
    }
}
@media (max-width:1240px) {
    .small_block{
        max-width: 760px;
    }
    .materials_cards{
        display: flex;
        flex-wrap: wrap;
        max-width: 895px;
        margin-left: auto;
        margin-right: auto;
    }
    .benefit_card{
        width: 640px;
    }
    .benefit_cards{
        background-size: auto 420px;
        background-position: center right;
    }
}
@media (max-width:1200px) {
    .constructor_param{
        margin-bottom: 20px;
    }
    .constructor_img {
        width: 450px;
    }
    .menu.container {
        gap: 12px;
    }
}
@media (max-width:1140px) {
    #constructor .btn {
        right: 60px;
    }
    .constructor_img img {
        left: 50px;
    }
}
@media (max-width:1024px) {
    .footer_logo{
        display: none;
    }
    .footer_block.footer_addr{
        width: 100%;
    }
    .footer {
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap;
        gap: 0px;
    }
    .footer .footer_col:first-child{
        display: flex;
        flex-wrap: wrap;
        min-width: 100%;
        gap: 20px;
    }
    .benefit_cards {
        align-items: center;
    }
    #constructor .btn {
        right: 40px;
    }
    .menu {
        gap: 16px;
    }
    .contacts_title{
        font-size: 32px;
    }
    .contacts_block_info {
        padding: 20px 20px 0px 0px;
    }
    .faq_info {
        flex-direction: column;
        gap: 20px;
    }
    .partners {
        padding-top: 100px;
        padding-bottom: 120px;
    }
    .menu a{
        font-size: 14px;
    }
}
@media (max-width:940px) {
    #mob_menu{
        display: none;
    }
    .terms_card_block_img {
        min-width: 30px;
        height: 30px;
    }
    .terms_card_block {
        gap: 12px
    }
    .terms_card{
        padding-top: 30px;
        padding-left: 30px;
        padding-bottom: 20px;
        padding-right: 30px;
    }
    .terms_card_bg svg{
        height: 80px;
        width: 80px;
        margin-bottom: 10px;
    }
    .terms_cards {
        gap: 20px
    }
    .terms_card_block_text p:first-child {
        font-weight: 700;
        font-size: 18px;
    }
    .materials_cards {
        max-width: 610px;
    }
    #constructor .btn {
        display: flex;
        position: relative;
        right: inherit;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    .constructor {
        padding: 20px 24px 20px 24px;
    }
    .constructor_block {
        flex-direction: column-reverse;
    }
    .constructor_params {
        width: 100%;
    }
    .constructor_img {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 450px;
        height: 500px;
    }
    .header_fon{
        background-image: none;
        padding: 5px 10px;
    }
    .logo{
        margin: 0px auto !important
    }
    .container.header_container {
        display: flex;
        align-items: center;
        height: 70px;
    }
    .menu {
        display: none;
    }
    #mob_menu{
        padding: 0px 60px 20px 30px;
        top: 79px;
        background: #212121;
        z-index: 90;
        width: 100%;
    }
    #mob_menu a{
        width: fit-content;
        color: #FFFFFF;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 18px;
    }
    #main_menu_btn{
        display: block;
    }
    .mob_menu_phone{
        margin-top: 20px;
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 22px;
        line-height: 109%;
        text-align: center;
        color: #fff;
    }
    .mob_menu_btn{
        margin-left: 8px;
        border-radius: 10px;
        padding: 6px 12px;
        background: #fe8400;
        font-weight: 600;
        font-size: 18px;
        text-align: center;
        color: #fff;
    }
    .welcome_content {
        padding-top: 110px;
    }
    .mob_menu_phone {
        display: none;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
@media (max-width:768px) {
    .mob_menu_phone{
        display: flex;
    }
    .materials .desc_primary{
        font-size: 14px;
    }
    .reviews_slide_title {
        font-size: 18px;
    }
    .reviews_slide_desc{
        font-size: 16px;
    }
    .title_fullscreen {
        font-size: 30px;
    }
    .welcome_title {
        font-size: 48px;
    }
    .welcome_desc {
        font-size: 20px;
    }
    .welcome_line {
        width: 100%;
    }
    .benefit_card {
        width: 100%;
    }
    .welcome_content {
        padding-top: 110px;
        padding-left: 20px;
        padding-right: 20px;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .contacts_card p, .contacts_card a {
        font-size: 16px;
    }
    .reviews {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .partners {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .terms_cards {
        margin-top: 50px;
    }
    .terms {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .materials {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .see_price {
        padding-top: 71px;
        padding-bottom: 90px;
    }
    .gallery {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .pluses {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pluses_cards {
        margin-top: 50px;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        max-width: 360px;
    }
    .title_primary {
        font-size: 36px;
    }
    .products_title {
        font-size: 32px;
    }
    .products_card {
        flex-direction: column;
        align-items: center;
    }
    .products_card_img{
        margin-left: auto;
    }
    .products_card_body {
        width: 100%;
    }
    .products .products_card:last-child{
        flex-direction: column-reverse;
    }
    .products_card_desc {
        max-width: 80%;
    }
    .container.header_container {
        padding-left: 0px;
        padding-right: 0px;
    }
    .welcome_fon {
        background-size: 1400px;
    }
    .header_social{
        display: none;
    }
}
@media (max-width:650px) {
    .contacts_block{
        flex-direction: column;
        gap: 20px;
    }
    .contacts_block_info, .contacts_block_map {
        width: 100%;
    }
    .contacts_block_map iframe {
        min-height: 300px;
    }
    .faq_container {
        padding: 20px 30px;
    }
    .terms_cards{
        flex-direction: column;
        align-items: center;
    }
    .terms_card{
        width: 100%;
        max-width: 500px;
    }
    .materials_tab {
        width: 200px;
        text-align: center;
    }
    .materials_tabs {
        flex-direction: column;
        margin-top: 30px;
    }
    .materials_cards {
        margin-top: 30px;
        max-width: 285px;
    }
    .benefit_card{
        height: auto;
        padding: 20px !important;
    }
    .constructor_select {
        width: 210px;
        min-width: 210px;
    }
    .constructor_params {
        padding: 20px 20px 0px 20px;
    }
    .benefit_cards {
        background: transparent;
    }
    .logo{
        width: 200px;
    }
}
@media (max-width:540px) {
    .centered{
        margin-top: 10px;
    }
    .contacts-form {
        padding: 22px 26px;
    }
    .reviews_slide {
        padding: 20px 20px 20px 20px;
    }
    .constructor_select {
        width: 280px;
        min-width: 280px;
    }
    .constructor_params {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .constructor_param>p{
        padding-left: 4px;
    }
    .constructor_param {
        flex-direction: column;
        align-items: start;
        gap: 10px;    
    }
    .title_fullscreen {
        font-size: 24px;
    }
    .terms .desc_primary, .faq_info_title {
        font-size: 20px;
    }
    .phones {
        width: fit-content;
    }
    .phones a {
        font-weight: 600;
        font-size: 16px;
    }
    .phones svg {
        height: 24px;
    }
}
@media (max-width:500px) {
    .welcome_subtitle {
        margin-bottom: 24px;
    }
    .welcome .btns {
        margin-top: 35px;
    }
    .welcome_content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .welcome_title {
        font-size: 40px;
    }
    .constructor_img {
        width: 320px;
        height: 400px;
    }
    .constructor_img img {
        left: 24px;
    }
    .title_primary {
        font-size: 32px;
    }
    .products_title {
        font-size: 26px;
    }
}
@media (max-width:450px) {
    .logo{
        display: none;
    }
    .mob_menu_logo{
        display: block;
        margin-left: 10px;
    }
    .constructor_select {
        width: 250px;
        min-width: 250px;
    }
    .phones a {
        font-weight: 700;
        font-size: 20px;
    }
    .phones svg {
        height: 32px;
    }
    .contacts-form__title {
        margin: 0 0 0px;
        font-size: 22px;
    }
    .contacts-form {
        padding: 20px 20px;
    }
    .form-field__input--big {
        height: 44px;
        margin-bottom: -14px;
    }
    .centered.btn.primary{
        padding: 8px 12px;
    }
}
@media (max-width:400px) {
    .contacts-form__title {
        margin: 0 0 0px;
        font-size: 20px;
    }
    .form-field__caption{
        margin-bottom: 0px;
    }
    .form-field__input {
        height: 32px;
    }
    .contacts-form__field {
        margin-bottom: 18px;
    }
    .form-field__input--big {
        padding: 2px;
    }
    .custom-checkbox__text {
        font-size: 12px;
        margin-top: 6px;
        margin-bottom: 6px;
    }
}
@media (max-width:375px) {
    .constructor_img {
        width: 300px;
        height: 380px;
    }
    .constructor_img img {
        left: 20px;
    }
}