/* =========================
   Breadcrumb Section
========================= */

.breadcrumb-section {
    padding: 10px 0;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    font-size: 14px;
}

.breadcrumb-item {
    margin: 0px;
    color: #af1717;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: #af1717;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #af1717;
    text-decoration: underline;
}

/* separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: #af1717;
}

/* active item */
.breadcrumb-item.active {
    color: #af1717;
    pointer-events: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
    .breadcrumb-section {
        display: none;
    }
}
