.home-category {
    margin-bottom: 40px;
}

#category .home-category .title_block {
    display: none;
}

.home-category .category-info .category-name {
    margin-bottom: 0;
    text-transform: uppercase;
}

.home-category .category-item {
    position: relative;
    overflow: hidden;
    transition: all .2s linear;
    padding: 0;
}

.home-category .category-item .category-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    left: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all .2s linear;
    transform: translate(-50%);
    background: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(2px);
}

.home-category .horizontal-dots {
    justify-content: center;
    display: flex;
}

.home-category .horizontal-dots {
    margin-top: 20px;
}

.home-category .horizontal-dots li {
    margin: 0 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.home-category .horizontal-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    border: 0;
    position: relative;
}

.home-category .horizontal-dots li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 35px;
    content: '';
    opacity: .25;
    color: transparent;
    background: #3a3a3a;
}

.home-category .horizontal-dots li.slick-active button:before {
    opacity: .75;
}

.home-category .category-item:hover .img-responsive {
    transform: scale(1.02);
}

.home-category .category-item:hover .category-info {
    opacity: 1;
}
.home-category .category-item .category-info .views {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.home-category .category-item .category-info .views span{
    color: #3a3a3a;
    font-size: 16px;
}

.home-category .category-item .category-info .views .fl-outicons-right-arrow30 {
    color: #3a3a3a;
    font-size: 18px;
    margin-top: 10px;
}


@media (min-width: 768px) and (max-width: 1200px){
    .home-category .col-md-3 {
        margin-bottom: 20px;
    }
}