#allmenu {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    z-index: 999;
}

.menu-toggler {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 650ms ease-out;
}

.menu-toggler.open {
    transform: rotate(-45deg);
}

nav.fullscreenNav.open .menu-toggler {
    position: absolute;
    right: 3rem;
    top: 2rem;
}

nav.fullscreenNav.open .menu-toggler {
    transform: rotate(-45deg);
}

.menu-toggler .bar {
    background-color: #fff;
    width: 100%;
    height: 2px;
    border-radius: 0.8rem;
}

.menu-toggler.open .bar {
    background-color: #fff !important;
}

.header.bg-white .bar,
.header.on .bar,
.kso-sticky.sticked .bar,
.kso-sticky.sticked .menu-toggler.open .bar {
    background-color: #333;
}

.menu-toggler .bar.top {
    transform-origin: right;
    transition: transform .3s cubic-bezier(.17, .67, .83, .67);
}

.menu-toggler.open .bar.top {
    width: 50%;
    transform: rotate(-90deg) translateX(0.2rem);
}

.bar.bottom {
    align-self: flex-end;
    transform-origin: left;
    transition: transform .3s cubic-bezier(.17, .67, .83, .67);
}

.menu-toggler.open .bar.bottom {
    width: 50%;
    transform: rotate(-90deg) translateX(-0.2rem);
}

nav.fullscreenNav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    left: 0;
    z-index: 99;
    background: rgb(255, 122, 0);
    background-color: no-repeat linear-gradient(150deg, rgba(255, 122, 0, 1) 0%, rgba(255, 122, 0, 1) 100%);
    background-position: right end;
    background-repeat: no-repeat;
    transition: all 650ms cubic-bezier(1, 0, 0, 1);
}
nav.fullscreenNav:before {
    content: '';
    position: absolute;
    right: -5%;
    bottom: 1rem;
    width: 414px;
    height: 303px;
    background-image: url(../img/em.png);
    opacity: .2;
}
nav.fullscreenNav.open {
    top: 0;
    left: 0;
}

.nav-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-list .nav-link {
    font-size: 2rem;
    padding: 1rem;
}

.nav-list .nav-link:hover,
.nav-link:focus {
    color: #fff;
}

.fullscreenNav a {
    display: block;
    color: #fff;
}

.fullscreenNav a:hover {
    color: #2A3344;
}

.fullscreenNav .nav-list>li {
    padding: 0 15px;
}

.fullscreenNav .nav-list>li>a {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    font-size: 26px;
    font-weight: 500;
}

.fullscreenNav .nav-list .nav-item li a {
    margin-bottom: 10px;
    font-size: 20px;
}

.fullscreenNav .nav-list .nav-item li ul li a {
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
}

.fullscreenNav .nav-list .nav-item li ul li a:hover {
    color: #2A3344;
}

.fullscreenNav .nav-list .nav-item ul.depth2 {
    display: flex;
    flex-direction: column;
}

.fullscreenNav .depth3 {
    display: none;
}

.none-events {
    pointer-events: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-list {
        flex-direction: column;
    }

    .nav-list .nav-link {
        font-size: 2.5rem;
    }
}