.inner-banner-section {
    position: relative;
    min-height: 375px;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.inner-banner-section .inner-banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.inner-banner-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inner-banner-section .inner-banner-image::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.60);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.inner-banner-text {
    position: relative;
    width: 100%;
    padding: 77px 0;
}

.inner-banner-section .inner-banner-content * {
    color: var(--white);
}

.inner-banner-section .inner-banner-content ul {
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
}

.inner-banner-section .inner-banner-content ul li {
    margin: 0;
    font-size: 20px;
}

.inner-banner-section .inner-banner-content ul li::before {
    content: "/";
    width: 0;
    height: 0;
    top: 2px;
    left: -5px;
}

.inner-banner-section .inner-banner-content ul li:not(:first-child) {
    padding-left: 8px;
    margin-left: 10px;
}

.inner-banner-section .inner-banner-content ul li:first-child {
    padding-left: 0;
}

.inner-banner-section .inner-banner-content ul li:first-child::before {
    display: none;
}