@charset "UTF-8";
/* Réinitialisation CSS de base */
/* Remise à zéro des marges et des rembourrages */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Styles de base pour le corps de la page */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Remise à zéro des listes */
ul, ol {
  list-style: none;
}

/* Remise à zéro des liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Styles de base pour les éléments de formulaire */
input, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Ajoutez vos styles personnalisés ci-dessous */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

a:hover {
  color: #11a994 !important;
}

main {
  width: 70%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

h1, h2, h3 {
  color: #07008E;
}

@media screen and (max-width: 1200px) {
  main {
    margin-top: 100px;
    width: 100%;
    padding: 1%;
  }
}
.entete_home {
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Style CSS pour la section des images */
  /* Animation pour le déplacement horizontal */
}
.entete_home > div {
  width: calc(100% - 450px);
  padding: 1%;
}
.entete_home > div > h1 {
  margin-bottom: 30px;
  color: #07008E;
  letter-spacing: 2px;
}
.entete_home > div > p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 23px;
  text-align: justify;
}
.entete_home #slideshow {
  border: #07008E solid 5px;
  padding: 0;
  width: 350px;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.entete_home #slideshow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* Ajoutez une transition en fondu et en déplacement de 1 seconde */
}
.entete_home #slideshow img.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0); /* Déplacez l'image active de 0px horizontalement (position initiale) */
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%); /* Déplacez l'image de 150% vers la droite au début de l'animation */
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* Déplacez l'image de 0% vers la droite à la fin de l'animation */
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%); /* Déplacez l'image de 150% vers la droite au début de l'animation */
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* Déplacez l'image de 0% vers la droite à la fin de l'animation */
  }
}

.liste_produit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.liste_produit > .produit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 90%;
  margin: 30px auto 50px;
}
.liste_produit > .produit .p1 {
  width: 50%;
  padding: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.liste_produit > .produit .p1 > h3 {
  text-align: center;
}
.liste_produit > .produit .p1 > p {
  text-align: justify;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.liste_produit > .produit .p1 > a {
  margin: 0 auto;
  background-color: #07008E;
  color: #fff;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 7px;
}
.liste_produit > .produit .p1 > a:hover {
  color: #07008E !important;
  background-color: #11a994;
}
.liste_produit > .produit .p2 {
  width: 50%;
}
.liste_produit > .produit .p2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
}
.liste_produit .inverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.produit_2 > p {
  width: 96%;
  margin: 10px auto 20px;
  text-align: justify;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.produit_2 > .liste_produit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.produit_2 > .liste_produit > div {
  /*flex-grow: 1;*/
  width: 30%;
  height: 200px;
}
.produit_2 > .liste_produit > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .entete_home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 50px;
  }
  .entete_home > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .entete_home > div > p {
    margin-bottom: 20px;
  }
  .entete_home #slideshow {
    width: 100%;
  }
  .liste_produit .produit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .liste_produit .produit .p1, .liste_produit .produit .p2 {
    width: 100%;
  }
  .liste_produit .produit .p1 h3, .liste_produit .produit .p2 h3 {
    text-align: left;
  }
  .liste_produit .produit .p1 a, .liste_produit .produit .p2 a {
    margin: 30px auto;
    font-size: 1.4rem;
  }
}
.container > p {
  padding: 1% 3%;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 23px;
  text-align: justify;
}

.produit_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 30px auto 10px;
  letter-spacing: 2px;
  line-height: 23px;
  padding: 2%;
}
.produit_detail > p {
  width: 96%;
  margin: auto;
  text-align: justify;
  margin-bottom: 20px;
}
.produit_detail p:first-of-type {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.produit_detail > .image_produit-pdf {
  background-color: #f1f1f1;
  padding: 1%;
  width: 90%;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.produit_detail > .image_produit-pdf > div {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.produit_detail > .image_produit-pdf > div > img {
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.produit_detail > .image_produit-pdf .pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}
.produit_detail > .image_produit-pdf .pdf > img {
  width: 10%;
  margin-bottom: 20px;
}
.produit_detail > .image_produit-pdf .pdf > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 1%;
  color: #07008E;
}

@media all and (max-width: 768px) {
  .produit_detail .image_produit-pdf {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .produit_detail .image_produit-pdf .img_produit, .produit_detail .image_produit-pdf .pdf {
    width: 100%;
    padding: 1%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header {
  width: 100%;
  margin-bottom: 50px;
}
header > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 96%;
  margin: auto;
  height: 80px;
  padding: 1%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > section .logo_site {
  width: 20%;
  font-size: 2rem;
  letter-spacing: 0.07rem;
  line-height: 1.5rem;
  text-align: center;
  font-weight: bold;
  color: #07008E;
}
header > section .menu {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > section .menu > a {
  padding: 1%;
  font-size: 1.2rem;
  color: #07008E;
  font-weight: bold;
  white-space: nowrap; /* Empêche le texte de passer à la ligne par défaut */
  text-align: center;
}

.header_mobile {
  display: none !important;
}

@media all and (max-width: 768px) {
  .header_mobile {
    display: block !important;
  }
  .header_mobile > section {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .menu_classique {
    display: none;
  }
}
.ensemble_formulaire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 50px auto;
  width: 70%;
}
.ensemble_formulaire h2, .ensemble_formulaire p {
  width: 100%;
}
.ensemble_formulaire h2 > span, .ensemble_formulaire p > span {
  font-weight: bold;
  color: #07008E;
}
.ensemble_formulaire > p {
  margin: 30px auto;
  font-size: 1.1rem;
  text-align: center;
}
.ensemble_formulaire > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ensemble_formulaire > section > .formulaire {
  width: 60%;
  padding: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ensemble_formulaire > section > .formulaire fieldset {
  border: 1px solid #ebebeb;
  padding: 2%;
}
.ensemble_formulaire > section > .formulaire fieldset > section {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px auto;
}
.ensemble_formulaire > section > .formulaire fieldset > section input {
  height: 30px;
}
.ensemble_formulaire > section > .formulaire fieldset > section input, .ensemble_formulaire > section > .formulaire fieldset > section textarea {
  width: 90%;
  margin: auto;
  border: 1px solid #b5b5b5;
}
.ensemble_formulaire > section > .formulaire fieldset .section_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ensemble_formulaire > section > .formulaire fieldset .section_button .boutton_principal {
  background-color: #07008E;
  color: #fff;
  padding: 5px 20px;
  font-size: 1.1rem;
  border: none;
  font-variant: small-caps;
  border-radius: 5px;
}
.ensemble_formulaire > section > .entreprise {
  height: 100%;
  margin: auto;
  background-color: #07008E;
  color: #fff;
  padding: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ensemble_formulaire > section > .entreprise > h3 {
  color: #fff !important;
  font-size: 2rem;
}
.ensemble_formulaire > section > .entreprise > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 90%;
  margin: 20px auto 30px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ensemble_formulaire > section > .entreprise > div > img {
  width: 40%;
  padding: 1%;
}
.ensemble_formulaire > section > .entreprise > div > span {
  width: 60%;
}

@media all and (max-width: 768px) {
  .ensemble_formulaire {
    width: 100%;
  }
  .ensemble_formulaire .contact > .lien_sociaux {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto;
  }
  .ensemble_formulaire .contact > .lien_sociaux > div {
    width: 100%;
  }
  .ensemble_formulaire .img_portrait {
    width: 100%;
    margin: auto;
  }
  .ensemble_formulaire .contact > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .ensemble_formulaire .contact > div > div {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .ensemble_formulaire {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ensemble_formulaire {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ensemble_formulaire > section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ensemble_formulaire > section > .entreprise, .ensemble_formulaire > section .formulaire {
    width: 100%;
  }
}
footer {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer > span {
  text-align: center;
  margin: auto 30px;
  color: #07008E;
  font-size: 0.9rem;
  font-weight: bold;
}