@font-face {
    font-family: 'Geologica';
    src: url(../fonts/geologica/Geologica-Light.woff2);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url(../fonts/geologica/Geologica-Regular.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url(../fonts/geologica/Geologica-Medium.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url(../fonts/geologica/Geologica-SemiBold.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url(../fonts/geologica/Geologica-Bold.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url(../fonts/rubik/Rubik-Light.woff2);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url(../fonts/rubik/Rubik-Regular.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url(../fonts/rubik/Rubik-Medium.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url(../fonts/rubik/Rubik-SemiBold.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url(../fonts/rubik/Rubik-Bold.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url(../fonts/icon.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --c-dark-bg: #070707;
    --c-dark: #191919;
    --c-white: #fff;
    --c-light: rgba(255, 255, 255, 0.8);
    --c-gray: #9c9c9c;
    --c-primary: #d3af37;

    --font-main: 'Geologica', sans-serif;
    --font-secondary: 'Rubik', sans-serif;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
}
html, body {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p, a, span, label, li {
    font-family: var(--font-secondary);
    color: var(--c-light);
    font-weight: var(--fw-regular);
}
h1, h2 {
    font-family: var(--font-main);
    color: var(--c-white);
    font-weight: var(--fw-regular);
}
h3 {
    font-family: var(--font-secondary);
    color: var(--c-white);
    font-weight: var(--fw-medium);
}
a {
    text-decoration: none;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
input, textarea {
    padding: 10px 20px;
    background: none;
    border: 1px solid var(--c-light);
    outline: none;
    border-radius: 10px;
    color: var(--c-light);
    font-family: var(--font-secondary);
    font-size: 16px;
}
body {
    background-color: var(--c-dark-bg);
}
section {
    margin-top: 140px;
}
h2 {
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    &::before {
        font-family: icon;
        content: '\e90e';
        color: var(--c-primary);
        font-size: 32px;
        position: absolute;
        left: -32px;
        top: -18px;
    }
}
p.desc {
    font-size: 18px;
    max-width: 800px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    color: var(--c-white);
    font-size: 18px;
    font-family: var(--font-main);
    font-weight: var(--fw-light);
    transition: .2s linear;
    &.primary {
        width: 300px;
        position: relative;
        z-index: 1;
        aspect-ratio: 6/1;
        color: var(--c-dark-bg);
        font-weight: 700;
        &::before {
            content: '';
            position: absolute;
            z-index: -1;
            width: 100%;
            background: var(--c-primary);
            aspect-ratio: 6/1;
            font-family: var(--font-secondary);
            
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='60' fill='none' viewBox='0 0 360 60'%3E%3Cpath fill='%23d3af37' d='M360 31.858c0 2.652-1.054 5.196-2.929 7.07l-18.142 18.143A10 10 0 0 1 331.858 60H10C4.477 60 0 55.523 0 50V28.142a10 10 0 0 1 2.929-7.07L21.07 2.928A10 10 0 0 1 28.142 0H350c5.523 0 10 4.477 10 10z'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='60' fill='none' viewBox='0 0 360 60'%3E%3Cpath fill='%23d3af37' d='M360 31.858c0 2.652-1.054 5.196-2.929 7.07l-18.142 18.143A10 10 0 0 1 331.858 60H10C4.477 60 0 55.523 0 50V28.142a10 10 0 0 1 2.929-7.07L21.07 2.928A10 10 0 0 1 28.142 0H350c5.523 0 10 4.477 10 10z'/%3E%3C/svg%3E");
        }
        &::after {
            content: '';
            position: absolute;
            z-index: -1;
            aspect-ratio: 179/29;
            width: calc(100% - 2px);
            background: var(--c-dark-bg);
            font-weight: 700;
            height: 100%;
            font-family: var(--font-secondary);
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='358' height='58' viewBox='0 0 358 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M358 30.5745C358 33.2758 356.907 35.8621 354.97 37.7449L337.045 55.1704C335.178 56.9849 332.677 58 330.074 58H10C4.47716 58 0 53.5228 0 48V27.4255C0 24.7242 1.0928 22.1379 3.02969 20.2551L20.9554 2.82959C22.822 1.0151 25.3225 0 27.9257 0H348C353.523 0 358 4.47715 358 10V30.5745Z' fill='black'/%3E%3C/svg%3E%0A");
            mask-image: url("data:image/svg+xml,%3Csvg width='358' height='58' viewBox='0 0 358 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M358 30.5745C358 33.2758 356.907 35.8621 354.97 37.7449L337.045 55.1704C335.178 56.9849 332.677 58 330.074 58H10C4.47716 58 0 53.5228 0 48V27.4255C0 24.7242 1.0928 22.1379 3.02969 20.2551L20.9554 2.82959C22.822 1.0151 25.3225 0 27.9257 0H348C353.523 0 358 4.47715 358 10V30.5745Z' fill='black'/%3E%3C/svg%3E%0A");
            opacity: 0;
            transition: .2s linear;
        }
    }
}
.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1680px;
    width: 100%;
}
header {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .menu {
        .header-nav {
            ul {
                display: flex;
                gap: 20px;
                list-style: none;
                position: relative;
                z-index: 9;
                background: var(--c-dark-bg);
                li {
                    display: flex;
                    a, p {
                        padding: 5px 2px;
                        position: relative;
                        z-index: 9;
                        background: var(--c-dark-bg);
                        display: flex;
                        align-items: center;
                    }
                    a::before {
                        content: '';
                        position: absolute;
                        width: calc(100% - 4px);
                        height: 1px;
                        background: var(--c-white);
                        left: 2px;
                        bottom: 5px;
                        transition: .2s linear;
                        width: 0;
                    }
                    &.current_page_item {
                        a {
                            color: var(--c-primary);
                            &::before {
                                background: var(--c-primary);
                            }
                        }
                    }
                    &.menu-item-has-children {
                        position: relative;
                        > a, > p {
                            display: flex;
                            &::after {
                                margin-left: 5px;
                                margin-top: 2px;
                                content: '\e908';
                                font-family: icon;
                                transform: rotate(90deg);
                                font-size: 12px;
                                display: flex;
                                align-items: center;
                                transition: .2s linear;
                            }
                        }
                        .sub-menu {
                            position: absolute;
                            background: var(--c-dark);
                            padding: 10px;
                            border-radius: 10px;
                            width: 160px;
                            display: flex;
                            flex-direction: column;
                            gap: 0;
                            top: -50%;
                            right: 0;
                            opacity: 0;
                            visibility: hidden;
                            z-index: 1;
                            pointer-events: none;
                            transition: .2s linear;
                            li {
                                width: 100%;
                                a {
                                    width: 100%;
                                    border-radius: 10px;
                                    padding: 10px;
                                    background: var(--c-dark);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .call {
        display: flex;
        align-items: center;
        font-family: var(--font-main);
        transition: .2s linear;
        &::before {
            font-family: icon;
            content: '\e901';
            font-size: 22px;
            color: var(--c-primary);
            margin-right: 10px;
        }
        &.mobile {
            margin-top: 10px;
            display: none;
        }
    }
    .burger {
        position: relative;
        width: 40px;
        height: 40px;
        background: var(--c-dark-bg);
        border-radius: 10px;
        display: none;
        z-index: 99;
        cursor: pointer;
        span, &::before, &::after {
            content: '';
            display: block;
            position: absolute;
            width: 24px;
            height: 2px;
            border-radius: 2px;
            background: var(--c-white);
            left: 50%;
            top: 50%;
            transition: .3s linear;
        }
        span {
            transform: translate(-50%, -50%);
        }
        &::before {
            transform: translate(-50%, -8px);
        }
        &::after {
            transform: translate(-50%, 6px);
        }
        &.active {
            span {
                opacity: 0;
            }
            &::before {
                transform: translate(-50%, 0px) rotate(45deg);
            }
            &::after {
                transform: translate(-50%, 0) rotate(-45deg);
            }
        }
    }
}
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    p {
        font-family: var(--font-main);
        font-weight: var(--fw-light);
    }
}
.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast-notification.error {
    background-color: #dc3545;
}
.thankyou-page {
    padding-top: 80px;
    h1 {
        font-size: 24px;
    }
    > div {
        max-width: 600px;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        p {
            padding: 12px 0;
            font-size: 16px;
            border-bottom: 1px dashed var(--c-gray);
            display: flex;
            justify-content: space-between;
            span {
                font-weight: var(--fw-semibold);
            }
        }
    }
    .btn {
        margin-top: 20px;
    }
}
section.hero {
    position: relative;
    border-radius: 40px;
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 180px;
    margin-top: 0;
    h1 {
        margin-bottom: 40px;
        font-size: 62px;
        max-width: 1090px;
    }
    .info {
        max-width: 720px;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 60px;
    }
    .hero-img {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        left: 0;
        top: 0;
    }
    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(113deg, var(--c-dark-bg) 20%, rgba(0, 0, 0, 0) 100%);
        z-index: -1;
        left: 0;
        top: 0;
    }
}
section.hero-f {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    h1 {
        position: relative;
        z-index: 9;
        font-size: 68px;
        margin-bottom: 20px;
        text-align: center;
        max-width: calc(100% - 40px);
    }
    .breadcrumbs {
        position: relative;
        z-index: 9;
        display: flex;
        gap: 10px;
        max-width: calc(100% - 40px);
        a, span {
            color: var(--c-white);
            font-size: 20px;
        }
        p {
            font-size: 20px;
            color: var(--c-primary);
        }
    }
    &::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(7, 7, 7, 0.6);
    }
}
section.calculator {
    .inner {
        display: grid;
        grid-template-columns: 1fr 140px;
        gap: 60px;
        margin-top: 40px;
        .content {
            position: relative;
            width: 100%;
            perspective: 1000px;
            .step {
                width: 100%;
                background: var(--c-dark);
                border-radius: 40px;
                padding: 100px 80px 80px;
                transition: .3s linear;
                position: absolute;
                opacity: 0;
                visibility: hidden;
                transform: translateY(100px);
                h3 {
                    margin-bottom: 40px;
                    font-size: 36px;
                    max-width: 480px;
                    position: relative;
                    font-weight: var(--fw-regular);
                    z-index: 9;
                    span {
                        position: absolute;
                        font-size: 68px;
                        font-family: var(--font-main);
                        font-weight: var(--fw-semibold);
                        top: -32px;
                        left: 0;
                        color: var(--c-primary);
                        opacity: .4;
                        z-index: -1;
                    }
                }
                .input-num-container {
                    input::-webkit-outer-spin-button,
                    input::-webkit-inner-spin-button {
                        -webkit-appearance: none;
                        margin: 0;
                    }
                    input[type=number] {
                        -moz-appearance: textfield;
                    }
                    .num-input {
                        display: flex;
                        margin-bottom: 40px;
                        gap: 5px;
                        input {
                            text-align: center;
                            width: 60px;
                        }
                        .btn {
                            height: 40px;
                            width: 40px;
                            border-radius: 30px;
                        }
                    }
                }
                .results {
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    .result-item {
                        display: flex;
                        justify-content: space-between;
                        padding: 15px 0;
                        align-items: center;
                        border-bottom: 1px dashed var(--c-gray);
                        border-top: 1px dashed var(--c-gray);
                        p {
                            font-family: var(--font-main);
                            font-weight: var(--fw-regular);
                            margin-left: 20px;
                        }
                        span {
                            font-family: var(--font-main);
                        }
                    }
                    .actions {
                        margin-top: auto;
                        margin-bottom: 0;
                        display: flex;
                        flex-direction: column;
                        align-items: end;
                        .reset-btn {
                            margin-top: 10px;
                            font-size: 16px;
                            font-family: var(--font-secondary);
                            width: 250px;
                            align-items: center;
                            color: var(--c-gray);
                        }
                    }
                }
                .options {
                    display: flex;
                    gap: 40px;
                    .option {
                        cursor: pointer;
                        .img {
                            width: 240px;
                            height: 240px;
                            border-radius: 20px;
                            overflow: hidden;
                            img {
                                object-position: center 10%;
                                transition: .3s linear;
                            }
                        }
                        .info {
                            padding: 20px 0;
                            p {
                                font-size: 20px;
                                position: relative;
                                padding-left: 30px;
                                transition: .3s linear;
                                &::before {
                                    content: '';
                                    width: 16px;
                                    height: 16px;
                                    background: var(--c-white);
                                    position: absolute;
                                    left: 0;
                                    top: 3px;
                                    border-radius: 4px;
                                    border: 1px solid var(--c-primary);
                                }
                                &::after {
                                    content: '';
                                    position: absolute;
                                    left: 6px;
                                    top: 10px; 
                                    width: 5px;
                                    height: 11px;
                                    border: solid var(--c-white);
                                    border-width: 0 2px 2px 0;
                                    transform: translateY(-50%) rotate(45deg);
                                    opacity: 1; 
                                    visibility: visible;
                                }
                            }
                        }
                        &.active {
                            .info {
                                p {
                                    &::before {
                                        background: var(--c-primary);
                                    }
                                    &::after {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                    }
                }
                &.active {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                }
                &.final-step {
                    display: flex;
                    flex-direction: column;
                }
            }
        }
        .controls {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .btn {
                display: flex;
                align-items: center;
                opacity: .7;
                &.disabled {
                    opacity: .2;
                    cursor: not-allowed;
                }
            }
            .prev::before {
                margin-right: 10px;
                font-family: icon;
                font-size: 26px;
                content: '\e90b';
            }
            .next::after {
                margin-left: 10px;
                font-family: icon;
                font-size: 26px;
                content: '\e90c';
            }
            .progress {
                height: 100%;
                align-self: center; 
                margin: 40px 0;
                display: flex;
                gap: 20px;
                align-items: center;
                .progress-bar {
                    position: relative;
                    height: 100%;
                    width: 10px;
                    background: none;
                    border-radius: 10px;
                    border: 1px solid var(--c-white);
                    transition: 0.3s linear;
                    .fill {
                        height: 10px;
                        width: 100%;
                        background: var(--c-primary);
                        border-radius: 10px;
                        transition: 0.3s linear;
                    }
                    .thumb {
                        position: absolute;
                        width: 30px;
                        height: 30px;
                        background: var(--c-dark-bg);
                        left: 50%;
                        top: 0;
                        transform: translateX(-50%);
                        border-radius: 50%;
                        border: 1px solid var(--c-primary);
                        transition: 0.3s linear;
                        &::before {
                            content: '';
                            position: absolute;
                            width: 15px;
                            height: 15px;
                            border-radius: 50%;
                            background: var(--c-primary);
                            left: 50%;
                            top: 50%;
                            transform: translate(-50%, -50%);
                        }
                    }
                }
                .step-numbers {
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    .btn {
                        opacity: .3;
                        &.current {
                            opacity: 1;
                            color: var(--c-primary);
                        }
                        &.active {
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}
section.catalog {
    > .items {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-top: 40px;
        .item {
            padding-bottom: 20px;
            position: relative;
            a {
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
            }
            h3 {
                font-size: 24px;
                font-family: var(--font-secondary);
                margin: 20px 5px 15px 0;
                font-weight: var(--fw-regular);
            }
            .view {
                width: 100%;
                aspect-ratio: 1/1;
                border-radius: 20px;
                overflow: hidden;
                position: relative;
                img {
                    aspect-ratio: 1/1;
                    transition: .3s linear;
                }
                .label {
                    position: absolute;
                    height: 30px;
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    justify-content: center;
                    padding: 0 20px;
                    border-radius: 20px;
                    top: 15px;
                    right: 15px;
                    z-index: 9;
                    &.sale {
                        background: var(--c-primary);
                        color: var(--c-white);
                    }
                }
            }
            .price {
                display: flex;
                p {
                    color: var(--c-primary);
                    font-size: 22px;
                    font-weight: var(--fw-regular);
                }
                span {
                    margin-left: 15px;
                    position: relative;
                    font-size: 18px;
                    height: fit-content;
                    color: var(--c-gray);
                    &::after {
                        content: '';
                        position: absolute;
                        width: calc(100% + 10px);
                        height: 1px;
                        background: var(--c-gray);
                        top: 8px;
                        left: -5px;
                    }
                }
            }
        }
    }
}
section.callback {
    form.callback-form {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        .item {
            display: flex;
            flex-direction: column;
            label {
                margin-bottom: 10px;
                color: var(--c-white);
                font-family: var(--font-main);
                font-size: 18px;
            }
            input, textarea {
                padding: 15px 20px;
                color: var(--c-white);
                font-weight: var(--fw-regular);
            }
            textarea {
                min-height: 140px;
                max-height: 200px;
                resize: vertical;
            }
            &.fw {
                grid-column: span 2;
            }
            &.required {
                label {
                    &::after {
                        content: '*';
                        color: var(--c-primary);
                        font-size: 20px;
                    }
                }
            }
            &.error {
                input, textarea {
                    border: 1px solid #fe7c7c;
                }
                label {
                    color: #fe7c7c;
                }
            }
        }
        .btn {
            margin-top: 20px;
        }
        &.col {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 0;
        }
    }
}
footer {
    margin-top: 140px;
    background: var(--c-dark);
    .copy {
        display: flex;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: var(--c-dark-bg);
        font-weight: var(--fw-light);
        font-size: 16px;
    }
    .wrapper {
        display: grid;
        padding: 100px 0 140px;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        justify-content: space-between;
        p {
            &.s {
                font-size: 18px;
                font-family: var(--font-main);
                margin-bottom: 10px;
                font-weight: var(--fw-regular);
            }
            &.m {
                font-size: 24px;
                color: var(--c-white);
                margin-bottom: 20px;
                font-weight: var(--fw-medium);
            }
            &.mb6 {
                margin-bottom: 60px;
            }
        }
        h3 {
            font-size: 26px;
            margin-bottom: 20px;
            font-family: var(--font-main);
            font-weight: var(--fw-regular);
            position: relative;
            width: fit-content;
            &::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 2px;
                border-radius: 2px;
                background: var(--c-primary);
                left: 0;
                bottom: -1px;
            }
        }
        ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            li {
                a, p {
                    font-size: 20px;
                }
                p {
                    margin-bottom: 10px;
                }
            }
            &.sub-menu {
                li {
                    position: relative;
                    padding-left: 18px;
                    &::before {
                        content: '';
                        position: absolute;
                        width: 12px;
                        height: 2px;
                        background: var(--c-white);
                        left: 0;
                        top: 11px;
                        border-radius: 2px;
                    }
                }
            }
        }
        .col {
            .logo {
                margin-bottom: 60px;
            }
            .social {
                display: flex;
                gap: 20px;
                a {
                    &::before {
                        font-family: icon;
                        font-size: 24px;
                        font-weight: var(--fw-light);
                        color: var(--c-light);
                    }
                    &.tg::before {
                        content: '\e904';
                    }
                    &.vb::before {
                        content: '\e902';
                    }
                    &.ig::before {
                        content: '\e903';
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1759px) {
    p, a, span, label, li {
        font-weight: var(--fw-light);
    }
    h2 {
        font-size: 36px;
        &::before {
            font-size: 24px;
            left: -26px;
            top: -12px;
        }
    }
    p.desc {
        font-size: 16px;
        max-width: 600px;
        font-weight: var(--fw-light);
    }
    section {
        margin-top: 100px;
    }
    .btn {
        &.primary {
            width: 250px;
            font-size: 16px;
            font-weight: var(--fw-medium);
        }
    }
    .wrapper {
        width: calc(100% - 100px);
    }
    header {
        height: 100px;
    }
    section.hero {
        height: 600px;
        padding-top: 150px;
        h1 {
            font-size: 48px;
            max-width: 800px;
            margin-bottom: 20px;
        }
        .info {
            font-size: 16px;
            margin-bottom: 40px;
        }
    }
    section.hero-f {
        height: 500px;
        h1 {
            font-size: 52px;
        }
    }
    section.calculator {
        .inner {
            .content {
                .step {
                    padding: 80px 60px 60px;
                    h3 {
                        font-size: 30px;
                        span {
                            font-size: 52px;
                            top: -24px;
                        }
                    }
                }
            }
        }
    }
    section.catalog {
        > .items {
            .item {
                h3 {
                    font-size: 22px;
                }
                .price {
                    p {
                        font-size: 20px;
                    }
                    span {
                        font-size: 16px;
                    }
                }
            }
        }
    }
    section.callback {
        form.callback-form {
            gap: 20px;
        }
    }
    footer {
        margin-top: 120px;
        .wrapper {
            h3 {
                font-size: 22px;
            }
            p {
                &.m {
                    font-size: 20px;
                }
                &.s {
                    font-size: 16px;
                }
            }
            ul {
                li {
                    a, p {
                        font-size: 16px;
                    }
                }
            }
            .col {
                .social {
                    a {
                        &::before {
                            font-size: 22px;
                        }
                    }
                }
            }
        }
        .copy {
            font-size: 14px;
        }
    }
}
@media screen and (max-width: 1279px) {
    h2 {
        font-size: 28px;
        line-height: 1;
    }
    p.desc {
        max-width: 500px;
    }
    header {
        position: relative;
        z-index: 9;
        .logo {
            order: 2;
        }
        .call {
            order: 3;
        }
        .menu {
            position: absolute;
            background: var(--c-dark);
            top: -100px;
            left: 0;
            padding: 20px;
            border-radius: 20px;
            z-index: 9;
            width: 300px;
            opacity: 0;
            visibility: hidden;
            transition: .3s linear;
            order: 1;
            .header-nav {
                > ul {
                    flex-direction: column;
                    background: none;
                    gap: 5px;
                    > li {
                        a, p {
                            background: none;
                        }
                        &.menu-item-has-children {
                            flex-direction: column;
                            > a, > p {
                                display: none;
                            }
                            .sub-menu {
                                position: static;
                                padding: 0;
                                border-radius: 0;
                                opacity: 1;
                                width: 100%;
                                visibility: visible;
                                li {
                                    margin-bottom: 5px;
                                    a {
                                        padding: 5px 2px;
                                        width: fit-content;
                                    }
                                    &:last-child {
                                        margin-bottom: 0;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            &.active {
                top: 100%;
                visibility: visible;
                opacity: 1;
            }
        }
        .burger {
            display: block;
        }
    }
    section.hero {
        h1 {
            font-size: 44px;
        }
        .info {
            max-width: 600px;
        }
        &::after {
            background: linear-gradient(108deg, var(--c-dark-bg) 27%, rgba(0, 0, 0, 0) 100%);
        }
    }
    section.hero-f {
        height: 400px;
        h1 {
            font-size: 44px;
        }
        .breadcrumbs {
            a, span, p {
                font-size: 18px;
            }
        }
    }
    section.calculator {
        .inner {
            grid-template-columns: 1fr;
            .content {
                .step {
                    .options {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
                        .option {
                            .img {
                                width: 100%;
                                height: auto;
                                aspect-ratio: 1/1;
                            }
                        }
                    }
                    .results {
                        .actions {
                            align-items: center;
                        }
                    }
                }
            }
            .controls {
                height: 200px;
                margin: auto auto 0 auto;
                max-width: 600px;
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px 20px;
                .progress {
                    grid-column: span 2;
                    height: auto;
                    width: 100%;
                    flex-direction: column-reverse;
                    margin-bottom: 0;
                    margin-top: 10px;
                    .progress-bar {
                        width: 100%;
                        height: 10px;
                    }
                    .step-numbers {
                        flex-direction: row;
                    }
                }
                .btn {
                    grid-row: 2;
                    font-size: 16px;
                    height: fit-content;
                    padding: 5px;
                    &.prev {
                        justify-self: end;
                    }
                    &.next {
                        justify-self: start;
                    }
                }
            }
        }
    }
    section.catalog {
        .items {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px 40px;
            .item {
                h3 {
                    font-size: 20px;
                    margin: 20px 0 10px;
                }
                .price {
                    p {
                        font-size: 18px;
                    }
                    span {
                        font-size: 15px;
                    }
                }
                .view {
                    .label {
                        height: 26px;
                        padding: 0 15px;
                        font-size: 15px;
                    }
                }
            }
        }
    }
    footer {
        .wrapper {
            grid-template-columns: 1fr 1fr;
            gap: 100px 40px;
            .col {
                grid-row: 1;
                &.menu {
                    grid-row: 2;
                }
            }
        }
    }
    @media screen and (hover: hover) {
        header {
            .menu {
                .header-nav {
                    > ul {
                        > li {
                            a:hover::before {
                                width: calc(100% - 4px);
                            }
                            &.menu-item-has-children {
                                a::after {
                                    transform: none;
                                }
                                .sub-menu li {
                                    a:hover {
                                        background: var(--c-dark) !important;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .call:hover {
                color: var(--c-primary);
            }
        }
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 24px;
        &::before {
            font-size: 20px;
            left: -10px;
            top: -8px;
            z-index: -1;
            opacity: .8;
        }
    }
    p.desc {
        font-size: 15px;
    }
    .wrapper {
        width: calc(100% - 40px);
    }
    header {
        .logo {
            order: 1;
        }
        .menu {
            width: 100%;
            right: 0;
        }
        .burger {
            order: 2;
        }
        .call {
            display: none;
            &.mobile {
                display: flex;
                padding: 5px 2px;
            }
        }
    }
    section.hero {
        h1 {
            font-size: 28px;
            line-height: 1.1;
        }
        .info {
            width: calc(100% - 10px);
            font-size: 15px;
        }
        .btn {
            width: 240px;
        }
        &::after {
            background: linear-gradient(100deg, var(--c-dark-bg) 32%, rgba(0, 0, 0, 0) 100%);
        }
    }
    section.hero-f {
        height: 400px;
        h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .breadcrumbs {
            a, span, p {
                font-size: 16px;
            }
        }
    }
    section.calculator {
        .inner {
            .content {
                .step {
                    padding: 40px 20px 20px;
                    border-radius: 20px;
                    h3 {
                        font-size: 20px;
                        margin-bottom: 20px;
                        span {
                            font-size: 36px;
                            top: -16px;
                        }
                    }
                    .options {
                        grid-template-columns: repeat(auto-fit, 140px);
                        gap: 20px;
                        .option {
                            .info {
                                padding: 10px 0;
                                p {
                                    font-size: 15px;
                                    padding-left: 20px;
                                    &::before {
                                        width: 14px;
                                        height: 14px;
                                        top: 9px;
                                    }
                                    &::after {
                                        width: 4px;
                                        height: 10px;
                                        left: 5px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .controls {
                height: 140px;
            }
        }
    }
    section.callback {
        form.callback-form {
            grid-template-columns: 1fr;
            .item {
                &.fw {
                    grid-column: 1;
                }
            }
        }
    }
    footer {
        margin-top: 100px;
        .copy {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }
        .wrapper {
            grid-template-columns: 1fr;
            gap: 60px;
            padding: 80px 0;
            p {
                &.s {
                    font-size: 15px;
                }
                &.m {
                    font-size: 18px;
                }
                &.mb6 {
                    margin-bottom: 30px;
                }
            }
            h3 {
                font-size: 18px;
            }
            ul li a {
                font-size: 15px;
            }
            .col {
                grid-row: auto;
                grid-column: 1;
                &.menu {
                    grid-row: auto;
                    grid-column: 1;
                }
                &:last-child {
                    grid-row: 2;
                }
            }
        }
    }
}

@media screen and (hover: hover) {
    .btn.primary:hover {
        color: var(--c-primary);
        &::after {
            opacity: 1;
        }
    }
    header {
        .menu {
            .header-nav {
                > ul {
                    > li {
                        &:not(.menu-item-has-children) a:hover::before {
                            width: calc(100% - 4px);
                        }
                        &.menu-item-has-children:hover {
                            a::after {
                                transform: rotate(270deg);
                            }
                            .sub-menu {
                                top: 100%;
                                opacity: 1;
                                visibility: visible;
                                pointer-events: all;
                                a:hover {
                                    background: var(--c-dark-bg);
                                }
                            }
                        }
                    }
                }
            }
        }
        .call:hover {
            color: var(--c-primary);
        }
    }
    section.catalog {
        > .items {
            .item:hover {
                .view {
                    img {
                        transform: scale(1.1);
                    }
                }
            } 
        }
    }
    section.calculator {
        .inner {
            .content {
                .step {
                    .input-num-container {
                        .num-input {
                            .btn:hover {
                                background: var(--c-dark-bg);
                            }
                        }
                    }
                    .options {
                        .option:hover {
                            .img {
                                img {
                                    transform: scale(1.1);
                                }
                            }
                            .info {
                                p {
                                    color: var(--c-primary);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}