.svglogoNoMorph, .svglogoNoMorph-WovenPlace {
    fill: var(--white);
}
body, html {
    background-color: var(--black);
    color: var(--white);
}
.flexRow {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
}
.contactInfoWrapper {
    padding: var(--widthOffset);
}
.contactTitle {
    font-size: 44px;
    line-height: 125%;
    color: var(--white);
    margin: 0 0 2em 0;
    padding: 0;
}

.contactTitle::before {
    content: "";
    height: 2px;
    width: 160px;
    background-color: var(--white);
    display: block;
    margin-bottom:15px;
}

.contactLocation strong, .contactLocation span, .contactLocation a {
    display: block;
    line-height: 1.5;
}

.locationTitle {
    margin-bottom: .5em;
    text-transform: uppercase;
}

.contactLocations {
    display: flex;
    gap: 5em;
}
.contactLocation a {
    font-family: var(--bold);
    margin-top: 1em;
}

.contactBannerWrapper {
    height: 48vh;
    width: 100vw;
    position: relative;
}

.contactBanner-Inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.contactBannerImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_form {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 1em;
}
.contact_form input, .contact_form textarea {
    background-color: #2F2F2F;
    border: none;
    font-size: 12px;
    padding: 1rem;
    color: var(--white);
}
.contact_form input:active,
.contact_form input:focus,
.contact_form textarea:active, 
.contact_form textarea:focus {
    background-color: #4A4A4A;
    transition: background-color 200ms ease-in;
}
.contact_form input::placeholder, .contact_form textarea::placeholder {
    text-transform: uppercase;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #4A4A4A inset !important;
    -webkit-text-fill-color: white !important;
    font-family: var(--medium);
}
.contact_form textarea {
    resize: none;
    width: 100%;
}

.contactFormWrapper, .contactInfo-Left, .inputWrapper, .inputWrapper input {
    width: 100%;
}
.contact_form .flexRow {
    gap: 1em;
}
.contactMessageBox {
    min-height: 84px;
    vertical-align: text-top;
}
.submitBtn {
    width: 100%;
    height: 44px;
    color: var(--white);
    background-color: #2F2F2F;
    transition: background-color 300ms ease-out;
}
.submitBtn:hover {
    color: var(--white);
    background-color: #4A4A4A;
    transition: background-color 200ms ease-in;
}
.submitBtn:focus, .submitBtn:active {
    background-color: #7D7D7D;
    transition: background-color 200ms ease-in-out;
}

@media (max-width: 1012px) {
    .contactInfoWrapper {
        padding: var(--widthOffset);
        margin-top: 0;
    }
    .flexRow {
        flex-direction: column;
        gap: 4em;
    }
    .contactTitle {
        font-size: 6vw;
    }
    .contactLocations {
        gap: 3em;
        flex-direction: column;
    }
}