/*=================================================================================*/
/*------------------Page Les Grandes Sorties et gestion des containers communs------*/
/*=================================================================================*/
.white-section {
  background-color: var(--color-off-white);
  padding: 20px 20px;
}

/*************************** Partie Texte***********/

.common-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 100px auto 50px;
}

.text-container {
  max-width: 100%;
}
/*************************** Partie Carrousel***********/

.image-container {
  display: flex;
  justify-content: center;

  width: 650px;
  width: 100%;
}
.about-slideshow {
  margin: auto;
}
.slideshow-images-container {
  margin: 12px 0;
  display: grid;
  width: 100%;
  margin: auto;
  margin-top: 30px;
}
.about-slideshow img {
  max-width: 650px;
  height: auto;
  object-fit: cover;
  object-position: center;
  grid-area: 1/1/2/2;
  width: 100%;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out;
}
.about-slideshow img.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-slide-dots {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid black;
  background-color: white;
}
.dot.active {
  background-color: var(--color-blue);
}


/************************* Responsive **************************/
@media (max-width: 760px) {
  .common-container {
    margin: 50px auto 20px;
  }
  .about-slideshow img {
  max-width: 350px;
  
  
   
}}

