/* BADAWY NEXUS FOOTER SCROLL REVEAL
   Footer links/cards appear from bottom one by one.
   When scrolling away, they disappear downward again.
*/

footer a,
.footer a,
footer .footer-links a,
.footer .footer-links a,
footer .footer-list li,
.footer .footer-list li,
footer .socials a,
.footer .socials a,
footer .social-icon li,
.footer .social-icon li,
footer .quick-link,
.footer .quick-link,
footer .btn,
.footer .btn {
  will-change: transform, opacity;
}

.bnx-footer-reveal-item {
  opacity: 0 !important;
  transform: translateY(32px) !important;
  transition:
    opacity 680ms cubic-bezier(.2,.8,.2,1),
    transform 680ms cubic-bezier(.2,.8,.2,1),
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease !important;
  transition-delay: var(--bnx-footer-delay, 0ms) !important;
}

.bnx-footer-reveal-item.bnx-footer-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.bnx-footer-reveal-item:not(.bnx-footer-visible) {
  pointer-events: none;
}

/* Keep footer logo smooth too */
footer img,
.footer img {
  transition:
    opacity 680ms cubic-bezier(.2,.8,.2,1),
    transform 680ms cubic-bezier(.2,.8,.2,1) !important;
}

/* Do not hurt accessibility */
@media (prefers-reduced-motion: reduce) {
  .bnx-footer-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}