#filtre {
	width: 100%;
	margin-bottom: 10px;
}

.view {
	margin-bottom: 10px;
	width: 100%;
  height: 300px;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.view .mask,.view .content {
	width: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

.view-tenth img {
	height: auto;
	width: 100%;
	/*height: 300px;*/
	filter: grayscale(0.8);
}
.view .mask,.view .content {
		height: 340px;
}
.view .mask {
	background-color:rgba(73,0,41,0.60);
}
.view {
	width: 100%;
	height: auto;
}

.view img {
	display: block;
	position: relative;
}

.view p {
	position: relative;
	color: #fff;
	padding: 10px 20px 20px;
	text-align: center;
}
.view a {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	border-radius: 20px;
}
.view a:hover {
   background: #fff;
   color: #000;
	/**/
}


.view-tenth img {
	transition: all 0.5s ease-in-out;
	transform: rotate(10deg) scale(1.5);
}
.view-tenth .mask {
	transition: all 2s linear;
	opacity: 0;
}
.view-tenth h3 {
	border-bottom: 1px solid rgba(255,255,255,0.70);
	background: transparent;
	transform: scale(0);
	color: #FFF;
	transition: all 1s linear;
	opacity: 0;
	background-color:#2598d1;
}
.view-tenth p {
	color: #FFF;
	opacity: 0;
	transform: scale(0);
	transition: all 1.7s linear;
}
.view-tenth a.info {
	opacity: 0;
	transition: all 1s linear;
}

/* comportement alternatif de survol, au click */
.view-tenth::after {
	content " ";
	display: block;
	position: absolute;
	z-index: 30;
	width: 25px;
	height: 25px;
	background-color: red;
	left: 0;
	bottom: 0;
}

.view-tenth:hover img {
	transform: rotate(0deg) scale(1);
	opacity: 1;
	filter: grayscale(0);
}
.view-tenth:hover .mask {
	opacity: 1;
	background-color:rgba(73,0,41,0.60);
}
.view-tenth:hover p,.view-tenth:hover a.info {
	transform: scale(1);
	opacity: 1;
}
.view-tenth:hover h3 {
	background-color:#df0d7b;
	color: #FFF;
}

/*big mobil View*/
@media (min-width: 512px){
	#filtre {
		width: calc(100% - 10px);
	}
	.view-tenth img {
		height: 100%;
		width: 100%;
	}
	.view .mask,.view .content {
		height: 250px;
	}
	.view {
		width: calc(100% - 10px);
		height: 250px;
		vertical-align: middle;
	}
}

/*Tablet View*/
@media (min-width: 768px){
	#filtre {
		width: calc(100% - 15px);
		margin-left: 5px;
	}
	.view {
		width: calc(50% - 10px);
		margin: 0 5px 10px;
		float: left;
	}
}

/*Desktop View*/
@media (min-width: 1024px){
	.view {
		width: calc(33% - 10px);
	}
}
				