/* Réinitialisation des styles par défaut */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Importer la police Montserrat depuis Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

/* Utiliser la police Montserrat pour le titre */
.titre {
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

/* Importer la police Lato depuis Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");

/* Utiliser la police Lato pour le contenu */
body {
  font-family: "Lato", sans-serif;
  background-color: #f7f9fa;
}

/* Style de la section d'accueil */
.accueil {
  padding: 0;
}

/* Style de la barre de navigation */
.navbar {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  width: 100%;
  box-shadow: 0px 2px 4px rgba(15, 15, 15, 0.4);
  position: sticky;
  top: 0;
  z-index: 999;
}
/* ---------------------------------------------------------------------------------------------------------------------- */
/*  LOGO */
/* ------------------------------------------------------------------------------------------------------------------------------------ */
.monlog {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

/* Style du logo */
.navbar .logo {
  width: 80px;
  height: auto;
  margin-right: 20px;
  margin-left: 10px;
}

.titre {
  color: #5b5b5b;
  font-size: 20px;
  margin-left: 10px;
  justify-content: center;
}
/* --------------------------------------------------------------------------------------------------------------------------- */
/* Liste navbar */
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* Style de la liste des liens */
.navbar-ul {
  display: flex;
  justify-content: center;
  flex: 1;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar-ul li {
  margin: 0 20px;
  font-size: 16px;
}

/* Style des liens dans la liste */
.navbar-ul a {
  text-decoration: none;
  color: #5b5b5b;
  font-size: 17px;
  font-weight: bolder;
}

.AGDAL {
  color: #179488;
}

/* Style des liens actifs */
.navbar a.active {
  font-weight: bold;
}
/* ----------------------------------------------------------------------------------------------------------------- */
/* Style du bouton de contact */
/* ----------------------------------------------------------------------------------------------------------------- */
.button-35 {
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
  box-sizing: border-box;
  color: #179488;
  cursor: pointer;
  display: inline-flex;
  font-family: Inter,sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 2px;
  outline: none;
  padding: 1rem 1.2rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s,-webkit-box-shadow .2s;
  transition: box-shadow 0.2s, color 0.2s, background-color 0.2s;
  white-space: nowrap;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 281px; /* Vous pouvez ajuster la valeur en fonction de vos besoins */
  height: 88px;
}

.button-35:hover {
  box-shadow: #000000 0 0 0 3px, transparent 0 0 0 0;
  color: #fff;
  background-color: #179488;
}
/* ----------------------------------------------------------------------------------------------------------------- */
/* Animations */
/* ----------------------------------------------------------------------------------------------------------------- */

/* CSS */

.contacter a:hover {
  background-color: #ffffff;
  color: #179488;
}

/* navlink */
.nav-link {
  position: relative;
  text-decoration: none;
  color: #5b5b5b;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #179488;
  transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #179488;
}

/* Styles spécifiques pour les écrans de petite taille (mobiles) */
/* Styles spécifiques pour les écrans de petite taille (mobiles) */
@media screen and (max-width: 396px) {
  .overlay {
    margin: 4%;
  }

  .titre {
    color: #5b5b5b;
    font-size: 18px;
    margin-left: 10px;
    justify-content: center;
  }

  .navbar ul,
  .contacter {
    display: none;
  }

  .navbar .hamburger {
    display: block;
    padding: 10px;
    color: #fff;
    cursor: pointer;
  }

  .navbar .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #179488;
    margin-bottom: 5px;
  }

  .navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar .navbar-ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #179488;
    padding: 20px;
    z-index: 999;
  }

  .navbar .navbar-ul.show {
    display: block;
  }

  .navbar .navbar-ul li {
    display: block;
    padding: 10px 0; /* Ajout d'une distance égale entre le haut et le bas des mots */
    border-bottom: 1px solid white; /* Ajout d'un trait fin */
    width: 100%; /* Largeur du trait à 100% */
  }

  .navbar .navbar-ul li:last-child {
    border-bottom: none; /* Suppression du trait pour le dernier élément */
  }

  .navbar .navbar-ul a {
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .navbar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S1 {
    width: 100%;
    margin-top: 3%;
    position: relative;
  }

  .container {
    position: relative;
    margin-top: 0;
  }

  .container1 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .titre {
    position: relative;
    margin-top: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .titre h2 {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre span {
    color: #179488;
  }

  .container2 {
    position: relative;
    margin-top: 10%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre2 {
    padding-top: 11%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre2 p {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre2 span {
    color: #179488;
  }

  .titre2 p::after {
    content: "";
    width: 20%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 10%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p1 {
    position: relative;
    justify-content: left;
    margin-top: 10%;
    line-height: 1.6;
    font-size: 14px;
  }

  .p2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 13px;
    margin-left: 9%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S2 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container3 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container4 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre3 {
    padding-top: 11%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre3 p {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre3 span {
    color: #179488;
  }

  .titre3 p::after {
    content: "";
    width: 20%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 10%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p2-1 {
    position: relative;
    justify-content: left;
    margin-top: 10%;
    line-height: 1.6;
    font-size: 14px;
  }

  .p2-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 3%;
  }

  .ul1 {
    position: relative;
    margin-left: 2%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S3 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container5 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container6 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre4 {
    padding-top: 9%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre4 p {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre4 span {
    color: #179488;
  }

  .titre4 p::after {
    content: "";
    width: 15%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 9%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t1 {
    position: relative;
    margin-top: 15%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 2%;
  }

  .t2 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 7%;
  }

  .t3 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  .ul3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 4%;
  }
  .t4 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 4%;
  }

  .t5 {
    position: relative;
    margin-top: 1%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .im {
    position: relative;
    display: block;
    margin-top: 6%;
    justify-content: center;
    align-items: center;
  }

  .im1 img {
    width: 100%;
    height: auto;
  }

  .im2 img {
    height: auto;
    width: 70%;
    margin-top: 8%;
    margin-left: 15%;
  }

  .p3-5 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 2%;
  }

  .ul4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 2%;
  }

  .t6 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S4 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container7 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container8 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .g4 {
    font-weight: bold;
  }

  .titre5 {
    padding-top: 9%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre5 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre5 span {
    color: #179488;
  }

  .titre5 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t4-1 {
    position: relative;
    margin-top: 10%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-1 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  .t4-2 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-2 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  .t4-3 {
    position: relative;
    margin-top: 5%;
    font-size: 16px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-3 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 8%;
  }

  .p4-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 6%;
  }

  .p4-5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  .p4-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 2%;
  }

  .p4-7 {
    position: relative;
    justify-content: left;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 1%;
  }

  .p4-8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 8%;
  }

  .p4-9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S5 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container9 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container10 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg5 {
    font-weight: bold;
  }

  .titre6 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre6 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre6 span {
    color: #179488;
  }

  .titre6 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t5 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg5 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p5 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .g5 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 1%;
    font-weight: bold;
  }

  .im5 {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im5 img {
    position: relative;
    display: flex;
    margin-top: 1%;
    height: auto;
    width: 97%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S6 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container11 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container12 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg6 {
    font-weight: bold;
  }

  .titre7 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre7 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre7 span {
    color: #179488;
  }

  .titre7 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t6 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg6 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p6 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .g6 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul6 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S7 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container13 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container14 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg7 {
    font-weight: bold;
  }

  .titre8 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre8 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre8 span {
    color: #179488;
  }

  .titre8 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t7 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg7 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p7 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .g7 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul7 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S8 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container15 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container16 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre9 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre9 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre9 span {
    color: #179488;
  }

  .titre9 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p8 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S9 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container17 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container18 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre10 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre10 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre10 span {
    color: #179488;
  }

  .titre10 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p9 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .pul9 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S10 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container19 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container20 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre11 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre11 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre11 span {
    color: #179488;
  }

  .titre11 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p10 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .pul10 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }
  .t10 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S11 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container21 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container22 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg11 {
    font-weight: bold;
  }

  .titre12 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre12 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre12 span {
    color: #179488;
  }

  .titre12 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t11 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg11 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p11 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .pul11 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S12 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container23 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container24 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg12 {
    font-weight: bold;
  }

  .titre13 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre13 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre13 span {
    color: #179488;
  }

  .titre13 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t12 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg12 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p12 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .pul12 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S13,
  .S14,
  .S15,
  .S16 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container25 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container26 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg13 {
    font-weight: bold;
  }

  .titre14 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre14 p {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre14 span {
    color: #179488;
  }

  .titre14 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t13 {
    position: relative;
    margin-top: 10%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg13 {
    position: relative;
    margin-top: 8%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p13 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 3%;
  }

  .pul13 {
    position: relative;
    justify-content: left;
    margin-top: 6%;
    line-height: 1.6;
    font-size: 14px;
    margin-left: 6%;
  }
}

/* Styles spécifiques pour les écrans de petite taille (mobiles) */
/* Styles spécifiques pour les écrans de petite taille (mobiles) */
@media screen and (min-width: 396px) and (max-width: 768px) {
  .navbar ul,
  .contacter {
    display: none;
  }

  .navbar .hamburger {
    display: block;
    padding: 10px;
    color: #fff;
    cursor: pointer;
  }

  .navbar .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #179488;
    margin-bottom: 5px;
  }

  .navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar .navbar-ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #179488;
    padding: 20px;
    z-index: 999;
  }

  .navbar .navbar-ul.show {
    display: block;
  }

  .navbar .navbar-ul li {
    display: block;
    padding: 10px 0; /* Ajout d'une distance égale entre le haut et le bas des mots */
    border-bottom: 1px solid white; /* Ajout d'un trait fin */
    width: 100%; /* Largeur du trait à 100% */
  }

  .navbar .navbar-ul li:last-child {
    border-bottom: none; /* Suppression du trait pour le dernier élément */
  }

  .navbar .navbar-ul a {
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .navbar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S1 {
    width: 100%;
    margin-top: 3%;
    position: relative;
  }

  .container {
    position: relative;
    margin-top: 0;
  }

  .container1 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .titre {
    position: relative;
    margin-top: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .titre h2 {
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre span {
    color: #179488;
  }

  .container2 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre2 {
    padding-top: 6%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre2 p {
    font-size: 27px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre2 span {
    color: #179488;
  }

  .titre2 p::after {
    content: "";
    width: 15%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 8%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p1 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 16px;
  }

  .p2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 16px;
    margin-left: 7%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S2 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container3 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container4 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre3 {
    padding-top: 8%;
    position: relative;
    margin-top: 10%;
    justify-content: left;
    align-items: left;
  }

  .titre3 p {
    font-size: 27px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre3 span {
    color: #179488;
  }

  .titre3 p::after {
    content: "";
    width: 15%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 8%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p2-1 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 16px;
  }

  .p2-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 16px;
    margin-left: 3%;
  }

  .ul1 {
    position: relative;
    margin-left: 2%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S3 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container5 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container6 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre4 {
    padding-top: 9%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre4 p {
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre4 span {
    color: #179488;
  }

  .titre4 p::after {
    content: "";
    width: 15%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 9%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t1 {
    position: relative;
    margin-top: 15%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 2%;
  }

  .t2 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 7%;
  }

  .t3 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .ul3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }
  .t4 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }

  .t5 {
    position: relative;
    margin-top: 1%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .im {
    position: relative;
    display: block;
    margin-top: 6%;
    justify-content: center;
    align-items: center;
  }

  .im1 img {
    width: 100%;
    height: auto;
  }

  .im2 img {
    height: auto;
    width: 70%;
    margin-top: 8%;
    margin-left: 15%;
  }

  .p3-5 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .ul4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t6 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S4 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container7 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container8 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .g4 {
    font-weight: bold;
  }

  .titre5 {
    padding-top: 9%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre5 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre5 span {
    color: #179488;
  }

  .titre5 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t4-1 {
    position: relative;
    margin-top: 10%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-1 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-2 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-2 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-3 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-3 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 8%;
  }

  .p4-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 6%;
  }

  .p4-5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .p4-7 {
    position: relative;
    justify-content: left;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 8%;
  }

  .p4-9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 6%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S5 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container9 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container10 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg5 {
    font-weight: bold;
  }

  .titre6 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre6 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre6 span {
    color: #179488;
  }

  .titre6 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t5 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg5 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p5 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .im5 {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im5 img {
    position: relative;
    display: flex;
    margin-top: 1%;
    height: 340px;
    width: auto;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S6 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container11 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container12 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg6 {
    font-weight: bold;
  }

  .titre7 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre7 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre7 span {
    color: #179488;
  }

  .titre7 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t6 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg6 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p6 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul6 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S7 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container13 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container14 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .tg7 {
    font-weight: bold;
  }

  .titre8 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre8 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre8 span {
    color: #179488;
  }

  .titre8 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t7 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg7 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p7 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul7 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S8 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container15 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container16 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre9 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre9 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre9 span {
    color: #179488;
  }

  .titre9 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p8 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S9 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container17 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container18 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre10 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre10 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre10 span {
    color: #179488;
  }

  .titre10 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p9 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .t10 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .pul9 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S10 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container19 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container20 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre11 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre11 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre11 span {
    color: #179488;
  }

  .titre11 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p10 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul10 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  .tg10 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S11 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container21 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container22 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre12 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre12 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre12 span {
    color: #179488;
  }

  .titre12 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t11 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg11 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p11 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul11 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S12 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container23 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container24 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre13 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre13 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre13 span {
    color: #179488;
  }

  .titre13 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t12 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg12 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p12 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul12 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S13,
  .S14,
  .S15,
  .S16 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container25 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container26 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 4%;
  }

  .titre14 {
    padding-top: 8%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre14 p {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre14 span {
    color: #179488;
  }

  .titre14 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t13 {
    position: relative;
    margin-top: 8%;
    font-size: 17px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg13 {
    position: relative;
    margin-top: 6%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p13 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul13 {
    position: relative;
    justify-content: left;
    margin-top: 3%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 4%;
  }
}

/* Styles spécifiques pour les écrans de taille moyenne (tablettes) */
@media screen and (min-width: 769px) and (max-width: 1244px) {
  .navbar ul,
  .contacter {
    display: none;
  }

  .navbar .hamburger {
    display: block;
    padding: 10px;
    color: #fff;
    cursor: pointer;
  }

  .navbar .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #179488;
    margin-bottom: 5px;
  }

  .navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar .navbar-ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #179488;
    padding: 20px;
    z-index: 999;
  }

  .navbar .navbar-ul.show {
    display: block;
  }

  .navbar .navbar-ul li {
    display: block;
    padding: 10px 0; /* Ajout d'une distance égale entre le haut et le bas des mots */
    border-bottom: 1px solid white; /* Ajout d'un trait fin */
    width: 100%; /* Largeur du trait à 100% */
  }

  .navbar .navbar-ul li:last-child {
    border-bottom: none; /* Suppression du trait pour le dernier élément */
  }

  .navbar .navbar-ul a {
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .navbar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S1 {
    width: 100%;
    margin-top: 3%;
    position: relative;
  }

  .container {
    position: relative;
    margin-top: 0;
  }

  .container1 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .titre {
    position: relative;
    margin-top: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .titre h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre span {
    color: #179488;
  }

  .titre h2::after {
    content: "";
    width: 20%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -25%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 50%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .container2 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre2 {
    padding-top: 4%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre2 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre2 span {
    color: #179488;
  }

  .titre2 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p1 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 17px;
  }

  .p2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 5%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S2 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container3 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container4 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre3 {
    padding-top: 4%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre3 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre3 span {
    color: #179488;
  }

  .titre3 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p2-1 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.6;
    font-size: 17px;
  }

  .p2-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  .ul1 {
    position: relative;
    margin-left: 2%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S3 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container5 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container6 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre4 {
    padding-top: 5%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre4 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre4 span {
    color: #179488;
  }

  .titre4 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t1 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 2%;
  }

  .t2 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t3 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .ul3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }
  .t4 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t5 {
    position: relative;
    margin-top: 1%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .im {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im2 img {
    height: 390px;
    width: auto;
    margin-left: 20%;
  }

  .p3-5 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .ul4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t6 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S4 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container7 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container8 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .g4 {
    font-weight: bold;
  }

  .titre5 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre5 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre5 span {
    color: #179488;
  }

  .titre5 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t4-1 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-2 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-3 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }

  .p4-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  .p4-5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .p4-7 {
    position: relative;
    justify-content: left;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }

  .p4-9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S5 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container9 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container10 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg5 {
    font-weight: bold;
  }

  .titre6 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre6 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre6 span {
    color: #179488;
  }

  .titre6 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t5 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg5 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .im5 {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im5 img {
    position: relative;
    display: flex;
    margin-top: 1%;
    height: 340px;
    width: auto;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S6 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container11 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container12 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg6 {
    font-weight: bold;
  }

  .titre7 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre7 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre7 span {
    color: #179488;
  }

  .titre7 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t6 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg6 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S7 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container13 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container14 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg7 {
    font-weight: bold;
  }

  .titre8 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre8 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre8 span {
    color: #179488;
  }

  .titre8 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t7 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg7 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S8 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container15 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container16 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre9 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre9 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre9 span {
    color: #179488;
  }

  .titre9 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S9 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container17 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container18 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre10 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre10 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre10 span {
    color: #179488;
  }

  .titre10 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S10 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container19 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container20 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre11 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre11 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre11 span {
    color: #179488;
  }

  .titre11 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p10 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul10 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }
  .t10 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S11 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container21 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container22 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre12 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre12 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre12 span {
    color: #179488;
  }

  .titre12 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t11 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg11 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p11 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul11 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S12 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container23 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container24 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre13 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre13 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre13 span {
    color: #179488;
  }

  .titre13 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t12 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg12 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p12 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul12 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S13,
  .S14,
  .S15,
  .S16 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container25 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container26 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre14 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre14 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre14 span {
    color: #179488;
  }

  .titre14 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t13 {
    position: relative;
    margin-top: 4%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg13 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p13 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul13 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }
}

/* Styles spécifiques pour les écrans de grande taille (desktop) */
@media screen and (min-width: 1245px) {
  .hamburger {
    display: none;
  }
  /* --------------------------------------------------------------------------------------------------- */

  .S1 {
    width: 100%;
    margin-top: 3%;
    position: relative;
  }

  .container {
    position: relative;
    margin-top: 0;
  }

  .container1 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .titre {
    position: relative;
    margin-top: 0%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .titre h2 {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre span {
    color: #179488;
  }

  .titre h2::after {
    content: "";
    width: 20%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -25%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 50%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .container2 {
    position: relative;
    margin-top: 4%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre2 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre2 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre2 span {
    color: #179488;
  }

  .titre2 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p1 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.6;
    font-size: 17px;
  }

  .p2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S2 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container3 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container4 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre3 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre3 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre3 span {
    color: #179488;
  }

  .titre3 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p2-1 {
    position: relative;
    justify-content: left;
    margin-top: 2%;
    line-height: 1.6;
    font-size: 17px;
  }

  .p2-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  .ul1 {
    position: relative;
    margin-left: 2%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S3 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container5 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container6 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre4 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre4 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre4 span {
    color: #179488;
  }

  .titre4 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t1 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 2%;
  }

  .t2 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t3 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .ul3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }
  .t4 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t5 {
    position: relative;
    margin-top: 1%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .im {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im2 img {
    height: 390px;
    width: auto;
    margin-left: 20%;
  }

  .p3-5 {
    position: relative;
    justify-content: left;
    margin-top: 4%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .ul4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .t6 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p3-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S4 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container7 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container8 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .g4 {
    font-weight: bold;
  }

  .titre5 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre5 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre5 span {
    color: #179488;
  }

  .titre5 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t4-1 {
    position: relative;
    margin-top: 5%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-1 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-2 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-2 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .t4-3 {
    position: relative;
    margin-top: 2%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .p4-3 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }

  .p4-4 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  .p4-5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 2%;
  }

  .p4-7 {
    position: relative;
    justify-content: left;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 1%;
  }

  .p4-8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 4%;
  }

  .p4-9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.7;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S5 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container9 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container10 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg5 {
    font-weight: bold;
  }

  .titre6 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre6 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre6 span {
    color: #179488;
  }

  .titre6 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t5 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg5 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g5 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .im5 {
    position: relative;
    display: flex;
    margin-top: 2%;
  }

  .im5 img {
    position: relative;
    display: flex;
    margin-top: 1%;
    height: 340px;
    width: auto;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S6 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container11 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container12 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg6 {
    font-weight: bold;
  }

  .titre7 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre7 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre7 span {
    color: #179488;
  }

  .titre7 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t6 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg6 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul6 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S7 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container13 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container14 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .tg7 {
    font-weight: bold;
  }

  .titre8 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre8 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre8 span {
    color: #179488;
  }

  .titre8 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t7 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg7 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .g7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
    font-weight: bold;
  }

  .pul7 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S8 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container15 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container16 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre9 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre9 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre9 span {
    color: #179488;
  }

  .titre9 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p8 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S9 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container17 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container18 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre10 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre10 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre10 span {
    color: #179488;
  }

  .titre10 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul9 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S10 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container19 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container20 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre11 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre11 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre11 span {
    color: #179488;
  }

  .titre11 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .p10 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul10 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  .t10 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S11 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container21 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container22 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre12 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre12 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre12 span {
    color: #179488;
  }

  .titre12 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t11 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg11 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p11 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul11 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S12 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container23 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container24 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre13 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre13 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre13 span {
    color: #179488;
  }

  .titre13 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t12 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg12 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p12 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul12 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }

  /* --------------------------------------------------------------------------------------------------- */

  .S13,
  .S14,
  .S15,
  .S16 {
    width: 100%;
    margin-top: 1%;
    position: relative;
  }

  .container25 {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 98%;
    height: auto;
    display: block;
    align-items: center;
    z-index: 2;
  }

  .container26 {
    position: relative;
    margin-top: 1%;
    display: block;
    justify-content: left;
    text-align: left;
    width: 98%;
    top: 0;
    left: 0;
    margin: auto;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
  }

  .titre14 {
    padding-top: 2%;
    position: relative;
    margin-top: 4%;
    justify-content: left;
    align-items: left;
  }

  .titre14 p {
    font-size: 37px;
    letter-spacing: 4px;
    font-weight: bolder;
    color: #5b5b5b;
  }

  .titre14 span {
    color: #179488;
  }

  .titre14 p::after {
    content: "";
    width: 10%; /* Modifier la valeur pour ajuster la largeur de la ligne */
    height: 3px;
    background-color: #179488;
    position: absolute;
    bottom: -10%; /* Modifier la valeur pour ajuster la position verticale de la ligne */
    left: 5%; /* Centrer la ligne horizontalement */
    transform: translateX(-50%); /* Centrer la ligne horizontalement */
  }

  .t13 {
    position: relative;
    margin-top: 3%;
    font-size: 19px;
    font-weight: bold;
    color: #179488;
    text-decoration: underline;
  }

  .tg13 {
    position: relative;
    margin-top: 3%;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
  }

  .p13 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 1%;
  }

  .pul13 {
    position: relative;
    justify-content: left;
    margin-top: 1%;
    line-height: 1.6;
    font-size: 17px;
    margin-left: 3%;
  }
}
