/*======================================
Hero Section
======================================*/

.bbt-hero{

    position:relative;

    height:650px;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.bbt-hero-image{

    position:absolute;

    inset:0;

    z-index:1;

}

.bbt-hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.bbt-hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.45) 60%,
        rgba(0,0,0,.20) 100%
    );

    z-index:2;

}

.bbt-hero .bbt-container{

    position:relative;

    z-index:5;

}

.bbt-hero-content{

    max-width:650px;

}

.bbt-badge{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:20px;

    font-weight:600;

}

.bbt-hero-content h1{

    margin-bottom:25px;

}

.bbt-hero-content p{

    color:#ffffff;

    font-size:20px;

    margin-bottom:35px;

}