@media screen and (min-width: 1200px) {

    #home-store-listings-flex-section {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #home-store-listings-flex-section > div {
        width: calc((100% / 3) - 14px);
    }

    #home-store-listings-flex-section > div:nth-of-type(3n + 3) {
        width: calc((100% / 3) - 12px);
    }


    #home-store-listings-flex-section > div > h3::after {
        /*content: '';*/
        /*position: absolute;*/
        /*top: 26px;*/
        /*left: 0;*/
        /*height: 2px;*/
        /*width: 100%;*/
        /*background: #6f4e37;*/
        /*transition: all 300ms linear;*/
    }

    #home-store-listings-flex-section > div > a,
    #home-store-listings-flex-section > div > a > img {
        overflow: hidden;
    }

    #home-store-listings-flex-section > div:not(:nth-of-type(3n + 3)) {
        margin-right: 20px;
    }

    .eat-and-drink-small-blocks-a-caption {
        position: absolute;
        top: 20px;
        left: 50px;
        width: calc(100% - 180px);
    }

    .eat-and-drink-small-blocks-a1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 20px);
        background-color: rgba(44, 31, 22, 0.5);
        transition: .5s cubic-bezier(0.4, 0, 0.2, 1) all;
    }

    .eat-and-drink-small-blocks-a1:hover::before {
        width: calc(76%);
    }

    #eat-and-drink-flex-small-blocks > div {
        width: 20%;
    }
}