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

.page-banner{

    position:relative;

    min-height:260px;

    display:flex;

    align-items:center;

    justify-content:center;

    background-image:url("../images/page-banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.page-banner-overlay{

    width:100%;

    padding:90px 0;

    background:linear-gradient(
        rgba(16,24,40,.55),
        rgba(16,24,40,.55)
    );

    text-align:center;

}

.page-banner-title{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:18px;

}

.page-banner-breadcrumb{

    background:transparent;

}

.page-banner-breadcrumb .breadcrumb-item,

.page-banner-breadcrumb .breadcrumb-item a{

    color:rgba(255,255,255,.92);

    text-decoration:none;

    font-weight:600;

}

.page-banner-breadcrumb .breadcrumb-item.active{

    color:#00b49f;

}

.page-banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before{

    color:rgba(255,255,255,.6);

}

@media (max-width:768px){

    .page-banner{

        min-height:190px;

    }

    .page-banner-overlay{

        padding:60px 0;

    }

    .page-banner-title{

        font-size:32px;

    }

}