/* header css */ 
#header {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    background-color: var(--darkColor);
}

/* header logo */
#header>#header_wrapper>#logo {
    height: 90px;
}

#header_wrapper {
    width: 80vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Dropdown menu */
#navigation>ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    list-style: none;
}

#navigation>ul>li {
    min-width: 50px;
    position: relative;
}

#navigation>ul>li>a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    padding: 20px 25px;
    transition: all var(--transitionSpeed);
}

#navigation>ul>li>a:hover {
    background-color: var(--secondaryColor);
}

.submenu {
    margin-top: 20px;
    display: none;
}

.submenu ul {
    background-color: var(--secondaryColor);
    width: 100%;
    list-style: none;
}

.submenu ul li {
    width: 100%;
    min-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

li:hover .submenu {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
}

.submenu a {
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all var(--transitionSpeed);
}

:target:before {
    content: "";
    display: block;
    height: 180px;
    margin: -180px 0 0;
}