/* Footer global */
footer {
  background: var(--Blue-blue-700, #0068A9);
  position: relative;
}

footer h5 {
  color: var(--Final-background, #F1F9FF);
  /* H4 / Bold */
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 120% */
}

footer h6 {
  color: var(--Subtle, #FFF);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* Liens */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--Subtle, #FFF);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: white !important;
  text-decoration: none;
  color: var(--Subtle, #FFF);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.2s ease;
}

footer ul li a:hover {
  color: #cce6ff;
}

/* Icônes Réseaux Sociaux */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: #cce6ff;
  transform: scale(1.1);
}

.footer-socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

footer p {
  color: #FFF;
text-align: center;
  /* Body / Regular */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
footer p a {
  color: #fff !important;
}
/* Responsive */
@media (max-width: 992px) {
  footer h5 {
    font-size: 20px;
  }

  footer h6,
  footer p {
    font-size: 18px;
  }

  footer ul li a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  footer h5 {
    font-size: 18px;
    text-align: center;
  }

  footer h6,
  footer p {
    font-size: 16px;
  }

  footer ul li a {
    font-size: 14px;
  }
  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 570px) {
  footer h5 {
    font-size: 16px;
  }

  footer h6,
  footer p {
    font-size: 14px;
  }

  footer ul li a {
    font-size: 12px;
  }
}