Sidebar on the wrong side of the page

I just checked your site, if you want to move the sidebar to the left, add this to your CSS.

@media (min-width:992px) {
 .col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9 {
  float:right;
 }
}

enter image description here

In case you don’t know how to add CSS, check this out.