footer {
  background-color: var(--clr-primary);
  margin-top: 10rem;
}

footer .footer__content {
  width: min(1250px, 95%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  padding: 1rem 0;
}

footer .footer__content .footer__social {
  display: flex;
  justify-content: space-between;
}

footer .footer__content .footer__social .footer__col__logo {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

footer .footer__content .footer__social .footer__col__links {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}

footer .footer__content .footer__social .footer__col__links ul {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

footer .footer__content .footer__social .footer__col__links ul li a {
  color: white;
}

footer .footer__content .footer__social .footer__col__links ul li a .logo__x {
  width: 20px;
  height: 20px;
  color: white;
}

footer .footer__content .reserved {
  border-top: 1px solid hsl(0, 0%, 95%);
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 893px) {
  footer .footer__content .footer__social {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  footer .footer__content .footer__social .footer__col__logo {
    align-items: center;
  }

  footer .footer__content .footer__social .footer__col__links {
    align-items: center;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  footer .footer__content .footer__social .footer__col__links ul:nth-child(1) {
    flex-direction: column;
  }
  footer .footer__content .footer__social .footer__col__links ul:nth-child(1) svg {
    display: none;
  }
}
