footer {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
footer .logo-footer {
  text-align: center;
}
footer .logo-footer > img {
  width: 195px;
  margin: auto auto 30px;
}
footer .footer-infos {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #2a5a96;
}
footer .footer-infos:before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 3px;
  background-color: #2a5a96;
}
footer .footer-infos > .container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  footer .footer-infos > .container {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-infos .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  text-align: center;
  text-decoration: none;
}
footer .footer-infos .info-item + .info-item {
  margin-left: 120px;
}
@media screen and (max-width: 1024px) {
  footer .footer-infos .info-item + .info-item {
    margin-left: 0;
    margin-top: 20px;
  }
}
footer .footer-infos .info-item .info-picto {
  margin-bottom: 25px;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 1;
  color: #206ab1;
}
@media screen and (max-width: 1024px) {
  footer .footer-infos .info-item .info-picto {
    margin-bottom: 15px;
    height: 35px;
  }
}
footer .footer-infos .info-item .info-picto svg.inject-me {
  width: 100%;
  height: 100%;
}
footer .footer-infos .info-item .info-picto svg.inject-me path {
  fill: url(#blueGradient);
}
footer .footer-infos .info-item p {
  margin: 0;
  font-family: Arial;
  font-size: 12px;
  line-height: 20px;
  color: #3a3b3a;
}
footer .footer-bar {
  display: flex;
  align-items: center;
  height: 40px;
  background-image: linear-gradient(to right, #2464ac 0%, #009cd8 100%);
  font-weight: bold;
  font-size: 12px;
  color: white;
}
@media screen and (max-width: 1024px) {
  footer .footer-bar {
    padding: 30px 0;
    height: auto;
    font-size: 15px;
    text-align: center;
  }
  footer .footer-bar .footer-left {
    display: flex;
    flex-direction: column;
  }
  footer .footer-bar .footer-right {
    margin-top: 15px;
  }
  footer .footer-bar span + span {
    margin-top: 15px;
  }
  footer .footer-bar span + span a:before {
    display: none;
  }
}
footer .footer-bar > .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-bar > .container {
    flex-direction: column;
  }
}
footer .footer-bar a {
  color: white;
  text-decoration: none;
}
footer .footer-bar span + span a:before {
  content: "|";
  margin: 0 4px;
}
/*# sourceMappingURL=footer.css.map */