.catalogSection{
	display: grid;
	grid-template-columns: repeat(4,minmax(100px,1fr));
	grid-gap: 32px;
}


@media screen and (max-width:1449px){
.catalogSection{
	grid-template-columns: repeat(3,minmax(100px,1fr));
}
}
@media screen and (max-width:1199px){

}
@media screen and (max-width:991px){
.catalogSection{
	grid-template-columns: repeat(2,minmax(100px,1fr));
	grid-gap: 20px;
}
}
@media screen and (max-width:767px){

}

@media screen and (max-width:600px){
.catalogSection{
	grid-template-columns: repeat(1,minmax(100px,1fr));
	grid-gap: 15px;
}
}