.contact_hero {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    padding: var(--p-y) var(--p-x);
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    background-color: var(--theme-cyan);
    z-index: -20;
}

.contact_hero__hello {
    width: 250rem;
    margin-bottom: 48rem;
}

.container {
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: var(--theme-light);
    border-radius: 40rem 40rem 0 0;

    z-index: -15;
}

/* ======================== */
/*           Hero           */
/* ======================== */

.hero {
    max-height: 160rem;
}

.hero__text__sub.temp, .hero__text__main.temp {
    font-size: 16rem;
    line-height: 20rem;
}

.hero__bg.temp {
    transform: translate3d(-50%, -50%, 0) scale(1);
}

/* ======================== */
/*           Form           */
/* ======================== */

.form {
    width: 100%;
    padding: var(--p-y) var(--p-x);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__rows {
    width: 100%;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 16rem;
}

.form__rows__row {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
    gap: 16rem;
}

.form__input, .form__input--textarea {
    flex: 1;
    width: 100%;

    font-family: NeueHass;
    font-size: 16rem;
    line-height: 20rem;
    padding: 12rem 24rem;

    resize: none;
    
    background-color: var(--theme-light);
    border: 2rem solid var(--theme-black);
    border-radius: 20rem;
}

.form__input--btn {
    padding: 10rem 45rem;

    font-family: NeueHass;
    font-size: 16rem;
    line-height: 20rem;
    background-color: var(--theme-cyan);
    border-radius: 20rem;

    outline: none;
    border: none;
}

/* ================================ */
/*           Navbar Color           */
/* ================================ */

[data-navbar-white] {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Desktop */
@media screen and (min-width:768px) {
    .contact_hero__hello {
        width: 744rem;
    }

    .hero {
        max-height: 450rem;
    }

    .hero__text__sub.temp, .hero__text__main.temp {
        font-size: 80rem;
        line-height: 80rem;
    }
    
    /* ======================== */
    /*           Form           */
    /* ======================== */

    .form__rows {
        max-width: 1310rem;
        gap: 40rem;
    }

    .form__rows__row {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        
        gap: 40rem;
    }
    
    .form__input, .form__input--textarea {  
        font-size: 36rem;
        line-height: 40rem;
        padding: 16rem 32rem;

        border-radius: 40rem;
    }

    .form__input--btn {
        padding: 20rem 90rem;
        font-size: 36rem;
        line-height: 40rem;
        border-radius: 40rem;
    }
}