/* #region Variables*/

:root {
    --green: #76AE43;
    --lightgreen: #DEFAC0;
    --red: #660033;
    --lightred: #E0CCD6;
    --grey: #48575E;
    --lightgrey: #8C9CA0;
    --lightgrey-bg: #E8EBEC;
    --lightblack: #232A32;
    --black: #000000;
    --white: #FFFFFF;
}

/* #endregion Variables*/

/* #region General / Typography*/

body {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 400;
    display: block;
    color: var(--lightblack);
    background-color: var(--white);
}

    body.locked {
        overflow-y: hidden;
    }

main {
    padding-top: 168px;
    min-height: calc(100vh - 583px);
}

h1 {
    font-size: 85px;
    line-height: 90px;
    font-weight: 600;
    color: var(--lightblack);
}

h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: var(--lightblack);
}

    h2.grey {
        font-weight: 800;
        color: var(--grey);
        border-top: 7px solid;
        border-color: var(--grey);
        padding-top: 12px;
        margin-top: -19px;
        line-height: 55px;
    }

h3 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    color: var(--red);
}

p {
    font-size: 20px;
    line-height: 30px;
    color: var(--lightblack);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

p a, .link {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    cursor: pointer;
    transition: 0.4s all ease;
}

    p a:hover, .link:hover {
        color: var(--red);
    }

b, strong {
    font-weight: 700;
}

img {
    width: 100%;
}

section {
    margin-bottom: 160px;
}

    section.no-space {
        margin-bottom: 0;
    }

.desktop-hidden {
    display: none;
}

@media screen and (max-width: 1440px) {
    section {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 1200px) {
    main {
        padding-top: 145px;
    }
}

@media screen and (max-width: 1024px) {
    main {
        padding-top: 100px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 65px;
        line-height: 70px;
    }

    h2 {
        font-size: 44px;
        line-height: 52px;
    }

        h2.grey {
            line-height: 48px;
        }

    h3 {
        font-size: 32px;
        line-height: 36px;
    }

    section {
        margin-bottom: 100px;
    }

    .desktop-hidden {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    main {
        padding-top: 80px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 46px;
        line-height: 54px;
    }

    h2 {
        font-size: 34px;
        line-height: 44px;
    }

        h2.grey {
            line-height: 40px;
        }

    h3 {
        font-size: 28px;
        line-height: 34px;
    }

    section {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 40px;
        line-height: 60px;
    }

    h2, h2.grey {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* #endregion General / Typography*/

/* #region Button / A-Tag*/

.button, a.button, form input[type=submit] {
    text-decoration: none;
    background-color: var(--red);
    padding: 20px 60px;
    color: var(--white);
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    transition: 0.4s all ease;
    cursor: pointer;
    width: auto;
}

    .button:hover, a.button:hover, form input[type=submit]:hover {
        background-color: var(--grey);
    }

/* #endregion Button*/

/* #region Grid*/

@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1660px) {
    .container {
        max-width: 1600px;
    }
}

/* #endregion Grid*/

/* #region Header*/

header {
    background: var(--white);
    padding: 39.5px 0 24px;
    position: fixed;
    width: 100%;
    z-index: 101;
    -webkit-box-shadow: rgb(173 173 173 / 50%) 0 3px 23px -2px;
    box-shadow: rgb(173 173 173 / 50%) 0 3px 23px -2px;
    height: 168px;
}

    header nav {
        display: flex;
    }

        header nav li {
            cursor: pointer;
        }

        header nav .logo img {
            width: 302px;
            height: auto;
        }

        header nav .navigation {
            display: flex;
            flex-direction: column;
            margin-left: auto;
            justify-content: flex-end;
            align-items: flex-end;
        }

        header nav .hamburger-icon {
            display: none;
            flex-direction: column;
            margin-left: auto;
            align-self: center;
            cursor: pointer;
        }

            header nav .hamburger-icon .line {
                width: 45px;
                height: 5px;
                background-color: var(--grey);
                margin: 4px 0;
                transition: 0.6s all ease;
                position: relative;
            }

            header nav .hamburger-icon.open .line:nth-child(1) {
                transform: rotate(45deg);
                top: 7.1px;
            }

            header nav .hamburger-icon.open .line:nth-child(2) {
                display: none;
            }

            header nav .hamburger-icon.open .line:nth-child(3) {
                transform: rotate(-45deg);
                top: -6px;
            }

@media screen and (max-width: 1200px) {
    header {
        height: 145px;
    }

        header nav .logo img {
            width: 240px;
        }
}

@media screen and (max-width: 1024px) {
    header {
        height: 100px;
        padding: 10px 0 15px;
    }

        header nav .logo img {
            width: 210px;
        }

        header nav .navigation {
            position: absolute;
            background-color: var(--white);
            top: 100px;
            right: -500px;
            padding: 10px 50px;
            width: 450px;
            align-items: flex-start;
            -webkit-box-shadow: rgb(173 173 173 / 50%) 0 20px 23px -2px;
            box-shadow: rgb(173 173 173 / 50%) 0 20px 23px -2px;
            transition: 0.6s all ease;
            justify-content: flex-start;
            height: auto;
            overflow-y: auto;
            max-height: calc(100vh - 100px);
        }

            header nav .navigation.open {
                display: flex;
                right: 0;
            }

        header .head-column {
            position: initial;
        }

        header nav .hamburger-icon {
            display: flex;
        }
}

@media screen and (max-width: 768px) {
    header {
        height: 80px;
    }

        header nav .logo img {
            width: 170px;
        }

        header nav .navigation {
            right: -800px;
            top: 80px;
            width: 100%;
            min-height: calc(100vh - 80px);
        }
}

@media screen and (max-width: 576px) {
    header nav .navigation {
        right: -600px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 400px) {
    header nav .navigation {
        right: -400px;
    }
}

/*Start head-nav*/

header nav .head-nav {
    margin-bottom: 20px;
}

    header nav .head-nav ul, header nav .main-nav ul {
        padding: 0;
        margin: 0;
    }

        header nav .head-nav ul li {
            list-style: none;
            display: inline-block;
            font-size: 16px;
            line-height: 20px;
            margin-right: 40px;
            color: var(--lightblack);
        }

    header nav .head-nav .search-button {
        margin-right: 0;
        margin-left: 0;
    }

        header nav .head-nav .search-button input {
            width: 0;
            height: 40px;
            border: 1px solid var(--lightblack);
            position: absolute;
            right: 50px;
            bottom: 43px;
            transition: 0.6s all ease;
            visibility: hidden;
            font-size: 14px;
            line-height: 19px;
            padding: 10px 0;
        }

    header nav .head-nav .search-button {
        transition: 0.6s all ease;
    }

        header nav .head-nav .search-button.open {
            margin-left: 270px;
        }

            header nav .head-nav .search-button.open input {
                width: 260px;
                padding: 10px;
                visibility: visible;
            }

            header nav .head-nav .search-button.open span {
                display: none;
            }

    header nav .head-nav ul li a {
        text-decoration: none;
        color: var(--lightblack);
    }

    header nav .head-nav ul li:hover a {
        border-bottom: 1px solid var(--grey);
    }

@media screen and (max-width: 1440px) {
    header nav .head-nav ul li {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1200px) {
    header nav .head-nav .search-button.open {
        margin-left: 210px;
    }

        header nav .head-nav .search-button.open input {
            width: 210px;
        }

    header nav .head-nav ul li {
        font-size: 15px;
        margin-right: 17px;
    }
}

@media screen and (max-width: 1024px) {
    header nav .head-nav ul, header nav .main-nav ul {
        padding: 0;
        margin: 0 0 0 25px;
    }

    header nav .head-nav {
        order: 2;
        -webkit-order: 2;
        margin-top: 25px;
    }

        header nav .head-nav ul li {
            display: block;
            margin: 0;
            padding: 8px 0 8px 5px;
        }

        header nav .head-nav .search-button {
            margin-left: 0;
            padding: 0;
        }

            header nav .head-nav .search-button.open {
                margin-left: 0;
            }

            header nav .head-nav .search-button span {
                margin-left: -2px;
            }

            header nav .head-nav .search-button input {
                position: relative;
                right: unset;
                bottom: 0;
                padding: 0;
                height: 35px;
            }

            header nav .head-nav .search-button.open input {
                padding: 10px;
                margin-left: 3px;
            }
}

@media screen and (max-width: 768px) {
    header nav .head-nav ul li {
        font-size: 16px;
    }
}

/*End head-nav*/

/*Start main-nav*/

header nav .main-nav ul li {
    list-style: none;
    display: inline-block;
}

header nav .main-nav ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    font-size: 20px;
    line-height: 27px;
    padding-right: 60px;
    color: var(--red);
}

header nav .main-nav > ul > li:last-child {
    padding-right: 0;
}

header nav .main-nav ul li a {
    text-decoration: none;
    color: var(--red);
    font-weight: 700;
}

header nav .main-nav ul li.main-item:hover > a {
    border-bottom: 1px solid var(--red);
}

header nav .main-nav .sub-nav {
    display: none;
    position: absolute;
    background-color: var(--white);
    top: 28px;
    left: -70px;
    padding: 25px 50px 20px;
    -webkit-box-shadow: rgb(173 173 173 / 50%) 0 20px 23px -2px;
    box-shadow: rgb(173 173 173 / 50%) 0 20px 23px -2px;
}

    header nav .main-nav .sub-nav.open {
        display: block;
    }

    header nav .main-nav .sub-nav li {
        display: block;
        padding: 0;
    }

        header nav .main-nav .sub-nav li a {
            font-size: 20px;
            line-height: 50px;
            font-weight: 700;
            color: var(--black);
            white-space: nowrap;
            display: block;
            padding: 0 20px;
        }

        header nav .main-nav .sub-nav li:hover, header nav .main-nav .sub-nav li:hover a {
            background-color: var(--grey);
            color: var(--white);
        }

        header nav .main-nav .sub-nav li.active, header nav .main-nav .sub-nav li.active a {
            background-color: var(--red);
            color: var(--white);
        }

            header nav .main-nav .sub-nav li.active:hover, header nav .main-nav .sub-nav li.active:hover a {
                background-color: #A00050;
            }

    header nav .main-nav .sub-nav.reposition {
        left: unset !important;
        right: 0;
    }

header nav .main-nav .main-item .submenu-icon {
    display: none;
    position: absolute;
    width: 22px;
    height: 22px;
    left: -40px;
    border-radius: 50%;
    border: 2px solid var(--grey);
    padding: 15px;
    top: 6px;
    z-index: 10;
}

    header nav .main-nav .main-item .submenu-icon .line {
        background-color: var(--grey);
        width: 22px;
        height: 3px;
        transition: 0.4s all ease;
        position: relative;
        left: -10px;
        top: -1px;
    }

        header nav .main-nav .main-item .submenu-icon .line:nth-child(2) {
            transform: rotate(90deg);
            top: -4px;
        }

    header nav .main-nav .main-item .submenu-icon.open .line {
        transform: rotate(-180deg);
    }

        header nav .main-nav .main-item .submenu-icon.open .line:nth-child(2) {
            display: none;
        }

@media screen and (max-width: 1440px) {
    header nav .main-nav ul li {
        padding-right: 30px;
    }
}

@media screen and (max-width: 1200px) {
    header nav .main-nav ul li {
        font-size: 19px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    header nav .main-nav {
        order: 1;
        -webkit-order: 1;
    }

        header nav .main-nav ul li {
            display: block;
            padding: 8px 0 8px 5px;
        }

        header nav .main-nav .main-item .submenu-icon {
            display: inline-block;
        }

        header nav .main-nav .sub-nav {
            position: relative;
            background-color: var(--white);
            top: 0;
            padding: 5px 0 5px 30px;
            box-shadow: unset;
            -webkit-box-shadow: unset;
        }

            header nav .main-nav .sub-nav li {
                padding: 0 15px;
                font-size: 15px;
            }

                header nav .main-nav .sub-nav li:last-of-type {
                    padding-right: 15px;
                }

                header nav .main-nav .sub-nav li a {
                    line-height: 35px;
                    font-size: 15px;
                }

        header nav .main-nav ul li.main-item:hover > a {
            border-bottom: none;
        }
}

@media screen and (max-width: 768px) {
    header nav .main-nav ul li {
        font-size: 22px;
    }
}

/*End main-nav*/

/* #endregion Header*/

/* #region Footer */

footer {
    background-color: var(--grey);
    color: var(--white);
    padding: 100px 0 75px;
    position: relative;
}

    footer a, footer p {
        color: var(--white);
        font-size: 18px;
        line-height: 28px;
    }

        footer a:hover {
            color: var(--lightgreen);
        }

    footer .footer-nav {
        margin: 0;
        padding: 0;
    }

        footer .footer-nav a {
            font-weight: 700;
            margin-bottom: 12px;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 2px;
            display: block;
        }

    footer .bottom {
        margin-top: 100px;
    }

        footer .bottom a {
            text-decoration: none;
        }

        footer .bottom .copyright {
            margin-right: 70px;
        }

        footer .bottom .hidden {
            display: none;
        }

    footer .text-wrapper p {
        margin-bottom: 32px;
    }

    footer .text-wrapper a {
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

    footer .scroll-top {
        position: absolute;
        right: 80px;
        bottom: 90px;
        width: 76px;
        height: 76px;
        cursor: pointer;
    }

        footer .scroll-top img {
            width: 100%;
            height: 100%;
        }

@media screen and (max-width: 992px) {
    footer {
        padding: 80px 0 60px;
    }

        footer .bottom {
            margin-top: 30px;
        }

        footer .text-wrapper, footer .footer-nav {
            margin-bottom: 50px;
        }

            footer .text-wrapper p {
                margin-bottom: 16px;
            }

        footer a, footer p {
            text-align: left;
        }

        footer .bottom .copyright {
            margin-right: 0;
        }

        footer .bottom .hidden {
            display: block;
        }

        footer .scroll-top {
            bottom: 80px;
        }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 60px 0 50px;
    }

        footer .bottom {
            margin-top: 40px;
        }

        footer .scroll-top {
            right: 40px;
            bottom: 70px;
        }
}

@media screen and (max-width: 568px) {
    footer .bottom {
        margin-top: 0;
    }

    footer .text-wrapper, footer .footer-nav {
        margin-bottom: 40px;
    }
}

/* #endregion Footer */

/* #region Icons*/

header .search-button button {
    background: none;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

header .search-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
    margin-top: -5px;
}

/* #endregion Icons*/

/* #region Banner */

section.banner {
    height: calc(100vh - 168px);
}

    section.banner .background-image {
        height: 60%;
    }

        section.banner .background-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        section.banner .background-image .mobile-image {
            display: none;
        }

    section.banner .content {
        background-color: var(--green);
        padding: 0;
        height: 40%;
        display: flex;
        align-items: center;
    }

    section.banner h3 {
        color: var(--white);
        text-align: center;
        line-height: 50px;
    }

@media screen and (max-width: 1660px) {
    section.banner {
        height: 100%;
    }

        section.banner .background-image {
            height: auto;
        }

            section.banner .background-image img {
                width: 100%;
                height: auto;
                object-fit: cover;
                object-position: center;
            }

        section.banner .content {
            background-color: var(--green);
            padding: 90px 0;
            height: auto;
            display: block;
        }
}

@media screen and (max-width: 992px) {
    section.banner .content {
        padding: 65px 0;
    }

    section.banner h3 {
        line-height: 45px;
    }

    section.banner .background-image .mobile-image {
        display: block;
    }

    section.banner .background-image .desktop-image {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    section.banner .background-image {
        height: 45vh;
    }

        section.banner .background-image img {
            height: 100%;
        }

    section.banner .content {
        padding: 45px 0;
    }

    section.banner h3 {
        line-height: 40px;
    }
}

@media screen and (min-width: 1660px) and (min-height: 1300px) {
    section.banner h3 {
        font-size: 50px;
        line-height: 70px;
    }
}

@media screen and (min-width:1660px) and (max-height: 760px) {
    section.banner {
        height: 100%;
    }

        section.banner .background-image {
            height: auto;
        }

            section.banner .background-image img {
                width: 100%;
                height: auto;
                object-fit: cover;
                object-position: center;
            }

        section.banner .content {
            background-color: var(--green);
            padding: 90px 0;
            height: auto;
            display: block;
        }
}

/* #endregion Banner */

/* #region Text-Block */

section.text-block-big .column {
    padding-left: 20px;
}

    section.text-block-big .column:first-of-type {
        padding: 0 60px 0 15px;
    }

section.text-block-big .text-wrapper p {
    font-size: 30px;
    line-height: 46px;
    margin-bottom: 40px;
}

    section.text-block-big .text-wrapper p:last-of-type {
        margin-bottom: 0;
    }

@media screen and (max-width: 1200px) {
    section.text-block-big h1 {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 992px) {
    section.text-block-big .text-wrapper p {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    section.text-block-big h1 {
        margin-bottom: 30px;
    }

    section.text-block-big .text-wrapper p {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 25px;
    }
}

/* #endregion Text-Block */

/* #region CTA-Blocks */

section.cta-blocks .top {
    display: flex;
    margin-bottom: 60px;
    margin-top: 20px;
}

    section.cta-blocks .top .button {
        margin-left: auto;
    }

section.cta-blocks .cta-link:hover .button {
    background-color: var(--grey);
}

section.cta-blocks .cta-item {
    padding: 60px 40px 80px;
    border: 1px solid;
    border-color: var(--grey);
    height: 100%;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

section.cta-blocks .cta-link:hover .cta-item {
    padding: 54px 34px 74px;
    border: 7px solid;
    border-color: var(--grey);
}

section.cta-blocks .cta-item h3 {
    margin-bottom: 20px;
}

section.cta-blocks .cta-item .text-wrapper {
    margin-bottom: 50px;
}

section.cta-blocks .cta-item .button {
    margin-top: auto;
    padding: 20px;
    width: auto;
}

section.cta-blocks .cta-item .link-wrapper {
    margin-top: auto;
}

    section.cta-blocks .cta-item .link-wrapper .link {
        margin-left: 45px;
        font-size: 20px;
        line-height: 30px;
    }

section.cta-blocks .cta-link:hover .cta-item .link {
    color: var(--grey);
}

section.cta-blocks .cta-item .link-wrapper::before {
    content: url(../_img/_icons/icon_pfeil.svg);
    position: absolute;
    margin-top: 4px;
}

section.cta-blocks .cta-link:hover .cta-item .link-wrapper::before {
    content: url(../_img/_icons/icon_pfeil_over.svg);
}

section.cta-blocks .cta-item .link-wrapper.pdf::before {
    content: url(../_img/_icons/icon_pdf.svg);
    position: absolute;
    margin-top: -10px;
}

section.cta-blocks .cta-link:hover .cta-item .link-wrapper.pdf::before {
    content: url(../_img/_icons/icon_pdf_over.svg);
}

@media screen and (max-width: 1200px) {
    section.cta-blocks .column {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 992px) {
    section.cta-blocks .top {
        flex-direction: column;
    }

        section.cta-blocks .top .title-wrapper {
            display: flex;
            margin-bottom: 40px;
        }

        section.cta-blocks .top .button {
            margin-right: auto;
            margin-left: 0;
        }

    section.cta-blocks .cta-item {
        padding: 40px 30px 60px;
    }

    section.cta-blocks .cta-link:hover .cta-item {
        padding: 34px 24px 54px;
    }

    section.cta-blocks .cta-item .text-wrapper {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    section.cta-blocks .top {
        margin-bottom: 40px;
    }

        section.cta-blocks .top .title-wrapper {
            margin-bottom: 20px;
        }

    section.cta-blocks .cta-item {
        padding: 35px 30px 40px;
    }

    section.cta-blocks .cta-link:hover .cta-item {
        padding: 29px 24px 34px;
    }

    section.cta-blocks .cta-item .text-wrapper {
        margin-bottom: 20px;
    }
}

/*Start CTA-Blocks Events*/

section.cta-blocks.events .cta-link:hover .cta-item {
    padding: 60px 40px 80px;
    border: none;
    background-color: var(--red);
}

section.cta-blocks.events .cta-item {
    padding: 60px 40px 80px;
    border: none;
    border-color: unset;
    background-color: var(--green);
}

    section.cta-blocks.events .cta-item h3 {
        color: var(--white);
        font-size: 20px;
        line-height: 30px;
        font-weight: 800;
    }

        section.cta-blocks.events .cta-item h3 .day {
            font-size: 85px;
            line-height: 90px;
        }

    section.cta-blocks.events .cta-item .text-wrapper {
        margin-bottom: 20px;
    }

        section.cta-blocks.events .cta-item .text-wrapper h3 {
            color: var(--white);
            font-size: 40px;
            line-height: 45px;
            font-weight: 600;
        }

@media screen and (max-width: 992px) {
    section.cta-blocks.events .cta-item, section.cta-blocks.events .cta-link:hover .cta-item {
        padding: 40px 30px 60px;
    }

        section.cta-blocks.events .cta-item h3 {
            font-size: 18px;
            line-height: 30px;
        }

            section.cta-blocks.events .cta-item h3 .day {
                font-size: 60px;
            }

        section.cta-blocks.events .cta-item .text-wrapper h3 {
            font-size: 30px;
            line-height: 40px;
        }
}

@media screen and (max-width: 768px) {
    section.cta-blocks.events .cta-item, section.cta-blocks.events .cta-link:hover .cta-item {
        padding: 35px 30px 30px;
    }
}

/*End CTA-Blocks Events*/

/* #endregion CTA-Blocks */

/* #region Banner-Button */

section.banner-button {
    background-color: var(--lightblack);
    min-height: 285px;
    margin-top: 250px
}

    section.banner-button .text-wrapper {
        padding: 150px 0 130px;
    }

        section.banner-button .text-wrapper h2 {
            color: var(--lightgreen);
            text-align: center;
            font-weight: 800;
        }

    section.banner-button .button-wrapper {
        background-color: var(--green);
        border-radius: 50%;
        width: 300px;
        height: 300px;
        position: absolute;
        right: 0;
        top: -120px;
        z-index: 10;
    }

        section.banner-button .button-wrapper:hover {
            background-color: var(--lightgrey);
        }

    section.banner-button .button-inner {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }

        section.banner-button .button-inner p {
            font-size: 38px;
            line-height: 44px;
            font-weight: 800;
            color: var(--white);
            text-align: center;
        }

@media screen and (max-width: 1440px) {
    section.banner-button {
        margin-top: 200px
    }
}

@media screen and (max-width: 1200px) {
    section.banner-button .button-wrapper {
        width: 260px;
        height: 260px;
        top: -100px;
    }
}

@media screen and (max-width: 992px) {
    section.banner-button .button-wrapper {
        width: 240px;
        height: 240px;
        top: -120px;
    }

    section.banner-button .text-wrapper {
        padding: 120px 0 100px;
    }

    section.banner-button {
        margin-top: 160px
    }
}

@media screen and (max-width: 576px) {
    section.banner-button .button-wrapper {
        width: 180px;
        height: 180px;
        top: -100px;
        right: 15px;
    }

    section.banner-button .text-wrapper {
        padding: 100px 0 80px;
    }

    section.banner-button .button-inner p {
        font-size: 32px;
        line-height: 40px;
    }

    section.banner-button {
        margin-top: 120px
    }
}

/* #endregion Banner-Button */

/* #region Link-Boxes */

section.link-boxes {
    background-color: var(--lightgrey-bg);
    padding: 150px 0 120px;
}

    section.link-boxes .content-wrapper {
        display: flex;
    }

    section.link-boxes ul.links {
        margin-left: 120px;
        padding: 0;
    }

        section.link-boxes ul.links li {
            display: inline-block;
            color: var(--grey);
            font-size: 20px;
            line-height: 30px;
            text-align: center;
            border: 1px solid;
            border-color: var(--grey);
            padding: 20px 60px;
            margin: 0 10px 20px;
            cursor: pointer;
            transition: 0.4s all ease;
        }

            section.link-boxes ul.links li a {
                color: var(--grey);
                font-size: 20px;
                line-height: 30px;
                font-weight: 600;
            }

            section.link-boxes ul.links li:hover {
                background-color: var(--white);
            }

@media screen and (max-width: 1660px) {
    section.link-boxes ul.links {
        margin-left: 60px;
    }

        section.link-boxes ul.links li {
            padding: 20px 25px;
        }
}

@media screen and (max-width: 1200px) {
    section.link-boxes .content-wrapper {
        flex-direction: column;
    }

        section.link-boxes .content-wrapper .title-wrapper {
            display: flex;
            margin-bottom: 40px;
        }

    section.link-boxes ul.links {
        margin-left: 0;
    }

        section.link-boxes ul.links li {
            margin: 0 20px 20px 0;
        }
}

@media screen and (max-width: 992px) {
    section.link-boxes {
        padding: 100px 0 70px;
    }

        section.link-boxes ul.links li {
            margin: 0 15px 15px 0;
            padding: 15px;
        }
}

@media screen and (max-width: 768px) {
    section.link-boxes ul.links li {
        margin: 0 10px 10px 0;
        padding: 12px;
    }
}

/* #endregion Link-Boxes */

/* #region Title-Element */

section.title-element {
    margin-top: 80px;
    margin-bottom: 70px;
}

    section.title-element h1 {
        font-size: 75px;
        line-height: 80px;
    }

@media screen and (max-width: 1440px) {
    section.title-element {
        margin-top: 70px;
        margin-bottom: 60px;
    }

        section.title-element h1 {
            font-size: 65px;
            line-height: 70px;
        }
}

@media screen and (max-width: 992px) {
    section.title-element {
        margin-top: 50px;
        margin-bottom: 40px;
    }

        section.title-element h1 {
            font-size: 55px;
            line-height: 60px;
        }
}

@media screen and (max-width: 768px) {
    section.title-element h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media screen and (max-width: 400px) {
    section.title-element h1 {
        font-size: 34px;
        line-height: 40px;
    }
}



/* #endregion Title-Element */

/* #region Text-Block-Small */

section.text-block-small .text-wrapper {
    margin-top: 60px;
}

    section.text-block-small .text-wrapper.has-image {
        margin-top: 30px;
    }

    section.text-block-small .text-wrapper:first-of-type {
        margin-top: 0;
    }

    section.text-block-small .text-wrapper p:last-of-type {
        margin-bottom: 30px;
    }

    section.text-block-small .text-wrapper.no-space p {
        margin-bottom: 0;
    }

    section.text-block-small .text-wrapper p a {
        padding: 2px 4px;
    }

        section.text-block-small .text-wrapper p a:hover, section.text-block-small .link-wrapper .link:hover {
            background-color: var(--lightred);
            text-decoration: none;
        }

section.text-block-small .link-wrapper .link {
    margin-left: 45px;
    font-size: 20px;
    line-height: 32px;
    background-size: 100%;
    background-color: transparent;
    position: relative;
    z-index: 5;
    padding: 4px 6px;
    transition: 0.4s all ease;
}

section.text-block-small .link-wrapper::before {
    content: url(../_img/_icons/icon_pfeil.svg);
    position: absolute;
    margin-top: 2px;
}

section.text-block-small .link-wrapper.pdf::before {
    content: url(../_img/_icons/icon_pdf.svg);
    position: absolute;
    margin-top: -8px;
}

section.text-block-small .link-wrapper a:hover .link {
    text-decoration: none;
    color: var(--red);
}

@media screen and (max-width: 1440px) {
    section.text-block-small h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1200px) {
    section.text-block-small h2 {
        font-size: 32px;
        line-height: 40px;
    }

    section.text-block-small .col-12:nth-child(2) {
        padding-left: 40px;
    }
}

@media screen and (max-width: 992px) {
    section.text-block-small h2 {
        margin-bottom: 20px;
    }

    section.text-block-small .col-12:nth-child(2) {
        padding-left: 15px;
    }

    section.text-block-small .text-wrapper {
        margin-top: 50px;
    }

        section.text-block-small .text-wrapper p:last-of-type {
            margin-bottom: 20px;
        }

        section.text-block-small .text-wrapper.has-image {
            margin-top: 25px;
        }
}

@media screen and (max-width: 576px) {
    section.text-block-small h2 {
        font-size: 28px;
        line-height: 34px;
    }

    section.text-block-small .text-wrapper {
        margin-top: 40px;
    }

        section.text-block-small .text-wrapper p:last-of-type {
            margin-bottom: 15px;
        }
}

@media screen and (max-width: 400px) {
    section.text-block-small h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* #endregion Text-Block-Small */

/* #region Quick-Links */

section.quick-links .text-wrapper p {
    font-weight: 700;
    margin-bottom: 30px;
}

    section.quick-links .text-wrapper p.themes {
        margin-bottom: 0;
    }

        section.quick-links .text-wrapper p.themes a {
            color: var(--green);
        }

            section.quick-links .text-wrapper p.themes a:hover {
                color: var(--lightgrey);
            }

@media screen and (max-width: 992px) {
    section.quick-links .text-wrapper p {
        margin-bottom: 15px;
    }
}

/* #endregion Quick-Links */
/* #region Text-Element-Layout*/

section.text-element-layout .grid-section .container {
    margin-bottom: 80px;
}

section.text-element-layout .grid-section h2 {
    font-size: 38px;
    line-height: 45px;
    font-weight: 700;
    color: #232A32;
}

section.text-element-layout .grid-section h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #232A32;
}


@media screen and (max-width: 992px) {
    section.text-element-layout .grid-section h2 {
        font-size: 30px;
        line-height: 38px;
    }

    section.text-element-layout .grid-section h3 {
        font-size: 26px;
        line-height: 32px;
    }
}

@media screen and (max-width: 568px) {
    section.text-element-layout .grid-section h2 {
        font-size: 28px;
        line-height: 34px;
    }

    section.text-element-layout .grid-section h3 {
        font-size: 24px;
        line-height: 32px;
    }
}


/* #endregion Text-Element-Layout*/


