/* Breadcrumbs */

.breadcrumbs-wrapper {
    margin-top: 100px;
    margin-left: 7.5vw;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    list-style-type: none;
    column-gap: 30px;
    padding: 0;
}

.breadcrumbs li {
    position: relative;
    font-size: 17px;
}

.breadcrumbs li::after {
    position: absolute;
    content: '>';
    margin-left: 10px;
}

.breadcrumbs li:last-child::after {
    content: ''; /* No additional character after the last item */
}

.breadcrumb-link {
    position: relative;
    text-decoration: none;
    color: #000;
}

.breadcrumb-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    height: 1px;
    width: 0;
    background-color: #000;
    transition: .2s ease;
}

.breadcrumb-link:hover:after {
    left: 0;
    width: 100%;
}

.breadcrumbs li[aria-current="page"] {
    color: #000;
    pointer-events: none;
    cursor: default;
}

@media only screen and (min-width: 800px) {
    .breadcrumbs-wrapper {
        margin-top: 120px;
    }
}

/* End of Breadcrumbs */