/*==================================================
                HOME PAGE
==================================================*/

/* Hero */

.hero-section{
    position:relative;
    height:92vh;
    min-height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url("../images/hero.jpg") center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55));
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:720px;
    color:#fff;
}

.hero-content h5{
    color:#f8c43a;
    letter-spacing:5px;
    font-size:16px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:64px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    max-width:600px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:15px 40px;
    border-radius:40px;
    background:#D4A017;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#b88912;
    color:#fff;
}


/*==============================
        QUICK LINKS
==============================*/

.quick-links{
    margin-top:-90px;
    position:relative;
    z-index:20;
}

.quick-card{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.quick-card:hover{
    transform:translateY(-8px);
}

.quick-card i{
    font-size:48px;
    color:#0B2D5B;
    margin-bottom:20px;
}

.quick-card h4{
    font-size:22px;
    margin-bottom:12px;
    color:#0B2D5B;
}

.quick-card p{
    color:#666;
    font-size:15px;
}


/*==============================
        SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#0B2D5B;
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}


/*==============================
        COMMON BUTTON
==============================*/

.primary-btn{
    display:inline-block;
    background:#0B2D5B;
    color:#fff;
    padding:14px 32px;
    border-radius:40px;
    transition:.3s;
}

.primary-btn:hover{
    background:#082347;
    color:#fff;
}


/*==============================
        SPACING
==============================*/

.home-section{
    padding:90px 0;
}


/*==============================
        TABLET
==============================*/

@media(max-width:991px){

.hero-section{

height:70vh;

min-height:550px;

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.quick-links{

margin-top:40px;

}

}


/*==============================
        MOBILE
==============================*/

@media(max-width:576px){

.hero-section{

height:60vh;

min-height:500px;

padding:20px;

}

.hero-content h5{

font-size:12px;

letter-spacing:2px;

}

.hero-content h1{

font-size:30px;

}

.hero-content p{

font-size:15px;

}

.hero-btn{

display:block;

width:100%;

text-align:center;

}

.quick-links{

margin-top:20px;

}

.quick-card{

padding:25px 15px;

}

.quick-card i{

font-size:36px;

}

.quick-card h4{

font-size:18px;

}

}