/* Tablet */
@media (max-width: 768px) {

    .simple-banner {
        min-height: 320px;
        padding: 120px 0 60px;
        background-position: center center;
    }

    .banner-content {
        padding: 0 20px;
    }

    .banner-content h1 {
        margin-bottom: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .simple-banner {
        min-height: 250px;
        padding: 50px 0 50px;
        background-position: center center;
    }

    .banner-content {
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 15px;
    }
}