.o-hero {
  position: relative;
  overflow-y: hidden;
}
.o-hero__slide {
  position: relative;
}
.o-hero__slide--inner {
  height: 100%;
  min-height: 60rem;
}
.o-hero__slide--media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  object-fit: cover;
}
.o-hero__slide--video {
  height: 100%;
  width: 100%;
  position: relative;
}
.o-hero__slide--video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.o-hero__slide--image {
  width: 100%;
  height: 100%;
  position: relative;
}
.o-hero__slide--image img {
  object-fit: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.o-hero__slide--image.desktop, .o-hero__slide--video.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .o-hero__slide--image.desktop, .o-hero__slide--video.desktop {
    display: block;
  }
}
.o-hero__slide--image.mobile, .o-hero__slide--video.mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .o-hero__slide--image.mobile, .o-hero__slide--video.mobile {
    display: none;
  }
}
.o-hero__slide--overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.o-hero__content {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--layout-site-padding);
  padding-right: var(--layout-site-padding);
  max-width: var(--layout-container-width);
  margin-left: auto;
  margin-right: auto;
}
.o-hero__heading, .o-hero__caption,
.o-hero .a-checkbox__label,
.o-hero .a-input__field,
.o-hero .a-btn--transparent {
  color: inherit;
}
