html,
body{
    overflow-x:hidden;
}

/* HERO SECTION */
.hero-section{
    min-height:550px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:80px 15px;
}

.brand-image{
    width:130px;
    height:130px;
    border-radius:12%;
    object-fit:cover;
    border:5px solid #fff;
    background:#fff;
    margin-bottom:20px;
}

.hero-section h1{
    font-weight:700;
    margin-bottom:15px;
}

.hero-section p{
    font-size:1.2rem;
}

/* CARDS */
.enquiry-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.info-box{
    padding:30px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.section-title{
    font-weight:700;
    margin-bottom:20px;
}

.contact-item{
    margin-bottom:18px;
    line-height:1.8;
}

/* FORM */
.form-control{
    min-height:48px;
}

textarea.form-control{
    min-height:120px;
}

.btn-primary{
    padding:12px 30px;
}

/* FOOTER */
footer{
    margin-top:0;
}

/* TABLET */
@media (max-width:991px){

    .hero-section{
        min-height:450px;
        padding:60px 15px;
    }

    .hero-section h1{
        font-size:2.2rem;
    }

    .hero-section p{
        font-size:1rem;
    }

    .info-box{
        margin-bottom:20px;
    }
}

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

    .navbar-brand{
        font-size:1rem;
        max-width:220px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .hero-section{
        min-height:380px;
        padding:50px 15px;
    }

    .brand-image{
        width:90px;
        height:90px;
    }

    .hero-section h1{
        font-size:1.8rem;
    }

    .hero-section p{
        font-size:.95rem;
    }

    .section-title{
        font-size:1.3rem;
    }

    .info-box{
        padding:20px;
    }

    .card-body{
        padding:20px;
    }

    .btn-primary{
        width:100%;
    }

    footer h5{
        font-size:1rem;
    }

    footer p{
        font-size:.9rem;
    }
}

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

    .hero-section h1{
        font-size:1.5rem;
    }

    .hero-section{
        min-height:320px;
    }

    .brand-image{
        width:75px;
        height:75px;
    }

    .card-header h4{
        font-size:1rem;
    }
}