.bannerTextoIzq {
  width: 100%;
  position: relative;
}

.bannerTextoIzq img {
  width: 100%;
  display: block; /* evita espacios raros debajo de la imagen */
}

.bannerTextoIzq .contieneTextoBanner {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;

  transform: translateY(-50%);

  width: 33%;
  padding: 30px;
}
.bannerTextoIzq .contieneTextoBanner p {
    padding-top: 5px;
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.bannerTextoIzq .contieneTextoBanner #botonPlay {
  width: 50px;
  margin: auto;
}


/* =========================================================================================
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
========================================================================================= */

@media (max-width: 768px) and (orientation: portrait) {

      .bannerTextoIzq {
        overflow: hidden;
      }
      .bannerTextoIzq img {
        width: 150%;
        transform: translateX(-33%);
      }
      .bannerTextoIzq .contieneTextoBanner {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        transform: translateY(0);
        width: 100%;
        background-color: #304b86;
        padding: 30px;
      }
    
}