/*category-nav*/
.nav-categories{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color:var( --secondary-color-alt5);
    font-size: 1.833rem;

    font-weight: var(--font-weight-sizeOne);
}
.nav-categories a{
    color:var(--secondary-color-alt3);
}


.btn-link-categories {
    font-weight: 400;
    color:var(--secondary-color-alt3);
    font-size: 1.533rem;
    padding: 10px 5px;
}

.btn:focus, .btn.focus {
    outline: 0;
}

.category-icon{
    color: var(--secondary-color-alt3);
}

.btn-link-categories:hover {
    color: var(--secondary-color-alt10);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
}


.categories-title{
    margin-top: 20px;
    margin-bottom: 2px;
    font-size: 1.1rem;
    font-weight: 400;
    color:var(--secondary-color-alt10);
}

.categories-title:first-child {
    margin-top: 0px;
}

.categories-subTitle{
    list-style-type: none;
    text-decoration: none;

}
.categories-subTitle li a{
    display: block;
    padding-bottom: 7px;
    font-size: 1.1rem;
    color:var(--secondary-color-alt3);
    font-weight:var(--font-wieght-sizeOne);
}

.categories-image {
    vertical-align: middle;
    border-style: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.categories-grid .categories-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
}

.categories-grid .categories-box .content-img {
    display: block;
    flex-shrink: 0;
}

.categories-grid .categories-box .content-img .categories-image {
    width: 180px;
    height: 180px;
    min-width: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.categories-grid .categories-box:not(:has(.body-category)) .content-img .categories-image {
    width: 200px;
    height: 200px;
    min-width: 200px;
}

.category-content {
    flex: 1;
    min-width: 0;
}

.category-content .header-category a {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 0;
}

.category-content .body-category {
    padding-top: 8px;
}

.category-content .body-category .categories-title a {
    color: inherit;
}

@media only screen and (max-width: 768px) {
    .category-icon{

        color: var(--secondary-color-alt3);
    }

    .categories-image{
        vertical-align: middle;
        border-style: none;
    }
    .category-icon-two{
        margin-right: 180px;
        color: var(--secondary-color-alt3);
    }

}
