section#product-category {
    min-height: 341px;
    text-align: center;
    background: #ffffff;
    z-index: 0;
}
section#product-category h2 {
    background-color: white;
    padding-top: 30px;
    padding-bottom: 20px;
    font-family: 'Roboto Slab' !important;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    font-size: larger;
    text-transform: uppercase;
    color: black;
}
section#product-category .u-gallery
{
    display: inline-block;
    width: 100%;
    margin-top: 8px;
}
section#product-category .u-gallery .u-gallery-inner
{
    margin: 0 auto;
}
section#product-category .u-gallery .u-gallery-inner .u-gallery-item-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
section#product-category .u-gallery .u-gallery-item
{
    display: inline-block;
    float: left;
    box-sizing: border-box;
    width: calc(100%/3);
    height: auto;
    padding: 0;
}
section#product-category .u-gallery.even .u-gallery-item {
    width: calc(100%/2);
}
section#product-category .u-gallery .u-gallery-inner .u-gallery-item .u-back-slide {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    padding-top: 220px;
}
section#product-category .u-over-slide {
    background-image: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2));
    padding: 20px;
    opacity: 0.5;
    transition: all 500ms ease;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
section#product-category .u-over-slide:hover {
    opacity: 1;
}

section#product-category .u-back-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute !important;
    left: 0;
    top: 0;
    z-index: -1;
}
section#product-category .u-gallery-heading {
    display: inline-block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    z-index: 1;
}
section#product-category .u-gallery-item a {
    border-style: none;
    color: #ffffff !important;
    stroke: none;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.1;
}
/*
section#product-category .u-gallery-item a:hover {
    border-color: #478ac9 !important;
}
*/
section#product-category .u-gallery-item video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /*min-height: 100%;*/
    /*width: auto;*/
    height: auto;
    z-index: -100;
    background-size: cover;
    overflow: hidden;
}

@media (max-width: 767px) {
    section#product-category .u-gallery .u-gallery-item {
        width: 100%;
        padding: 0;
    }
    section#product-category .u-gallery .u-gallery-inner .u-gallery-item .u-back-slide {
        padding-top: 42vw;
    }
    section#product-category .u-gallery.even .u-gallery-item {
        width: 100%;
    }
}