
@media all and (min-width: 426px) and (max-width:639px),all and (min-width:0) and (max-width:425px) {
    .subcategories--imagesSmall {
        grid-template-columns:repeat(auto-fill,89px)
    }
}

.subcategories--imagesBig {
    grid-template-columns: repeat(auto-fill,200px)
}

@media all and (min-width: 640px) and (max-width:1279px),all and (min-width:426px) and (max-width:639px),all and (min-width:0) and (max-width:425px) {
    .subcategories--imagesBig {
        grid-template-columns:repeat(auto-fill,minmax(200px,1fr))
    }
}

.subcategories {
    display: grid;
    
    justify-content: space-between;
    row-gap: 15px;
    column-gap: 5px;
    padding-bottom: 45px
}