/* Roboto Thin */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Roboto Italic */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
}

/* Roboto Bold */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-style: bold;
}

html {
    overflow-y: scroll;
}

:root {
    --schrift1: 'Roboto', sans-serif;
    --farbe1: #1a4273;
    --farbe3: #009FE3;
    --farbe2: #313131;
    --farbe4: #000000;
}


.divider {
    margin: 1em 0em 1em 0em;
}


body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--schrift1);
    color: var(--farbe4);
    font-style: light;
}

#main {
    color: var(--farbe4);
    font-size: 20px;
    line-height: 1.5;
    font-family: var(--schrift1);
    font-weight: 300;
    font-style: normal;
    text-align: justify;
}


strong,
b {
    font-weight: bold;
    color: var(--farbe1);
}

a {
    color: var(--farbe4)
}

em,
i {
    font-style: italic;
}

h1 {
    color: var(--farbe1);
}

h2,
h3 {
    color: var(--farbe1);
    margin-bottom: -10px;
}

form input,
form select,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1;
    font-family: var(--schrift1);

}

form label {
    width: 100%;
    padding: 10px;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1;
    font-family: var(--schrift1);

}

form button {
    background-color: var(--farbe1);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

form button:hover {
    background-color: var(--farbe3);
}

button {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1;
    font-family: var(--schrift1);
    background-color: var(--farbe1);
    color: white;
    border: none;
    cursor: pointer;
    width: 180px;    /* <- Weite (Breite) */
    height: 30px;    /* <- Höhe */
}

button:hover {
    background-color: var(--farbe3);
}

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

#aufz ul {
    list-style-type: none;
    /* Entfernt die Standard-Punkte */
    padding-left: 30px;

}

#aufz ul li {
    padding-bottom: 15px;
}

#aufz ul li::before {
    content: "";
    /* Fügt einen Strich vor jedem Listeneintrag ein */
    color: black;
    /* Farbe des Strichs */
    margin-right: 0px;
    /* Abstand zwischen Strich und Text */
    padding-bottom: 5px;
}

#nav ul {
    display: inline-block;
    padding: 0em 0em;
    border-radius: 0;
    /* Keine runden Ecken benötigt */
    border-top: 3px solid var(--farbe1);
    /* Nur oberer Rand */
    border-bottom: 3px solid var(--farbe1);
    /* Nur unterer Rand */
    margin: 0;
    /* Entfernt den Standard-Abstand */
    text-align: center;
    /* Zentriert den Text */
    width: 100%;
    /* Volle Breite */
}

#nav>ul>li {
    font-family: var(--schrift3);
    font-weight: 400;
    font-style: regular;
    font-size: 15pt;
    line-height: 1em;
    color: var(--farbe1);
    display: inline-block;
}

#nav>ul li::before {
    content: "";
    margin-right: 0px;
}

#nav>ul>li:last-child {
    padding-right: 0;
}

#nav>ul>li>a,
#nav>ul>li>span {
    display: block;
    padding: 1.3em 1.5em;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1em;
    outline: 0;
    color: var(--farbe1);
}

#nav>ul>li>a:hover {
    color: var(--farbe3);
}

#nav li.active a {
    color: #FFF;
}

#nav>ul>li>ul {
    display: none;
}

a::after, a::before {
    content: none;
}