/* =========================
   Hero Banner
========================= */

.hero-new-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px !important;
}

/* =========================
   Left Content
========================= */

.lft-cnt h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.lft-cnt p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}


/* =========================
   Tablet
========================= */

@media (max-width:991px) {

    .hero-new-banner {
        min-height: auto;
        padding: 70px 0;
    }

    .lft-cnt {
        text-align: center;
        margin-bottom: 0px;
    }

    .lft-cnt h1 {
        font-size: 36px;
    }

    .lft-cnt p {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .contact-form-footer {
        margin: auto;
        max-width: 500px;
    }
}


@media only screen and (min-width: 481px) and (max-width: 767px) {
    .hero-content {
        padding: 0px 0px !important;
        position: relative;
        z-index: 2;
        width: 100%;
    }
}
/* =========================
   Mobile
========================= */

@media (max-width:767px) {

    .hero-new-banner {
        padding: 60px 0;
    }

    .lft-cnt h1 {
        font-size: 30px;
        line-height: 1.35;
    }

    .lft-cnt p {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-form-footer {
        margin-top: 35px;
        padding: 25px 20px;
    }

    .contact-form-footer .form-control {
        height: 48px;
    }

    .contact-form-footer textarea.form-control {
        height: 100px;
    }
}

/* =========================
   Small Mobile
========================= */

@media (max-width:575px) {

    .hero-new-banner {
        padding: 50px 0;
    }

    .lft-cnt h1 {
        font-size: 26px;
    }

    .lft-cnt p {
        font-size: 14px;
    }

    .contact-form-footer {
        padding: 20px 15px;
        margin: 20px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (min-width:768px) and (max-width:991px){

  

    .hero-new-banner{
        min-height: auto;
        padding: 70px 0;
    }

    .hero-content .row{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-content .col-md-7,
    .hero-content .col-md-5{
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .lft-cnt{
        text-align: center;
        margin-bottom: 0;
    }

    .lft-cnt h1{
        font-size: 34px;
    }

    .lft-cnt p{
        font-size: 16px;
        max-width: 100%;
        margin: 20px auto 30px;
    }

    .contact-form-footer{
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
    }

    .contact-form-footer .form-control{
        width: 100%;
    }

    .contact-form-footer button{
        width: 100%;
    }
}


