.bannerOver {
    width: 100%;
    position: relative;
    padding: 10% 0;
}
.bannerOver .imagenBannerOver  {
    width: 100%;
}
.bannerOver .cuadroBannerOver {
    position: absolute;
    top: 0%;
    width: 28%;
    height: 100%;
    padding: 0 60px;
    background-color: #3e9cc0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bannerOver .cuadroDerecha {
    right: 12%;
}
.bannerOver .cuadroIzquierda {
    left: 12%;
}
.bannerOver .cuadroBannerOver .contieneTexto {
    height: fit-content;
}
.bannerOver .cuadroBannerOver .contieneTexto h2 {
    font-size: 1.3rem;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.bannerOver .cuadroBannerOver .contieneTexto h4 {
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2rem;
    padding: 3px 0;
}
.bannerOver .cuadroBannerOver .contieneTexto p {
    font-size: 0.8rem;
    line-height: 1.4rem;
    text-align: justify;
    padding-top: 4px;
}

/* =========================================================================================
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
========================================================================================= */

@media (max-width: 768px) and (orientation: portrait) {

        .bannerOver {
            background-color: #3e9cc0;
            overflow: hidden;
        }
        .bannerOver .cuadroBannerOver {
            position: relative;
            top: auto;
            right: auto;
            width: 100%;
            height: auto;
            padding: 40px;
            color: white;
            display: block;
        }
        .bannerOver .imagenBannerOver {
            width: 200%;
        }
        .bannerOver .imagenOverIzquierda {
            margin-left: -100%;
        }

}