.footer {
  border-top: 1px solid black;
  width: 100%;
  height: fit-content;
  display: flex;
  font-size: 12px;
  background-color: #e9e7e7;
padding: 0 1rem;
}

.footer-logo-container {
  width: fit-content;
  height: fit-content;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 20px!important;
  width: auto!important;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.footer-link {
  text-decoration: none;
  color: black;
}

/* Responsive */
@media (max-width: 862px) {
  .footer {
    flex-direction: column;
    padding-top: 1rem;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1;
    width: 100%;
    flex-direction: column;
    padding: 0;
  }

  .footer-right {
    flex-direction: row;
    gap: 1rem;
  }
}
