@charset "UTF-8";
.izaje .sec1 {
  position: relative;
  width: 100%;
  text-align: center;
  /* Define un alto fijo para el banner si no quieres que el alto lo dé solo el texto */
  /* Por ejemplo: height: 60vh; o height: 600px; */
  height: 100vh;
  padding: 0;
  overflow: hidden; /* Asegura que no se desborde el video */
}
.izaje .sec1 video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.izaje .sec1 .texto {
  /* Permite que el texto se coloque encima del video */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Asegura que esté por encima del video (el video por defecto tiene z-index 0 o auto) */
  /* Opcional: Centrar el contenido verticalmente y horizontalmente */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Alineación vertical */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Alineación horizontal (si fuera necesario) */
  /* Opcional: Agrega un overlay oscuro para mejorar la legibilidad del texto */
  background-color: rgba(0, 0, 0, 0.4);
}
.izaje .sec1 .texto img {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
}
.izaje .sec1 .texto h1 {
  font-size: 45px !important;
  margin-bottom: 30px;
}
.izaje .sec1 .texto p {
  margin-bottom: 30px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .izaje .sec1 .texto img {
    margin-top: 30px;
  }
  .izaje .sec1 .texto h1 {
    font-size: 35px !important;
    margin-bottom: 30px;
  }
  .izaje .sec1 .texto p br {
    display: none;
  }
}
@media (max-width: 574px) and (min-width: 0px) {
  .izaje .sec1 {
    background-image: url(../img/izaje/tecnocranes-tizaje-header-res.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .izaje .sec1 video {
    display: none;
  }
}