/* =========================
    VIDEO BACKGROUND SECTION
========================= */

.kb-about-section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO */

.about-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY */

.video-overlay{
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.45); */
    z-index: 2;
}

/* CONTENT */

.kb-about-section .container{
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.about-content{
    max-width: 650px;
}

.about-tag{
    display: inline-block;
    color: #d98207;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-content h2{
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-content p{
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-btn{
    display: inline-block;
    padding: 14px 34px;
    background: #0b5d1e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover{
    background: #ff8c00 ;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 992px){

    .kb-about-section{
        min-height: 85vh;
    }

    .about-content h2{
        font-size: 36px;
    }

}

@media(max-width: 768px){

    .kb-about-section{
        min-height: 80vh;
    }

    .about-tag{
        font-size: 15px;
    }

    .about-content h2{
        font-size: 30px;
        margin-bottom: 18px;
    }

    .about-content p{
        font-size: 14px;
        line-height: 1.8;
    }

    .about-btn{
        padding: 12px 28px;
        font-size: 14px;
    }

}