/*=========================================
            ABOUT US
=========================================*/

.bb-about{
    background:#000;
    padding:100px 0;
    overflow:hidden;
}

.bb-about .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================================
            TITLE
=========================================*/

.bb-about-title{
    text-align:center;
    margin-bottom:70px;
}

.bb-about-title span{
    display:inline-block;
    color:#ff5a2f;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.bb-about-title h2{
    color:#fff;
    font-size:54px;
    font-weight:500;
    line-height:1.2;
}

/*=========================================
            LAYOUT
=========================================*/

.bb-about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/*=========================================
            IMAGE
=========================================*/

.bb-about-image{
    flex:1;
}

.bb-about-image img{
    width:100%;
    border-radius:15px;
    display:block;
    transition:.4s;
    box-shadow:0 25px 50px rgba(0,0,0,.45);
}

.bb-about-image img:hover{
    transform:scale(1.03);
}

/*=========================================
            CONTENT
=========================================*/

.bb-about-content{
    flex:1;
}

.bb-about-content p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.bb-about-content strong{
    color:#fff;
}

/*=========================================
            BUTTON
=========================================*/

.bb-about-btn{
    display:inline-block;
    padding:16px 36px;
    background:#ff5a2f;
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.bb-about-btn:hover{
    background:#fff;
    color:#000;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.bb-about{
    padding:80px 0;
}

.bb-about-wrapper{
    flex-direction:column;
    text-align:center;
}

.bb-about-title h2{
    font-size:42px;
}

.bb-about-content p{
    font-size:17px;
}

}

@media(max-width:768px){

.bb-about{
    padding:70px 0;
}

.bb-about .container{
    width:92%;
}

.bb-about-title{
    margin-bottom:45px;
}

.bb-about-title h2{
    font-size:34px;
}

.bb-about-content p{
    font-size:16px;
    line-height:1.8;
}

.bb-about-btn{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.bb-about-title h2{
    font-size:28px;
}

.bb-about-content p{
    font-size:15px;
}

}
/* Heading */

.bb-about-title p{
    max-width:700px;
    margin:20px auto 0;
    color:#bfbfbf;
    line-height:1.8;
}

/* Sub Heading */

.bb-about-content h3{
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

/* Features */

.bb-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    padding:15px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    transition:.3s;
}

.feature:hover{
    border-color:#ff5a2f;
    transform:translateY(-5px);
}

.feature i{
    color:#ff5a2f;
    font-size:22px;
}

/* Stats */

.bb-about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:90px;
}

.stat-box{
    text-align:center;
    background:#111;
    padding:35px 20px;
    border-radius:15px;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    border:1px solid #ff5a2f;
}

.stat-box h3{
    color:#ff5a2f;
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:#d5d5d5;
}

/* Responsive */

@media(max-width:768px){

.bb-about-features{
    grid-template-columns:1fr;
}

.bb-about-stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:480px){

.bb-about-stats{
    grid-template-columns:1fr;
}

.bb-about-content h3{
    font-size:28px;
}

}