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

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

.footer-logo {
  filter: invert(1);
}

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

nav.footer-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 20px 50px;
}
nav.footer-navigation ul li a {
  color: #fff;
  font-size: 17px;
  line-height: 108%;
  font-weight: 300;
  transition: all 0.12s ease;
}
nav.footer-navigation ul li a:hover {
  color: #7C979E;
  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 {
    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;
  }
}