.nh-footer {
  background: #fff;
  color: #0f172a;
  padding: 1.5rem 1rem 1.5rem;
}
.nh-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nh-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.nh-footer__brand {
  flex: 0 0 auto;
}
.nh-footer__badge {
  width: 65px;
  height: auto;
  display: block;
}
.nh-footer__columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}
@media (min-width: 640px) {
  .nh-footer__columns {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}
.nh-footer__col h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}
.nh-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nh-footer__col li {
  margin-bottom: .75rem;
}
.nh-footer__col a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.85rem;
}
.nh-footer__col a:hover {
  text-decoration: underline;
}
.nh-footer__divider {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, .3);
  margin: 1.5rem 0;
}
.nh-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6b7280;
}
.nh-footer__payments {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nh-footer__payments img {
  width: 35px;
  height: auto;
  display: block;
}
.nh-footer__social {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.nh-footer__icon {
  width: 18px;
  height: 18px;
}
.nh-footer__social--fb {
  color: #1d4ed8;
}
.nh-footer__social--ig {
  color: #e11d48;
}

@media (max-width: 640px) {
  .nh-footer {
    padding: 1.5rem 1rem 2.5rem;
  }
  .nh-footer__top {
    flex-direction: column;
  }
  .nh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

