.product-category-section-title{
    text-align: center;
    font-size: 32px;
    font-family:  var(--raleway-font);
}
.product-category-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    /* padding: 0px 56px; */
}
.product-category-wrapper .card{
    width: calc(100% / 3 - 17px);
    text-decoration: none;
    background: transparent;
}
.product-category-wrapper .card .image-wrapper{
    background: #ECECEC;
    /* height: 512px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-sizing: border-box;
}
.product-category-wrapper .card .caption{
    font-size: 20px;
    text-align: center;
    margin: 12px 0 0 0;
    font-family: var(--cabin-font);
    color: black;
}

.product-category-wrapper .image-wrapper img {
    max-width: 95% !important;
}

@media (max-width: 960px) {

    .product-category-wrapper .card .image-wrapper{
        padding: 30px;
    }

    
}

@media (max-width: 640px) {
    
    /* .product-category-wrapper{
        padding: 0 24px;
    } */

    .product-category-wrapper .image-wrapper img {
        max-width: 100px !important;
    }
    .product-category-section-title{
        font-size: 24px;
    }
    .product-category-wrapper .card{
        width: calc(100% / 2 - 15px);
    }
    .product-category-wrapper .card .caption{
        font-size: 16px;
    }
}