* {
	margin: 0;
	padding: 0;
}
#instafeed {
	width: 100%;
}
.insta_gallery {
    display: flex;
    flex-wrap: wrap;
	list-style: none;
	margin-bottom: 20px;
}
.insta_gallery_item {
	width: 23.2%;
	padding: 0 2.4% 2.4% 0;
	list-style: none;
}
.insta_gallery_item:nth-of-type(4n) {
	padding-right: 0;
}
a.insta_link {
    display: block;
    position: relative;
}
.insta_gallery_item img {
	max-width: 100%;
    height: auto;
	display: block;
}
a.insta_link,
a.insta_link img,
a.insta_link:before {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a.insta_link:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	filter: alpha(opacity=70);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
a.insta_link:before {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	margin: auto;
	opacity: 0;
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	filter: alpha(opacity=0);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	text-align: center;
	z-index: 2;
	width: 28px; height: 28px;
	line-height: 28px;
	content: "";
	background: url(instagram.png) center center no-repeat;
	background-size:28px 28px;
}
a.insta_link:hover:before {
	opacity: 1;
	-moz-opacity: 1.0;
	-khtml-opacity: 1.0;
	filter: alpha(opacity=100);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}