

.card{
   display: inline-block;
   height: 600px;
   width: 500px;
   margin: 80px;
   margin-bottom: 10px;
   background: #fff;
   border-radius: 20px 20px 20px 158px;
   box-shadow: 10px 50px 55px --50px #000;
   position: relative;
   overflow: hidden;
   
}


.card::before{
    content: '';
    position: absolute;
    height: 130px;
    width: 130px;
    background: linear-gradient(120deg, #0034c4,#828af3);
    right: 0;
    border-radius: 0 0 0 158px;
    box-shadow: 0 5px 3px #000;
    transition: 0.5s;
}


.card.card:hover::before{
    height: 100%;
    width: 100%;
}

h2{
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 65px;
    color: #fff;
    font-family: sans-serif;
}

.prp{
    top: 150px;
    position: absolute;
    padding: 5px;
    
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    transition: 0.5s;

}

.prp:hover,.card:hover{
    color: #fff;
}



.card:nth-child(2):before{
    background: linear-gradient(120deg, #193BF9,#3498DB,#fff);
}
.card:nth-child(3):before{
    background: linear-gradient(120deg, #193BF9,#3498DB,#fff);
}

.card:nth-child(4):before{
    background: linear-gradient(120deg, #193BF9,#3498DB,#fff);
}

.card:nth-child(5):before{
    background: linear-gradient(120deg, #193BF9,#3498DB,#fff);
}

.card:nth-child(6):before{
    background: linear-gradient(120deg, #193BF9,#3498DB,#fff);
}






