.hero {
  height: var(--viewportHeight);
  position: relative;
}
.hero .video-hero {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.hero .video-hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .hero-scroll {
  width: 24px;
  height: 40px;
  border: 1px solid white;
  border-radius: 12px;
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 1;
}
.hero .hero-scroll:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation-name: scroll;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% {
    top: 5px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 15px;
    opacity: 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    border: 30px solid #FFFFFF;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .hero {
    border: 20px solid #FFFFFF;
  }
}
@media (max-width: 767px) {
  .hero {
    border: 10px solid #FFFFFF;
  }
}/*# sourceMappingURL=videoHero.css.map */