.featured-categories .block-title
{
    margin-bottom: 15px;
}

.widget-featured-categories-horizontal .slick-list {
    height: 200px;
}

.widget-featured-categories-horizontal .slick-track,
.widget-featured-categories-horizontal .item
{
    position: relative;
    height: 100%;
}

.widget-featured-categories-horizontal .item
{
    display: block;
}

.widget-featured-categories-horizontal .item .name
{
    position:absolute;
    left: 0;
    top: 0;
    display: flex;
    background-color: #ffffff;
    opacity: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

.widget-featured-categories-horizontal .item:hover .name
{
    opacity: 0.7;
}

.widget-featured-categories-horizontal .item .image
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.widget-featured-categories-horizontal .item .image img
{
    width: 100%;
    height: auto;
}