.breadcrumbs {
    position: relative;
    margin-top: 2%;
    margin-bottom: 2%;
    z-index: 2;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.5em;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(107, 114, 128, 1);
    vertical-align: middle;
}

.breadcrumbs li a {
    color: rgba(107, 114, 128, 1);
    vertical-align: top;
}

.breadcrumbs li::after {
    content: "/";
}

.breadcrumbs li:last-child::after {
    content: "";
}