/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
    
    /* - home - */
    /* about */
    .about-info {
        max-height: none;
    }
    /* retailers */
    .retailers-wrapper {
        text-align: left;
    }
    .retailers-row {
        width: 100%;
        margin-bottom: 30px;
        column-count: 3;
    }
}

/* Medium devices (tablets, 768px - 992px) */

@media (min-width: 768px) and (max-width: 991.98px) {
    /* - home - */
    /* retailers */
    .retailers-row {
        column-count: 3;
    }
    /* - prod - */
    .menu-list-wrapper, .prod-detail-wrapper, .prod-list-wrapper {
        padding-right: 60px;
        padding-left: 60px;
    }
}