.card-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-carousel .my-card {
  height: 515px;
  width: 445px;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(0.6) translateY(-2rem);
  transform: scale(0.6) translateY(-2rem);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  background: #2e5266;
  background: linear-gradient(to top, #2e5266, #6e8898);
  transition: 1s;
}

/* .card-carousel .my-card:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 100%;
  background-color: rgba(0,0,0,0.3);
  bottom: -5rem;
  -webkit-filter: blur(4px);
  filter: blur(4px);
} */






.circle-text {
  width: 100px; /* Adjust as necessary */
  height: 100px; /* Adjust as necessary */
  background-color: rgb(4 38 41); /* Adjust as necessary */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
    top: 40%;
    left: 40%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.circle-text2 {
  width: 100px; /* Adjust as necessary */
  height: 100px; /* Adjust as necessary */
  background-color: rgb(4 38 41); /* Adjust as necessary */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
    top: 40%;
    left: 40%;
  opacity: 0;
  transition: opacity 0.3s ease;
}


.card-carousel .my-card.prev .circle-text {
  opacity: 1;
}

.card-carousel .my-card.next .circle-text2 {
  opacity: 1;
}



.card-carousel .my-card.active {
  z-index: 3;
  -webkit-transform: scale(1) translateY(0) translateX(0);
  transform: scale(1.05) translateY(0) translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: 1s;
}



.card-carousel .my-card.prev, .card-carousel .my-card.next {
  z-index: 2;
  -webkit-transform: scale(0.9) translateY(-1rem) translateX(0);
  transform: scale(0.9) translateY(-1rem) translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: 1s;
}