
/* Contenedor video */
.preload-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
  }
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  #preloader {
    transition: opacity 1s ease-in-out;
  }
  
  /* Pantalla Movil */
  #video_intro {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
  
  /* Patallas Mayores */
  @media screen and (min-width: 768px) {
    #video_intro {
      width: auto;
      height: 100vh;
      object-fit: contain;
      max-width: 100%;
      max-height: 100%;
      border-radius: 0;
      box-shadow: none;
      
    }
  }
  
  
  
  .video_container video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto -8px;
}


  