/* Navigation related breakpoints */
/* Grid related breakpoints */
.video-hero {
  position: relative;
  padding: var(--sp0-5);
  background-color: black;
}
@media (min-width: 21.875rem) {
  .video-hero {
    padding: var(--sp1);
  }
}
@media (min-width: 25rem) {
  .video-hero {
    padding: var(--sp2);
  }
}
@media (min-width: 43.75rem) {
  .video-hero {
    display: flex;
    align-items: center;
    height: 70vh;
    min-height: 35rem;
    padding: 0;
    background-color: transparent;
  }
}
.video-hero .video-hero__video-container {
  display: none;
}
@media (min-width: 43.75rem) {
  .video-hero .video-hero__video-container {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
    height: 100%;
    max-width: 125rem;
  }
}
.video-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero--employment .video-hero__video-container {
  display: flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  aspect-ratio: 16/9;
}

.video-hero__mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 43.75rem) {
  .video-hero__mobile-bg {
    display: none;
  }
}

.video-hero__inner {
  padding: 2.5rem 0;
}

@media (min-width: 68.75rem) {
  .video-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.video-hero__title {
  display: none;
}
@media (min-width: 68.75rem) {
  .video-hero__title {
    position: relative;
    z-index: 2;
    display: block;
    color: white;
    font-size: 4.375rem;
    text-shadow: 0.1875rem 0.1875rem 0.1875rem black;
  }
}

.video-hero__button {
  position: absolute;
  z-index: 2;
  top: 0.625rem;
  left: 0.625rem;
  height: 3.125rem;
  width: 3.125rem;
  background: transparent;
  border-radius: 50%;
  border: solid 2px transparent;
  text-indent: -62.4375rem;
  overflow: hidden;
  transition: all 0.2s;
}
@media (min-width: 62.5rem) {
  .video-hero__button {
    top: auto;
    left: auto;
    bottom: 0.625rem;
    right: 0.625rem;
  }
}
.video-hero__button:hover, .video-hero__button:focus {
  border-color: white;
}
.video-hero__button[aria-pressed=true]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  margin-left: 1px;
  border-left: solid 15px white;
  border-top: solid 10px transparent;
  border-bottom: solid 10px transparent;
}
.video-hero__button[aria-pressed=false]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  transform: translate(-50%, -50%);
  border-left: solid 4px white;
  border-right: solid 4px white;
}