/* Exact implementation of Figma node 7:329 (contacts area). */
@media (min-width: 1600px) {
    .contacts {
        box-sizing: border-box;
        height: 760px;
        margin: 64px 0 0;
        padding: 56px 0 80px;
        overflow: hidden;
        border-radius: 64px 64px 0 0;
        background: #212124;
    }

    .contacts .container {
        display: flex;
        flex-direction: column;
        height: 624px;
    }

    .contacts .section-title {
        width: 100%;
        height: 64px;
        margin: 0 0 48px;
        font-family: 'Aeroport', Arial, sans-serif;
        font-size: 64px;
        font-weight: 500;
        line-height: 64px;
        letter-spacing: -4px;
        text-align: center;
        color: #fff;
    }

    .contacts__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 328px 160px;
        gap: 24px;
        width: 100%;
        height: 512px;
    }

    .contacts__grid article {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
        height: 100%;
        min-height: 0;
        padding: 32px;
        gap: 16px;
        overflow: hidden;
        border-radius: 32px;
        background: rgba(255, 255, 255, .08);
        text-align: center;
    }

    .contacts__grid h3 {
        width: 100%;
        margin: 0;
        font-family: 'Aeroport', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: 0;
        color: #fff;
    }

    .contacts__grid p {
        width: 100%;
        margin: 0;
        font-family: 'Aeroport', Arial, sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
        color: rgba(255, 255, 255, .72);
    }

    .site-footer {
        padding-top: 0;
    }
}
