
nav.fullscreenNav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    z-index: 99;
    background-color: #182533;
    transition: all 650ms cubic-bezier(1,0,0,1);
}
nav.fullscreenNav.open {
    top: 0;
    border-radius: initial;
}
.nav-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
}
.text-menu {
    position: fixed;
    right: 1.5rem;
    top: 2rem;
    transition: all 300ms ease-out;
}
.menu-toggler {
    position: fixed;
    top: 2rem;
    right: 4.5rem;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 999;
    transition: all 300ms ease-out;
}
.menu-toggler.open {
    transform: rotate(-45deg);
}
nav.fullscreenNav.open .menu-toggler {
    position: fixed;
    right: 2rem;top: 2rem;
}
.bar {
    background-color: #000;
    width: 100%;
    height: 2px;
    border-radius: 0.8rem;
}
.kso-header.sticky .bar {
    background-color: #333;
}
.kso-header.sticky .menu-toggler.open .bar {
    background-color: #fff;
}
.bar.half {
    width: 50%;
}
.bar.top {
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.top {
    transform: rotate(-90deg) translateX(0.4rem);
}
.bar.bottom {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.bottom {
    transform: rotate(-90deg) translateX(-0.4rem);
}


.fullscreenNav a {
    display: block;
    color: #fff;
}
.fullscreenNav .nav-list>li {
    padding: 0 5px;
}
.fullscreenNav .nav-list>li>a {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
    font-size: 19px;
    white-space: nowrap;
}
.fullscreenNav .nav-list .nav-item li a {
    margin-bottom: 10px;
    font-size: 15px;
}



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