.catalogSection{
	margin-top: 40px;
	margin-bottom: 60px;
}
.catalogSection_grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-self: stretch;
}
.catalogSection_grid .item-card{
	height: 100%;
}

.catalogSection_lines{
	display: block;
}

.catalogSection_lines .catalogSection__item{
	margin-bottom: 20px;
}

@media screen and (max-width: 1200px){
	.catalogSection_grid{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 992px){
	.catalogSection_lines{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		align-self: stretch;
	}
	.catalogSection_lines .catalogSection__item{
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px){
	.catalogSection_grid,
	.catalogSection_lines{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 600px){
	.catalogSection{
		margin-top: 20px;
	}
	.catalogSection_grid,
	.catalogSection_lines{
		gap: 4px;
	}
}