.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 50px 0 30px;
    display: flex;
}
.breadcrumbs li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}
.breadcrumbs li:after {
    content: "|";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--c-green);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.breadcrumbs li:last-child:after {
    content: none;
}
.breadcrumbs a {
    padding: 1px 10px;
}
.breadcrumbs li:first-child a {
    padding-left: 0;
}
.breadcrumbs a.active {
    font-weight: 700;
}
