.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  background: #f7f7f6;
  /* border: 1px solid red; */
}

.footer-wrapper {
  width: 1280px;
  max-width: 1280px;

  /* border: 1px solid green; */
  /* @media (max-width: 768px) {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  } */
}

.footer-content {
  display: flex;
  justify-content: space-between;

  padding: 56px 0px;

  @media (max-width: 768px) {
    align-items: center;
    flex-direction: column;
  }
}

.footer-brand {
  flex: 1;
  max-width: 288px;

  @media (max-width: 768px) {
    display: flex;
    align-items: center;
    flex-direction: column;

    margin-bottom: 4rem;
  }
}

.footer-logo {
  width: 62px;
  height: 56px;
  margin-bottom: 24px;

  @media (max-width: 768px) {
    width: 86px;
    height: 72px;
  }
}

.footer-brand p {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;

  @media (max-width: 768px) {
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 8rem;

  @media (max-width: 768px) {
    gap: 4rem;
    align-items: center;
    flex-direction: column;
  }
}

.footer-col h2 {
  font-weight: 500;
  font-size: 16px;
  color: #000;

  @media (max-width: 768px) {
    text-align: center;
  }
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  max-width: 178px;

  @media (max-width: 768px) {
    text-align: center;
  }
}

.footer-list a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-sep {
  border: 0;
  border-top: 1px solid #d4d6db;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin: 32px 0;

  /* border: 1px solid red; */

  align-self: center;
}

.footer-top img {
  width: 24px;
  height: 24px;
}

.footer-top-wrapper {
  @media (max-width: 768px) {
    display: flex;
    justify-content: center;
  }
}
