.contieneMitades {
    width: 100%;
    display: flex;
}
.contieneMitades .mitad {
    width: 50%;
}
.contieneMitades .mitad img {
    width: 100%;
}



/* =========================================================================================
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
========================================================================================= */

@media (max-width: 768px) and (orientation: portrait) {

    .contieneMitades {
        width: 100%;
        display: block;
    }
    .contieneMitades .mitad {
        width: 100%;
    }


}