.category-card{
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15)!important;
}

.category-card .btn{
    border-radius:50px;
    font-weight:600;
}

.category-card img{
    transition:0.5s;
}

.category-card:hover img{
    transform:scale(1.05);
}

@media(max-width:768px){
    .category-card img{
        height:220px !important;
    }
}