/*Footer */

.footer {
  background-color: var(--asparagus);
  padding: 40px 0;
}

.footer__content {
  background-color: var(--antiFlashWhite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 20px;
  margin-bottom: 80px;
}

/* Logo */

.logo--footer {
  width: 80px;
}

.logo--footer img {
  max-width: 100%;
}

/* Navigation footer*/

.nav__list--footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__link--footer {
  font-size: 14px;
}

/* Social media*/

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials__link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.socials__link img {
  width: 100%;
}

.socials__item {
  width: 24px;
  height: 24px;
  margin-right: 20px;

}

.socials__item:last-child {
  margin-right: 0;
}

/* Credentials */

.credentials {
  margin-top: 32px;
}

.credentials__item {
  font-size: 12px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.credentials__item a {
  color: var(--polynesiumBleu);
  text-decoration: underline;
  font-family: inherit;
}

/* Mobile view*/

@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }

  .footer__content {
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    gap: 16px;
  }

  .nav__list--footer {
    flex-direction: column;
  }

  .socials__link {
    width: 20px;
    height: 20px;
  }


}
