.ltorSection {
  display: flex;
}
.rtolSection {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ltorSection > div, .rtolSection > div {
  width: 100%;
}
@media(max-width:767px) {
  .ltorSection, .rtolSection {
    display: block;
  }
}