@media screen and (min-width: 1000px) {
    .hamburger-new {
        display: none !important;
    }
}

.hamburger-new {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
}


.hamburger-new.is-active {
    transform: rotate(-45deg);
}


.line-menu {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 4px;
}

.line-menu2 {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 4px;
}

.is-active .line-menu2 {
    background: #483e8f;
}

.line-menu.half {
    width: 50%;
}

.line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.is-active .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
    background: #483e8f;
}

.line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;

}

.is-active .line-menu.end {
    transform: rotate(-90deg) translateX(-3px);
    background: #483e8f;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    display: block;
    z-index: 999;
    background: #f5f3fd;
    padding: 30px;
    transition: 0.4s;

}

.mobile-nav.is-active {
    left: 0;
}

.menu-body-mobile {
    margin: 30px 0px;
}

.menu-body-mobile ul li a {
    font-size: 14px;
    color: #483e8f;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    margin: 15px 8px;
}
