Hi there,
Thanks for writing in! Please add the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:
@media (min-width: 768px) and (max-width: 1024px) {
.vc_col-sm-2 {
width: 32.666667% !important;
}
}
@media screen and (max-width: 767px){
.vc_col-sm-2 {
width: 49.666667% !important;
float: left !important;
}
}
@media screen and (max-width: 479px){
.vc_col-sm-2 {
width: 100% !important;
float: none !important;
}
}
Let us know how this goes!