@font-face {
    font-family: 'Onest';
    src: url('fonts/Onest/Onest-Regular.eot');
    src: local('Onest Regular'), local('Onest-Regular'),
    url('fonts/Onest/Onest-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Onest/Onest-Regular.woff2') format('woff2'),
    url('fonts/Onest/Onest-Regular.woff') format('woff'),
    url('fonts/Onest/Onest-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('fonts/Onest/Onest-Medium.eot');
    src: local('Onest Medium'), local('Onest-Medium'),
    url('fonts/Onest/Onest-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/Onest/Onest-Medium.woff2') format('woff2'),
    url('fonts/Onest/Onest-Medium.woff') format('woff'),
    url('fonts/Onest/Onest-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('fonts/Onest/Onest-Bold.eot');
    src: local('Onest Bold'), local('Onest-Bold'),
    url('fonts/Onest/Onest-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Onest/Onest-Bold.woff2') format('woff2'),
    url('fonts/Onest/Onest-Bold.woff') format('woff'),
    url('fonts/Onest/Onest-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Prata';
    src: url('fonts/Prata/Prata-Regular.eot');
    src: local('Prata Regular'), local('Prata-Regular'),
    url('fonts/Prata/Prata-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Prata/Prata-Regular.woff2') format('woff2'),
    url('fonts/Prata/Prata-Regular.woff') format('woff'),
    url('fonts/Prata/Prata-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
:root{
    --main_gradient:linear-gradient(0deg,#B67A3C,#E8C99B);;
}
*, ul, li, p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html, body {
    font-family: 'Onest', sans-serif;
    color: #100000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    overflow-x: hidden;
}
body{
    background: #FCF6EE;
}
html.no_scroll {
    overflow: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
    flex:none;
    display: inline-block;
}

[role="tab"] {
    cursor: pointer;
}

[role="tabpanel"]:not(.active) {
    display: none;
    visibility: hidden;
}

[role="button"] {
    cursor: pointer;
}

.no_scroll body {
    max-height: 100%;
    height: 100%;
    overflow: hidden;
}

input, textarea, button {
    outline: none;
    box-shadow: none;
    border: none;
}

input:focus, textarea:focus, button:focus {
    outline: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input[type=file] {
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input.errorInput {
    border-color: #ff0000 !important;
}
a, a:not(.btn_m):focus, a:not(.btn_m):hover, a:not(.btn_m):active {
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

a[href^="tel:"] {
    white-space: nowrap;
}

.text-center {
    text-align: center !important;
}

.container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 50%;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.d-none{
    display: none !important;
}
.justify-content-between {
    justify-content: space-between !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex,.d-flex {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.flex_between_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_align_center {
    display: flex;
    align-items: center;
}

.flex_wrap {
    flex-flow: wrap;
}

.text_block p:not(:last-child) {
    margin-bottom: 1rem;
}

.text_block {
    font-size: 16px;
}

.text_block h2 {
    margin-top: clamp(20px, 3vw, 48px);
    margin-bottom: clamp(14px, 3vw, 32px);
}

.text_block h3 {
    margin-top: clamp(16px, 3vw, 40px);
}

.text_block h4 {
    font-weight: 700;
    font-size: clamp(16px, 3vw, 18px);
    margin-top: clamp(16px, 3vw, 32px);
    margin-bottom: clamp(12px, 3vw, 20px);
}

.text_block ul {
    padding-left: 24px;

    li {
        list-style: disc;
        margin-bottom: 1rem;

        &::marker {
            color: var(--orange);
        }

    }

    &:not(:last-child) {
        margin-bottom: 16px;
    }
}

.text_block ol {
    padding-left: 24px;

    li {
        list-style: decimal;
        margin-bottom: 1rem;

        &::marker {
            font-weight: 600;
        }

    }

    &:not(:last-child) {
        margin-bottom: 16px;
    }
}
h1,h2,h3,h4,.h1,.h2,.h3,.h4{
    font-family: "Prata",sans-serif;
    font-weight: 400;
}
h1{
    font-size:clamp(32px,4vw,54px);
    color: #2D2D2D;
    line-height: 1.35;
}
h2,.h2{
    font-size: clamp(28px,4vw,48px);
}
h3,.h3{
    font-size:clamp(28px,4vw,32px);
    margin-bottom: 20px;
}
h4,.h4{
    font-size: clamp(18px,3vw,20px);
}
section {
    padding-bottom: clamp(50px,7vw,100px);
    position: relative;
}
.bg_section {
    position: absolute;
    width: 100%;
    z-index: -1;
    >img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
header {
    padding: 20px 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.container_header{
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 100px;
    padding: 10px 30px;
    background: #F8E9D480;
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    gap: 20px;
    .logo_site{
        gap: 20px;
        >a{
            max-width: 167px;
            &:has(>img){
                font-size: 0;
            }
        }
    }
    .btn_radius{
        margin-left: auto;
    }
}
.hamb {
    width: 32px;
    height: 32px;
    padding: 5px 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    >* {
        display: block;
        width: 100%;
        height: 2px;
        background: #100000;
        margin-bottom: 5px;
        transition: 0.5s;
        *:last-child {
            margin-bottom: 0;
        }
    }
}
.open .hamb span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 1px 4px;
    -ms-transform-origin: 1px 4px;
    transform-origin: 1px 7px;
}
.open .hamb span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    position: absolute;
    opacity: 0;
    top: 45%;
}
.open .hamb span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 14px 4px;
    -ms-transform-origin: 14px 4px;
    transform-origin: 6px -2px;
}
.contacts_block_header {
    display: flex;
    gap: 17px;
}
.icon_item_contacts {
    display: flex;
    gap: 8px;
    fill: #B67A3C;
    align-items: start;
    svg{
        flex: none;
    }
    .right_block {
        max-width: 210px;
    }
}
.btn_radius {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 25px;
    background: #B67A3C80;
    backdrop-filter: blur(4px);
    border-radius: 30px;
    border-bottom: 1px solid #fff;
    white-space: nowrap;
}
.soc_block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    >* {
        display: inline-flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        img{
            width: 100%;
        }
    }
}
.container_header .soc_block {
    >* {
        width: 24px;
        height: 24px;
    }
}
.top_menu {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
    >ul{
        display: flex;
        justify-content: center;
        >li{
            white-space: nowrap;
            flex: auto;
            .wrap_submenu {
                width: 100%;
                background: #fff;
                border-top: 2px solid #B67A3C;
                backdrop-filter: blur(32px);
                color:#878080;
                padding: 30px 20px 15px;
                font-size: clamp(14px,3vw,16px);
                >ul{
                    max-width: 1280px;
                    margin: 0 auto;
                    >li {
                        width: 33.33%;
                        float: left;
                        margin-bottom: 15px;
                        >a{
                            font-family: "Prata",sans-serif;
                            font-size: clamp(16px,3vw,18px);
                            color:#2D2D2D;
                            display: inline-block;
                        }
                    }
                }
            }
            >a{
                display: block;
                padding: 19px;
                border-bottom: 2px solid transparent;
                text-align: center;
            }
            .parent{
                >ul{
                    margin-top: clamp(10px,3vw,15px);
                    li:not(:last-child){
                        margin-bottom: clamp(10px,3vw,15px);
                    }
                    a:hover{
                        color:#B67A3C;
                    }
                }

            }
        }
    }


}
.sub_title_text {
    font-size: clamp(18px,3vw,24px);
    color: #878080;
    margin-top: clamp(10px,3vw,20px);
}
.btn_m{
    font-size: 18px;
    padding: 18px 30px;
    display: inline-flex;
    align-items: center;
    cursor:pointer;
    border-radius: 8px;
    white-space: nowrap;
    justify-content: center;
}
.btn_grad_brown {
    background: linear-gradient(0deg, #B67A3C, #E8C99B);
    border: 1px solid #E8C99B;
    color: #fff;
}
.top_banner_page{
    padding-top: clamp(106px,27vw,170px);
    .bg_section {
        top: 0;
    }
    >.container{
        padding-top: clamp(30px,4vw,55px);
    }
    .btn_m{
        margin-top: clamp(30px,3vw,50px);
    }
}

.advantage_items_block {
    display: flex;
    flex-flow: wrap;
    max-width: 1240px;
    margin: 0 auto;
    gap: clamp(15px,3vw,20px);
    justify-content: center;
    padding-top: 80px;
    &.block_bottom_arr_border{
        padding-bottom: clamp(20px,3vw,50px);
    }
    .item_advantage{
        .content_block_item{
            h4,.h4{
                text-transform: uppercase;
            }
        }
    }
}
.icon_center_top_item,.item_advantage{
    text-align: center;
    .wrap_img {
        flex:none;
        position: relative;
        border-radius: 50%;
        display: inline-flex;
        width: 150px;
        height: 150px;
        align-items: center;
        justify-content: center;
        background: url("img/item_icon_bg.svg")center no-repeat;
        background-size: cover;
    }
}
.icon_left_item{
    display: flex;
    align-items: center;
    gap: 5px;
    .wrap_img {
        flex:none;
        position: relative;
        border-radius: 50%;
        display: inline-flex;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        background: url("img/item_icon_bg.svg")center no-repeat;
        background-size: cover;
    }
    .icon_left_item__content {
        padding: 10px;
    }
}
.content_block_item{
    color: #585D69;
    padding: clamp(15px,3vw,30px);
    h4,.h4{
        color: #000;
        &:not(:last-child){
            margin-bottom: 10px;
        }
    }
    p:not(:last-child){
        margin-bottom: 10px;
    }
    .notif_text {
        font-size: 12px;
        color: #B67A3C;
    }
}
.block_bottom_arr_border{
    position: relative;
    padding-bottom: 20px;
    &:after{
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 20px;
        bottom: -19px;
        background: url("img/bottom_arr_border.svg") center no-repeat;
    }
}
.calc_price_section{
    >.container{
        max-width: 1210px;
    }
    .bg_section {
        top: 48%;
    }
}
.calc_price_form{
    .top_title_block {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        align-items: center;
        .title_item_calc{
            margin-bottom: 0;
            color: #2D2D2D;
        }
    }
    .label_length_wigs{
        position: relative;
        font-family: "Prata",sans-serif;
        font-size: clamp(28px,3vw,32px);
        text-align: center;
        padding: 13px 30px 7px 30px;
        border-radius: 20px;
        border: 1px solid #E8C99B;
        max-width: clamp(138px,30vw,149px);
        background: linear-gradient(0deg, #B67A3C 0%, #E8C99B 100%);
        color: #fff;
        display: flex;
        input{
            background: transparent;
            color:inherit;
        }
        &:after{
            content: 'см';
        }
    }
    input[name="length_wigs"] {
        width: 100%;
        font: inherit;
    }
    .calc_price_range_block{
        margin-top: 20px;
        padding:0 clamp(20px,3vw,35px) 70px;
    }
    .ui-widget.ui-widget-content {
        height: 4px;
        background: #B67A3C;
        position: relative;
        display: flex;
        align-items: center;
    }
    .ui-slider-handle{
        position: absolute;
        width: clamp(24px,4vw,54px);
        height: clamp(24px,4vw,54px);
        border-radius: 50%;
        outline: none;
        margin-left: clamp(-26px, -2vw, -11px);
        background: linear-gradient(0deg, #B67A3C 0%, #E8C99B 100%);
        &:after{
            position: absolute;
            content:'';
            left: 2px;
            top: 2px;
            right: 2px;
            bottom: 2px;
            background: linear-gradient(0deg, #E8C99B 0%, #F8E9D4 100%);
            border-radius: 50%;
        }
        &:focus,&:hover{
            cursor:pointer;
            box-shadow: 0 4px 12px 0 #00000040;

        }
    }
    .calc_price_scale {
        display: flex;
        .mark {
            position: relative;
            height: 56px;
            border-left: 2px solid #B67A3C;
            flex: 0 0 16.64%;
            margin-bottom: -20px;
            .mark_scale {
                width: 100%;
                display: flex;
                height: 100%;
                >*{
                    height: 20px;
                    border-right: 2px solid #B67A3C;
                    flex: 0 0 20%;
                    margin-top: auto;
                    margin-bottom: 20px;
                }
            }
            .mark_value {
                position: absolute;
                bottom: clamp(-58px, -8vw, -38px);
                left: clamp(-35px, -4vw, -20px);
                color:#100000;
                font-size: clamp(16px,3vw,24px);
                font-family: "Prata",sans-serif;
                white-space: nowrap;
            }
            &:first-child{
                border-color:#B67A3C;
            }
            &:after{
                position: absolute;
                content: '';
                top: 100%;
                left: 0;
                display: inline-block;
                width: 8px;
                height: 8px;
                background: #B67A3C;
                border-radius: 50%;
                margin-top: 10px;
                margin-left: -5px;
            }
        }
    }
    .calc_item{
        margin-top: clamp(50px,6vw,70px);
        &.item_price_total{
            .title_item_calc{
                font-family: "Prata",sans-serif;
                margin-bottom: 10px;
                font-size: clamp(20px,3vw,24px);
            }
        }
    }
}
.calc_price_category {
    display: flex;
}
.calc_price_category__item{
    width: max(300px, 33.33%);
    flex: none;
    label{
        position: relative;
        display: block;
        margin-bottom: 10px;
    }
    .wrap_img {
        width: 150px;
        height: 150px;
        display:block;
        border-radius: 50%;
        overflow: hidden;
        padding: 4px;
        background: var(--main_gradient);
        cursor: pointer;
        margin: 0 auto;
        >img{
            border-radius: 50%;
        }
    }
    input[type="radio"]{
        visibility: hidden;
    }
    .radio_checkbox{
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        width: 44px;
        height: 44px;
        background: var(--main_gradient);
        border-radius: 50%;
        cursor: pointer;
        &:after{
            content:'';
            background: #fff;
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            position: absolute;
            left: 2px;
            top: 2px;
        }
    }
    label:has(input:checked){
        .wrap_img{
            box-shadow: 0 4px 14px #B67A3C;
        }
        .radio_checkbox{
            border: 2px solid #B67A3C;
            &:after{
                display: none;
            }
            &:before{
                content: '';
                position: absolute;
                top: 10px;
                left: 10px;
                width: 18px;
                height: 12px;
                border-top: 4px solid #fff;
                border-right: 4px solid #fff;
                transform: rotate(135deg);
            }
        }
    }
    .price {
        font-family: "Prata",sans-serif;
        font-size: 20px;
        color: #B67A3C;
    }
    .content_block_item {
        color: #585D69;
        padding: 25px 0 25px 20px;
    }
}
.total_price_block {
    &.row{
        --bs-gutter-y: 0;
    }
    .total_price {
        font-family: "Prata",sans-serif;
        font-size: clamp(28px,3vw,48px);
        color: #2D2D2D;
        margin: 20px 0;
        .current_calc_price.text_value {
            font-size: clamp(20px,3vw,24px);
            +.currency{
                display: none;
            }
        }
    }
    .descr_total_price {
        color: #585D69;
    }
    .btn_m{
        margin-top: clamp(10px,3vw,26px);
    }
}
.section_page_form{
    .bg_section{
        top: 0;
    }
}
.wrapp_form_sale {
    position: relative;
    box-shadow: 0 4px 24px #E8C99B;
    border-radius: 16px;
    padding: clamp(30px,3vw,50px) 20px;
    border: 1px solid #b67a3c75;
    &:before{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #F8E9D4BF;
        z-index: 0;
        border-radius: inherit;
    }
    &:after{
        content:'';
        position: absolute;
        display: inline-block;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        border-radius: inherit;
        overflow: hidden;
        background-image: url("img/sale_form_bg.webp");
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
    .container_page_form {
        position: relative;
        max-width: 846px;
        margin: 0 auto;
        text-align: center;
        .h3,h3{
            color:#2D2D2D;
            margin-bottom: 10px;
            +p{
                color:#585D69;
            }
        }
    }
}
.stage_sale_items {
    max-width: 750px;
    margin: 20px auto 0;
    display: flex;
    flex-flow: wrap;
    .content_block_item{
        padding: clamp(10px,3vw,20px);
    }
}
.block_input_row {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-top: 20px;
    label {
        width: 36.8%;
        input[type="text"],input[type="tel"],textarea {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            border: 1px solid #878080;
            padding: 20px 30px;
            font: inherit;
        }
        input[type="submit"] {
            flex: auto;
        }
    }
}
.accept_check {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    text-align: left;
    input[type=checkbox] {
        opacity: 0;
        flex:0 0 18px;
        margin-right: 10px;
    }
    .text_accept{
        a{
            color:#B67A3C;
            text-decoration: underline;
        }
    }
    span[role="checkbox"] {
        display: inline-block;
        width: 18px;
        height: 18px;
        position: absolute;
        left: 0;
        top: 1px;
        border-radius: 2px;
        border: 2px solid #B67A3C;
    }
    input[type=checkbox]:checked+label [role="checkbox"]:before {
        content: '';
        position: absolute;
        top: 2px;
        left: 1px;
        width: 10px;
        height: 5px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-bottom: 2px solid #B67A3C;
        border-left: 2px solid #B67A3C;
    }
    input[type=checkbox].errorInput + label [role="checkbox"]{
        border-color: #ff0000 !important;
    }
}
*::placeholder{
    color:#C3BFBF;
}
.why_profit_about{
    .block_bottom_arr_border.row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        max-width: 1000px;
        margin: 0 auto;
    }
}
.section_title_line {
    font-size: clamp(28px, 4vw, 36px);
    text-transform: uppercase;
    max-width: 718px;
    text-align: center;
    margin: 0 auto clamp(20px,3vw,30px);
    line-height: 1.35;
    position: relative;
}
.gallery_photo_slider .item_slide{
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding-top: 104%;
    display: inline-block;
    width: 100%;
    >img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.block_nav_slider {
    position: relative;
    display: flex;
    align-items: center;
    margin: clamp(20px, 3vw, 30px) auto 0;
    width: max-content;
    .owl-nav {
        position: absolute;
        z-index: 1;
        display: flex;
        align-items: center;
        height: 0;
        justify-content: space-between;
        width: 100%;
    }
    .owl-dots {
        padding: 0 120px;
    }
}
.owl-dot span {
    background: #F8E9D4;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 3px;
}
.owl-dot.active span {
    background: #B67A3C;
}
.how_sale_section{
    .section_title_line{
        margin-bottom: clamp(20px,3vw,50px);
    }
    .btn_m{
        margin-top: clamp(20px,3vw,50px);
    }
}

.steps_items_block{
    max-width: 1187px;
    margin: 0 auto;
    display: flex;
    .step_item{
        flex: 0 0 auto;
        width: clamp(270px, 19vw, 296px);
        &:not(:first-child):not(:last-child){
            margin-right: 30px;
        }
        &:last-child{
            .num:after{
                display: none;
            }
        }
        .num{
            font-family: "Prata",sans-serif;
            font-size: 128px;
            display: inline-block;
            padding-left: 35px;
            position: relative;
            background-image: linear-gradient(0deg, #B67A3C 0%, #E8C99B 30%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            &:before{
                content: '';
                position: absolute;
                width: 175px;
                height: 175px;
                border-radius: 50%;
                background: linear-gradient(0deg, #F8E9D4, transparent);
                z-index: -1;
                left: 0;
            }
            &:after{
                content: '';
                position: absolute;
                display: inline-block;
                width: 52px;
                height: 20px;
                background: url("img/arr_step.svg")center no-repeat;
                top: 50%;
                transform: translateY(-50%);
                left: 100%;
                margin-left: clamp(20px,3vw,35px);
            }
        }
        .h4{
            margin-top: 23px;
            font-size: clamp(18px,3vw,20px);
        }
    }

}
.contacts_col_items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: clamp(20px, 2vw, 35px);
    font-size: 15px;
    color:#878080;
    .contacts_item p:not(:last-child):not(:first-child){
        margin-bottom: 5px;
    }
    .contacts_item__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        color: #100000;
        padding: 12px;
        border-radius: 50px;
        border: 1px solid #878080;
        margin-top: 10px;
        svg,img{
            margin-right: 8px;
            flex: 0 0 18px;
        }
    }
}
.contacts_item__caption{
    font-family: "Prata",sans-serif;
    color:#100000;
    font-size: 16px;
    margin-bottom: 10px;
}
.contacts_section:has(+footer){
    padding-bottom: 0;
}
.faq_wrap{
    background: #FFFFFF80;
    backdrop-filter: blur(16px);
    border:1px solid #F8E9D4;
    border-radius: 16px;
    box-shadow: 0 4px 24px #E8C99B;
    padding: clamp(30px,4vw,50px) 20px clamp(30px,4vw,80px);
}

footer{
    padding: 50px 0;
    background: #100000;
    font-size: 15px;
    font-weight: 500;
    color:#878080;
}
.row_footer_menu {
    display: flex;
    justify-content: space-between;
    gap: clamp(20px,3vw,35px);
    &:nth-child(2){
        column-gap: 59px;
        position: relative;
    }
}
.name_col_footer {
    font-family: "Prata",sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    color: #FFFFFF;
    margin-bottom: 10px;
}
.menu_footer_block>ul li ul{
    margin-top: 15px;
}
.menu_footer_block{
    >ul li:not(:last-child),.items_menu_p>*{
        margin-bottom: 15px;
    }
}
.method_pay {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 20px 10px;
}
.bottom_footer_block {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #878080;
    font-size: 11px;
    line-height: 1.6;
}
.copyright{
    margin-top: 20px;
    gap: 5px;
}
#calc_price {
    padding: clamp(20px,3vw,50px) clamp(20px,3vw,60px);
    border-radius: 24px;
    box-shadow: 0 4px 16px #E8C99B;
    max-width: 860px;
    .fancybox-close-small {
        width: 50px;
        height: 50px;
    }
}
.title_form{
    color: #2D2D2D;
    margin-bottom: 10px;
}
.descr_form_text {
    color: #585D69;
}
[name="calc_price_photo"] {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    >*{
        width: 100%;
    }
    .left_block {
        padding: clamp(10px,3vw,30px) 0;
        >*:not(:last-child){
            margin-bottom: clamp(10px,3vw,20px);
        }
    }
    .download_block {
        .content_block{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .wrap_img{
            display: inline-flex;
            width: 54px;
            height: 54px;
            align-items: center;
            justify-content: center;
        }
        .h4{
            margin-bottom: clamp(10px,3vw,20px);
        }
        .download_file_btn {
            font-size: 18px;
            padding: 16px 30px;
            display: inline-block;
            background-image: linear-gradient(0deg, #B67A3D 35%, #E8C99B 70%);
            background-clip: text;
            -webkit-text-fill-color: transparent;
            border: 1px solid #E8C99B;
            border-radius: 8px;
            cursor:pointer;
        }
        input[type=file] {
            display: none;
        }
        .notif_file {
            font-size: 12px;
            margin-top: 10px;
        }
        .result_file {
            font-size: 12px;
        }
    }
    .bottom_block{
        width: 100%;
        >*{
            margin-bottom: 10px;
        }
    }
    .submit_block {
        text-align: center;
    }
}
.input_icon {
    display: flex;
    align-items: center;
    padding: 16px;
    border:1px solid #878080;
    border-radius: 8px;
    position: relative;
    background: #fff;
    gap: 10px;
    &:has(.errorInput){
        border-color: #ff0000 !important;
    }
    .icon_input {
        font-size: 0;
    }
}
.social_input_block {
    display: flex;
    align-items: center;
    gap: 10px;
    .radio_btn_block {
        display: flex;
        flex-flow: wrap;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 14px;
        color: #584D4D;
        .radio_inp{
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border:1px solid #B67A3C;
            position: relative;
            flex:none;
        }
        input[type="radio"]{
            visibility: hidden;
            position: absolute;
            &:checked + .radio_inp:after{
                content: '';
                display: inline-block;
                width: 12px;
                height: 12px;
                background: #B67A3C;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                border-radius: 50%;
            }
        }
        .label_radio_btn {
            display: flex;
            align-items: center;
            gap: 7px;
        }

    }
    .label_icon_soc {
        width: 40%;
        .wrap_img{
            width: 20px;
            height: 20px;
            flex: none;
        }
    }
}
.popups_block{
    display: none;
}
.alert_js {
    position: fixed;
    top: 0;
    right: 10px;
    background: #ffffff9e;
    padding: 6px 12px;
    border-radius: 12px;
    z-index:99;
}
.alert_js p{
    margin-bottom: 0;
}
#callback_form {
    padding: 0;
}
.call-back-form {
    box-shadow: inset 0 -2px 8px 1px #f2f2f2;
    padding: 30px 40px;
    background: url('img/form-shape.svg') left no-repeat, url('img/form-line.svg') right bottom no-repeat, #fff;
    background-size: contain, 50%;
    .call-back-form-p {
        text-align: center;
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 22px;
        color: #212529;
        margin-bottom: 20px;
    }
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), textarea {
        width: 100%;
        border: 1px solid #000;
        padding: 5px 10px;
    }
    .call-back-form-inputs {
        justify-content: space-between;
    }
    .call-back-form-inputs input:not([type="submit"]) {
        flex: 0 0 46%;
        background: #ffffff;
        border: 0.5px solid #4f4f4f;
        box-shadow: 4px 4px 8px -2px rgb(157 157 157 / 29%);
        border-radius: 30px;
        height: 40px;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 15px;
        color: #828282;
        max-width: 173px;
        padding: 0 20px;
        margin: 0;
    }
    .call-back-form-btn {
        width: 100%;
        display: block;
        cursor: pointer;
        border-radius: 35px;
        margin: 0 auto;
        background: #7A5946;
        position: relative;
        padding: 17px;
        font-size: 18px;
        text-align: center;
        color: #fff;
        line-height: 18px;
        letter-spacing: normal;
        font-weight: 700;
        transition: .5s;
        border: 3px solid #7A5946;
        &:hover{
            background: 0 0;
            color: #7A5946;
            border-color: #7A5946;
        }
    }
    .call-back-form-policy {
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 12px;
        color: #212529;
        .accept {
            display: flex;
            text-align: center;
            margin: 15px auto 20px auto;
            align-items: center;
            position: relative;
            label {
                margin: 0;
            }
            input[type="checkbox"] {
                margin: 0 7px 0 5px;
                +label{
                    position: relative;
                }
            }
            input.errorInput+label:after{
                content: 'Необходимо принять условия';
                display: block;
                margin-bottom: -11px;
                color: rgb(220, 50, 50);
            }
        }
    }
}


@media all and (min-width: 769px) {
    .d-md-none {
        display: none !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .d-md-block {
        display: block !important;
    }

    .col-md {
        flex: 1 0 0%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .section_title_line {
        padding-bottom: 20px;
        &:after{
            content:'';
            position: absolute;
            bottom:0;
            width: 50px;
            height: 1px;
            left: 50%;
            transform: translateX(-50%);
            background: #B67A3C;
        }
    }
    .stage_sale_items>*{
        width: 33.33%;
    }
    .contacts_col_items {
        padding: clamp(20px,3vw,30px) 0;
    }
    .section_title_line {
        padding-bottom: 20px;
    }
    .yandex_rating.d-none.d-md-block {
        margin-top: 30px;
    }
    [name="calc_price_photo"] {
        .left_block {
            width: 46.8%;
        }
        .right_block {
            width: 44.4%;
            margin-top: 16px;
        }
    }
    .download_block {
        position: relative;
        border-radius: 16px;
        border: 2px solid #E8C99B;
        transform: rotate(-5deg);
        background: #fff;
        min-height: 300px;
        margin-bottom: -30px;
        margin-right: 14px;
        .content_block{
            border: 2px solid #E8C99B;
            border-radius: 16px;
            transform: rotate(7deg);
            padding: 40px 24px;
            background: #fff;
        }
        .notif_file {
            max-width: 220px;
        }
    }
    .call-back-form-inputs.flex > span {
        max-width: 46%;
    }
}

@media all and (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .mob {
        display: none !important;
    }
    header.fixed {
        background: #fcf6efa3;
        backdrop-filter: blur(32px);
        transition: 0.4s;
    }
    .top_menu>ul>li{
        .wrap_submenu {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            left: 0;
            transform-origin: 0% 0%;
            transform: rotateX(-90deg);
            transition: 0.3s linear;
            box-shadow: 0 16px 24px 0 #B67A3C4D;
            >ul{
                max-width: 1280px;
                margin: 0 auto;
                >li {
                    width: 33.33%;
                    float: left;
                    margin-bottom: 15px;
                    >a{
                        font-family: "Prata",sans-serif;
                        font-size: clamp(16px,3vw,18px);
                        color:#2D2D2D;
                        display: inline-block;
                    }
                }
            }
        }
        &:hover{
            background: linear-gradient(180deg, rgba(248, 233, 212, 0) 0%, #F8E9D4 100%);
            border-bottom: 2px solid #B67A3C;
            .wrap_submenu {
                visibility: visible;
                opacity: 1;
                transform: rotateX(0deg);
            }
        }
    }
    .advantage_items_block {
        .item_advantage{
            width: calc(33.33% - 14px);
        }
    }
    .col_menu_footer_2{
        max-width: 650px;
        .menu_footer_block>ul {
            >li{
                width: 50%;
                padding-right: 20px;
            }
            >li:nth-child(odd){
                float: left;
            }
            >li:nth-child(even){
                float: right;
            }
        }
    }
    .calc_price_category{
        gap: 20px;
    }
    .calc_price_category__item {
        display: flex;
        align-items: start;
    }
    .name_col_footer {
        padding-bottom: 20px;
        white-space: nowrap;
    }
    .row_footer_menu {
        &:not(:first-child){
            margin-top: 50px;
        }
    }
}

@media all and (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
@media all and (min-width: 1920px){
    .top_banner_page{
        .bg_section {
            top: -22vw;
        }
    }
}
@media all and (max-width: 1100px){
    header .logo_text{
        display: none;
    }
    .steps_items_block{
        overflow: auto;
        margin-right: -20px;
        .step_item:first-child .num:after{
            margin-left: 28px;
        }
    }
}
@media all and (max-width: 991px){
    .desk{
        display: none !important;
    }
    .container_header {
        padding: 16px 20px;
        position: relative;
        z-index: 99;
        .logo_site{
            width: clamp(125px,24vw,168px);
        }
        .btn_radius {
            width: 52px;
            height: 52px;
            font-size: 0;
            line-height: 0;
            border-radius: 50%;
            background-image:url('data:image/svg+xml,\
        <svg width="24" height="24" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">\
            <path d="M18 13.42V16.9561C18 17.4811 17.5941 17.9167 17.0705 17.9537C16.6331 17.9846 16.2763 18 16 18C7.1634 18 0 10.8366 0 2C0 1.72371 0.01545 1.36687 0.04635 0.9295C0.08337 0.40588 0.51894 0 1.04386 0H4.5801C4.83678 0 5.05176 0.19442 5.07753 0.4498C5.10067 0.67907 5.12218 0.86314 5.14207 1.00202C5.34435 2.41472 5.75753 3.75936 6.3487 5.00303C6.44359 5.20265 6.38171 5.44159 6.20185 5.57006L4.04355 7.1118C5.35752 10.1811 7.8189 12.6425 10.8882 13.9565L12.4271 11.8019C12.5572 11.6199 12.799 11.5573 13.001 11.6532C14.2446 12.2439 15.5891 12.6566 17.0016 12.8584C17.1396 12.8782 17.3225 12.8995 17.5502 12.9225C17.8056 12.9483 18 13.1633 18 13.42Z" fill="%23100000"/>\
            </svg>');
            background-repeat: no-repeat;
            background-position: center;
        }
    }
    .open .container_header{
        justify-content: space-between;
        .btn_radius{
            display: none;
        }
    }
    .top_menu {
        position: absolute;
        right: 100vw;
        transition: 0.3s;
        background: #FCF6EE;
        top: 0;
        padding-top: clamp(135px, 26vw, 155px);
        padding-bottom: 30px;
        font-size: 18px;
        width: 100%;
        height: 100vh;
        overflow: auto;
        >ul {
            flex-direction: column;
            justify-content: left;
            margin-top: 10px;
            > li {
                position: relative;
                white-space: unset;
                > a {
                    text-align: left;
                    padding: 16px clamp(45px, 18vw, 70px) 16px 50px;
                }
                .arr_parent_menu {
                    position: absolute;
                    display: block;
                    top: 0;
                    width: clamp(45px,18vw,70px);
                    height: 100%;
                    right: 0;
                    &:after{
                        content:'';
                        width: 8px;
                        height: 8px;
                        border-top: 2px solid;
                        border-right: 2px solid;
                        display: inline-block;
                        position: absolute;
                        z-index: 2;
                        left: 10px;
                        top: 21px;
                        -webkit-transform: rotate(135deg);
                        -ms-transform: rotate(135deg);
                        transform: rotate(135deg);
                        -webkit-transition: 0.3s;
                        -o-transition: 0.3s;
                        transition: 0.3s;
                    }
                }
                &.open{
                    .arr_parent_menu:after{
                        -webkit-transform: rotate(135deg) scale(-1);
                        -ms-transform: rotate(135deg) scale(-1);
                        transform: rotate(135deg) scale(-1);
                        margin-top: 5px;
                        border-color: #B67A3C;
                    }
                    >a{
                        color:#B67A3C;
                        background: linear-gradient(180deg, rgba(248, 233, 212, 0) 0%, #F8E9D4 100%);

                    }
                }
                .wrap_submenu{
                    display: none;
                    padding: 20px 50px 15px;
                    >ul {
                        display: flex;
                        flex-direction: column;
                        >li{
                            width: 100%;
                            float: none;
                            margin-bottom: 20px;
                        }
                    }
                }
            }
        }
    }
    .open .top_menu{
        right: 0;
    }
    .top_menu .top_block_mobile{
        font-size: 12px;
        .contacts_block {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            .icon_item_contacts {
                max-width: 46%;
            }
        }
        .personal_links_block {
            padding: 0 50px;
            gap: 15px 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            margin-bottom: 20px;
            >* {
                display: flex;
                align-items: center;
                gap: 5px;
                .wrap_img{
                    width: 20px;
                    height: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
            }
        }
        .soc_block {
            justify-content: center;
            width: 100%;
            gap: 30px;
        }
    }
    .top_menu .bottom_block_mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        margin-top: 20px;
        .btn_radius {
            width: 100%;
            text-align: center;
        }
    }
    .block_bottom_arr_border{
        &:after{
            background: url("img/bottom_arr_border_mob.svg") center no-repeat;
        }
    }
    .calc_price_form {
        .ui-slider-handle {
            &:after{
                left: 1px;
                top: 1px;
                right: 1px;
                bottom: 1px;
            }
        }
    }
    .calc_price_category{
        overflow: auto;
        padding: 10px 0;
        margin: 0 -20px;
    }
    .calc_price_category__item{
        text-align: center;
        padding: 0 10px;
        .content_block_item{
            padding: 0;
        }
    }
    .calc_price_form {
        .calc_price_range_block {
            margin-top: clamp(55px, 10vw, 75px);
        }
        .calc_price_scale{
            .mark {
                font-size: 14px;
                &:after {
                    margin-top: 5px;
                }
                &:nth-child(even){
                    &:after {
                        bottom: 100%;
                        top:unset;
                        margin-bottom: 5px;
                        margin-left: -5px;
                    }
                    .mark_value{
                        bottom: unset;
                        top: clamp(-50px, -8vw, -38px);

                    }
                }

            }
        }
    }
    .total_price_block{
        text-align: center;
        max-width: 670px;
        margin: 0 auto;
        .total_price{
            margin-bottom: 0;
        }
    }
    .row_footer_menu {
        flex-flow: wrap;
    }
}
@media all and (max-width: 768px){
    .top_banner_page{
        padding-bottom: 70px;
    }
    .total_price_block .descr_total_price{
        font-size: 15px;
        margin-top: 10px;
    }
    .stage_sale_items{
        gap: 10px;
    }
    .icon_center_top_item{
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        .wrap_img {
            width: 100px;
            height: 100px;
            padding: 20px;
        }
    }
    .block_input_row {
        label {
            width: 100%;
        }
    }
    .btn_grad_brown{
        width: 100%;
        max-width: 420px;
    }
    .why_profit_about {
        .block_bottom_arr_border.row {
            gap: 10px;
            padding-bottom: 30px;
        }
    }
    .contacts_col_items{
        text-align: center;
        padding-bottom: 30px;
    }
    #map {
        height: 400px;
        overflow: hidden;
    }
    .row_footer_menu {
        gap: 0;
    }
    [class*="col_menu_footer"] {
        width: 100%;
        position: relative;
        .name_col_footer{
            position: relative;
            padding-right: 16px;
            cursor: pointer;
            &:after {
                content: '';
                width: 4px;
                height: 4px;
                border-top: 2px solid;
                border-right: 2px solid;
                display: inline-block;
                position: absolute;
                right: 4px;
                top: 50%;
                margin-top: -5px;
                -webkit-transform: rotate(135deg);
                -ms-transform: rotate(135deg);
                transform: rotate(135deg);
                -webkit-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s;
            }
            &.open:after {
                -webkit-transform: rotate(135deg) scale(-1);
                -ms-transform: rotate(135deg) scale(-1);
                transform: rotate(135deg) scale(-1);
            }
        }
    }
    .menu_footer_block {
        display: none;
        margin-bottom: 20px;
    }

    .bg_section {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        >img {
            width: auto;
            max-width: unset;
        }
    }
    .calc_price_section {
        .bg_section {
            top: 28%;
        }
    }
    [name="calc_price_photo"] {
        .download_block {
            .wrap_img{
                display: none;
            }
            .content_block{
                padding: 10px 0;
            }
        }
    }
    .title_form {
        font-size: 24px;
        padding-right: 20px;
    }
    .descr_form_text{
        font-size: 15px;
    }
    .social_input_block{
        flex-flow: wrap;
        .label_icon_soc{
            width: 100%;
        }
    }
    .icon_left_item {
        .icon_left_item__content {
            font-size: 15px;
        }
    }
    .faq_section{
        .more_btn{
            margin-top: 10px;
        }
    }
}
@media all and (max-width: 560px) {
    .block_nav_slider {
        width: 116px;
        height: 30px;
    }
}
@media all and (max-width: 375px){
    .top_menu .top_block_mobile{
        .personal_links_block {
            padding:0 20px;
            gap: 15px;
        }
    }
    .top_menu> ul> li{
        >a,.wrap_submenu {
            padding-left: 20px;
        }
    }


}


