.d-block {
    display: block !important;
}

/* Banner Secton */

.bnr-sec {
    width: 100%;
    background-size: cover;
    padding: 100px 15px 160px;
}

.bnr-bg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 220px;
    z-index: -1;
    background-color: var(--primary);
    inset: 0 0 calc(10px * -1) 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0px), 0 100%);
}

.bnr-bg2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 220px;
    z-index: -1;
    inset: 0 0 calc(50px * -1) 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
    background-color: #000;
}


.bnr-sec .bnr-inr {
    display: flex;
    max-width: 1400px;
    flex-wrap: wrap;    
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}

.bnr-sec .bnr-inr .video {
    flex: 0 1 400px;
}

.bnr-sec .bnr-inr .about {
    --inset: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 500px;
    background-color: #fff;
}

.bnr-sec .bnr-inr .about .header {
    display: flex;
    padding: var(--inset);
    gap: 10px;
    flex-direction: column;
    flex: 1;
}

.btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 24px 30px;
    gap: 20px;
}


.btn-group a{
    padding-left: 20px;
    padding-right: 20px;
}

.bnr-sec .bnr-inr {
    display: flex;
    max-width: 1400px;
    background-color: rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    justify-content: center;
}

.bnr-sec .bnr-inr .video {
    flex: 0 1 400px;
}

.bnr-sec .bnr-inr .video video {
    width: 100%;
}

.bnr-sec .bnr-inr .video video {
    width: 100%;
}


.bnr-sec .bnr-inr .about .header .title {
    font-family: var(--heading-font);
    font-size: 3.125rem;
    font-weight: bold;
}

.bnr-sec .bnr-inr .about .header .subtitle {
    font-family: var(--heading-font);
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #a4a89d;
}

.bnr-sec .bnr-inr .about .group-container {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bnr-sec .bnr-inr .about .group-header {
    /* background-color: rgba(0, 0, 0, 0.9); */
    color: black;
    padding-inline: var(--inset);
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.bnr-sec .bnr-inr .about .item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.bnr-sec .bnr-inr .about .item svg {
    color: var(--secondary);
    flex: 0 0 20px;
}

/* Media Query */
@media(max-width: 1024px){
    .bnr-sec {
        width: 100%;
        background-size: cover;
        padding: 80px 15px 60px;
    }
    
    .bnr-sec .bnr-inr {
        align-items: start;
        background-color: #fff;
    }

    .bnr-sec .bnr-inr .about .header .subtitle {
        font-size: 20px;
    }
}