#breadcrumbs {
    text-transform: uppercase;
}
#breadcrumbs ol {
    list-style: none;
    display: flex;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 0;
    margin: 0 0 10px 0;
}
#breadcrumbs li {
    float: left;
    padding: 10px 0 2px 0;
    margin: 0;

}
#breadcrumbs li.active {
    font-weight: normal;
}
#breadcrumbs li:before {
    content: ">";
    font-weight: normal;
    display: inline-block;
    margin: 0 5px;
}
#breadcrumbs li:first-child:before {
    content: "";
    /*background: url(../img/home-icon.png) no-repeat left;*/
    display: inline;
    width: 10px;
    height: 10px;
    float: left;
    position: relative;
    bottom: -3px;

}

@media screen AND (max-width: 768px){
    .section-silver #breadcrumbs,
    .section-dark #breadcrumbs{
        display: none;
    }
}