.video-hero,
.image-hero{
  position: relative;
  overflow: hidden;
}

.video-hero__video-wrap:after,
.image-hero__image-wrap:after{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
}

.video-hero__video-wrap:after{
  position: absolute;
}

.video-hero__video-wrap img,
.image-hero__image-wrap img,
.video-hero__video-wrap video{
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  position: absolute;
  height: 100%;
  width: 100%;
}

.container--wide{
  position: absolute;
  z-index: 2;
  transform: translate(-50%);
  height: 100%;
  left: 50%;
}

.video-hero__row,
.image-hero__row{
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.video-hero__scroll-down{
  color: #fff;
  font-size: 70px;
  position: absolute;
  z-index: 2;
  bottom: 38px;
  margin-left: -40px;
  left: 50%;
  cursor: pointer;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.video-hero__content{
  padding: 2rem;
}

.video-hero__content h1,
.video-hero__content h2,
.video-hero__content p{
  color: var(--white);
}

@media (width >= 900px){
  .video-hero__content{
    padding: 1rem;
  }
}