.site-footer {
  background-color: var(--color-gray-1);
  padding: 40px 0;
  margin-top: var(--block-spacing);
}
.site-footer > .container {
  display: flex;
  align-items: start;
  gap: 60px;
}

@media screen and (width < 1280px) {
  .site-footer > .container {
    gap: 24px;
  }
}
@media screen and (width < 1024px) {
  .site-footer > .container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
.footer-contact > * {
  color: var(--color-gray-3);
}
.footer-contact a {
  color: var(--color-gray-3);
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: white;
}
.footer-contact > .logo {
  width: 160px;
  margin-bottom: 12px;
}
.footer-contact > .company-name {
  color: white;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.footer-contact > .address,
.footer-contact > .email,
.footer-contact > .phone {
  width: fit-content;
  margin-bottom: 12px;
}
.footer-contact > .phone {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.footer-contact > .designhu {
  margin-top: 4px;
}
.footer-contact > .designhu > a {
  display: inline;
}

@media screen and (width < 1024px) {
  .footer-contact > .logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact > .company-name,
  .footer-contact > .designhu,
  .footer-contact > .copyright {
    text-align: center;
  }
  .footer-contact > .address,
  .footer-contact > .email,
  .footer-contact > .phone {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.footer-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  align-items: start;
  max-width: 650px;
  margin: 0 auto;
}
.footer-list > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}
.footer-list > div > * {
  color: white;
  transition: color 0.3s;
}
.footer-list > div > *:hover {
  color: var(--color-secondary-1);
}
.footer-list > div > *:first-child {
  color: var(--color-secondary-light);
  font-weight: 600;
  margin-bottom: 8px;
}

@media screen and (width < 1280px) {
  .footer-list {
    gap: 24px;
  }
}
@media screen and (width < 768px) {
  .footer-list {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (width < 576px) {
  .footer-list {
    grid-template-columns: 100%;
    margin: 0;
  }
}
.svg-clipPath-container {
  height: 0;
  overflow: hidden;
}