/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #071d38;
  margin-top: 3rem;
  padding: 1.2rem 0 .9rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* =========================
   TOP LINKS
========================= */

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1rem;
}

.footer-links a {
  display: inline-block !important;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* =========================
   BOTTOM TEXT
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.35);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

  .footer {
    padding: 1rem 0 .8rem;
  }

  .footer-links {
    gap: .7rem 1rem;
    justify-content: center;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
    padding: 0 .3rem;
  }
}