.gallery {
	list-style-type: none;
	overflow: hidden;
	width: 100%;
}

.gallery {
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

.gallery .col-lg-3 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.gallery div img {
	width: 100%;
	height: 30vh;
	object-fit: cover;
	-moz-border-radius: 0px;
	border-radius: 0px;
	transition-duration: 0.3s;
}


#content .wrapper {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}

.gallery a {
	position: relative;
	text-align: center;
	background: #000;
	display: inline-block;
	width: 100%;
}

.gallery a:hover img {
	opacity: 0.2;
}

.gallery a:hover i {
	top: 50%;
	opacity: 1;
}

.gallery a i {
	position: absolute;
	left: 50%;
	margin-left: -13px;
	top: 40%;
	opacity: 0;
	margin-top: -13px;
	z-index: 10;
	font-size: 24px;
	color: #fff;
	transition-duration: 0.3s;
}