.contacts {
    padding-top: 6.4rem;
    padding-bottom: 32.9rem;
    background: var(--c-bg-alt)
}

.contacts__brand {
    font-family: var(--font-headline);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 3.8rem;
    color: var(--c-ink)
}

.contacts__grid {
    display: grid;
    grid-template-columns: 58.8rem 1fr;
    margin-top: 5.5rem;
    gap: 50px;
}

.contacts__subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.2rem;
    color: var(--c-ink)
}

.contacts__note {
    margin-top: 1.6rem;
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: var(--c-muted)
}

.contacts__note--phone {
    margin-top: .8rem
}

.contacts__socials {
    display: flex;
    gap: 1.6rem;
    margin-top: 7.4rem
}

.contacts__socials img {
    width: 2.4rem;
    height: 2.4rem
}

@media screen and (max-width: 1199px) {
    .contacts {
        padding-top: 4rem;
        padding-bottom: 6rem;
        text-align: center
    }

    .contacts__brand {
        font-size: 2rem;
        line-height: 2.4rem
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 4.8rem;
        margin-top: 4rem
    }

    .contacts__socials {
        justify-content: center;
        margin-top: 4rem
    }

    .lead-form__consent {
        text-align: left
    }
}