/*Contenedor dos columnas*/
.rowTowColumns {
    width: 100%;
    display:flex;
    box-sizing: border-box;
    align-items: stretch;
}
.rowTowColumnsReverse {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: stretch;
    flex-direction: row-reverse;
}
.columnLeft {
    width: 50%;
    left: 0;
    box-sizing: border-box;
}
.columnRight {
    width: 50%;
    right: 0;
    box-sizing: border-box;
}

@media screen and (max-width: 576px) {
    
.rowTowColumns {
    width: 100%;
    display:table;
    clear: both;
    box-sizing: border-box;
    align-items: stretch;
}  
.rowTowColumnsReverse {
    width: 100%;
    display:table;
    clear: both;
    box-sizing: border-box;
    align-items: stretch;
    flex-direction: row-reverse;
}    
.columnLeft {
    width: 100%;
  }
.columnRight {
    width: 100%;
  }
.directionNormalMov{
    flex-direction:row;
}
}


