.inner-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 66.5px 0;
    margin-bottom: 50px;
    background-color: var(--green);
}

.inner-hero-section .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.inner-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.inner-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.inner-hero-section .hero-content h1 {
    text-transform: capitalize;
}

.inner-hero-section .breadcrumb {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    margin-top: 16px;
}

.inner-hero-section nav.breadcrumb>span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.inner-hero-section .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    text-align: left;
}

.inner-hero-section .breadcrumb .breadcrumb_last {
    font-weight: 600;
    border-bottom: 1px solid var(--white);
    padding-bottom: 7px;
    text-align: left;
}

.inner-hero-section .breadcrumb .breadcrumb-icon {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

@media (min-width: 992px) {
    .inner-hero-section {
        min-height: 230px;
    }
}

@media (max-width: 768px) {
    .inner-hero-section {
        padding: 50px 0;
        margin-bottom: 40px;
    }
    .inner-hero-section .breadcrumb {
        font-size: 14px;
        line-height: 20px;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .inner-hero-section .breadcrumb .breadcrumb_last {
        padding-bottom: 3px;
    }
}

@media (max-width: 574px) {
    .inner-hero-section .breadcrumb .breadcrumb_last {
        text-align: center;
    }
}