.footer {
  font-family: "Inter";
  padding: 20px 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 24px 0;
  }
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-logo {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans";
  font-size: 17px;
  font-weight: 900;
  line-height: 1.22;
}
@media (min-width: 768px) {
  .footer-logo {
    margin: unset;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
    justify-content: end;
    gap: 52px;
  }
}
@media (min-width: 1200px) {
  .footer-menu {
    gap: 110px;
  }
}
.footer-menu__item {
  color: #4B5162;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}
