.breadcrumbs {
    display: flex;
    margin: 35px auto;
    font-family: "ClearSans";
    flex-wrap: wrap;
}

.breadrcumbs__link {
    font-size: 14px;
    color: #666;
    position: relative;
    margin-right: 5px;
    margin-bottom: 5px;
}

.breadrcumbs__link::after {
    content: ' ';
    width: 36px;
    height: 8px;
    background: url('./images/right-arrow2.svg') no-repeat;
    background-position: center;
    background-size: 20px;
    display: inline-block;
}

.breadrcumbs__link:hover {
    color: #e20932;
    text-decoration: underline;
}

.breadrcumbs__link--active {
    margin-right: 0;
    text-decoration: underline;
}

.breadrcumbs__link--active:hover {
    color: #666;
    text-decoration: underline;
}
.breadrcumbs__link--active::after{
    content: none;
}