.categoryListBox{
    padding: 25px;
    border-radius: 15px;
    background: #EBEEF8;
    margin-bottom: 40px;
}

.categoryListFrame{
    display: flex;
    justify-content: space-evenly;
}

.catCardBox{
    padding: 15px;
    width: 250px;
    text-decoration: none;
    overflow: hidden;
}


.catCard{
    border-radius: 9px;
    padding: 15px 10px;
    background: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.catType{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000055;
}
.catCount{
    font-size: 12px;
    font-weight: 500;
    color: rgb(100, 100, 100);
}

@media screen and (max-width: 570px) {
   
    .catCardBox{
        width: 100%;
    }


}