h1.title {
    gap: 10px;
    padding-left: 0 !important;
    max-width: 352px;
    margin-bottom: 40px;
}
.promo {
    display: grid;
    grid-template-columns: 1fr 352px;
    column-gap: 10px;
    margin-bottom: 150px;
    .title {
        grid-column: 1/-1;
    }
    .left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        > div {
            display: flex;
            flex-direction: column;
            border-radius: 30px;
            border: 10px solid var(--white);
            background: var(--white-grey);
            padding: 40px;
            h2 {
                font-size: 20px;
                font-weight: 700;
            }
            :where(h2, h3, h4, p) * {
                all: inherit
            }
            div,
            p {
                line-height: 125%;
                span {
                    display: contents;
                }
                strong {
                    font-weight: 700;
                }
            }
            p a {
                display: inline-block;
                margin-left: 5px;
                white-space: nowrap;
                font-weight: 700;
                cursor: pointer;
                transition: color .2s linear;
            }
        }
    }
    > form {
        position: sticky;
        top: 30px;
        width: 100%;
        align-self: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid #FFF;
        background: var(--white-grey);
        box-shadow: 0px 44px 44px 0px rgba(0, 0, 0, 0.09), 0px 11px 24px 0px rgba(0, 0, 0, 0.1);
        .heading {
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            + p {
                margin-bottom: 30px;
            }
        }
        label {
            display: flex;
            flex-direction: column;
            gap: 2px;
            width: 100%;
            margin-bottom: 8px;
            margin-left: 12px;
            font-size: 14px;
        }
        input {
            margin-left: -12px;
            border-radius: 10px;
            background: var(--white);
            padding: 8px 10px 9px 12px;
            color: var(--grey-4);
            border: none;
        }
        .btn {
            width: 100%;
            margin: 30px 0 20px;
            + p {
                font-size: 12px;
                text-align: center;
                a {
                    font-size: inherit;
                    color: var(--ff-2-f-00);
                }
            }
        }
    }
}
@media screen and (max-width: 1152px) {
    .promo {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 768px) {
    h1.title {
        width: fit-content;
        min-width: 190px;
        margin-bottom: -10px;
        padding: 8px 10px;
    }
    .promo .left > div {
        padding: 20px 10px;
    }
}
@media (hover: hover) {
    .promo > form .btn + p a:hover {
        color: var(--grey-dark);
    }
}