/* Desktop */
/* Petit Desktop */
/* Tablet */
/* mobile */
footer {
  background-color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.25rem 0;
  min-height: 140px;
}

.footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.group-logos {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}

.logo {
  text-align: center;
  margin: 2rem 3rem;
}

.footer-title {
  text-align: center;
  font-weight: 400;
  padding-bottom: 0.5rem;
  font-size: 1.75em;
  width: 80%;
  margin: auto;
  position: relative;
  color: #138cc3;
  margin-bottom: 2rem;
}
.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #138cc3;
  right: 0;
}

.footer-links {
  text-align: center;
}
.footer-links a {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  footer {
    min-height: 200px;
    height: auto;
  }
  .footer-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: auto;
  }
  .footer-1,
  .footer-2 {
    margin-bottom: 1.5rem;
  }
  .footer-logos {
    margin-bottom: 0;
  }
  .logo {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .group-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logo {
    margin: 1rem 0;
  }
}
@media (max-width: 450px) {
  .footer-2 {
    margin-bottom: 1rem;
  }
}
/*footer du formulaire*/
.footer-form {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding-bottom: 2rem;
}

.footer-banner {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: auto;
}