.CatalogList {
	display: flex;
	flex-flow: row wrap;
	padding-top: 30px;
}
.CatalogList {
	display: flex;
	flex-flow: row wrap;
	padding-top: 30px;
	margin: 0 -15px 60px;
}

.CatalogSection {
	width: 25%;
	padding: 15px;
	box-sizing: border-box;
}

.CatalogSection__img {
	width: 100%;
	padding-top: 100%;
	position: relative;
	color: #fff;
	border-radius: 3px;
	overflow: hidden;
}

.CatalogSection__img img {
	position: absolute;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.CatalogSection__name {
	font-weight: bold;
	text-align: center;
	color: #221F1C;
	margin: 10px 0;
}


.CatalogSection__img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	background: rgba(0,0,0,0.18);
}

.CatalogSection a {
	text-decoration: none;
}

.Catalog .arrow_red {
	width: 22px;
	height: 13px;
	fill: #E53A10;
	stroke: #E53A10;
	margin-bottom: -3px;
}

.CatalogLink {
	color: #2BB3C0;
	text-decoration: none;
	position: absolute;
	top: 15px;
	right: 15px;
}

.CatalogLink:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc( 100% - 27px);
	height: 1px;
	background: #2BB3C0;
}

.CatalogLink:hover {
	color: #221F1C;
}

.CatalogLink:hover:before {
	background: #221F1C;
}

.Catalog .CatalogLink:hover .arrow_red {
	fill: #221F1C;
	stroke: #221F1C;
}

.CatalogSection__count {
	display: inline-block;
	color: #2BB3C0;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	padding: 1px 5px;
	border: 1px solid #2BB3C0;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: bold;
}

@media (max-width: 767px) {
	.CatalogList {
		padding: 0;
	}

	.Catalog > div {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		width: 100%;
		align-items: flex-start;
	}

	.CatalogList {
		width: 100%;
	}

	.CatalogLink {
		order: 2;
		position: relative;
		display: block;
		width: calc(100% - 30px);
		left: auto;
		right: auto;
		color: #fff;
		background: #2BB3C0;
		padding: 15px;
		text-align: center;
		top: auto;
		box-sizing: border-box;
		margin-top: 25px;
		margin-bottom: 30px;
	}

	.CatalogSection {
		width: 50%;
	}
}