body, html {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}
body .footer, html .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  min-height: 100px;
  background-color: #db212c;
  color: white;
  font-family: "Mukta Malar", sans-serif;
  z-index: 900;
}
body .footer .part, html .footer .part {
  text-align: center;
  position: absolute;
  width: 33%;
  height: 100px;
}
body .footer .part:first-child, html .footer .part:first-child {
  text-align: start;
}
body .footer .cprgt, html .footer .cprgt {
  left: 0;
  text-align: center;
}
body .footer .mentions, html .footer .mentions {
  left: 50%;
  transform: translateX(-50%);
}
body .footer .mentions a, html .footer .mentions a {
  top: 40%;
  transform: translateY(-50%);
}
body .footer .rsx, html .footer .rsx {
  right: 0;
}
body .footer .part:last-child, html .footer .part:last-child {
  text-align: end;
}
body .footer a, html .footer a {
  position: relative;
  text-decoration: none;
}
body .footer a:hover, html .footer a:hover {
  -webkit-text-decoration: underline solid 3px;
          text-decoration: underline solid 3px;
}
body .footer a:link, body .footer a:visited, html .footer a:link, html .footer a:visited {
  color: white;
}
body .footer p, html .footer p {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
body .footer .logoSocial, html .footer .logoSocial {
  display: block;
  position: relative;
  background-image: url("/ressources/images/icons/FACB_logo.png");
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: 1s;
}
body .footer .logoSocial:hover, html .footer .logoSocial:hover {
  border-radius: 0px;
}

@media screen and (max-width: 799px) {
  .footer {
    font-size: 70%;
  }
}
@media screen and (min-width: 800px) {
  .footer {
    font-size: 100%;
  }
}/*# sourceMappingURL=styleFooter.css.map */