.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  color: var(--on-primary);
  aspect-ratio: 1920/485;
  background: var(--background-secondary);
}
.hero .hero-canvas {
  --on-primary: #FFFFFF;
  --headline-secondary: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: var(--spacing-lg);
  max-width: var(--content-width);
  width: 100%;
  z-index: 1;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  -webkit-transform: translateZ(-1px);
          transform: translateZ(-1px);
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: var(--spacing-lg);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  max-width: 50rem;
}
.hero .hero-canvas .hero-content > * {
  margin: 0;
}
.hero .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero .hero-packshot {
  position: absolute;
  z-index: 2;
  right: 2.5rem;
  bottom: calc(var(--spacing-lg) * -1);
}
.hero .hero-packshot img {
  max-height: clamp(5rem, 22vw, 28rem);
  width: auto;
}
.hero.--packshot .hero-background::after {
  content: "";
  display: block;
  width: clamp(5rem, 20vw, 25rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .hero.--packshot {
    width: 100%;
  }
  .hero.--packshot .gb-inner-section {
    padding: var(--spacing-md) var(--section-inner-padding, 2.5rem);
  }
  .hero.--packshot:not(.--wrap-content) .hero-background::after {
    content: unset;
  }
  .hero.--packshot:not(.--wrap-content) .headlines:first-child {
    padding: 0;
  }
  .hero.--packshot:not(.--wrap-content) .headlines:first-child::before, .hero.--packshot:not(.--wrap-content) .headlines:first-child::after {
    content: unset;
  }
}
@media (max-width: 580px) {
  .hero.--packshot .hero-background {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .hero.--packshot .hero-canvas {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero.--packshot .hero-packshot {
    display: none;
  }
}
.hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero.--video-hero .hero-background::after {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  background: rgba(7, 23, 51, 0.6);
}
.hero.--large {
  aspect-ratio: 1920/800;
}
@media (max-width: 1024px) {
  .hero.--image-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero.--image-hero .hero-background {
    aspect-ratio: 1920/485;
    position: relative;
  }
  .hero.--image-hero.--wrap-content .hero-content {
    max-width: 100%;
    padding: var(--spacing-md) 0;
    background: var(--brand-color);
  }
}
.hero.--wrap-content {
  --on-primary: #ffffff;
}
.hero.--wrap-content .hero-canvas {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.hero.--wrap-content .hero-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: var(--spacing-md);
  max-width: 30rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 61, 164, 0.6);
  backdrop-filter: blur(var(--blur));
}
.hero:not(.--wrap-content) .headlines:first-child {
  --headlines--direction: column-reverse;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(0, 61, 164, 0.6);
  padding: var(--spacing-md);
  min-width: 20rem;
}
.hero:not(.--wrap-content) .headlines:first-child::before {
  backdrop-filter: blur(var(--blur));
  display: block;
  content: "";
  width: 10rem;
  height: 10rem;
  background: rgba(157, 208, 244, 0.6);
  position: absolute;
  right: -5rem;
  top: -5rem;
  z-index: -2;
}
.hero:not(.--wrap-content) .headlines:first-child::after {
  backdrop-filter: blur(var(--blur));
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}/*# sourceMappingURL=hero.css.map */