/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
*/
.vertical-card-slider{
  width: 100%;
  height: 40vh; 
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%); */
} 
/* .wrapper .outer{
  display: flex;
  align-items: center;
  justify-content: center;
} */
.wrapper .card {
  background: #fff;
  width: 460px;
  display: flex;
  align-items: center;
  padding: 20px 20px 0 20px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  justify-content: space-between;
  border-radius: 100px 20px 20px 100px;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  animation: animate 15s linear infinite;
  animation-delay: calc(3s * var(--delay));
}
.outer:hover .card{
  animation-play-state: paused;
}
.wrapper .card:last-child{
  animation-delay: calc(-3s * var(--delay));
}
@keyframes animate {
  0%{
    opacity: 0;
    transform: translateY(100%) scale(0.5);
  }
  5%, 20%{
    opacity: 0.4;
    transform: translateY(100%) scale(0.7);
  }
  25%, 40%{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%) scale(1);
  }
  45%, 60%{
    opacity: 0.4;
    transform: translateY(-80%) scale(0.7);
  }
  65%, 100%{
    opacity: 0;
    transform: translateY(-80%) scale(0.5);
  }
}
.card .content{
  display: flex;
  align-items: center;
}

/* .wrapper .card .img{
  height: 90px;
  width: 90px;
  position: absolute;
  left: -5px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.card .img img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
} */
.card .details{
  margin-top: 40px;
  margin-left: 20px;
  font-size: 16px;
}
.details span{
  font-weight: 600;
  font-size: 18px;
  color: var(--magenta-color);
  text-transform: uppercase;
}
/* .card a{
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%);
  transition: all 0.3s ease;
}
.card a:hover{
  transform: scale(0.94);
} */