.inner-banner-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 392px;
    padding: 161px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0;
}
.inner-banner-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(94, 94, 94, 0.00) 75%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.flex-inner-banner-title {
    text-align: center;
}
.flex-inner-banner-title h1 {
    margin-bottom: 0;
}

@media only screen and (max-width: 991px){
    body.menu-open .inner-banner-section::before{
        background: linear-gradient(90deg, #000 0%, rgba(94, 94, 94, 0.00) 150%);
    }
    body.menu-open .menu-toggler{
        opacity: 0.5;
    }
    body.menu-open .menu-toggler.close-btn{
        opacity: 1;
    }
}

@media only screen and (max-width: 767px){
    .inner-banner-section {
        padding: 100px 0;
    }
    .inner-banner-section {
        min-height: 300px;
    }
}