.section-category .category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.category .category_item {
    border-radius: 1.5rem;
    background: #FFF;
    padding: 0.5rem;
    width: 100%;
    z-index: 1;
    position: relative;
}

.category .category_item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #A09EFF 0%, #6462F9 100%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s;
}

.category .category_item:hover::before {
    opacity: 1;
}

.cat_head {
    display: flex;
    flex-direction: column;
}


.category .category_img::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #fff;
    opacity: 0;
    transition: 0.5s;
    border-radius: 1.5rem;
}

.category .category_item:hover .category_img::before {
    opacity: 1;
}

.category .category_img {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(90deg, #F6F7F9 0%, rgba(246, 247, 249, 0) 100%);
    border-radius: 1.5rem;
    transition: 0.5s;
    z-index: 1;
    position: relative;
}

.cat_head .title-cat {
    font-size: 1rem;
    font-weight: 600;
    color: #0B014A;
    line-height: 2;
    transition: 0.5s;
}

.category_item .category__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
}

.cat_head .number-pro {
    font-size: 12px;
    transition: 0.5s;
}

.category .category_item:hover .category__content .cat_head .title-cat,
.category .category_item:hover .category__content {
    color: #FFF;
}

.category__content i {
    font-size: 0.75rem;
    transition: 0.5s;
}





@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {
    .section-category .category {
        flex-wrap: wrap;
        gap: .5rem;
    }

    .category .category_item {
        flex: 1 0 30%;
    }

    .cat_head .title-cat {
        font-size: 0.875rem;
    }
}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {
    .category .category_item {
        flex: 1 0 48%;
    }
}