html {
  font-size: 16px;
  /* 1rem = 16px */
}

.footer_desktop {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 4rem;
  overflow: hidden;
  background-color: #f7f7ff;
  margin-top: auto;
}
.footer_desktop__colors {
  display: flex;
  justify-content: space-between;
}
.footer_desktop__colors__bleu {
  width: 33%;
  height: 2px;
  background-color: #091226;
}
.footer_desktop__colors__blanc {
  width: 34%;
  height: 2px;
  background-color: #f7f7ff;
}
.footer_desktop__colors__rouge {
  width: 33%;
  height: 2px;
  background-color: #8b0000;
}
.footer_desktop__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_desktop__content__mentions_legales {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: 2rem;
}
.footer_desktop__content__mentions_legales a {
  display: flex;
  margin-top: 0.3rem;
  text-decoration: none;
  align-items: center;
  transition: all 2s ease-out;
  color: #0a0b0a;
}
.footer_desktop__content__mentions_legales a:hover {
  color: #8b0000;
  transition-duration: 1s;
}
.footer_desktop__content__cgv {
  display: flex;
  height: 100%;
  align-items: center;
}
.footer_desktop__content__cgv a {
  display: flex;
  margin-top: 0.3rem;
  text-decoration: none;
  align-items: center;
  color: #0a0b0a;
  transition: all 2s ease-out;
}
.footer_desktop__content__cgv a:hover {
  color: #8b0000;
  transition-duration: 1s;
}
.footer_desktop__content__copy_right {
  display: flex;
  height: 100%;
  align-items: center;
  margin-right: 1rem;
}
.footer_desktop__content__copy_right img {
  width: 4rem;
  margin-top: 0.3rem;
}
.footer_desktop__content__copy_right p {
  margin-top: 0.3rem;
  font-size: 2rem;
  font-weight: bold;
}
.footer_desktop__content a:hover {
  color: #8b0000;
  transition-duration: 1s;
}/*# sourceMappingURL=footer_desktop.css.map */