@charset "utf-8";

.navigation{
        height: 70px;
        background: #75A9FF;
        margin: auto;
}

.fixed {
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
    z-index: 9999;

}

nav {
    width: 1280px;
    height: 70px;
    background: #75A9FF;
    margin: auto;
    z-index: 9999;
}

nav p {
    text-align: center;
    text-decoration: none;
    font-family: "Coming Soon";
    font-style: normal;
    font-weight: 400;
}

nav a{
    background: #75A9FF;
}

nav a:hover {
    color: white;
}

nav a:hover .nav_button {
    background: #49699f;
}

nav > ul {
    height: inherit;
    width: 100%;
    margin: 0;
    text-align: center;

}

nav > ul > li {
    list-style: none;
    float: left;
    width: 20%;
    height: 100%;
}

nav ul li {
    font-size: 24px;
}

nav ul li ul{
    width: 100%;
}

nav ul li > ul {
    border-left: 1px solid aliceblue;
    border-right: 1px solid aliceblue;
    position: relative;
    padding: 0;
    margin: 0;
    height: auto;
    list-style: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background-color: #75A9FF;
    transition: all 0.2s ease-out;
    
    
}

nav ul li ul li {
    width: 100%;
    min-height: 40px;
    font-size: 18px;
}

nav ul li:hover ul{
    opacity: 1;
    visibility: visible
}

nav > ul > li > .nav_button {
    height: 100%;
    padding-top: 14px;
}

nav > ul > li > a > .nav_button {
    height: 100%;
    padding-top: 14px;
}

nav ul li ul li a .nav_button{
    background-image: url(assets/trennbalken.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 10px;
}

.active_nav {
    -webkit-box-shadow: 0px -2px 10px 4px rgba(0,0,0,0.3); 
    box-shadow: 0px -2px 10px 4px rgba(0,0,0,0.3);
    clip-path: inset(-20px -20px 0px -20px);
    background-color:#e5e5e5;
    color: black;
}