Hello There,
Thanks for providing the url. To break down your site to a single column when at 960px browser width, please add the following css code in the customizer, Appearance > Customize > Custom > CSS or insert this code in your child theme’s style.css (if you are using a child theme)
@media (max-width: 960px){
.site .x-column {
float: none;
width: 100%;
margin-right: 0;
}
}
Hope this helps. Please let us know how it goes.