.custom-container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
}

.footer {
  padding: 12px 0;
  border-top: 1px solid rgba(185, 184, 184, 0.853);

  .logo {
    width: 42px;
    height: 42px;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-page-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  column-gap: 24px;
  margin-left: 76px;
}

.footer-email {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(max-width: 640px) {
  .custom-container {
    max-width: 412px !important;
  }

  .footer-inner {
    flex-direction: column;
    row-gap: 24px;
  }
  .footer-page-links {
    flex-direction: column;
    align-items: center;
    row-gap: 18px;
    column-gap: 0;
    padding-left: 0;
  }
}