/* Conteneur du diaporama */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow: hidden; /* Cache les parties des images qui débordent */
}

/* Les diapositives individuelles (image et texte) */
.mySlides {
  display: none; /* Cache toutes les diapositives par défaut */
}

/* Images à l'intérieur des diapositives */
.mySlides img {
    vertical-align: middle;
    width: 100%; /* Assure que l'image remplit la largeur du conteneur */
    height: auto; /* Maintient le ratio de l'image */
}

/* Texte de la légende */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour le texte */
}

/* Boutons Précédent et Suivant */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Positionne le bouton "Suivant" à droite */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Au survol, ajoute une couleur de fond plus foncée */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Les points/indicateurs */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Active la couleur des points actuels/survolés */
.active, .dot:hover {
  background-color: #717171;
}

/* Animations de fondu */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

#guideVideo{
	height: 360px;
}

.bul-fond{
	background-image: url('files/data/bulle1.jpg');
}

.image1-fond{
	background-image: url('files/data/cover.jpg');
}

.image1-fond, .bul-fond{
	background-repeat: repeat-y;
	background-size: 150%;
	animation-name: fbouge;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}

@keyframes fbouge{
	10%{
		background-position: 0 , 0;
	}

	20%{
		background-position: 5 , 10;
	}

	40%{
		background-position: 10 , 20;
	}

	60%{
		background-position: 15 , 30;
	}
	80%{
		background-position: 10 , 30;
	}
	90%{
		background-position: 5, 10;
	}

	100%{
		background-position: 30, 15;
	}
}