/*-------------------Breadcrumb-------------------*/
.breadcrumb-wrapper {
    height: 50vh;
    background-size: 130%;
    background-position:center center;
}
.breadcrumbs-inner {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.breadcrumb-wrapper h2 {
    background: var(--theme-color);
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--font-color);
    display: inline-block;
    font-size: 22px;
}
.breadcrumb {
    justify-content: center;
    color: #fff;
}
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb li.active {
    /* color: #fff; */
    color:#ffc107;
}
.breadcrumb li.active::before {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .breadcrumb-wrapper {
        height: 30vh;
        background-size: 130%;
        background-position:center center;
    }
}
/*-------------------Breadcrumb-------------------*/
