header.page-header ~ .breadcrumbs {
  background: none;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1800px) {
  header.page-header ~ .breadcrumbs {
    width: 1140px;
  }
}
@media (min-width: 1140px) and (max-width: 1799px) {
  header.page-header ~ .breadcrumbs {
    width: 1140px;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  header.page-header ~ .breadcrumbs {
    width: calc(100vw - (10px * 2));
  }
}
@media (min-width: 900px) and (max-width: 1139px) {
  header.page-header ~ .breadcrumbs {
    width: 900px;
  }
}
@media (max-width: 599px) {
  header.page-header ~ .breadcrumbs {
    width: 90%;
  }
}
header.page-header ~ .breadcrumbs ul.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: flex-start;
  align-items: center;
}
header.page-header ~ .breadcrumbs ul.items li.item {
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--colour-six);
}
header.page-header ~ .breadcrumbs ul.items li.item a {
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--colour-six);
}
header.page-header ~ .breadcrumbs ul.items li.item:after {
  height: 1rem;
  width: 1rem;
  content: "";
  position: relative;
  mask: url('../images/feather/chevron-right.svg') no-repeat 100% 100%;
  mask-size: cover;
  background-color: var(--colour-six);
  display: inline-block;
  margin: 0 5px;
  top: 50%;
}
header.page-header ~ .breadcrumbs ul.items li.item:last-of-type strong {
  font-weight: 400;
}
header.page-header ~ .breadcrumbs ul.items li.item:last-of-type:after {
  display: none;
}
