.promo-box {
    margin-bottom: 0;
    h1 {
        margin-bottom: 80px;
    }
}
.page-content {
    padding-bottom: 150px;
}
.left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 10px 30px 0;
    border-right: 1px solid var(--2);
    a {
        font-size: 20px;
        font-weight: 300;
        line-height: 1.4;
        letter-spacing: 0.2px;
        &.selected {
            font-weight: 500;
            border-left: 4px solid var(--2);
            padding-left: 8px;
            color: var(--2);
        }
    }
}
.products-list {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    .list {
        display: flex;
        flex-direction: column;
        gap: 40px;
        .item {
            display: flex;
            flex-direction: column;
            gap: 10px;
            .title {
                font-size: 24px;
                font-weight: 600;
                line-height: 1;
                letter-spacing: 0.2px;
            }
            .text {
                color: var(--5);
                font-weight: 300;
                letter-spacing: 0.2px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                line-clamp: 2;
                -webkit-line-clamp: 2;
                overflow: hidden;
                * {
                    color: var(--5);
                    font-weight: 300;
                    letter-spacing: 0.2px;
                    display: contents;
                    -webkit-box-orient: vertical;
                    line-clamp: 2;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                }
            }
            button {
                --height: 30px;
                --padding: 20px;
                span {
                    font-size: 14px;
                    &::after {
                        content: '\e904';
                    }
                }
            }
        }
    }
    .not-product {
        font-size: 20px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}
.bg-box:has(.contact-us) {
    .bg {
        background: url(../images/black-form.webp) top center / cover;
    }
    .contact-us {
        background: none;
        form {
            position: relative;
            z-index: 1;
            background: url(../images/index/bg-text.webp) top -190px right -225px/ auto auto no-repeat, var(--text);
        }
    }
}
@media screen and (max-width: 767px) {
    .promo-box {
        padding-top: 70px;
        padding-bottom: 10px;
        min-height: 398px;
        h1 {
            margin-bottom: 40px;
            font-size: 30px;
        }
    }
    .page-content {
        padding-bottom: 120px;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .left {
        padding: 40px 0 20px 0;
        border-right: none;
        border-bottom: 1px solid var(--2);
        a {
            font-size: 16px;
        }
    }
    .products-list {
        .list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            .item {
                .title {
                    font-size: 20px;
                }
            }
        }
    }
}