/***************
*** NAV Main ***
***************/

/* Grundmenü */

.navMain{
    width: 100%;
    padding: 15px 0 0 0;
    margin: 0;
    text-align: end;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav > ul {
    display: flex;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    padding: 12px 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 1.125rem;
    display: block;
    font-weight: 400;
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

nav a:hover {
    color: var(--blue);
}

/* Alle Untermenüs zunächst ausblenden */
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 0px 12px rgb(0 0 0 / 55%)
}

/* Zweite Ebene anzeigen */
nav li:hover > ul {
    display: block;
}

/* Dritte Ebene rechts neben der zweiten */
nav ul ul ul {
    top: 0px;
    left: 100%;
    background-color: white;
    box-shadow: 0 0px 12px rgb(0 0 0 / 55%)
}

/* Menüpunkte der Unterebenen untereinander */
nav ul ul li {
    width: 100%;
    text-align: start !important;
    border-bottom: 2px solid var(--blue);
}

nav ul ul li a {
    display: block;
    padding: 10px 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 1.125rem;
    display: block;
    font-weight: 400;
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

/* Hoverfarbe */
nav ul ul a:hover {
    background: white
}



/*
.navMain li,
.navMain li:hover{
    list-style: none;
    display: inline-block;
    text-align: center;
    padding: 20px 5px 10px 5px;
    list-style: none;
    border-bottom: 1px solid var(--blue);
    transition: all 0.3s ease-in;
    margin: 0 10px 0 0;
}

.navMain li:hover{
    padding: 10px 5px 0px 5px;
    transition: all 0.3s ease-in;
}

.navMain li.aAktiv{
    border-bottom: 1px solid var(--blue) !important;
}

.navMain li a,
.navMain li a:hover{
    color: var(--black);
    text-decoration: none;
    font-size: 1.250rem;
    display: block;
    padding: 0;
    font-weight: 400;
    transition: 0.3s;
}


.navMain li a .material-symbols-outlined,
.navMain li a:hover .material-symbols-outlined,
.navMain li.aAktiv a .material-symbols-outlined{
    color: var(--redRegular) !important;
    text-decoration: none;
    font-size: 1.500rem;
    display: inline;
    padding: 10px 0 10px 0;
    vertical-align: text-bottom;
}
    */

/**
*** Rootline ***
****************/
.rootline{
    padding: 10px 0 0 0;
    margin: 0;
    list-style: none;
}

.rootline li{
    display: inline-block;
    list-style: none;
    padding: 0 10px 0 0px
}

.rootline li a{
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1;
    color: var(--blue);
    font-weight: 400;
    margin: 0;
}

.rootline li p,
.rootline li p.pActive{
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1;
    color: var(--black);
    font-weight: 400;
    margin: 0;
}

.rootline li p.pActive{
    color: var(--blue);
    font-weight: 600;
}