
.wrapper .outer{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 788px;
  top: -151px;
}
.wrapper .card{
  background: #fff;
  width: 98%;
  height: 60%;
  display: flex;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  justify-content: space-between;
  border-radius: 20px 20px 20px 20px;
  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;
    filter: blur(2px) brightness(0.6);
    transform: translateY(100%) scale(0.8);
  }
  5%, 20% {
    opacity: 0.3;
    filter: blur(1px) brightness(0.7);
    transform: translateY(100%) scale(0.9);
  }
  25%, 40% {
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: translateY(0%) scale(1);
  }
  45%, 60% {
    opacity: 0.3;
    filter: blur(1px) brightness(0.7);
    transform: translateY(-100%) scale(0.9);
  }
  65%, 100% {
    opacity: 0;
    filter: blur(2px) brightness(0.6);
    transform: translateY(-200%) scale(0.8);
  }
}

.card .content{
  display: flex;
  align-items: center;
}
.wrapper .card .img{
  height: 100%;
  width: 100%;
  position: absolute;
  left: -5px;
  background: #fff;
/*  border-radius: 50%;*/
  padding: 5px;
  box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
}
.card .img img{
  height: 100%;
  width: 100%;
/*  border-radius: 50%;*/
  object-fit: cover;
}
.card .details{
  margin-left: 80px;
}
.details span{
  font-weight: 600;
  font-size: 30px;
}
.card a{
  margin-top: 30px;
  text-decoration: none;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 600;
/*      border-radius: 30px;*/
  border: 2px solid #ffffff;
  background-color: #009b8e;
  transition: background-image 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
}
.card a:hover{
  transform: scale(0.94);
}