.lldw-wm-menu-ajax_nav-categories {
  margin-bottom: 30px;
}

.lldw-wm-menu-ajax_nav-categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* nav links */

.lldw-wm-menu-ajax_nav-categories li {
  position: relative;
  list-style: none;
  margin: 0 12px;
  padding: 6px 0;

  color: #333;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.lldw-wm-menu-ajax_nav-categories li:hover,
.lldw-wm-menu-ajax_nav-categories li.active {
  font-weight: bold;
}


.lldw-wm-menu-ajax_nav-categories li:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #080b13;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.lldw-wm-menu-ajax_nav-categories li:hover:before{
  width: 100%;
}

.lldw-wm-menu-ajax_nav-categories li.center:before{
  left: 50%;
  transform: translateX(-50%);
}

.lldw-wm-menu-ajax_nav-categories li.upward:before{
  width: 100%;
  bottom: -5px;
  opacity: 0;
}

.lldw-wm-menu-ajax_nav-categories li.upward:hover:before{
  bottom: 0px;
  opacity: 1;
}

.lldw-wm-menu-ajax_nav-categories li.forward:before{
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.lldw-wm-menu-ajax_nav-categories li.forward:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}

.lldw-wm-menu-ajax_content {
  position: relative;
}