.dpx-animate-enabled [data-dpx-animate] {
  opacity: 0;
}
@media (prefers-reduced-motion) {
  .dpx-animate-enabled [data-dpx-animate] {
    animation: none !important;
    opacity: 1 !important;
  }
}
.no-js .dpx-animate-enabled [data-dpx-animate] {
  animation: none !important;
  opacity: 1 !important;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dpx-animate-enabled [data-dpx-animate=""].dpx-animate-in,
.dpx-animate-enabled .fade-in.dpx-animate-in {
  animation: fade-in calc(var(--aos-animate-duration, 1s) * 0.8) 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}