.category-card{

    border-radius:18px;
    transition:.25s;
    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.15)!important;

}

.category-icon{

    width:80px;
    height:80px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

}

.category-icon img{

    width:70px;
    height:70px;
    object-fit:contain;

}

.category-card h6{

    min-height:40px;

}

@media(max-width:768px){

.category-icon{

    width:60px;
    height:60px;

}

.category-icon img{

    width:50px;
    height:50px;

}

.category-card h6{

    font-size:14px;

}

}