/*------------------------------------------------------------ 
  Background Video
------------------------------------------------------------*/

.video-section video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .slide::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("https://res.cloudinary.com/govimg/image/upload/v1683217912/6384d12b4d6f005fca104d20/overlay-sm-min.png")
    no-repeat center center/cover;
  opacity: 0.1;
}

.video-section .slide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
