Hi carine-k
Due to the concept of template, some sections are hidden in small view with this custom css:
.home-feature, .ja-home-2, .bannergroup, #newsticker-block, .t3-spotlight-1, .t3-sl-1, #back-to-top {
display: none;
}
so if you want to show them again, for example, 'home-feature' section, you can override with this:
@media (max-width: 767px) {
.home-feature {
display: block !important;}
}