/** Navigation */
.logo {
    padding: 28px 10px;
    margin-right: 20px;
}

.nav-items {
    position: fixed;
    width: 100%;
    height: 124px;
    background-color: #006eff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-items ul li {
    display: inline-block;
    margin-right: 20px;
}

.nav-items ul li a {
    font-weight: bold;
    color: #FFFFFF;
}

.nav-items ul li a:hover {
    text-decoration: underline solid #FFFFFF 20%;
    color: #FFFFFF;
}

.nav-items ul li a.active {
    text-decoration: underline solid #FFFFFF 20%;
}

.last-nav-item {
    margin: 0 !important;
}

/** Divider Navigation */
.nav-divider {
    position: fixed;
    width: 100%;
    height: 4px;
    background-color: #FFFFFF;
    top: 124px;
}

/** Navigation vor dem Content setzen */
.nav-items, .nav-divider {
    z-index: 1;
}

/** Standard-Werte für Navigation */
ul {
    list-style-type: none;
    padding: 0;
}

ul li a {
    font-size: 16px;
    text-decoration: none;
}