.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  color: #ffffff;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #ffffff;
  background: linear-gradient(to bottom, white, #ffffff);
  background-size: 0% 10%;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-position: center bottom;
  transition: all 0.3s ease;
}

.breadcrumbs a:hover {
  background-size: 100% 10%;
}

.breadcrumbs li::after {
  content: "-";
  margin: 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.breadcrumbs li:last-child::after {
  content: "";
}

@media screen and (min-width: 1024px) {
  .breadcrumbs {
    font-size: 16px;
  }

  .breadcrumbs li::after {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .breadcrumbs {
    font-size: 18px;
  }

  .breadcrumbs li::after {
    font-size: 20px;
  }
}
