/* subpage NAV */
#subpage_nav
{
    border-bottom: 1px solid #ddd;
    justify-content: center !important;
}
.item_icon
{
    position: relative;
}

.item_icon > div::after 
{
    content: "";
    position: relative;
    right: -45px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgb(186 188 191);
}

.page_title1:after 
{
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #828282;
    margin: 12px 0 0;
}

.menu-item 
{
    margin-right: 5rem;
    height: 38px;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #666666;
}
.menu-item:last-child
{
    margin-right: 0;
}

.menu-item:hover 
{
    color: #222222;
    transition: all 0.2s ease-in-out;
}

.menu-item::after
{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #222222;
    transform: scaleX(0);
    transition: all 0.2s ease-in-out;
}

.menu-item:hover::after
{
    transform: scaleX(1);
}

.menu-item.active 
{
    color: #222222;
    font-weight: 700;
}

.menu-item.active::after 
{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(1);
    background-color: #222222;
    z-index: 1;
}

.breadcrumb-separator 
{
    margin: 0 8px;
    color: #9ca3af;
}