.masthead {
  position: relative;
  height: 100vh;
  top: 0px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  overflow-anchor: none;
}

.masthead video-js {
  position: absolute;
  left: 80%;
  top: 20%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-80%,-20%);
  -moz-transform: translate(-80%,-20%);
  -ms-transform: translate(-80%,-20%);
  transform: translate(-80%,-20%);
  z-index: 0;
}

@media (min-width: 576px) {
  .masthead video-js {
    left: 100%;
    top: 50%;
    -webkit-transform: translate(-100%,-50%);
    -moz-transform: translate(-100%,-50%);
    -ms-transform: translate(-100%,-50%);
    transform: translate(-100%,-50%);
  }
}

.masthead video-js video {
  cursor: auto;
}

.masthead video-js#vid-masthead-hq {
  z-index: 1;
}

.visible-slow {
  visibility: visible;
  opacity: 1;
  transition: opacity 1.3s linear;
}
.hidden-slow {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1.3s, opacity 1.3s linear;
}

.masthead .gradient-black {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.8) 77%, rgba(0, 0, 0, 0.95) 90%, #000 100%);
  z-index: 2;
}

@media (min-width: 576px) {
  .masthead .gradient-black {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.70) 90%, #000 100%);
  }
}