  
.custom-carousel {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.custom-carousel-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease-in-out;
  margin-top: 15px;
  margin-bottom: 15px;
}

.custom-carousel-item.custom-active {
  display: flex;
  opacity: 1;
}
