#collections-listing {
    padding: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#collections-listing>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

#collections-listing>ul>li {
    display: inline-block;
    width: 30%;
    min-width: 250px;
    box-sizing: border-box;
    position: relative;
}

#collections-listing .consumer-brand-products-hover {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

#collections-listing .reveal-products-from-brand {
    opacity: 0.9;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    color: black;
    background-color: white;
    padding: 20px;
}

#collections-listing .consumer-brand-products-hover>ul {
    list-style: none;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, , -50%);
    transform: translateY(-50%);
}

#collections-listing .consumer-brand-products-hover a {
    text-decoration: none;
    color: #2f2f2f;
    font-size: 19px;
}

#collections-listing .consumer-brand-products-hover a:hover {
    font-weight: bold;
}
