/*                 */
/* BANDEAU URGENCE */
/*                 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bandeau {
  background: var(--red) !important;
  margin: 1.5rem auto;
  margin-bottom: 2.1rem;
  padding: .7rem;
  width: fit-content;
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0);
  z-index: 1000;
  box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
  animation: fadeIn;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
}

.bandeau:hover {
  background-color: var(--bg-green) !important;
  color: var(--text-white) !important;
  border: none;
}

@media screen and (max-width: 600px) {
  .bandeau {
    width: 90%;
  }
}

@media screen and (max-width: 340px) {
  .bandeau i {
    display: none;
  }
}

/* FOOTER */
footer {
  width: 100%;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-grey);
  box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
}

footer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 823px) {
  footer {
    flex-direction: row;
  }
}

.plan, .footer-contact {
  margin: 0 auto;
}

.plan ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.plan li {
  list-style: none;
  margin: 0 1rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin: 1rem auto 5rem auto;
}

@media screen and (max-width: 860px) {
  .footer-contact {
    flex-direction: column;
  }
}

.footer-contact h3 {
  margin: 0;
}

.footer-contact ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

@media screen and (max-width: 665px) {
  .footer-contact ul {
    flex-wrap: wrap;
  }
}

.footer-contact li {
  list-style: none;
  margin: 0 1rem;
  text-align: center;
}

.footer-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact i {
  margin-right: .5rem;
}

.mentions {
  text-align: center;
  font-size: .6rem;
  width: 100%;
}
