Hi,
Looks like there is an error in your CSS:
#footer {
width: 935px!important;
margin-left: auto;
margin-right: auto;
padding-top: 0!important;
}
You will need to start by removing width: 935px!important;
As this is forcing the width to always be that wide even on small screens, hence the extra right scrollable space.
Thanks.