/* Sub Banner */

.sub-banner{
position:relative;
width:100%;
height:250px;
background:url("/assets/images/home/subbanner.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* Overlay */

.sub-banner-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

/* Content */

.sub-banner-content{
position:relative;
z-index:2;
color:#fff;
padding:0 20px;
}

/* Title */

.page-title{
font-size:32px;
font-weight:500;
}

/* Tablet */

@media(max-width:992px){

.page-title{
font-size:34px;
}

.sub-banner{
height:200px;
}

}

/* Mobile */

@media(max-width:600px){

.page-title{
font-size:26px;
}

.sub-banner{
height:200px;
}

}