.sub-category-menu {
    margin: 20px 0;    
}

.sub-category-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;   
}

.sub-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-category-item {
    width: calc(33% - 3px);
    display: flex;
    max-width: 33%;
    padding: 11px 10px 11px 0;
    background: #fff;
    text-align: center;    
    text-decoration: none;
    color: #000;    
    transition: 0.2s;
    border: 1px solid #DFDFDF;    
    border-radius: 10px;    
    align-items: center;
}

.sub-category-item img {
    /*
    max-width: 264px;
    height: 85px;
    object-fit: contain;
    */
    margin-bottom: 10px;    
    margin-right: 50px;
    display: block;    

}

.sub-category-item span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    /*
    line-height: 20px;
    min-height: 45px;
    */
    text-align: left;    
    padding: 0 0 0 10px;
}

a.sub-category-item span:hover {
    color:  #1a3c5e;
    text-decoration: underline;
}

.sub-category-item.active {
    /* border-color: #2196f3;  background: #fff; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


@media (max-width: 992px) {
    .sub-category-item {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 600px) {
    .sub-category-item {
        width: calc(50% - 10px);
        max-width: 50%;
    }
    
    .sub-category-item img {
        margin-bottom: 10px;
        margin-right: 0;
        display: block;
        max-width: 100%;
    }

}


@media (max-width: 480px) {
    .sub-category-item {
        width: calc(50% - 5px);
        max-width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub-category-item img {
        margin-bottom: 0;
        margin-right: 0;
        display: block;
        max-width: 100%;
    }

    .sub-category-item span {       
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        padding: 0 0 0 10px;
    }

}
