.slider {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
.slide {
  flex-shrink: 0;
  width: calc((100% / 3) - 10px);
  margin-right: 10px;
  scroll-snap-align: start;
  background-color: #ccc;
  padding: 10px;
  box-sizing: border-box;
  transition: width 0.5s;
}

.slide.active {
  width: 60%;
  background-color: #f00;
  color: #fff;
}

.carousel-container {
  overflow: hidden;
  width: 90%;
  position: relative;
  margin: 0 auto;
  /* margin-left: 50px; */
}
.carousel-slide img {
  width: 100%;
  /* aspect-ratio: 3/2; */
  object-fit: cover;
  height: 100%;
  transition: 0.4s ease;
  border-radius: 8px;
}
.carousel-wrapper {
  display: flex;
  transition: all 0.5s ease-in-out;
}

.carousel-slide {
  flex-shrink: 0;
  width: calc((100% - 20px) / 3);
  margin-right: 20px;
  text-align: center;
  overflow: hidden;
  background-color: #eee;
  border-radius: 8px;
  position: relative;
  /* transition: .4s ease; */

  /* height: 300px; */
}

.carousel-slide.active {
  width: 30%;
  /* transition: .4s ease; */

  /* margin-right: 20px; */
}
.carosal_cover {
  width: 100%;
}
.carousel-slide.active img {
  /* width: 100%; */
  width: 100%;
  /* aspect-ratio: 3/2; */
  object-fit: contain;
  height: inherit;
  /* transition: .4s ease; */
  border-radius: 8px;
}
.content_container {
  position: absolute;
  top: 50%;
  left: 10%;
  color: #fff;
  text-align: left;
  display: none;
}
.carousel-slide.active .content_container {
  display: block;
}
