.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
}
.page-banner.height--small {
  min-height: clamp(280px, 40vh, 480px);
}
.page-banner.height--medium {
  min-height: clamp(360px, 58vh, 780px);
}
.page-banner.height--large {
  min-height: clamp(480px, 85vh, 1080px);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner__bg img,
.page-banner__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-banner__bg--bw img, .page-banner__bg--bw video {
  filter: grayscale(100%);
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(-69.3deg, #0b2938 0%, rgba(21, 64, 87, 0.8) 92%);
}
.page-banner__content {
  position: relative;
  z-index: 6;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.page-banner__title {
  margin-bottom: 1.5rem;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 1;
}
.page-banner__subtitle {
  margin-bottom: 0.75rem;
}
.page-banner__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.page-banner__breadcrumb-item {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(140, 140, 140);
}
.page-banner__breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}
.page-banner__breadcrumb-item a:hover {
  color: #F6F3F0;
}
.page-banner__breadcrumb-item.is--current {
  font-weight: 700;
  color: #F2D67A;
}
.page-banner__breadcrumb-sep {
  color: rgba(140, 140, 140, 0.7);
  font-size: 10px;
}
@media screen and (max-width: 1024px) {
  .page-banner__content {
    padding-bottom: 3rem;
  }
  .page-banner__title {
    font-size: clamp(32px, 5vw, 64px);
  }
}
@media screen and (max-width: 900px) {
  .page-banner__content {
    padding-bottom: 2.5rem;
  }
  .page-banner.height--small {
    min-height: clamp(210px, 30vh, 360px);
  }
  .page-banner.height--medium {
    min-height: clamp(270px, 44vh, 585px);
  }
  .page-banner.height--large {
    min-height: clamp(360px, 64vh, 810px);
  }
}/*# sourceMappingURL=page-banner.css.map */