.categorie-box {
    width: 100%;
    height: 310px;
    /* total height of box */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}


/* Image Wrapper */

.categorie-box .cat-img {
    width: 100%;
    height: 220px;
    /* image height */
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}


/* Image Styling */

.categorie-box .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* perfect circle crop */
    border-radius: 50%;
    /* prevents stretching */
}


/* Heading below image */

.categorie-box .cat-desc h5 {
    margin-top: 24px !important;
    /* shift heading up */
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}


/* Centering text */

.categorie-box .cat-desc {
    text-align: center;
}