.bannerTextoDer {
  width: 100%;
  position: relative;
}

.bannerTextoDer img {
  width: 100%;
  display: block;
}

.bannerTextoDer .contieneTextoBanner {
  position: absolute;
  top: 50%;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
  width: 33%;
  padding: 30px;
}
.bannerTextoDer .contieneTextoBanner p {
    padding-top: 5px;
    font-size: 0.9rem;
    line-height: 1.1rem;
}
.bannerTextoDer .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) {

    .bannerTextoDer {
      overflow: hidden;
    }
    .bannerTextoDer img {
      width: 150%;
    }
    .bannerTextoDer .contieneTextoBanner {
      position: relative;
      top: auto;
      right: auto;
      text-align: center;
      transform: translateY(0);
      width: 100%;
      background-color: #304b86;
      padding: 30px;
    }
}