.section-titre {
  text-align: center;
  padding-bottom: 20px;
}


/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */
/* Permet de regler la section des sorties */
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

.header-infos {
  display: flex;
  flex-flow: row wrap;
}

.infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 9.375rem;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: rgba(34, 34, 34, 0.06);
  border-left: 0.25rem solid var(--color-secondary);
  gap: 0.625rem;
}

.ligne {
  display: flex;
  flex-flow: row wrap;
}

.tl {
  font-weight: bold;
  color: var(--color-primary);
}

/* On regle le btn du modal */
.btnFermer {
  background: var(--color-secondary);
  border: 0;
  padding: 10px 25px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

/* Au survole de la souris sur le btn oui, on modifie la couleur du modal supp*/
.btnFermer:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

/* Regle le btn fermer du modal */
.labelForm {
  font-weight: bold;
  text-transform: uppercase;
}

.tlSortie {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  gap: 0.5rem;
}

.tlSortie .num {
  flex: 0 0 auto;
  line-height: 1.4;
}

.tlSortie .label-doc {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.4;
}

.espDate {
  margin-left: 1.1rem;
}

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */
/* Permet de regler la section des activités */
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

/* On regle l'article */
.article {
  padding-top: 10px !important;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
}

/* On regle le titre */
.titre-article {
  color: rgba(32, 86, 133, 0.8) !important;
}

/* On regle le logo */
.logo {
  width: 100px;
  border-radius: 50px;
}

/* On regle l'entete logo et titre  */
.entete {
  display: flex;
  flex-flow: nowrap row;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* On regle le padding top de l'article activiter */
.services {
  padding-top: 0 !important;
}

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */
/* Permet de regler la section photos */
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

/* On regle l'article de la photo */
.photo {
  width: 100%;
  border-radius: 10px;
  max-height: 190px;
}

/* Prmet de supprimer le padding en top pour la slide (photo) */
.testimonials {
  padding-top: 0 !important;
}

/* Prmet de supprimer la marge en top pour la slide (photo) */
.testimonials .testimonial-item {
  margin-top: 0 !important;

}

.color {
  color: var(--color-primary);
}

.color:hover {
  color: var(--color-primary);
}

/* On affiche pour les smartphone et les tablettes les smarthone */
@media screen and (max-width: 991.98px) {

  /* On regle la hauteur du main */
  .infoPadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* On regle la hauteur du main */
  .blocinfoPadding {
    padding-left: 0.938rem !important;
    padding-right: 0.938rem !important;
  }

  .espDate {
    display: block;
    margin-left: 0;
  }

  /* On affiche le lien pdf pour les smartphone et tablette */
  .pdfAff {
    display: block;
  }

  .iframPdf {
    width: 100%;
    height: 43.75rem;
  }
}

/* On enleve le lien affiche pour les pc */
@media screen and (min-width: 992px) {

  /* On regle la hauteur du main */
  .pdfAff {
    display: none;
  }
}

.clign {
  color: var(--color-secondary) !important;
  animation-duration: 1.5s;
  animation-name: clignoter;
  animation-iteration-count: infinite;
  transition: none;

}

@keyframes clignoter {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* On regle les btn */
.btn-lien {
  width: fit-content;
  height: fit-content;
  background: var(--color-primary);
  border: 0;
  padding: 8px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

/* Au survole de la souris sur le btn creer, on modifie la couleur du btn */
.btn-lien:hover {
  background: rgba(32, 86, 133, 0.8);
  color: #fff;
}

/* On regle l'info a droite du btn s'inscrire */
.infoAdh {
  margin-left: 40px;
  display: flex;
  flex-direction: column;
}