#ProductCategoryMainContainer {
    width: 75rem;
    display: flex;
}

#categoryLetfNav {
    width: 25%;
    outline: 0.063rem solid var(--lg);
    background-color: white;
    margin: 0.313rem;
    padding: 0.313rem;
}

#CategoryHeaderContainer{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}

#categoryLetfNavCategoryHeaderHamburgerIcon{
    display:none;
}

#categoryLetfNavCategoryHeader {
    padding: 0.313rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0053a0;
}

#secCategotyItems {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
}



.NavPanelItem {
    cursor: pointer;
    padding: 0.625rem;
    border-bottom: 0.063rem solid #bdbdbda1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .NavPanelItem:hover {
        text-decoration: underline;
    }


.ItemCard {
    width: 33%;
    cursor: pointer;
    padding: 0.313rem;
}

.ItemCardInner {
    outline: 0.063rem solid var(--lg);
    background-color: white;
}

.ItemCard:hover {
    text-decoration: underline;
}

.ItemCardImgContainer {
    height: 18.75rem;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.CardHeader {
    text-align: center;
    width: 100%;
    padding: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0053a0;
}

@media (max-width: 48rem) {

    #ProductCategoryMainContainer {
        width:100%;
        flex-wrap:wrap;
    }

    #categoryLetfNav {
        width: 100%;
        outline: 0.063rem solid var(--lg);
        background-color: white;
        margin: 0.313rem;
        padding: 0.313rem;
    }

    #categoryLetfNavCategoryHeader {
        font-size: 1.375rem;
    }

    #categoryLetfNavCategoryHeaderHamburgerIcon {
        display: block;
    }

    #NavPanelItemContainer{
        display:none;
    }

    #secCategotyItems {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }


    .ItemCard {
        width: 100%;
        cursor: pointer;
        padding: 0.313rem;
    }

    .ItemCardInner {
        display: flex;
        align-items: center;
        padding: 0.3125rem;
    }

    .ItemCardImgContainer {
        height: 6.25rem;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .CardHeader {
        font-size: 1.4rem;
    }
}
