/* Footer global */
footer {
  background:transparent;
}
footer .container {
  border-top: 1px solid var(--grey-light-active, #ECECEC);

}

/* Liens */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: start;
  column-gap: 25px;
  flex-wrap: wrap;
}

footer ul li a {
  color: var(--Grey-Light, #F9F9F9) !important;

/* Body / Regular */
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
  transition: color 0.2s ease;
  text-wrap: nowrap;
}

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

/* Icônes Réseaux Sociaux */
.social {
  display: flex;
  justify-content: flex-end;
}

.social a {
  transition: transform 0.2s ease, color 0.2s ease;
}

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

footer p {
color: var(--Gris-White, #FFF);

/* 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 ul li a,
    footer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
footer ul ,
footer .social{
  justify-content: center;
}
 footer ul li a,
    footer p{
    font-size: 14px;
  }
  
}

@media (max-width: 570px) {
 footer ul li a,
    footer p {
    font-size: 12px;
  }
}