/* All shop items */
.shop_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

/* Shop image */
.shop_items img{
    height: 50px;
    width: unset;
}

@media screen and (max-width:767px){

    /* All shop items */
    .shop_items{
        gap: 20px;
    }

    /* Shop image */
    .shop_items img{
        height: 40px;
    }
}