/* Contenedor principal */
.KeD-video-container {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

/* Video de fondo */
.KeD-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70vh;
  object-fit: cover;
  z-index: -1;
  display: block;
}

/* Imagen de fondo (oculta por defecto) */
.KeD-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  background-image: url('../Desing22/Home/PANBTSBloop_HD.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  display: none;
}

/* Capa de contenido */
.KeD-content-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.4);
}

	
	
@media (max-width: 768px) {
.KeD-video-container {
  position: relative;
  width: 100%;
  height: 84vh;
  overflow: hidden;
}
.KeD-video-bg {
    display: none;
  }

  .KeD-image-bg {
    display: block;
  }

  
}

