
.eins-modal {
    position: fixed; /* Fijar el modal en la pantalla */
    top: 70px; /* Ajusta la posición verticalmente debajo del navbar */
    left: 50%;
    transform: translate(-50%, 0); /* Centrar horizontalmente */
    align-items: center;
    justify-content: center;
    width: 100vw; /* Que ocupe toda la pantalla */
    height: 100vh; /* Que el modal ocupe toda la altura */
    z-index: 999998;
}

.eins-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw; /* Hasta el 90% del ancho de la pantalla */
    max-width: 1800px; /* Ajusta según el tamaño deseado */
    height: auto;
    z-index: 999999;
    background-color: transparent;
  
}

.eins-modal-preview {
    width: 100%; /* Ocupará todo el ancho del modal */
    display: flex;
    justify-content: center;
    padding-bottom: 460px;
    border-radius: 10px;
    z-index: 10000;
}

.video-player {
    width: 100%; /* Que el video se ajuste al tamaño del contenedor */
    max-width: 1400px; /* Ajusta según el tamaño que necesites */
    height: auto;
    border-radius: 10px;
    z-index: 1000001;
    filter: brightness(1.3) contrast(1.1);
}


.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* Cuando la pantalla es menor a 768px (tablets y celulares) */
@media (max-width: 1000px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
        margin-top: 350px;
        width: 100%; /* Asegura que el video ocupe toda la pantalla */
        max-height: 400px; /* Ajusta según lo que quieras */
    }

    .eins-modal-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70vw; /* Hasta el 90% del ancho de la pantalla */
        max-width: 1400px; /* Ajusta según el tamaño deseado */
        height: auto;
        z-index: 999999;
        background-color: transparent;
      
    }

    .video-player {
        width: 100%; /* Que el video se ajuste al tamaño del contenedor */
        max-width: 1400px; /* Ajusta según el tamaño que necesites */
        height: auto;
        border-radius: 10px;
        z-index: 1000001;
        filter: brightness(1.6) contrast(1.3);    }

    .eins-modal-preview {
        width: 100%; 
        display: flex;
        justify-content: center;
        padding-bottom: 1200px;
        border-radius: 10px;
        z-index: 10000;
    }
}
   





