footer {
  background-color: var(--warm);
  padding-block: 28px 16px;
  padding-inline: 20px;
}
footer .footer-container {
  width: 100%;
  max-width: 1204px;
  margin: auto;
  margin-bottom: 62px;
}

footer .footer-link-list {
  width: 100%;
  margin-bottom: 97px;
}

footer .link-list-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

footer .footer-link-list a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 36px;
}

footer .link-list-ul {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 36px;
}

footer .link-list-ul ul {
  padding-left: 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

footer .link-list-ul li {
  list-style: disc;
}

footer .footer-btm-box {
  width: fit-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

footer .footer-btm-box .footer-logo {
  width: 190px;
  display: flex;
}

footer .footer-btm-box .footer-btm-box-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer-btm-box .footer-btm-box-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
footer .footer-btm-box .footer-btm-box-links span {
  font-size: 11px;
  color: var(--white);
  line-height: 1;
  margin-bottom: -3px;
}

footer .copyright {
  font-size: 12px;
  text-align: center;
  color: var(--white);
  font-weight: 400;
}

@media (max-width: 600px) {
  footer .link-list-ul ul {
    grid-template-columns: 1fr;
  }
}
