/*--------------------------------------------------------------
# HERO VIDEO
--------------------------------------------------------------*/
.hero-video {
  height: 100%;
  background-color: #333;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;
}
video{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-sizing: border-box;
}
.video-cover{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  background-color: rgba(0,0,0,.2)
}