.flex-footer {
  display: flex;
  flex-direction: column-reverse;
}

@media only screen and (min-width: 991px) {
  .flex-footer {
    flex-direction: row;
    justify-content: space-between;

    gap: 20px;
  }
}

.footer .footer-logo {
  display: none;
}

.footer .footer-info {
  margin-bottom: 0;
}

@media only screen and (min-width: 991px) {
  .footer .footer-logo {
    display: block;
    margin-bottom: 1em;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer .footer-info {
    max-width: 600px;
  }

  .footer-nav p {
    text-align: end;
  }
}

.footer-nav .footer-logo {
  display: block;
  margin-bottom: 1em;
}

.footer-nav .footer-logo img {
  height: 50px;
}

.footer-nav .footer-nav-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 1em;
}

.flex-footer .footer-nav-menu {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.flex-footer .footer-nav-menu.footer-nav-menu-desktop {
  display: none;
}

.flex-footer .footer-nav-menu.footer-nav-menu-mobile {
  display: flex;
  margin-top: 1rem;
  justify-content: flex-start;
}

@media only screen and (min-width: 991px) {
  .footer-nav {
    margin-bottom: 0;
  }

  .footer-nav .footer-logo {
    display: none;
  }

  .footer-nav .footer-nav-socials {
    justify-content: flex-end;
    gap: 50px;
    margin-right: 16px;
  }

  .flex-footer .footer-nav-menu.footer-nav-menu-desktop {
    display: flex;
  }

  .flex-footer .footer-nav-menu.footer-nav-menu-mobile {
    display: none;
  }
}

.footer-nav-menu a {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--slate);
  text-decoration: underline;
  transition: all 200ms ease-in-out;
}

.footer-nav-menu a:hover,
.footer-nav-menu a:focus {
  color: var(--dark-purple);
  text-decoration: underline;
}
