body {
    background-color: white;
}
h4 {
    color: black;
    font-size: 48px;
    font-weight: 400;
}
h6 {
    color: black;
    font-size: 24px;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
}

#google_maps_embed {
    height: 35vw;
    width: 100vw;
}

#contact_grid_container {
    display: flex;
    justify-content: space-evenly;
}
@media (max-width: 1000px) {
    #google_maps_embed {
        height: 400px;
    }
    #contact_grid_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* ----- Contact information styling ----- */
#contact_info_container {
    margin-left: 100px;
    display: grid;
}
#contact_info_title_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.template_contact_info_title {
    font-family: 'nunito', sans-serif;
}

#contact_info_grid {
    height: 200px;
    display: grid;
}

.template_contact_info_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.template_contact_info_icon {
    height: 32px;
    margin-right: 20px;
}
@media (max-width: 1000px) {
    #contact_info_container {
        margin: 0px;
    }
    .template_contact_info_title {
        font-size: 5vw;
    }
    h6 {
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .template_contact_info_title {
        font-size: 7vw;
    }
}

/* ----- Contact form styling ----- */
#contact_form_container {
    margin-top: 50px;
}
#contact_form_subcontainer {
    width: 40vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 75px 75px 1fr 80px;
}
.template_contact_form_input_container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.template_contact_form_input {
    font-size: 20px;
}

#contact_form_name {
    width: 80%;
    padding-bottom: 20px;
}

#contact_form_email {
    width: 80%;
    padding-bottom: 20px;
}

#contact_form_phone {
    width: 80%;
    padding-bottom: 20px;
}

#contact_form_subject {
    width: 80%;
    padding-bottom: 20px;
} 

#contact_form_message_container {
    grid-column: 1/3;
}
#contact_form_message {
    width: 90%;
}

#contact_form_submit_container {
    margin-top: 30px;
}
#contact_form_submit_button {
    width: 80%;
    background-color: #991009;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact_form_submit_button:hover {
    background-color: #b9130a;
}
#contact_form_submit_icon {
    height: 25px;
    padding-right: 20px;
}
#contact_form_submit_text {
    font-size: 20px;
    font-family: 'nunito', sans-serif;
    font-weight: 600;
}

@media (max-width: 1000px) {
    #contact_form_subcontainer {
        width: 80vw;
    }
}