body.np-menu-open{
  overflow: hidden;
}

.np-burger.is-open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.np-burger.is-open span:nth-child(2){
  opacity:0;
}

.np-burger.is-open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

.np-header { z-index: 9999; }
.np-nav { z-index: 10000; }
.np-nav-overlay { z-index: 9998; }

.np-section-menu {
    background: #f8f9fb;
    padding: 30px 0;
}

.np-section-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.np-section-nav li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #485693;
    padding: 8px 0;
    position: relative;
    transition: all .25s ease;
}

.np-section-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #485693;
    transition: width .25s ease;
}

.np-section-nav li a:hover::after {
    width: 100%;
}