@charset "UTF-8";
footer .section3, footer .section2, footer .section1 .rs, footer .section1 .contact, footer .section1, footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes bn54rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes bn54storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

footer {
  width: 100vw;
  flex-direction: column;
}
footer .section1 {
  flex-direction: row;
  background-color: #c8c4e2;
  padding: 50px 25px;
  width: 100vw;
}
footer .section1 div {
  flex-basis: 33.3333%;
}
footer .section1 .contact {
  flex-direction: column;
  gap: 10px;
}
footer .section1 .contact .logo {
  margin: 0 20px;
}
footer .section1 .contact .logo img {
  width: 200px;
  display: flex;
  justify-content: center;
}
footer .section1 .liens {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 50px;
  gap: 10px;
}
footer .section1 .rs {
  margin: 0 25px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .section1 .rs img {
  width: 100px;
}
footer .section2 {
  width: 100vw;
  flex-direction: row;
  padding: 20px;
  gap: 40px;
  background-color: white;
}
footer .section2 h5 {
  flex-basis: 20%;
}
footer .section2 a {
  flex-basis: 20%;
}
footer .section2 a img {
  width: 300px;
}
footer .section3 {
  width: 100vw;
  background-color: #a16adc;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  footer .section1 {
    flex-wrap: wrap; /* Permettre aux éléments de passer à la ligne si nécessaire */
    padding: 20px 0; /* Réduire le padding pour s'adapter aux petits écrans */
    width: 100%;
  }
  footer .section1 div {
    margin-bottom: 20px; /* Ajouter un espacement entre les éléments */
  }
  footer .section1 .contact {
    flex-basis: 100%;
    flex-direction: column;
    gap: 10px;
  }
  footer .section1 .liens {
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    flex-basis: 50%;
  }
  footer .section1 .rs {
    margin: 30px 10px 10px 10px;
  }
  footer .section1 .rs .icon-large {
    font-size: 3em;
  }
  footer .section2 {
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 20px;
    background-color: white;
    width: 100%;
  }
  footer .section2 h5 {
    flex-basis: 100%;
    text-align: center;
    font-size: 20px;
  }
  footer .section2 a img {
    max-width: 100%;
    height: auto;
  }
  footer .section3 {
    background-color: #a16adc;
    padding: 10px;
    width: 100%;
  }
}/*# sourceMappingURL=footer.css.map */