.collection_bloc_wrapp {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 39px;
}
.collection_bloc_wrapp .collection_item {
	width: 32%;
	position: relative;
	margin-bottom: 2%;
}
.collection_bloc_wrapp .collection_item a{
/*	width: 100%;
	display: block;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;*/
}
.collection_title {
	color: #FFF;
	font-family: Yanone Kaffeesatz;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 1.44px;
	position: absolute;
	top: 10%;
	left: 10%;
}
.count_elem_collection {
	color: #FFF;
	font-family: Fira Sans;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.72px;
	position: absolute;
	top: 27%;
	left: 10%;
	opacity: 0;
}
.collection_item img {
	border-radius: 20px;
}
.collection_item:hover img{
	filter: brightness(61%);
}
.collection_item:hover .count_elem_collection{
	opacity: 1;
}
@media screen and (max-width: 1200px){
	.count_elem_collection{
		top: 84px;
	}
}
@media screen and (max-width: 990px){
	.count_elem_collection{
		top: 81px;
	}
}
@media screen and (max-width: 768px){
	.collection_title{
		font-size: 30px;
	}
	.count_elem_collection{
		font-size: 16px;
		top: 60px;
	}
}
@media screen and (max-width: 600px){
	.collection_bloc_wrapp .collection_item {
		width: 49%;
	}
	.collection_title {
	  font-size: 25px;
	}
	.collection_bloc_wrapp {
		margin-top: 20px;
	}

}