.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 0;
}
.breadcrumb > * {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: #757575;
}
.breadcrumb > * > * {
  display: inline-block;
  color: #ba2836;
  text-transform: uppercase;
}
.breadcrumb > * > :hover,
.breadcrumb > * > :focus {
  color: #ba2836;
  text-decoration: none;
}
.breadcrumb > :nth-child(n + 2):not(.uk-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 5px 0 10px;
  color: #757575;
}
