.page-header-banner {
  position: relative;
  width: 100%;
  min-height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #211c34;
}
.page-header-banner .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(var(--blur-amount, 10px));
  transform: scale(1.1);
  z-index: 1;
}
.page-header-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color, rgb(33, 28, 52));
  opacity: var(--overlay-opacity, 0.6);
  z-index: 2;
}
.page-header-banner .banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.page-header-banner .banner-breadcrumb {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 15px;
  margin: 0 auto;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: calc(100% - 110px);
  width: 100%;
}
.page-header-banner .banner-breadcrumb::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -50vw;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.page-header-banner .banner-breadcrumb .breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.page-header-banner .banner-breadcrumb .breadcrumb-link:hover {
  opacity: 0.8;
}
.page-header-banner .banner-breadcrumb .breadcrumb-separator {
  color: #ffffff;
  opacity: 0.7;
  font-size: 12px;
}
.page-header-banner .banner-breadcrumb .breadcrumb-current {
  color: #ffffff;
  opacity: .4;
}
.page-header-banner .banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page-header-banner .banner-title {
  display: block;
  color: rgb(255, 255, 255);
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40.5px, 2.5vw + 32.5px, 50px);
  font-weight: 400;
  line-height: clamp(44.55px, 2.75vw + 35.75px, 55px);
  height: auto;
  margin: 0;
  padding: 0.3125rem 1.25rem 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .page-header-banner .banner-breadcrumb {
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }
  .page-header-banner .banner-title {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .page-header-banner .banner-breadcrumb {
    font-size: 12px;
    margin-bottom: 0;
  }
}