body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: white;
    background-attachment: fixed;
    background-position: center;
    max-width: 100%;
    display: flex;

    min-height: 100vh;

    flex-direction: column;
}

/* Seitenende (Anfang) */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    height: auto;
    max-width: 100%;
    font-family: sans-serif;
    margin-top: auto;
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content h3 a {
    color: white;
    text-decoration: none;
}

.footer-content p {
    max-width: 450px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 15px;
}

.footer-content p a {
    text-decoration: none;
    font-size: 15px;
    font-weight: bolder;
    color: #95be7a;
}

.footer-content p a:hover {
    color: #e89d56;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2.5rem 0;
}

.socials li {
    margin: 0 10px;  
}

.socials a {
    text-decoration: none;
    color: white;
}

.socials a i {
    font-size: 1.5rem;
    transition: color .4s ease;
}

.socials a:hover i {
    color: #e89d56;
}

.footer-bottom {
    background-color: #262626;
    max-width: 100%;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom p a {
    color: white;
    text-decoration: none;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .6;
    font-weight: 200;
}
/* Seitenende (Ende) */

/* Impressum von eRecht24 (Ende) */
h1.I {
    text-align: center;
    margin-top: 80px;
}

h2.I {
    text-align: left;
    margin-left: 120px;
    color: black;
    font-size: 26px;
    font-family: sans-serif;
    margin-top: 40px;
}

h3.I,
h4.I {
    margin-left: 120px;
}

li.I {
    margin-left: 110px;
    max-width: 80%;
}

p.I {
    text-align: left;
    color: black;
    margin-left: 120px;
    margin-right: 120px;
}

p.I a {
    text-decoration: none;
    color: #95be7a;
}

p.I a:hover {
    color: #e89d56;
}

p#klein {
    color: grey;
    font-size: small;
    margin-left: 120px;
    margin-right: 120px;
}
/* Impressum von eRecht24 (Ende) */

/* Menu-Leiste (Anfang) */
header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 100px;
    background: #262626;
    width: 100%;
    box-sizing: border-box;
}

header .logo a {
    color: white;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    float: left;
    font-weight: bold;
    text-decoration: none;
}

header nav {
    float: right;
}

header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    list-style: none;
    position: relative;
}

header nav ul li.sub-menu:before {
    content: '\f0d7';
    font-family: fontAwesome;
    position: absolute;
    line-height: 50px;
    color: white;
    right: 5px;
}

header nav ul li.active.sub-menu:before {
    content: '\f0d8';
} 

header nav ul li ul {
    position: absolute;
    left: 0;
    background: #333;
    display: none;
}

header nav ul li.active ul {
    display: block;
}

header nav ul li ul li {
    display: block;
    width: 200px;
}

header nav ul li a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    display: block;
}

header nav ul li a:hover {
    background: #e89d56;
    color: white;
    cursor: pointer;
}

header nav ul li a.active {
    background: #262626;
    color: #e89d56;
}

header nav ul li ul li a:hover {
    background: #e89d56;
    color: white;
}

.menu-toggle {
    color: white;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}
/* Menu-Leiste (Ende) */

/* Mobiloptimierung (Anfang) */
@media (max-width: 1175px) {
    header {
        padding: 0 20px;
    }
    .menu-toggle {
        display: block;
    }
    header nav {
        position: absolute;
        width: 100%;
        height: calc(100vh - 50px);
        background: #333;
        top: 50px;
        left: -100%;
        transition: 0.5s;
    }
    header nav.active {
        left: 0;
    }
    header nav ul{
        display: block;
        text-align: center;
    }
    header nav ul li a {
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }
    header nav ul li a.active {
        background: #333;
        color: #e89d56;
    }
    header nav ul li.active ul {
        position: relative;
        background: #95be7a;
    }
    header nav ul li ul li {
        width: 100%;
    }

    p.I {
        margin-left: 30px;
        margin-right: 30px;
    }

    p#klein {
        margin-left: 30px;
        margin-right: 30px;
    }

    h2.I,
    h3.I,
    h4.I {
        margin-left: 30px;
        margin-right: 30px;
    }
    .footer-content {
      padding-left: 10px;
      margin-right: 10px;
    }
    .footer-bottom {
      padding-left: 10px;
      padding-right: 10px;
    }
}
/* Mobiloptimierung (Ende) */