main {
    background: url(../images/contacts/promo.webp) top center / 100% auto no-repeat;
}
.promo {
    padding-top: 300px;
    h1 {
        margin-block: -7px 7px;
    }
    .items {
        display: grid;
        grid-template-columns: 336px 492px 1fr;
        margin-top: 46px;
        background: rgba(141, 139, 163, 0.3);
        backdrop-filter: blur(5px);
        div {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 42px 40px 41px;
            border-right: 1px solid #E6E9F8;
            &:last-child {
                border-color: transparent;
            }
            .tag {
                color: #E6E9F8;
            }
            a,
            p {
                font: 700 28px 'Mazzard';
                color: #E6E9F8;
            }
        }
    }
}
.help {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-top: -58px;
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 135px;
        pointer-events: none;
        background: url(../images/contacts/star.svg) center center/ auto 100% no-repeat;
    }
    .bg-text {
        top: 86px;
        font-size: 220px;
        opacity: 0.05;
        filter: blur(12px);

    }
    h2 {
        display: flex;
        flex-direction: column;
        gap: 50px;
        span {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            color: inherit;
            font-weight: inherit;
        }
    }
    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 40px;
        background: rgba(141, 139, 163, 0.3);
        backdrop-filter: blur(7px);
        .tag {
            margin-left: auto;
            margin-bottom: 30px;
        }
        label {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
        }
        input,
        textarea {
            padding-block: 13px;
            &::placeholder {
                color: #8D8BA3;
            }
            &:focus::placeholder {
                color: #FEFEFF;
            }
        }
        textarea {
            height: 100px;
        }
        .btn {
            --width: 4px;
            max-width: 288px;
            margin: 20px 0 0 auto;
        }
    }
}
@media screen and (max-width: 1840px) {
    .promo {
        padding-top: 200px;
        h1 {
            margin-block: -6px 6px;
        }
        .items {
            grid-template-columns: 225px 325px 1fr;
            margin-top: 36px;
            div {
                gap: 13px;
                padding: 32px 30px 31px;
                a,
                p {
                    font-size: 18px;
                }
            }
        }
    }
    .help {
        margin-top: -50px;
        &::before {
            height: 91px;
        }
        .bg-text {
            top: 61px;
            white-space: nowrap;
        }
        form {
            padding: 30px;
            .tag {
                margin-bottom: 20px;
            }
            .btn {
                margin-top: 10px;
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .promo {
        padding-top: 188px;
        h1 {
            margin-block: -4px 4px;
        }
        .items {
            grid-template-columns: 205px 305px 1fr;
            margin-top: 22px;
            div {
                gap: 15px;
                padding: 22px 20px 21px;
            }
        }
    }
    .help {
        grid-template-columns: 1fr;
        margin-top: -37px;
        &::before {
            top: 52px;
        }
        h2 {
            flex-direction: row;
            justify-content: center;
            gap: 60px;
            margin-bottom: 29px;
        }
        form {
            padding: 20px;
        }
    }
}
@media screen and (max-width: 767px) {
    main {
        background: url(../images/contacts/promo2.webp) top center / auto auto no-repeat;
    }
    .promo {
        padding-top: 277px;
        h1 {
            margin-block: -2px 2px;
        }
        .items {
            grid-template-columns: 1fr;
            div {
                border-right: none;
                border-bottom: 1px solid #E6E9F8;
                gap: 14px;
                padding-block: 21px;
                a,
                p {
                    font-size: 16px;
                }
            }
        }
    }
    .help {
        margin-top: -32px;
        &::before {
            top: 120px;
        }
        .bg-text {
            top: 120px;

        }
        h2 {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 53px;
        }
        form {
            .tag {
                margin-bottom: 10px;
            }
            label {
                font-size: 14px;
                line-height: 19px;
            }
            input {
                height: 53px;
            }
            .btn {
                max-width: initial;
                width: 100%;
            }
        }
    }
}
@media (hover: hover) {
    .promo .items a:hover {
        color: #CAB496;
    }
}