/* ----- 
Category Featured 
----- */
.category-thumb .caption {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    padding: 10px;
    opacity: 0;
    transition: 1s;
}
.category-thumb:hover .caption {
    opacity: 1;
    bottom: 0;
}
.category-thumb .caption .btn-default {
    border: 2px solid var(--secondary-color);
}
.category-thumb .featured-category-desc {
    font-size: 24px;
    margin-bottom: 60px;
    line-height: initial;
}
.category-thumb {
    background: var(--background-color);
    padding: 11px 0;
    transition: 0.5s;
    margin-bottom: 30px;
    position: relative;
}
.category-thumb:hover {
    background: var(--primary-hover-color);
}
.category-thumb .image img {
    max-width: 178px;
    transition: 0.5s;
}
.category-thumb:hover .image img {
    filter: brightness(0) invert(1);
}
.category-thumb h4.cat-title a {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 400;
    text-transform: capitalize;
}
.category-thumb h4.cat-title {
    margin-bottom: 0;
}
.category-layout {
    -moz-animation: zoomIn 1000ms ease;
    -o-animation: zoomIn 1000ms ease;
    -webkit-animation: zoomIn 1000ms ease;
    animation: zoomIn 1000ms ease;
}
@media (max-width: 1440px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
    .category-thumb {
        margin-bottom: 20px;
    }
    .category-thumb .caption{
        display: none;
    }
}
@media (max-width: 767px) { 
}

