.video-container #videoHeader{
  width: 100%;
  height: 60vh;
  position: relative;
}

.video-container video{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-container{
  position: relative;
}

#videoHeader::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.video-header-title{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.fullscreen-image{
  position: relative;
}

.fullscreen-image::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.2;
}

@media(max-width: 991px){
  .video-container #videoHeader{
    height: 40vh;
  }
  
  .video-header-title{
    width: 100%;
    text-align: center;
  }
}