.innerbanner-section {
    margin: 0;
    padding: 120px 0;
    min-height: 522px;
    display: flex;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.innerbanner-section:before {
    content: "";
    display: block;
    background: #0a0802;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.innerbanner-section .innerbanner-content-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.innerbanner-section .innerbanner-content-row .innerbanner-title {
    width: 58%;
}
.innerbanner-section .innerbanner-content-row .innerbanner-content {
    width: 31%;
    padding-left: 20px;
    border-left: 5px solid var(--text-color);
}

.innerbanner-title h1 {
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    list-style-type: none;
    position: relative;
}

.breadcrumb li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
}

.breadcrumb li:not(:last-child):before {
    content: "|";
    display: block;
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
}
.breadcrumb li a {
    color: var(--yellow);
}
@media only screen and (max-width:1199px){
    .innerbanner-section {
        padding: 100px 0;
    }
    .innerbanner-section .innerbanner-content-row .innerbanner-content {
        width: 35%;
    }
}
@media only screen and (max-width:1199px){
     .innerbanner-section {
        padding: 80px 0;
        min-height: 480px;
    }
    .innerbanner-section .innerbanner-content-row .innerbanner-content {
        width: 39%;
    }
}
@media only screen and (max-width:991px){
     .innerbanner-section {
        padding: 60px 0;
        min-height: 440px;
    }

    .innerbanner-section .innerbanner-content-row .innerbanner-title {
        width: 100%;
    }
    .innerbanner-section .innerbanner-content-row .innerbanner-content {
        width: 100%;
        padding-left: 0;
        border-left: 0;
        margin-top: 40px;
    }
}
@media only screen and (max-width:767px){
    .innerbanner-section {
        padding: 40px 0;
    }
}