


.carousel {
  width: 80%;
  margin-left: 10%;
  overflow: hidden;
  height: 70vh;
  position: relative;
  margin-top: 20px;
  z-index: 20;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.582);
  display: none;
}
.track {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
  height:100%;
}
.card {
  flex: 0 0 100%; /* 🔥 Chaque card prend 100% du track */
  max-width: 100%;
  padding: 5px;
  height:100%;
  background-color: #e9e2d6;
}
.arrow_carou {
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  z-index: 999;
  position: absolute;
  font-size: 50px;
  color:black;
  top:40%;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  user-select: none;
}
.left{
  left:0%;
}
.right{
  right: 0%;
  text-align: right;
}



@media (max-width: 800px) {
  .carousel{
    display: block;
  }
}


@media (max-width: 508px) {

}
