.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 4rem 3rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.site-footer__logo img {
  width: 110px;
  height: auto;
  display: block;
}

.site-footer__menus {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__menu a,
.site-footer__person p,
.site-footer__bottom p,
.site-footer__bottom a {
  color: var(--color-text);
  font-size: var(--fs-s);
  font-weight: var(--fw-light);
  text-decoration: none;
  margin: 0;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__person {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.site-footer__icons {
  display: flex;
  gap: 0.45rem;
}

.site-footer__icons img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.site-footer__bottom {
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__bottom a:hover,
.site-footer__menu a:hover {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .site-footer {
    padding: 4rem 1.5rem 2rem;
  }

  .site-footer__top,
  .site-footer__menus,
  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__menus {
    gap: 2rem;
  }

  .site-footer__bottom {
    margin-top: 4rem;
  }
}