/* ----- 
Category Featured 
----- */
.category-thumb .caption {
    margin-top: 20px; 
}
 
.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 .images-hover{
    background-color: var(--background-color);
    border: 1px solid var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
}
.category-thumb:hover .images-hover{
    background-color: rgba(255, 86, 141, 0.2);
    border: 1px solid var(--primary-hover-color);
}
 
.category-thumb h4.cat-title a {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
}
.category-thumb h4.cat-title a:hover{
    color: var(--primary-hover-color);
}
.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: 991px) {
    .category-thumb {
        margin-bottom: 20px;
    }     
}
@media (max-width: 768px) {
    .category-thumb {
        margin-bottom: 0;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .category-thumb .caption{
        margin-top: 10px;
    }
    .category-thumb h4.cat-title a {
        font-size: 16px;
    }
} 