/* =========================================================
   PRYSME FOOTER
========================================================= */

.footer {
  margin-top: 8rem;

  padding:
    6rem 3rem 3rem;

  border-top:
    1px solid rgba(255,255,255,0.05);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.018),
      rgba(255,255,255,0.008)
    );
}

.footer-container {
  width: 100%;
  max-width: 1400px;

  margin: auto;

  display: flex;

  justify-content: space-between;

  gap: 5rem;

  flex-wrap: wrap;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand img {
  width: 52px;

  margin-bottom: 1.7rem;

  filter:
    drop-shadow(
      0 0 18px rgba(194,24,91,0.22)
    );
}

.footer-brand p {
  color:
    rgba(255,255,255,0.62);

  line-height: 1.9;

  font-size: 0.98rem;
}

.footer-links {
  display: flex;

  gap: 5rem;

  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 1.4rem;

  color: white;

  font-family: 'Montserrat', sans-serif;

  font-size: 0.82rem;

  font-weight: 600;

  letter-spacing: 0.14rem;

  text-transform: uppercase;
}

.footer-column a {
  display: block;

  margin-bottom: 1rem;

  text-decoration: none;

  color:
    rgba(255,255,255,0.58);

  transition: 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  width: 100%;

  margin-top: 5rem;

  padding-top: 2rem;

  border-top:
    1px solid rgba(255,255,255,0.05);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;
}

.footer-bottom p {
  color:
    rgba(255,255,255,0.42);

  font-size: 0.85rem;
}

@media (max-width: 768px) {

  .footer {
    padding:
      4.5rem 1.5rem 2rem;
  }

  .footer-container {
    gap: 3rem;
  }

  .footer-links {
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}