.dn-img-reveal img {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .dn-img-reveal img {
    transform: translateY(20px) scale(1.05);
  }
}

.dn-img-reveal.dn-img-revealed img {
  animation: lazyanimation 0.5s linear forwards;
}

@media screen and (max-width: 767px) {
  .dn-img-reveal.dn-img-revealed img {
    opacity: 1;
    transition: opacity 700ms ease-out;
  }
}
