/*===================================
PAGE BANNER
===================================*/

.page-banner{
    padding:120px 0;
    background:
    linear-gradient(
    rgba(5,63,126,.85),
    rgba(5,63,126,.85)
    ),
    url('../images/bg-img.jpg');

    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-family:'Outfit',sans-serif;
    font-size:60px;
    font-weight:800;
    margin-bottom:15px;
}

.breadcrumb-nav{
    font-size:16px;
}

.breadcrumb-nav a{
    color:#16D3D3;
    text-decoration:none;
}

.breadcrumb-nav span{
    margin:0 8px;
}


/*===================================
COMMON
===================================*/

.section-badge{
    display:inline-block;
    background:#EAFDFC;
    color:#053F7E;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    color:#053F7E;
    margin-bottom:20px;
}

.gallery-text{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.9;
}


/*===================================
GALLERY INTRO
===================================*/

.gallery-intro{
    background:#ffffff;
}


/*===================================
GALLERY SECTION
===================================*/

.gallery-section{
    background:#f8fbff;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    rgba(5,63,126,.15),
    rgba(5,63,126,.85)
    );

    display:flex;
    align-items:flex-end;
    justify-content:flex-start;

    padding:25px;

    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h5{
    color:#fff;
    font-family:'Outfit',sans-serif;
    font-size:24px;
    font-weight:700;
    margin:0;
}


/*===================================
CTA SECTION
===================================*/

.gallery-cta{
    padding:100px 0;
    background:#ffffff;
}

.cta-box{
    background:
    linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );

    padding:70px 50px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    max-width:750px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.9;
    font-size:17px;
}

.appointment-btn{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:#053F7E;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.appointment-btn:hover{
    transform:translateY(-3px);
    color:#053F7E;
}


/*===================================
IMAGE BORDER EFFECT
===================================*/

.gallery-item::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#16D3D3;
    transition:.4s;
}

.gallery-item:hover::after{
    width:100%;
}


/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px){

    .page-banner{
        padding:90px 0;
    }

    .page-banner h1{
        font-size:42px;
    }

    .section-title{
        font-size:36px;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .page-banner h1{
        font-size:32px;
    }

    .section-title{
        font-size:28px;
    }

    .gallery-item img{
        height:260px;
    }

    .gallery-overlay h5{
        font-size:18px;
    }

    .cta-box{
        padding:40px 20px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box p{
        font-size:15px;
    }

}