How to remove padding from left&right side

Instead of setting up margin/padding.
Try setting up max-width of full-container a <div> next to site-main:

body.responsive.layout-full #page-wrapper .full-container {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

You can change max-width to your desired percentage value.