#ws_catalog_brands .brands {
display: grid;
grid-template-rows: repeat(<?=round($cnt/6)?>, 1fr);
grid-auto-flow: column;
}
@media screen and (max-width: 991px){
#ws_catalog_brands .brands {
grid-template-rows: repeat(<?=round($cnt/3)?>, 1fr);
}
}
@media screen and (max-width: 767px){
#ws_catalog_brands .brands {
grid-template-rows: repeat(<?=round($cnt/2)?>, 1fr);
}
}