/* ZLS: keep the full main navigation (through Contact Us) on one line on desktop */
@media (min-width: 992px) {
  .header-content-layout,
  .main-menu .container {
    max-width: 1600px;
  }
  .navigation .gva_menu > li > a {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navigation .gva_menu > li > a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }
}

/* ZLS: the breadcrumb banner text is always white (theme default), but the
   background photo isn't always dark enough for that to stay readable.
   A permanent dark scrim keeps it legible regardless of which photo is
   used, instead of relying on picking only very dark images. */
.breadcrumb-style.gva-parallax-background {
  position: relative;
}
.breadcrumb-style.gva-parallax-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 58, 0.6);
  z-index: 0;
}
.breadcrumb-style.gva-parallax-background > .container,
.breadcrumb-style.gva-parallax-background > .gva-parallax-inner {
  position: relative;
  z-index: 1;
}
