* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #f7fafc;
}

#impressum {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #5e675c;
}

#impressum .container {
    max-width: 1558px;
    padding: 0px 24px;
    margin: auto;
}

#impressum .flex-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#impressum .menu {
    margin: auto;
    position: relative;
    z-index: 1;
}

#impressum .menu:before {
    content: "";
    width: 50%;
    height: 100%;
    background: #22B24B;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#impressum .menu:after {
    content: "";
    width: 50%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#impressum .menu .logo {
    background: #fff;
    width: 24%;
    padding: 24px;
}

#impressum .navbar {
    display: flex;
    column-gap: 45px;
    align-items: center;
    clip-path: polygon(5% 0%, 100% 0, 100% 100%, 0% 100%);
    background: #22B24B;
    width: 76%;
    padding: 24px 24px 24px 14%;
}

#impressum .navbar ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1 1 0;
}

#impressum .navbar ul li a {
    color: #fff !important;
}

#impressum .navbar ul li a:hover {
    color: #003c32 !important;
}

#impressum .content {
    background: #fff;
    padding: 32px;
    margin: 80px 0;
    box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.05);
}

#impressum p:not(:last-child) {
    margin-bottom: 32px;
}

#impressum h1 {
    font-weight: 500;
    font-size: 30px;
    color: #003c32;
    margin-bottom: 16px;
}

#impressum h2 {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    color: #003c32;
    margin-bottom: 16px;
}

#impressum h3 {
    font-weight: 500;
    font-size: 22px;
    color: #003c32;
    margin-bottom: 16px;
}

#impressum #footer {
    background: url(background-footer.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

#impressum #footer .background-footer {
    position: relative;
    padding: 84px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#impressum #footer:before {
    content: url(icon-footer.png);
    position: absolute;
    bottom: 5%;
    right: 5%;
    opacity: 0.1;
}

#impressum #footer .logo-bottom {
    margin-bottom: 95px;
}

#impressum #footer .contact,
#impressum #footer .list-link {
    width: 48%;
}

#impressum #footer .list-link p {
    font-size: 19px;
    line-height: 2.2;
    color: #fff;
    width: 48%;
}

#impressum #footer .list-link {
    display: flex;
    justify-content: space-between;
    padding-right: 8%;
    flex-wrap: wrap;
    gap: 15px;
}

#impressum #footer .list-link p a {
    color: #fff !important;
}

#impressum #footer .contact p {
    color: #fff;
    margin-bottom: 55px;
    font-size: 18px;
}

#impressum #footer .contact p a {
    color: #fff;
}

#impressum strong {
    font-weight: 700;
}

:is(a:link, a:visited, a:active) {
    color: #22b24b;
    text-decoration: none;
    transition: .2s;
}

a:hover {
    color: #003c32;
}

#impressum ul {
    list-style: none;
}

#impressum img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 1399px) {
    #impressum .navbar {
        padding: 24px 24px 24px 6%;
    }
}

@media all and (max-width: 899px) {
    #impressum .menu .logo {
        display: flex;
        width: auto;
        justify-content: center;
        margin: 0 -24px;
    }

    #impressum .content {
        padding: 16px;
        margin: 30px 0;
    }

    #impressum .navbar {
        width: auto;
        clip-path: none;
        margin: 0 -24px;
        padding: 24px;
        column-gap: 20px;
    }

    #impressum .flex-menu {
        display: block;
    }

    #impressum .menu:before,
    #impressum .menu:after {
        display: none;
    }

    #impressum #footer .list-link {
        padding-right: 0;
    }
}

@media all and (max-width: 699px) {
    #impressum #footer .background-footer {
        padding: 24px 0;
        flex-direction: column;
        align-items: center;
    }

    #impressum #footer .contact {
        width: 100%;
        margin-bottom: 40px;
    }

    #impressum #footer .list-link {
        width: 100%;
        justify-content: center;
    }

    #impressum #footer .contact p {
        text-align: center;
    }

    #impressum #footer .list-link p {
        text-align: center;
        width: 100%;
    }

    #impressum #footer .logo-bottom {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    #impressum #footer .social-footer {
        display: flex;
        justify-content: center;
    }

    #impressum h1 {
        font-size: 26px;
    }

    #impressum h2 {
        font-size: 22px;
    }

    #impressum h3 {
        font-size: 20px;
    }

    #impressum p:not(:last-child)
}