.card {
    width: 320px;
    height: 280px;
    background-color: #ffff;
    position: relative;
    overflow: hidden;
    border: 1px solid #f10175;
    transition:  all 0.5s cubic-bezier(0.23,1.0.32,1);
}
.wave {
    position: absolute;
    left: 0;
    bottom: -110%;
    width: 100%;
    height: 100%;
    background-color: #f10175;
    transition: 0.8s cubic-bezier(0.4,0,0.2,1);
    border-radius: 40%;
    opacity: 0.6;
}
.card:hover .wave {
    border: 0;
    transform: rotate(360deg);
    border-radius: 0;
    opacity: 1;
    bottom: 0;
}
.card:hover h3 {
    color: #ffff;
    transition-delay: 0.1s   ;
}