body {
    background-color: #FFFFFF;

}

main {
    min-height: calc(100vh - 100px);
}

main .container-fluid {
    margin: 0;
    padding: 0;
}

#locations{
    margin: 50px 100px 0px 100px;
}

#locations-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 46.88px;
    padding: 90px 20px 0 20px;
    margin-bottom: 10px;
}

.locations-content {
    padding: 0 20px;
}

.locations-content h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 37.5px;
}

.address {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 14px;
}

.contact {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.iframe-container {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media only screen and (max-width: 768px) {
    #locations{
        margin: 50px 10% 0px 10%;
    }

    .locations-content {
        padding: 0 0 60px 0;
    }   
    
    #locations-heading {
        font-size: 22px;
        padding: 0;
    }

    #locations h2 {
        font-size: 20px;
    }
}