/* ══════════════════════════════
   FOOTER NEXXUS
══════════════════════════════ */

.nx-footer {
  background: #020617;
  color: #fff;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: 'Inter', sans-serif;
}

.nx-footer .nx-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}


.nx-footer-grid > * {
  align-self: start;
}
.nx-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-self: start;
  justify-content: flex-start ;
  gap: 6px;
  padding-top: 0px;
}
.footer-column .nx-nav-logo {
  display: block;
  margin-bottom: 6px;
}

.footer-column img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: -6px;
  position: relative;
  top: -44px;
}

.nx-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(255,255,255,.75);
  max-width: 280px;
  font-weight: 400;
  position: relative;
  top: -70px;
  text-justify: inter-word;
}



.nx-footer-col h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #3D6FFF;
  margin-bottom: 18px;
  font-weight: 700;
}



.nx-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-footer-col li {
  margin: 0;
}

.nx-footer-col a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.4;
  transition: .2s ease;
}

.nx-footer-col a:hover {
  color: #fff;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 992px) {

  .nx-footer {
    padding: 40px 0 28px;
  }

  .nx-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .nx-footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .nx-footer {
    padding: 36px 0 24px;
  }

  .nx-footer .nx-wrap {
    padding: 0 24px;
  }

  .nx-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column img {
    height: 56px;
    margin-bottom: -30px;
    top: 0;
  }

  .nx-footer-tagline {
    max-width: 320px;
    top: 0;
  }

  .nx-footer-col ul {
    align-items: center;
  }
}


@media (max-width: 480px) {

  .nx-footer {
    padding: 32px 0 20px;
  }

  .footer-column img {
    height: 100px;
  }

  .nx-footer-tagline {
    font-size: .82rem;
  }

  .nx-footer-col a {
    font-size: .84rem;
  }
}