footer.site-footer {
  margin-top: auto;
  background-color: #151518;
  padding: 47px 40px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 95px 0;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
}
.footer-logo .site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav.footer-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 20px 50px;
}
nav.footer-navigation ul li {
  display: flex;
}
nav.footer-navigation ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.12s ease;
}
nav.footer-navigation ul li a:hover {
  color: var(--accent);
  transition: all 0.12s ease;
}

@media screen and (max-width: 1023px) {
  nav.footer-navigation ul {
    gap: 20px 25px;
  }
  nav.footer-navigation ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  footer.site-footer {
    padding: 47px 30px;
  }
  .footer-wrapper {
    gap: 50px 0;
  }
}
@media screen and (max-width: 580px) {
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  nav.footer-navigation ul {
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
  }
}