/**
 * Contact Page - Hero
 */

.contact-hero {
    background-color: #26282a;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-hero__content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 4rem;
    padding-top: 12rem;
}

.contact-hero__title-container {
    width: 100%;
    max-width: 604px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.contact-hero__title {
    color: #fff;
    font-family: var(--font-aeonik);
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
}

.contact-hero__highlight {
    color: #f25d21;
}

.contact-hero__description-container {
    width: 100%;
    max-width: 571px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2rem;
}

.contact-hero__description {
    color: #e8e8e8;
    font-family: var(--font-aeonik);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-wrap: pretty;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-hero__content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero__title {
        font-size: 2.5rem;
    }

    .contact-hero__content-container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero__title {
        font-size: 2rem;
    }
}
