#instafeed {
	margin: 60px 10%;
	overflow: hidden;
	position: relative;
    display: block;
    clear: both;
}

#instafeed p {
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 30px;
}

#instafeed span {
	font-size: 18px;
	line-height: 24px;
}

#instafeed > a {
	display: inline-block;
	margin: 4px 0;
	padding-top: 25%;
}

#instafeed > a > img {
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	width: calc(100% - 8px);
	height: 100%;
	transition: -webkit-filter 0.6s ease-in;
	transition: filter 0.6s ease-in;
	transition: filter 0.6s ease-in, -webkit-filter 0.6s ease-in;
	position: absolute;
	top: 0;
	left: 4px;
}

#instafeed > a > img:hover {
	-webkit-filter: grayscale(75%);
	        filter: grayscale(75%);
}

.likes {
	position: absolute;
	top: 0;
	left: 4px;
	right: 4px;
	height: 100%;
	z-index: 1;
	text-align: center;
	display: flex;
	color: #fff;
	background: rgba(0,0,0,0.35);
	font-size: 2em;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s 0.1s linear;
	pointer-events: none;
}

.likes::before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 30px;
    height: 30px;
    background: url("../bin/heart.png") no-repeat center;
	background-color: transparent;
    background-size: 100%;
    margin-top: 0px;
}

#instafeed > a:hover .likes {
	opacity: 1;
}