.catalog-section-list{
	display: flex;
	flex-wrap: wrap;
	grid-gap: 20px;
}
.section-item{
	display: block;
	background: #FFFFFF;
	box-shadow: 4px 4px 10px rgba(200, 173, 155, 0.25);
	border-radius: 15px;
	padding: 25px;
	margin-top: 20px;
	width: calc(25% - 15px);
	text-decoration: none;
}
.section-item_img img{
	width: 100%;
	height: 100%;
}
.section-item_name{
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #5C4D48;
	margin: 10px 0;
	text-align: center;
}
.section-item_desc{
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #73675E;
}
.hd-type{
	margin: 20px 0;
}
.materials{
	padding-bottom: 40px;
}
@media(max-width:1120px){
	.section-item{
		width: calc(33.333% - 15px);
	}
}
@media(max-width:780px){
	.section-item{
		width: calc(50% - 15px);
	}
}
@media(max-width:500px){
	.section-item{
		width: 100%;
	}
}