.site-footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  z-index: 2;
  position: relative;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.footer-menu li {
  display: flex;
}
.footer-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #797979;
}
@media screen and (max-width: 1200px) {
  .footer-menu {
    max-width: 343px;
    flex-wrap: wrap;
    row-gap: 7px;
    column-gap: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .footer-menu {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
