.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}
