.category-cards .card{
    display: flex;
    flex-basis: 25%;
    padding: 20px;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;
    transition: all ease 0.25s;
    align-items: center;
    border-radius: 5px;
    border-bottom: 5px solid #2f4858;
    box-shadow: 1.98009px 3.96018px 9.90045px 0.990045px rgb(0 0 0 / 15%);
}

.category-cards .card h2{
    text-align: center;
    font-size: 20px;
}

.category-cards p{
    color: #8b8f9e;
}

.category-cards .card-body{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
}

.category-cards .card img{
    clip-path: circle(44% at 49% 44%);
    width: 100px;
}

.category-cards .category-row{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

.category-cards .learn-more{
    font-size: 18px;
    font-weight: 600;
    color: #265f9d;
}

.category-cards .card:hover{
    transform: translateY(-20px);
}

.category-cards .card:hover .learn-more{
    color: black;
}