.gallery {
	background-color: #F8F9FA;
}
.wrap__gallery {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 40%;
	margin-bottom: 50px;
}
.list__gallery {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.list__gallery .row {
	position: relative;
	width: 24%;
	height: 100%;
}
.item__gallery {
	position: relative;
	display: inline-block;
	width: 100%;
	padding-bottom: 2.5%;
}
.item__gallery + .item__gallery {
	padding-top: 2.5%;
	padding-bottom: 0;
}
.item-wrap__gallery {
	pointer-events: none;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.item__gallery .info__gallery {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.item__gallery .info__gallery:after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 30px;
	background-image: linear-gradient(to bottom, transparent 0%, #000 95%, #000 100%);
	left: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}
.item__gallery.hover .info__gallery:after {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .1s ease .2s;
	-moz-transition: all .1s ease .2s;
	-o-transition: all .1s ease .2s;
	transition: all .1s ease .2s;
}
.item__gallery .info__gallery .shade {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: rotate(45deg);
}
.row:nth-child(odd) .item__gallery .info__gallery .shade {
	transform: rotate(-45deg);
}
.item__gallery .info__gallery .shade:before,
.item__gallery .info__gallery .shade:after {
	pointer-events: none;
	content: "";
	position: absolute;
	display: inline-block;
	width: 200%;
	height: 200%;
	background-color: rgba(0,0,0,.3);
	top: 50%;
	left: 50%;
	-webkit-transition: transform .5s ease;
	-moz-transition: transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
}
.item__gallery .info__gallery .shade:before {
	transform: translate(-50%,-150%);
}
.item__gallery .info__gallery .shade:after {
	transform: translate(-50%,50%);
}
.item__gallery.hover .info__gallery .shade:before {
	transform: translate(-50%,-50%);
}
.item__gallery.hover .info__gallery .shade:after {
	transform: translate(-50%,-50%);
}
.item__gallery .info__gallery p {
	position: relative;
	padding: 0 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	font-size: 1.4rem;
	line-height: 2rem;
	color: #fff;
}
.item__gallery.hover .info__gallery p {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .3s ease .2s;
	-moz-transition: all .3s ease .2s;
	-o-transition: all .3s ease .2s;
	transition: all .3s ease .2s;
}
.item__gallery .info__gallery p.name {
	margin-bottom: 18px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 1.6rem;
}
.item__gallery .info__gallery p.price span {
	font-size: 1.15em;
}
.item__gallery .info__gallery .icon {
	margin-top: -3px;
}
.item__gallery .image__gallery {
	width: 100%;
	height: 100%;
}
.item__gallery .image__gallery span {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media all and (max-width:916px) {
	.gallery {
		background-color: #F8F9FA;
	}
}
@media all and (max-width:816px) {
	.wrap__gallery {
		padding-bottom: 40%;
	}
}
@media all and (max-width:716px) {
	.wrap__gallery {
		padding-bottom: 150%;
	}
	.list__gallery .row {
		width: 49%;
		height: 50%;
		padding-bottom: 2%;
	}
	.item__gallery {
		padding-bottom: 2.044%;
	}
	.item__gallery + .item__gallery {
		padding-top: 2.044%;
		padding-bottom: 0;
	}
}