.banner-sec {
    padding: 0;
    background: linear-gradient(to bottom, #0D174A, #0749C2);
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-sec::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(180deg, rgba(13, 23, 74, 20%) 0%, rgba(7, 73, 194, 20%) 100%); */
    background-image: url(../img/inner-page-banner/banner-light-red-overlay.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 2;
}
.banner-sec .bg-img{
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.banner-sec .bg-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/inner-page-banner/line-and-grid-overlay.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 3;
}

.banner-sec .container{
    position: relative;
    z-index: 5;
    color:#fff;
    opacity: 1;
    padding-top: 50px;
}


.banner-content .b_sub-header{
    font-family: var(--font-Inter);
    color:#A9AAE0;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
}
.banner-content .b_header{
    font-family: var(--font-Antonio);
    color:var(--color-white);
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 400;
}
.banner-content .parah p{
    color:#fff;
    font-family: var(--font-Inter);
    font-size: 16px;

}


.inner-common-heading .sub-heading{
    color:var(--color-parah);
    font-size: 16px;
    line-height: 21.6px;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    display: inline-block;
}
.inner-common-heading .sub-heading::after{
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    border: 2px solid #FF3838;
    transform: skewX(344deg) skewY(362deg);
    border-top: transparent;
    border-bottom: transparent;
    left: 7px;
    top: 0;
}
.inner-common-heading .main-heading{
    color: var(--color-primary-blue);
    font-size: 46px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.inner-common-heading.white *{
    color:var(--color-white) !important;
}
@media(max-width:767px){
    .banner-content .b_header{
        font-size: 35px;
    }
    .inner-common-heading .sub-heading{
        font-size: 14px;
    }
    .inner-common-heading .main-heading {
        font-size: 36px;
    }
    
}
