#main_galerie {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}

.carousel {
  width: 45vw;
  height: 35vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1); /* Ajoute une ombre noire */
  background: #f0f0f0; /* Ajoute un fond gris */
  border: 1px solid #cccccc; /* Ajoute une bordure grise */
  border-radius: 2vw; /* Arrondit les coins */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: flex;
  align-items: center; /* Centre verticalement */
  justify-content: center; /* Centre horizontalement */
}

.carousel img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  object-fit: contain; /* Ajuste la taille de l'image pour qu'elle tienne entièrement dans le carousel */
}

.carousel img.active {
  opacity: 1;
}

.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4vw;
  height: 4vw;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  line-height: 4vw;
  font-size: 2vw;
  cursor: pointer;
}

.carousel .prev {
  left: 2vw;
}

.carousel .next {
  right: 2vw;
}

#input_galerie {
  width: 30%;
  margin: auto 0 auto 0;
}

.list_galerie>a:hover {
  border-bottom-color: #215158;
}

.list_galerie > a {
  margin-bottom: 3%;
  text-decoration: none;
  border-bottom: 2px solid #FCDD13;
  transition: border-bottom 0.2s ease-in-out;
  font-size: 1.6vw;
}

.list_galerie a.active {
  color: #dd7456; /* Couleur du lien actif */
}


#ul_galerie {
  list-style-type: none;
}

.list_galerie {
  margin-bottom: 15%;
}






