.contact-banner {
    background: linear-gradient(rgba(234, 244, 229, .7), rgba(234, 244, 229, .7)), url(https://cdn.fbhl.dev/servicing/images/the-difference-between-prequalification-and-preapproval-featured-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 115px 0;
    width: 100vw;           
    position: relative;
    left: 50%;              
    right: 50%;             
    margin-left: -50vw;     
    margin-right: -50vw;    
    box-sizing: border-box; 
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px; 
    max-width: 100%;
    margin: 0 auto;
    justify-items: stretch;

}



.contact-grid--options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    justify-items: center;
}

.bg-green {
    background-color: #47773d;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 100%;
    color: #fff;
    justify-items: center;
    
}
.text__bold {
    color: #fff;
}

.bg-green h3 {
    margin-bottom: 25px;
}

.bg-green .addresses {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;                             
}

.bg-green .addresses > div {
    text-align: left;                   
}


@media (min-width: 576px) {
    .bg-green .addresses {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 0 auto;
}
.contact-header h1 {
    color: #47773d;
}
.contact-option {
    background-color: #fff;
    padding: 30px;
    min-width: 300px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
.contact-option h3 {
    color: #47773d;
    margin: 15px;
}

a:hover {
    color: #f58564;
}