.new-breadcrumb {
    font-family: 'Source Sans Pro', sans-serif;
    color: #BBC4CD;
    padding: 12px 0;
    padding-bottom: 30px;
    margin-top: 15px;
}

.bx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.bx-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0px;
}

.bx-breadcrumb-item a {
    color: #BBC4CD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bx-breadcrumb-item a:hover {
    text-decoration: underline;
}

.bx-breadcrumb-item span {
    color: #BBC4CD;
}

/* Стили для разделителя (кружок) */
.bx-breadcrumb-item .fa-angle-right {
    display: none; /* Скрываем стандартный разделитель */
}

.bx-breadcrumb-item:not(:first-child)::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #BBC4CD;
    border-radius: 50%;
    margin: 0 10px 0 5px;
}

/* Для последнего элемента убираем разделитель */
.bx-breadcrumb-item:last-child::before {
    display: none;
}