
/* CONTACT US PAGE */

.c-contact-landing-wrapper {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover, cover;
    background-color: hsl(233, 39%, 17%);
    background-image: url('../images/GRAPH_PATTERN_LANDING.webp'), radial-gradient(circle farthest-side at right bottom, hsl(182, 56%, 49%) 0%, hsl(233, 39%, 17%) 100%);

    @media (max-width: 991px) {
        height: 60vh;
    }
}

.c-contact-landing-section {
    position: relative;
    z-index: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 70%;
    background-image: url('../images/CONTACT_US_LANDING.svg');

    @media (max-width: 1599px) {
        background-size: 70%;
    }

    @media (max-width: 1199px) {
        background-size: 80%;
    }

    @media (max-width: 991px) {
        background-position: 100% 35%;
        background-size: 100%;
    }
}

.c-contact-title-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: 100%;
    padding-bottom: 10rem;
    padding-left: 8rem;

    @media (max-width: 991px) {
        padding: 0 1rem 0 1rem;
    }
}

.c-contact-title {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h1FontSize);
    color: #FFFFFF;
    word-break: break-word;
    max-width: 50%;
    padding-bottom: 5rem;

    backdrop-filter: blur(1px) saturate(100%);

    @media (max-width: 1599px) {
        font-size: 4rem;
    }

    @media (max-width: 1199px) {
        font-size: 3rem;
    }

    @media (max-width: 991px) {
        max-width: unset;
        padding-bottom: 1.0rem;
    }
}

.c-contact-description-wrapper {
    color: #FFFFFF;
    line-height: 3rem;
    width: 33%;

    @media (max-width: 991px) {
        width: 100%;
        padding-bottom: 5rem;
    }
}

.c-contact-section {
    display: flex;
    justify-content: center;
}

.c-contact-page {
    max-width: 85vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    padding-top: 10rem;
    padding-bottom: 10rem;

    @media (max-width: 991px) {
        flex-direction: column;
        max-width: 90vw;
    }
}

.c-contact-page-info {
    display: flex;
    flex-direction: column;
    width: 35%;

    @media (max-width: 991px) {
        width: unset;
        padding-bottom: 10rem;
    }
}

.c-contact-page-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h2FontSize);
    padding-bottom: 2.5rem;
}

.c-contact-page-text-content {
    padding-bottom: 2.5rem;
    line-height: 1.5em;
}

.c-contact-page-form-container {
    width: 46%;
    max-width: 36.125rem;

    @media (max-width: 991px) {
        width: unset;
        max-width: unset;
    }
}

.c-contact-appt-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h3FontSize);
    padding-bottom: 2rem;
}

.c-contact-page-action-form {
    display: flex;
    flex-direction: column;
}

.c-contact-page-form-input-label {
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: .5rem;
}

.c-contact-page-form-input {
    background-color: transparent;
    line-height: 2em;
    border: 1px solid #2b2828;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    height: 4.5rem;
}

.c-contact-page-form-textarea {
    min-height: 9.5rem;
}

.contact-page-footer {
    min-height: unset;
    padding-top: 7rem;
}