h2{
  font-family: "Roboto-Bold";
  font-size: 2.25rem;
  color: black;
}
.contenu_accueil{
  flex-grow: 1;
}
.photo-accueil{
  background-color: grey;
  display: grid;
  grid-auto-flow: column;
  gap: 1vw;
  cursor: grab;
  overflow-x:scroll;
  border-block: 1vw solid gray;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer/Edge */
}
.photo-accueil::-webkit-scrollbar {
  display: none;              /* Chrome, Safari et Opera */
} 
.progressive-image_accueil{
  width: 31vw;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5%;
}
.progressive-image_accueil img{
  width:31vw ;
	height: auto ;
  aspect-ratio: 1/1;
  border-radius: 5%;
  object-fit: cover;
  display: block;
}
.low-quality{
  filter: blur(2px);
}
.text_accueil{
  text-align: center;
  margin: 5%;
}
.text_accueil p{
  font-size: 1.5rem;
}

.image_fleche{
  position: relative;
  width: 100%;
  height: auto;
}
.arrow {
  position:absolute;
  top: 0%;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow img{
  margin: 0 5vw;
  width: 5vw;
  height: 5vw;
  background: rgba(0, 0, 0, 0.5); /* fond noir semi-transparent */
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width:50px) and (max-width: 599px) {
  h2{
    font-size: 1.75rem;
  }
  .text_accueil p{
    font-size: 1.25rem;
  }
  .progressive-image_accueil{
    width: 80vw;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5%;
  }
  .progressive-image_accueil img{
    aspect-ratio: 1/1;
    width :80vw ;
    border-radius: 5%;
    height: auto ;
    object-fit: cover;
  }
  .arrow img{
    width: 10vmin;
    height: 10vmin;
  }
}
@media (min-width:600px) and (max-width: 768px) {
  .progressive-image_accueil{
    width: 45vw;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5%;
  }
  .progressive-image_accueil img{
    aspect-ratio: 1/1;
    width :45vw ;
    border-radius: 5%;
    height: auto;
    object-fit: cover;
  }
  .arrow img{
    width: 10vmin;
    height: 10vmin;
  }
}
@media (min-width:600px){
  .low-quality {
    z-index: 1;
    display :block
  }
  .high-quality {
    display: none;
    z-index: 2;
  }
}