sandokan1
Hi
On your site the template.css file appear customized
in template.css file the demo site has this code
#s5_component_wrap_inner {
padding: 18px;
}
On your site it changed with
#s5_component_wrap_inner {
font-size: 1.5em;
line-height: 140%;
padding: 75px;
margin-left: 50px;
margin-right: 50px;
}
It also adding th padding and margin for PC view. If you want to change it for both views, you can reduce the padding and Margin value to lowest and it will show more width.
if you want to apply this only for Mobile view use this code in custom.css file
@media(max-width:468px){
#s5_component_wrap_inner {
padding: 10px;
margin-left:10px;
margin-right:10px;
}
}
Regards