.card {transition: 0.5s all ease-in-out;
box-shadow: 0px 20px 81px 0px rgb(8 0 20 / 14%); background-color: #fff;}
.card:hover {transform: translate(-7px, -7px);
box-shadow: 0px 20px 81px 0px rgb(8 0 20 / 30%);}
.box:hover:before { transform: translate(7px, 7px);}
.box:before {
content: "";
width: 100%;
top: 0;
left: 0;
height: 100%;
z-index: -3;
border-radius: 10px;
position: absolute;
transition: 0.5s all ease-in-out;
background-image: linear-gradient(
45deg, #fc01fd 32%, #6b2c94 100%);
}
.box:after {
content: "";
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -2;
border-radius: 10px;
background-color: #fff;
}
.relative-position { position: relative;}