.categories-block .category-wrapper{
    position:relative;
}
.categories-block .slick-slider .category-wrapper{
    padding:0 10px;
}
.category{
    display:block;
    height:auto;
    position:relative;
    overflow: hidden;
    cursor:pointer;
}
.category-image {
    display:block;
    width:100%;
    height:auto;
    transition-duration:300ms;
}

.category-overlay {
    position:absolute;
    top:50%;
    left:0;
    right:0;
    bottom:0;
    padding: 20px;
    display:flex;
    align-items:flex-end;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.category-overlay-text{
    text-align:right;
    width:100%;
}
.category-overlay-text h3 {
    color:#fff;
    font-size:var(--theme--text-large, 1.25em);
    letter-spacing: 0.1em;
    margin:0;

}

.category-overlay-text .sub-title {
    color:#fff;
    font-size:var(--theme--text-small, 0.875em);
}
.category:hover .category-image{
    transform:scale(1.1);
}

.category-wrapper.slick-slide .category {
    transition-duration:300ms;
    margin-top:40px;
    margin-bottom:50px;
    outline:none;
    color:#000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.35);
}

.category-wrapper.slick-current .category {
    transform:scale(1.2);
    z-index:10;
}
