/* =======================================================
   CONTACT SECTION
======================================================= */

.contact {
    padding: 8rem 0;
}

.contact__header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

.contact__title {
    margin-bottom: 1.5rem;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.contact__subtitle {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.contact__content {
    max-width: 750px;
    margin: 0 auto;
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }

    .contact__header {
        margin-bottom: 4rem;
    }

    .contact__title {
        font-size: 3rem;
    }

    .contact__subtitle {
        font-size: 1.6rem;
    }
}