/* Front Page Overrides*/
.frontpage-heading-xxlarge {
    font-size: 80px;
}

.frontpage-heading-bold {
    font-weight: 700
}

.nb-front-page-hero .hero__media {
  position: relative;
  overflow: hidden;
  height: 500px; /* example */
}

.nb-front-page-hero .hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nb-front-page-hero .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.82) 80%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
