#contact_wrapper{
    margin:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}
#index_map_title{
    font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
    margin-top:140px;
    margin-bottom:60px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 10px;
    padding-bottom: 25px;
    border-bottom: 3px solid #61CE70;;
    width: 200px;
}
.contact_details{
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
}

#contact_bottom_image_wrapper{
    display: grid;
    max-width: 90%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: auto;
    margin-bottom: 80px;
    gap: 10px;
}

#contact_bottom_image_wrapper > img{
    height: 200px;         /* fixed height for all images */
    width: 100%;     
    min-height:100%
}

/* Mobile */
@media only screen and (max-width:480px) {
    #contact_bottom_image_wrapper{
        grid-template-columns: 1fr
    }
}