.assignment-detail-header {
  /* background-color: #1e3c72; */
  /* background-blend-mode: overlay; */
  color: white;
  padding: 3rem 0;
  position: relative;
  padding-top: 200px;
}
.assignment-detail-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 60, 114, 0.85) 0%,
    rgba(42, 82, 152, 0) 100%
  );
  pointer-events: none;
}
.assignment-detail-header > * {
  position: relative;
  z-index: 1;
}
.assignment-detail-header h1 {
  color: white;
  font-size: 2.5rem;
}
.breadcrumb {
  background-color: transparent;
}
.breadcrumb a {
  color: #f39c12;
}
.breadcrumb-item.active {
  color: #ffffff;
}
.breadcrumb .breadcrumb-item::before {
  color: #ffffff;
}
