nav{

}
nav .nav_entry{

}
nav .nav_entry a{

}
/*---Main--------------------------------------------------------------------------------------------------------------*/
nav.main{
    width: 100%;
    display: flex;
    justify-items: flex-end;
    justify-content: flex-end;
}
nav.main .nav_entry{
    margin: 0 10px;
    position: relative;
}
nav.main .nav_entry:first-of-type{
    display: none;
}
nav.main .nav_entry:last-of-type{
    margin-right: 0;
}
nav.main .nav_entry a{
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    text-align: center;
    transition: all 0.5s;
    padding: 5px;
    font-weight: bold;
    text-transform: uppercase;
}
nav.main .nav_entry:hover > a{
    text-decoration: underline;
}
nav.main .nav_entry .sub{
    position: absolute;
    top: 100%;
    right: -113px;
    width: 375px;
    background-color: var(--white);
    border: none;
    display: none;
    /*box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);*/
}
nav.main .nav_entry:hover .sub{
    display: block;
}
nav.main .nav_entry .sub .nav_entry{
    margin: 5px 0;
    padding: 0 10px;
}
nav.main .nav_entry .sub .nav_entry a{
    border: none;
    text-align: left;
    color: var(--primaryColor);
}
/*---Footer------------------------------------------------------------------------------------------------------------*/
nav.footer{
    display: flex;
    flex-direction: column;
}
nav.footer .nav_entry{
    margin-bottom: 20px;
}
nav.footer .nav_entry a{
    font-size: 1.5rem;
    line-height: 1.8em;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
}
/*---Leistungen--------------------------------------------------------------------------------------------------------*/
nav.leistung{

}
nav.leistung .nav_entry{

}
nav.leistung .nav_entry a{
    font-size: 1.2rem;
    line-height: 1.5em;
}
@media screen and (max-width:1100px) {
    nav.main .nav_entry:first-of-type {
        display: block;
    }
}