.carousel {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item {
  width: 300px;
  height: 450px;
  margin: 0 10px;
  margin-right: 30px;
  cursor: pointer;
  transition: all 0.8s;
}

.carousel-item img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}


.carousel-item.active {
  transform: translateX(0) scale(1.4);
  z-index: 1;
}

.carousel-item:not(.active) {
  opacity: 0.6;
}


.carousel-item .description {
  display: none;
}