.hero {
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  min-height: 600px;
}
.hero.with-gradient .hero__media::after {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.hero.with-separation {
  margin-bottom: var(--size-8);
}
@media (min-width: 992px) {
  .hero.with-separation {
    margin-bottom: var(--size-10);
  }
}
.hero .hero__media--is-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.hero .hero__media--is-video .hero__video {
  display: none;
}
.hero .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.hero .hero__image--is-mobile {
  display: block;
}
.hero .hero__video {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  transform: translateZ(0);
}
.hero .hero__video::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.hero .hero__video iframe,
.hero .hero__video object,
.hero .hero__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .hero__content {
  position: relative;
  z-index: 1;
  max-width: 73.125rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding-top: 60px;
  padding-bottom: 25px;
}
@media (max-width: 73.125rem) {
  .hero .hero__content {
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.hero .hero__content-inner {
  max-width: 880px;
  width: 100%;
}
.hero .hero__content-header {
  margin-bottom: var(--size-4);
  color: var(--color-white);
}
.hero .hero__content-caption {
  color: var(--color-navy);
  font-family: var(--font-sans);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin: 0 0 var(--size-4);
  text-rendering: optimizeLegibility;
  font-size: var(--scale-2);
  line-height: var(--line-xs);
  font-weight: 500;
  margin-bottom: var(--size-6);
  color: var(--color-white);
}
@media print {
  .hero .hero__content-caption {
    orphans: 3;
    page-break-after: avoid;
    widows: 3;
  }
  .hero .hero__content-caption::after {
    display: inline-block;
  }
}
.hero .hero__content-caption a {
  color: inherit;
  font-weight: inherit;
}
@media (min-width: 576px) {
  .hero .hero__content-caption {
    font-size: var(--scale-3);
  }
}
.hero .button {
  display: inline-flex;
  justify-content: center;
  width: auto;
  margin-right: 16px;
  margin-bottom: 10px;
}
.hero .button:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .hero {
    height: 600px;
  }
  .hero .hero__content {
    padding-top: 50px;
  }
  .hero .hero__image--is-mobile {
    display: none;
  }
  .hero .hero__media--is-video .hero__video {
    display: block;
  }
}