/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #000000;
  color: #ffffff;

  padding: 22px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 180px;

  font-family: "Lato", "Inter", sans-serif;
}

.site-footer p {
  margin: 0;

  font-size: 20px;
  line-height: 1.5;

  color: #ffffff;
}

.site-footer a {
  color: #f5a623;
  text-decoration: none;
  font-weight: 600;

  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 5px;

    padding: 20px 15px;

    text-align: center;
  }

  .site-footer p {
    font-size: 13px;
  }
}
