#hero
{
    height: 36vh;
    margin-top: 7em !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(/static/backgrounds/cw-sign.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact-ad
{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact-ad h1
{
    color: #25499f;
}

#contact-ad > div
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#contact-ad > div > div
{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
#serving img
{
    width: 100%;
}
#serving h2 {
    color: #ffc600;
    position: absolute;
    text-shadow: 1px 1px black;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
}

@media only screen and (max-width: 1096px)
{
    #hero
    {
        background-position: 18%;
    }
    #contact-ad > div
    {
        flex-direction: column;
        justify-content: center;
    }

    #contact-ad > div > div
    {
        width: 100%;
    }
}

