Give the Row that you want to flip the columns on the class 'flip' then use this css:
/***[Switch column order on mobile]***/
@media only screen and (max-width: 980px) {
.flip {
display: -webkit-flex;
-webkit-flex-direction: column-reverse;
display: flex;
flex-direction: column-reverse !important;}
}