.testimonial {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start !important; /* Aligne les colonnes en haut */
}

.testimonial .col-lg-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px; /* espace entre les lignes si jamais y’a du wrap */
}

.testim_img {
  font-size: 50px;
  background-color: #007bff; /* bleu Bootstrap, tu peux changer */
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.testimonial p {
  text-align: left;
  font-style: italic;
  max-width: 300px;
  padding-left: 10px;
  padding-right: 10px;
}

/* SLIDER ACCUEIL */
.slider-container {
  height: auto;        /* plus de plein écran */
  max-height: 500px;   /* hauteur visuelle maîtrisée */
  overflow: hidden;
  position: relative;
}


.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
  position: relative;
}
.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 8px;
}
.slider-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #005ca7;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.video-wrapper {
  height: 500px; /* ou 480px par exemple */
  overflow: hidden;
}
.accueil_slide_vierge {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}