Thanks @ikaring , what you sent helped me to find the solution.
Here is it.
1. Go to the row you want to swap the content on mobile view and include this class name “row_reverse”
2. Go to customize and include the custom CSS Below
@media (max-width: 767px){
.row_reverse{
display: flex;
flex-wrap: wrap;
flex-direction: column-reverse;
}
}