/* =========================
   Category Navigation
========================= */

.hs-category-nav{

display:flex;
width:100%;
max-width:1100px;
margin:0 auto;

}

.hs-ui{
width:100%;
}

/* nav item */

.hs-nav-item{

flex:1;

height:52px;

display:flex;
align-items:center;
justify-content:center;

font-size:16px;
font-weight:700;

text-decoration:none;

color:#999;

position:relative;

transition:color .15s;

}

/* hover */

.hs-nav-item:hover{

color:#7D28D4;

}

/* active */

.hs-nav-item.is-active{

color:#7D28D4;

}

/* underline */

.hs-nav-item.is-active::after{

content:"";

position:absolute;

bottom:-1px;
left:0;

width:100%;
height:3px;

background:#7D28D4;

}