*, *:before, *:after {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
  border: 0;
}

.video-stage {
  position: relative;
}
.video-stage:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.video-stage .video-stage__video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-stage .video-stage__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B71735;
  text-shadow: 1px 1px 1px #ffffff;
}
@media only screen and (max-width: 576px) {
  .video-stage .video-stage__heading {
    width: 100%;
    text-align: center;
  }
}