@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


.breadcrumb{
    background: url(../img/breadcrumb-bg.jpg)no-repeat;
    width: 100%;
    height: 355px;
    position: relative;
    overflow: hidden;
    background-size: cover;
}


.breadcrumb .row{
    height: 100%;
}

.breadcrumb .col-xxl-12{
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.breadcrumb-title h2 span{
    color: #f51017;
}



/* Start Responsive Css Code  */


/********************************************************/
/* xxl devices **********************************/
/***/   
@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .breadcrumb {
        height: 265px;
    }
}

/********************************************************/
/* xl devices **********************************/
/***/ 
@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .breadcrumb-title h2 {
        font-size: 75px;
    }
}


/********************************************************/
/* lg devices **********************************/
/***/  
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    
    .breadcrumb {
        height: 100%;
        padding: 120px 0;
    }

    .breadcrumb-title h2 {
        font-size: 60px;
    }
    
    
}
  
/********************************************************/
/* md devices **********************************/
/********************************************************/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    
    .breadcrumb {
        height: 100%;
        padding: 80px 0;
    }

    .breadcrumb-title h2 {
        font-size: 45px;
        line-height: 1.3;
    }

}
  

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

    .breadcrumb {
        height: 100%;
        padding: 50px 0;
    }

    .breadcrumb-title h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }

}