/* Video Banner */
.video-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 960px;
    position: relative;
  }
  
  [data-bg-video] {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .video-banner .img-placeholder{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  @media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .video-banner {
      height: 600px;
    }

  }
  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .video-banner {
      height: 700px;
    }
  }

  @media only screen and (max-width: 767px) {
    .video-banner {
      height: 600px;
    }
}