Hi Adi
There are 2 problems on mobile.
1. You have an image that make your site broken in mobile. You can see the attached image: "mobile-1.png". To fix the problem, you can remove the image or add class to hide it on mobile
<p class="hidden-xs">
2. The header block has issue also. Please check the attached image "mobile-2.png". By default, the row style is
.row {
margin-left: -15px;
margin-right: -15px;
}
To make it good in mobile, please change to:
.row {
margin-left: 0;
margin-right: 0;
}
Gardner.