:root {
    --color: #000;
    --white: #fff;
}
.navigation-body {
    height: 100px;
    display: flex;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 9999999;
}
.navigation {
    position: fixed;
    width: 100vw;
    height: 100px;
    top: 0px;
    left: 0px;
}
.navigation-container {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
    height: 100px;
    z-index: 999999;
}
.navigation-navbar {
    position: absolute;
    top: 58px;
    left: 12px;
}
.navTrigger {
    position: absolute;
    top: 65px;
    right: 12px;
    z-index: 1000;
    width: 36px;
    height: 36px;
    background: none;
    border: 0;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
}
.navTrigger:focus {
    outline: none;
}
.navTrigger svg {
    width: 64px;
    height: 48px;
    top: -6px;
    left: -14px;
    stroke: var(--color);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    position: absolute;
}
.navTrigger svg path {
    transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
    stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
    stroke-dashoffset: var(--offset, 126px);
    transform: translateZ(0);
}
.navTrigger svg path:nth-child(2) {
    --duration: 0.7s;
    --easing: ease-in;
    --offset: 100px;
    --array-2: 74px;
}
.navTrigger svg path:nth-child(3) {
    --offset: 133px;
    --array-2: 107px;
}
.navTrigger.active svg {
    stroke: var(--white);
}
.navTrigger.active svg path {
    --offset: 57px;
}
.navTrigger.active svg path:nth-child(1), .navTrigger.active svg path:nth-child(3) {
    --delay: 0.15s;
    --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}
.navTrigger.active svg path:nth-child(2) {
    --duration: 0.4s;
    --offset: 2px;
    --array-1: 1px;
}
.navTrigger.active svg path:nth-child(3) {
    --offset: 58px;
}
.navMenu {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: #0000 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all 0.375s;
}
.navMenu.active {
    opacity: 1;
    z-index: 100;
    visibility: visible;
}
.navMenu.active::before {
    transform: skew(0deg) translateX(0);
}
.navMenu.active li {
    opacity: 1;
    transform: translateY(0);
}
.navMenu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15px;
    background: rgba(0, 0, 0, 0);
    transform-origin: 0 0;
    transform: skew(0deg) translateX(-120%);
    transition: all 0.275s 0.1s;
}
.navMenu ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    height: 93%;
    justify-content: center;
}
.navMenu ul li {
    display: block;
    margin: 0.5rem 0;
    text-align: right;
    opacity: 0;
    transform: translateY(-10px);
}
.navMenu ul li a {
    position: relative;
    left: 0;
    display: block;
    padding: 12px 0;
    color: var(--white);
    letter-spacing: -0.2px;
    font-size: 1.5em;
    text-decoration: none;
    transform: skew(0deg);
    transition: 0.25s;
}
.navMenu ul li a:hover {
    left: 10px;
}
.navMenu ul li:nth-child(1) {
    transition: all 275ms 275ms;
}
.navMenu ul li:nth-child(2) {
    transition: all 275ms 325ms;
}
.navMenu ul li:nth-child(3) {
    transition: all 275ms 375ms;
}
.navMenu ul li:nth-child(4) {
    transition: all 275ms 425ms;
}
.navMenu ul li:nth-child(5) {
    transition: all 275ms 475ms;
}
