/* SIMPLE UNIVERSAL VIDEO FIX */

.video-section video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%; /* main fix for desktop text cut */
}

/* Make sure parent is reference */
.video-section{
  position: relative;
}

/* Loader container - full overlay */
.video-loader{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  z-index: 3;
  pointer-events: none;
}

/* Loader image size */
.video-loader img{
  width: 140px;
  height: auto;
  display: block;
}


/* Tablet */
@media (max-width:1024px){
  .video-section video{
    object-position: center 55%;
  }
}

/* Mobile */
@media (max-width:767px){
  .video-section video{
    object-position: center 50%;
  }
}



@media (max-width:767px){
  .video-loader img{
    width:100px;
    max-width:100px;
  }
}
