.vwrapper{
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.vcontainer{
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;

}
.vcard{
    width:80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin:0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rbga(0,0,0,0.8);

}
.vcard > .vrow{
    ALIGN-ITEMS: CENTER;
    color:white;
    display: flex;
    flex-wrap: nowrap;
}
.vcard > .vrow > .vicon{
    background: #223;
    color:white;
    border-radius: 50%;
    width: 50px;
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;

}
.vcard > .vrow > .vdescription{
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 136px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition:all .3s ease;

}
.vdescription p,.mobilecard p{
    color:black;
    padding:5px;
    font-weight: 100;
}
.vdescription h4{
    text-transform: uppercase;

}
input[type=radio]{
    display: none;
}
input[type=radio]:checked+label{
    width: 600px;
}
input[type=radio]:checked + label .vdescription{
    opacity: 1 !important;
    transform: translateY(0) !important;
}


@media(max-width:768px){
    .mobilecard p{
        font-size: 12px;
    }
}