#contact-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    background-color: rgba(0, 92, 183, 1);
}

#contact-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    height: fit-content;
    margin-left: 4rem;
    margin-right: 4rem;
}

#contact-content h1 {
    margin-top: 10rem;
}

#contact-content h3 {
    margin-top: 4rem;
    /*margin gone while input-wrapper class isn't used in html*/
    /* margin-bottom: 4rem; */
}

#contact-content h3 span {
    color: rgba(255, 255, 255, 0.56);
}

#contact-bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin-top: 10rem;
}

#contact-bottom p {
    width: 26rem;
    height: fit-content;
    max-width: 50%;
    color: rgba(255, 255, 255, 0.56);
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    width: fit-content;
    min-width: 20rem;
    max-width: 30rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    align-items: center;
    overflow: hidden;
}

#mail-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 1rem;
    margin-right: 0.5rem;
}

#email-input {
    position: relative;
    width: 15rem;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    overflow: hidden;
    border: none;
    background: none;
    outline: none;
    align-content: center;
    /* all: unset;
    text-decoration: none; */
}

#right-arrow-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0.5rem;
    margin-right: 1rem;
}

#contact-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: fit-content;
    gap: 1rem;
}

#get-in-touch-button {
    background: rgba(255, 255, 255, 1);
}

#get-in-touch-button h4 {
    color: rgba(0, 8, 16, 1);
}

#resume-button {
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

#contact-wrapper .pixel-blocks {
    margin-top: 10rem;
    aspect-ratio: 10 / 1;
}

#contact-wrapper .block-row {
    height: 50%;
}

/* Tablet */
@media (max-width: 991px) {
    #contact-content {
        margin: 0 3rem;
    }

    #contact-content h1 {
        margin-top: 6.5rem;
    }

    #contact-bottom {
        margin-top: 7rem;
    }

    #contact-wrapper .pixel-blocks {
        margin-top: 6.5rem;
    }

}

@media (max-width: 890px) {
    #contact-content {
        margin: 0 1.5rem;
    }

    #contact-content h1 {
        margin-top: 4rem;
        margin-bottom: 2.25rem;
    }

    #contact-content h3 {
        margin-top: 0;
    }

    .input-wrapper {
        width: 100%;
        max-width: unset;
    }

    #right-arrow-icon {
        margin-left: auto;
        margin-right: 1rem;
    }

    #contact-bottom {
        flex-wrap: wrap;
        margin-top: 2.25rem;
        gap: 2.5rem;
    }

    #contact-bottom p {
        width: 100%;
        max-width: unset;
    }

    #contact-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    #get-in-touch-button {
        width: 100%;
    }

    #resume-button {
        width: 100%;
    }

    #contact-wrapper .pixel-blocks {
        margin-top: 4rem;
    }

}