.l-header{
    height: var(--nav-height);
    width: 100vw;
    box-shadow: 0 0 10px rgba(223, 245, 255, 0.63);
}

.l-nav{
    height: 100%;
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 100%;
}

.l-nav-center{
    list-style: none;
}

.l-li-link{
    list-style: none;
    position: relative;
}

.l-nav-link{
    text-decoration: none;
    color: var(--color);
    font-size: var(--font-size);
    border-radius: 4px;
    padding: 8px 20px;
    position: relative;
}

.l-nav-link:hover{
    background: var(--link-hover-bg);
    color: var(--link-hover-color);
}


.l-drop-down{
    display: none;
    position: absolute;
    top: 100%;
    width: var(--dropdown-menu-width);
    padding: 10px;
    background: white;
    z-index: 200;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    border-radius: 0 0 10px 10px;
    animation: lslideup 0.3s linear;
    transition: all 0.3s ease-in-out;
}

@keyframes lslideup {
    0%{
        top: 200%;
        opacity: 0.25;
    }
    25%{
        top: 175%;
        opacity: 0.5;
    }
    50%{
        top: 150%;
        opacity: 0.75;
    }
    75%{
        top: 125%;
        opacity: 1;
    }
    100%{
        top: 100%;
        opacity: 1;
    }
}

.l-drop-down-ul{
    list-style-type: none;
}

.l-drop-down-li{
    list-style-type: none;
    position: relative;
}

.l-drop-down-a{
    color: var(--color);
    padding: 6px 8px;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
    font-size: var(--font-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-drop-down-a:hover{
    background-color: var(--link-hover-bg);
    color: var(--link-hover-color);
}


.l-li-link:hover>.l-drop-down, .l-drop-down-li:hover>.l-inner-drop-down{
    display: block;
}

.l-inner-drop-down{
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: var(--dropdown-menu-width);
    padding: 10px;
    background: white;
    z-index: 200;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    border-radius: 0 10px 10px 0;
    animation: lslideleft 0.3s linear;
    transition: all 0.3s ease-in-out;
}

@keyframes lslideleft {
    0%{
        left: 200%;
        opacity: 0.25;
    }
    25%{
        left: 175%;
        opacity: 0.5;
    }
    50%{
        left: 150%;
        opacity: 0.75;
    }
    75%{
        left: 125%;
        opacity: 1;
    }
    100%{
        left: 100%;
        opacity: 1;
    }
}