.grid_wrap {
	width: 100%;
	margin: 20px auto;
	position: relative;
	text-align: center;
}

.grid_box {
	position: relative;
	margin: 10px;
	width: 300px;
	display: inline-block;
}
.grid_box_full {
  position: relative;
  margin: 0 1% 20px;
  width: 100%;
}
.view {
	float: left;
	position: relative;
	overflow: hidden;
}

.view img {
	width: 100%;
	display: block;
}

.view:hover {
	background: #000;
}

.view:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
}

.mask {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}

.mask p {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100px;
	height: 50px;
	color: #fff;
	font-size: 2rem;
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.mask:hover p {
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}

.bottom_txt {
	clear: both;
	display: block;
	width: 100%;
	height: 50px;
	margin: 0;
}

.grid_box_txt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2px 5px;
	border-radius: 5px;
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, #0036ff), color-stop(1, #001a9b));
	background: -webkit-linear-gradient(#0036ff, #001a9b);
	background: -moz-linear-gradient(#0036ff, #001a9b);
	background: -o-linear-gradient(#0036ff, #001a9b);
	background: linear-gradient(#0036ff, #001a9b);
	font-size: 1.5rem;
	text-align: center;
}

.grid_box_txt:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}

.grid_box_txt a {
	color: #fff;
	text-decoration: none;
}

.download {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 2px 10px;
	border-radius: 5px;
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, #d20001), color-stop(1, #8f0202));
	background: -webkit-linear-gradient(#d20001, #8f0202);
	background: -moz-linear-gradient(#d20001, #8f0202);
	background: -o-linear-gradient(#d20001, #8f0202);
	background: linear-gradient(#d20001, #8f0202);
	font-size: 1.5rem;
	text-align: center;
}

.download:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}

.download a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 560px) {
	.grid_box {
		margin: 0 auto 30px;
		width: 80%;
	}
	.view {
		float: none;
	}
	.view:hover {
		background: none;
	}
	.view:hover img {
		opacity: 1;
		filter: alpha(opacity=100);
		-moz-opacity: 1;
	}
	.mask p {
		display: none;
	}
	.grid_box_txt {
		font-size: 1.2rem;
	}
	.download {
		font-size: 1.2rem;
	}
}