/* Add custom CSS styles below */ 



@media (max-width: 768px) {
    .store-features {
        display: grid
;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 12px;
        gap: 12px;
        grid-row-gap: 20px;
        row-gap: 20px;
        justify-content: space-evenly;
        align-content: space-between;
        align-items: normal;
        justify-items: end;
    }
}
@media (max-width: 992px) {
    .store-features li p {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .store-features li h3 {
        font-size: 16px;
    }
}
@media (max-width: 992px) {
    .store-features li img {
        height: 50px;
        width: 50px;
        margin-bottom: 6px;
    }
}