/* DESKTOP LAYOUT */
@media (min-width: 701px) {
    body {
        text-align: center;
    }

    .about-us,
    .services {
        display: inline-block;
        vertical-align: top;
        width: 44%;
        max-width: 480px;
        margin: 20px 1%;
        height: auto;
        min-height: 400px;
        box-sizing: border-box;
    }
}

/* MOBILE */
@media (max-width: 700px) {

    .about-us,
    .services {
        display: block !important;
        width: 90% !important;
        max-width: 360px !important;
        margin: 16px auto !important;
        padding: 20px 16px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    .locations {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin: 15px auto 0 !important;
    }

    .card {
        display: block !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 10px auto !important;
        box-sizing: border-box !important;
    }

    .about-us {
        font-size: 16px;
    }

    footer {
        margin: 15px;
        padding: 30px 0;
    }

    .contact {
        width: 90% !important;
        margin: 0 auto !important;
    }

}