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

.view-tenth img {
	height: auto;
	/*height: 300px;*/
	vertical-align: middle;
}
.view .mask,.view .content {
	height: auto;
}
.view {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.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 {
	width: auto;
	transition: all 0.7s ease-in-out;
}
.view-tenth .mask {
	transition: all 0.5s linear;
	opacity: 0;
}
.view-tenth h2 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	background: transparent;
	transform: scale(0);
	color: #333;
	transition: all 0.5s linear;
	opacity: 0;
}
.view-tenth p {
	color: #333;
	opacity: 0;
	transform: scale(0);
	transition: all 0.5s linear;
}
.view-tenth a.info {
	opacity: 0;
	transform: scale(0);
	transition: all 0.5s linear;
}
.view-tenth:hover img {
	transform: scale(4);
	opacity: 1;
}
.view-tenth:hover .mask {
	opacity: 1;
}
.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover a.info {
	transform: scale(1);
	opacity: 1;
}

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

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

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