/*

   Title: Video
   Author: QBIT
   Date: 25/01/2025

   File path: ../../../../uploads/

*/

/* Video styles */
  #video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  z-index: -9999;
}

#video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}

#video .main {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#video h1 {
  color: #fff;
  line-height: 1.2em;
  font-size: 2.0em;
}

#video .gradient { 
  width: 100%; 
  height: 100%; 
  position: fixed; 
  left: 0; 
  top: 0; 
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1; 
}

/* Media queries */
@media (max-width: 64em) 
{

}