.lazy img {
	opacity: 0;
}

@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

.fade-in {
   animation: fade-in 3s ease;
}
