.contact-hero {
    height: 500px;
    margin-top: 70px;
    background: url("../Images/contact.jpg") center center/cover no-repeat;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
}

.hero-content p {
    font-size: 22px;
    max-width: 700px;
}

/* Contact Form */

.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-heading {
    margin-bottom: 40px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.form-control {
    height: 55px;
}

textarea.form-control {
    height: auto;
}

.btn-contact {
    background: blue;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
}

/* Address */

.address-section {
    padding: 80px 0;
}

.address-section h3 {
    margin-bottom: 25px;
}

/* Responsiveness */

@media (max-width: 992px) {

    .contact-hero {
        height: 400px;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 100%;
    }

    .contact-section,
    .address-section {
        padding: 60px 20px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .contact-hero {
        height: 320px;
        text-align: center;
    }

    .hero-overlay {
        justify-content: center;
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .contact-section,
    .address-section {
        padding: 50px 15px;
    }

    .section-heading {
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-control {
        height: 50px;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
    }

    .address-section h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .contact-hero {
        height: 260px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-control {
        height: 45px;
        font-size: 14px;
    }

    textarea.form-control {
        height: 120px;
    }

    .btn-contact {
        padding: 10px 20px;
        font-size: 14px;
    }

    .address-section h3 {
        font-size: 18px;
    }
}