#instafeed {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 15px;
   	grid-row-gap: 15px;
   	align-items: center;
	margin-bottom: 30px;
}
#instafeed a {
	padding: 0px;
	border: 1px solid #eee;
}
#instafeed img {
		width: 386px;
    height: 386px;
	 object-fit:cover;
}
#instafeed a { display: block; position: relative; }

#instafeed a:after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.5);  opacity: 0; }

#instafeed a:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url(icon-path); opacity: 0; }

#instafeed a:hover:before,
#instafeed a:hover:after { opacity: 1; }
#instafeed img:hover {
    opacity: 1;
}
@media (max-width: 767px) {
	#instafeed {
		grid-template-columns: 1fr 1fr;
		       padding-left: 15px;
    padding-right: 15px;
	}
	#instafeed img {
    width: 186px;
    height: 186px;
    object-fit: cover;
}
}