@import 'general.css';
@import 'inner-banner.css';

.product-listing {
    padding: 75px 0 45px;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.product-grid .product-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.product-grid .product-item .product-image {
    border-radius: 32px;
    background-color: #F6F7F9;
}
.product-grid .product-item h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 20px;
}
.small-product-listing {
    padding: 0 0 60px;
}
.small-product-listing .product-grid .product-item {
    flex: 0 0 25%;
    max-width: 25%;
}
.small-product-listing h2 {
    margin-bottom: 30px;
}
@media (max-width:1199px) {
    .product-grid .product-item h3 {
        font-size: 20px;
        margin-top: 15px;
    }
    .product-listing {
        padding: 60px 0 25px;
    }
}
@media (max-width:767px) {
    .product-grid .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .product-grid .product-item .product-image {
        border-radius: 16px;
    }
}
@media (max-width: 575px) {
    .small-product-listing .product-grid .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .product-grid .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 375px) {
    .small-product-listing .product-grid .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}