﻿/* #region [GENERAL] */
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    color: #0c272f;
}

.container .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

    .container .row [class*="col-"],
    .container .row .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

.hidden {
    display: none;
}

.bold {
    font-weight: 700;
}

section.white {
    background-color: #ffffff;
}

section.grey {
    background-color: #e8eef1;
}

section.blue {
    background-color: #bdddf2;
}

section.black {
    background-color: #0c272f;
    color: #ffffff;
}

a {
    color: #0c272f;
    text-decoration: none;
}

    a:hover {
        color: #f4ad3b;
        text-decoration: none;
    }

section.black a {
    color: #f4ad3b;
    text-decoration: none;
}

.button {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    background-color: #f4ad3b;
    color: #ffffff;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    border: none;
    outline: none;
}

    .button:hover {
        background-color: #f59f16;
    }

a.button:hover {
    color: #ffffff;
}

form .errorMessage {
    color: red;
    padding-top: 10px;
}
/* #endregion [/GENERAL] */

/* #region [HEADER] */
header {
    position: fixed;
    height: 100px;
    padding: 21px 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: #e8eef1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

    header > .container > .row {
        position: relative;
    }

@media (max-width: 991.98px) {
    header {
        height: 80px;
        padding: 16px 0;
    }
}
/* #endregion [HEADER] */

/* #region [NAV] */
nav .logo img {
    height: 100%;
    width: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    nav ul li {
        display: inline;
        position: relative;
    }

        nav ul li a,
        nav ul li a:hover {
            text-decoration: none;
        }

    /* #region [MAIN NAV] */
    nav ul.main-nav {
        margin-top: 28px;
    }

        nav ul.main-nav > li {
            margin-left: 42px;
        }

            nav ul.main-nav > li > a {
                font-family: "Roboto", sans-serif;
                font-weight: 500;
                font-size: 15px;
                color: #0c272f;
                line-height: 20px;
                width: 85px;
                display: inline-block;
                border-top: solid 2px #0c272f;
                padding-top: 7.5px;
                cursor: pointer;
            }

                nav ul.main-nav > li > a:hover,
                nav ul.main-nav > li.active > a {
                    color: #f4ad3b;
                    border-top: solid 2px #f4ad3b;
                }

        nav ul.main-nav .subnav {
            background: #ffffff;
            padding: 52px 0;
            position: fixed;
            z-index: 1;
            top: 100px;
            left: 0;
            right: 0;
            width: 100%;
            box-shadow: 0px 10px 10px #00000033;
        }

            nav ul.main-nav .subnav p {
                font-size: 15px;
                color: #72838d;
                line-height: 18px;
            }

                nav ul.main-nav .subnav p.title,
                nav ul.main-nav .subnav p.title a {
                    font-size: 20px;
                    line-height: 26px;
                    color: #0c272f;
                    font-weight: 700;
                }

                    nav ul.main-nav .subnav p.title a:hover {
                        color: #f4ad3b;
                    }

            nav ul.main-nav .subnav ul {
                margin-left: 30px;
            }

                nav ul.main-nav .subnav ul li {
                    display: list-item;
                    margin-bottom: 10px;
                }

                    nav ul.main-nav .subnav ul li a {
                        font-family: "Roboto", sans-serif;
                        font-weight: 500;
                        font-size: 15px;
                        color: #0c272f;
                        line-height: 20px;
                    }

                        nav ul.main-nav .subnav ul li a:after {
                            content: "";
                            background-image: url("/_img/icons/icon_arrow_schwarz_klein.svg");
                            background-size: contain;
                            background-repeat: no-repeat;
                            display: inline-block;
                            width: 7.5px;
                            height: 7.5px;
                            margin-bottom: 0.5px;
                            margin-left: 5px;
                        }

                        nav ul.main-nav .subnav ul li a:hover,
                        nav ul.main-nav .subnav ul li.active a {
                            color: #f4ad3b;
                        }

                            nav ul.main-nav .subnav ul li a:hover:after,
                            nav ul.main-nav .subnav ul li.active a:after {
                                background-image: url("/_img/icons/icon_arrow_gelb_klein.svg");
                            }

            nav ul.main-nav .subnav img {
                width: 100%;
                height: auto;
                margin-bottom: 10px;
            }

                nav ul.main-nav .subnav img,
                nav ul.main-nav .subnav img + p {
                    margin-left: 49px;
                }

    /* #endregion [/MAIN NAV] */

    /* #region [META NAV] */
    nav ul.meta-nav {
        margin-top: 5px;
    }

        nav ul.meta-nav li {
            margin-left: 22px;
        }

            nav ul.meta-nav li a {
                font-family: "Open Sans", sans-serif;
                font-weight: 600;
                font-size: 12px;
                color: #72838d;
                line-height: 20px;
            }

                nav ul.meta-nav li a:hover,
                nav ul.meta-nav li.active a,
                nav ul.meta-nav li.languageSelection a.active,
                nav ul.meta-nav li.languageSelection a:hover {
                    color: #f4ad3b;
                }

            nav ul.meta-nav li.languageSelection {
                cursor: pointer;
                position: relative;
            }

                nav ul.meta-nav li.languageSelection a.multilingual.active:after {
                    content: "";
                    background-image: url("/_img/icons/icon_arrow_down_gelb.svg");
                    background-size: contain;
                    background-repeat: no-repeat;
                    display: inline-block;
                    width: 7.5px;
                    height: 3.75px;
                    margin-bottom: 2px;
                    margin-left: 3px;
                }

                nav ul.meta-nav li.languageSelection .dropdown {
                    position: absolute;
                    top: 22.5px;
                    right: 0;
                    padding-right: 10px;
                    padding-left: 10px;
                    background-color: #e8eef1;
                    z-index: 1;
                }

                    nav ul.meta-nav li.languageSelection .dropdown a {
                        display: block;
                    }
/* #endregion [/META NAV] */

@media (max-width: 1199.98px) {
    nav ul.main-nav > li {
        margin-left: 22px;
    }

        nav ul.main-nav > li > a {
            width: 75px;
        }

    nav ul.meta-nav li {
        margin-left: 10px;
    }

    nav ul.main-nav .subnav ul {
        margin-left: 42px;
    }

    nav ul.main-nav .subnav img,
    nav ul.main-nav .subnav img + p {
        margin-left: 31px;
    }
}

@media (max-width: 991.98px) {
    nav ul.main-nav,
    nav ul.meta-nav {
        display: none;
    }

        nav ul.main-nav .subnav ul {
            margin-left: 0;
        }
}

/* #endregion [/NAV] */

/* #region [MOBILE NAV] */

nav #hamburger {
    display: none;
    height: 35px;
    width: 35px;
    position: absolute;
    right: 7.5px;
    top: 11px;
    cursor: pointer;
    z-index: 1;
}

    nav #hamburger span {
        background-color: #0c272f;
        height: 3px;
        width: 35px;
        position: absolute;
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
        border-radius: 20px;
    }

        nav #hamburger span:nth-child(1) {
            top: 0;
        }

        nav #hamburger span:nth-child(2) {
            top: 12.5px;
            opacity: 1;
        }

        nav #hamburger span:nth-child(3) {
            top: 25px;
        }

@media (max-width: 991.98px) {
    .openMobileNav nav #hamburger span {
        width: 25px;
        height: 2px;
        right: 5px;
    }

        .openMobileNav nav #hamburger span:nth-child(1) {
            top: 12.5px;
            transform: rotate(45deg);
        }

        .openMobileNav nav #hamburger span:nth-child(2) {
            top: 12.5px;
            opacity: 0;
        }

        .openMobileNav nav #hamburger span:nth-child(3) {
            top: 12.5px;
            transform: rotate(-45deg);
        }

    .openMobileNav header {
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: #e8eef1;
        margin: 0;
    }

        .openMobileNav header .row.h-100 {
            height: auto !important;
        }

    .openMobileNav nav ul.main-nav,
    .openMobileNav nav ul.meta-nav {
        display: block;
    }

    .openMobileNav .logo img {
        height: 48px;
    }

    .openMobileNav main,
    .openMobileNav footer {
        display: none;
    }

    header .row.h-100 {
        position: relative;
    }

    nav #hamburger {
        display: block;
    }

    nav ul li {
        display: list-item;
    }

    nav ul.main-nav {
        margin-top: 60px;
    }

        nav ul.main-nav > li > a {
            font-size: 22px;
            line-height: 34px;
            width: 125px;
        }

        nav ul.main-nav > li,
        nav ul.meta-nav li {
            margin-left: 0;
        }

        nav ul.main-nav > li {
            margin-bottom: 15px;
        }

        nav ul.main-nav .subnav.hidden {
            max-height: 0;
            opacity: 0;
            padding: 0;
        }

        nav ul.main-nav .subnav {
            display: block;
            max-height: 750px;
            height: auto;
            opacity: 1;
            position: initial;
            background: #e8eef1;
            box-shadow: none;
            padding: 10px 0;
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
        }

            nav ul.main-nav .subnav ul li a {
                font-size: 18px;
                line-height: 28px;
            }

            nav ul.main-nav .subnav .row > div:first-child,
            nav ul.main-nav .subnav .row > div:last-child {
                display: none;
            }

    nav ul.meta-nav {
        margin: 80px 0 32px;
    }

        nav ul.meta-nav li a {
            font-size: 18px;
            line-height: 28px;
        }

        nav ul.meta-nav li.languageSelection .dropdown {
            left: 0;
            padding-left: 0;
        }
}
/* #endregion [/MOBILE NAV] */

/* #region [BREADCRUMB NAV] */
section.breadcrumb-nav {
    padding: 40px 0 0;
}

    section.breadcrumb-nav p {
        font-size: 12px;
        line-height: 16px;
        color: #0c272f;
        margin: 0;
    }

        section.breadcrumb-nav p .active {
            font-weight: 700;
            text-decoration: underline;
        }
/* #endregion [/BREADCRUMB NAV] */

/* #region [MAIN] */
main {
    margin-top: 100px;
    min-height: calc(100vh - 350px);
}

@media (max-width: 991.98px) {
    main {
        margin-top: 80px;
        min-height: calc(100vh - 330px);
    }
}
/* #endregion [/MAIN] */

/* #region [FOOTER] */
.social-links {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 34px 30px 0;
}

    .social-links img {
        position: relative;
        display: block;
        margin-bottom: 15px;
        cursor: pointer;
    }

footer {
    background-color: #e8eef1;
    padding: 60px 0;
}

    footer ul {
        padding: 0;
        margin: 0 40px 0 0;
        list-style: none;
    }

    footer div:last-child > ul {
        margin: 0;
    }

    footer li.title {
        color: #72838d;
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 22.5px;
    }

    footer li a,
    footer li {
        font-size: 15px;
        line-height: 21px;
    }

        footer li.active a {
            color: #f4ad3b;
        }

        footer li:not(:last-child):not(.title) {
            margin-bottom: 12px;
        }

@media (max-width: 767.98px) {
    footer ul {
        margin: 0 40px 30px 0;
    }

    footer li.title {
        margin-bottom: 12.5px;
    }

    .social-links {
        margin-right: 20px;
    }
}
/* #endregion [/FOOTER] */

/* #region [PARALLAX] */
.parallax {
    height: 100%;
    width: 100%;
    margin-top: -80px;
    position: absolute;
    overflow: hidden;
}

    .parallax img {
        position: absolute;
        opacity: .5;
        top: -200px;
    }

        .parallax img:first-child {
            left: -75px;
        }

        .parallax img:nth-child(2) {
            right: -75px;
        }
/* #endregion [/PARALLAX] */

/* #region [TEXT IMAGE SLIDER] */
section.textImageSlider {
    padding: 0;
}

    section.textImageSlider.first.showBreadCrumb {
        margin-top: -40px;
    }

    section.textImageSlider .slide {
        padding: 100px 0;
    }

    section.textImageSlider h1,
    section.textImageSlider h2 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 20px;
    }

    section.textImageSlider .intro {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 50px;
    }

    section.textImageSlider a.more {
        color: #f4ad3b;
        font-size: 18px;
        font-weight: 600;
        line-height: 21px;
    }

        section.textImageSlider a.more:after {
            content: "";
            background-image: url("/_img/icons/icon_arrow_gelb.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 18.25px;
            height: 18px;
            margin-bottom: -3.5px;
            margin-left: 13px;
        }

    section.textImageSlider .image {
        float: right;
        width: 100%;
        height: auto;
        padding-left: 65px;
        outline: none;
    }

    section.textImageSlider .backgroundIcon {
        position: absolute;
        z-index: -1;
    }

        section.textImageSlider .backgroundIcon:first-child {
            bottom: -125px;
            right: 25px;
        }

        section.textImageSlider .backgroundIcon:nth-child(2) {
            top: -10px;
            left: -20px;
        }

        section.textImageSlider .backgroundIcon:nth-child(3) {
            top: -130px;
            right: -60px;
        }

@media (max-width: 991.98px) {
    section.textImageSlider .image {
        margin-top: 25px;
        padding-left: 0;
    }

    section.textImageSlider .backgroundIcon:nth-child(2) {
        left: -85px;
    }
}

@media (max-width: 767.98px) {
    section.textImageSlider .imageWrapper {
        display: none;
    }

    section.textImageSlider h1,
    section.textImageSlider h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

/* #region [OVERRIDE SLICK SLIDER] */
section.textImageSlider .slick-slide {
    overflow: hidden;
    outline: none;
}

section.textImageSlider .slick-dots li {
    margin: 0;
}

    section.textImageSlider .slick-dots li button {
        padding: 4px;
    }

        section.textImageSlider .slick-dots li button:before {
            font-size: 13px;
            line-height: 20px;
            color: #72838d;
        }

    section.textImageSlider .slick-dots li.slick-active button:before {
        opacity: 1;
    }

section.textImageSlider.slick-dotted.slick-slider {
    margin-bottom: 77px;
}
/* #endregion [/OVERRIDE SLICK SLIDER] */
/* #endregion [/TEXT IMAGE SLIDER] */

/* #region [TEXT IMAGE BOXES] */
section.textImageBoxes {
    padding: 40px 0 20px;
}

    section.textImageBoxes .boxes > div {
        margin-bottom: 80px;
    }

    section.textImageBoxes .box {
        padding: 50px 80px;
        height: 100%;
        cursor: pointer;
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
    }

        section.textImageBoxes .box.small {
            padding: 30px;
        }

        section.textImageBoxes .box.image {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        section.textImageBoxes .box.video {
            background-color: #ffffff;
        }

    section.textImageBoxes h3 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 50px;
        color: #0c272f;
        z-index: 1;
    }

    section.textImageBoxes .box.small h3 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 30px;
        text-transform: uppercase;
    }

    section.textImageBoxes .box.image h3 {
        color: #ffffff;
    }

    section.textImageBoxes .more {
        color: #f4ad3b;
        font-size: 15px;
        font-weight: 700;
        line-height: 18px;
        z-index: 1;
        margin: 0;
    }

        section.textImageBoxes .more:after {
            content: "";
            background-image: url("/_img/icons/icon_arrow_gelb.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 18.25px;
            height: 18px;
            margin-bottom: -3.5px;
            margin-left: 13px;
            z-index: 1;
        }

    section.textImageBoxes .date {
        color: #0c272f;
        font-size: 15px;
        line-height: 18px;
        margin: 0;
        float: right;
        z-index: 1;
    }

    section.textImageBoxes .box.small .date {
        display: block;
    }

    section.textImageBoxes .box.image .date {
        color: #ffffff;
    }

    section.textImageBoxes .playBtn {
        width: 93px;
        height: 93px;
        margin: 0 0 50px;
    }

    section.textImageBoxes .box.small .playBtn {
        width: 80px;
        height: 80px;
        margin: 0 0 65px;
    }

    section.textImageBoxes .category {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        margin: 10px 0 40px;
    }

    section.textImageBoxes .box.image .overlay {
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
        height: 100%;
        width: calc(100% - 15px);
        position: absolute;
        top: 0;
        left: 7.5px;
        background-image: linear-gradient( 1deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100% );
    }

    section.textImageBoxes .box:not(.image) .overlay {
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
        height: 100%;
        width: calc(100% - 15px);
        position: absolute;
        top: 0;
        left: 7.5px;
        background-color: #f4ad3b;
        opacity: 0;
    }

    section.textImageBoxes .box:hover .overlay {
        opacity: 0.1;
    }

    section.textImageBoxes .box.image:hover .overlay {
        opacity: 0.5;
    }

    section.textImageBoxes .button {
        margin: 0 0 80px;
    }

@media (min-width: 992px) {
    section.textImageBoxes .box .date {
        display: none;
    }

    section.textImageBoxes .box.image:not(.small) {
        min-height: 500px;
    }

    section.textImageBoxes .box.image.small {
        min-height: 320px;
    }
}

@media (max-width: 991.98px) {
    section.textImageBoxes .boxes > div:not(:last-child) {
        margin-bottom: 15px;
    }

    section.textImageBoxes .box {
        padding: 30px;
        min-height: 50vh;
    }

        section.textImageBoxes .box h3 {
            font-size: 24px;
            line-height: 30px;
            margin: 0 0 30px;
            text-transform: uppercase;
        }

        section.textImageBoxes .box .playBtn {
            width: 80px;
            height: 80px;
            margin: 0 0 65px;
        }
}

@media (max-width: 767.98px) {
    section.textImageBoxes h3 {
        font-size: 34px;
        line-height: 44px;
    }

    section.textImageBoxes .box.small h3 {
        font-size: 20px;
        line-height: 24px;
    }
}
/* #endregion [/TEXT IMAGE BOXES] */


/* #region [Contact Form] */
section.contactForm {
    padding: 50px 0 70px;
}

    section.contactForm h1 {
        margin-bottom: 30px;
    }

    section.contactForm .borderBottom {
        border-bottom: 2px solid #0C272F;
        margin: 50px 0;
    }

    section.contactForm label {
        font-size: 15px;
        line-height: 18px;
        font-weight: bold;
        display: block;
    }

        section.contactForm label.space {
            margin-top: 8px;
        }

    section.contactForm input,
    section.contactForm select,
    section.contactForm textarea {
        border: 1px solid #0C272F;
        padding: 14px;
        width: 100%;
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 35px;
    }

        section.contactForm input:focus,
        section.contactForm textarea:focus {
            padding-bottom: 10px;
            border-bottom: 5px solid #0C272F;
        }


        section.contactForm select.empty,
        section.contactForm textarea.empty,
        section.contactForm input.empty {
            border: 2px solid red;
        }

    section.contactForm button {
        float: right;
        padding: 15px 25px;
        background-color: #F4AD3B;
        color: white;
        font-size: 15px;
        line-height: 28px;
        border: none;
    }

    section.contactForm .infoIcon {
        width: 15px;
        height: 15px;
        margin-top: -10px;
        margin-left: 5px;
        border-radius: 10px;
    }

    section.contactForm .infoText {
        display: none;
        font-size: 12px;
        line-height: 18px;
        background-color: #E8EEF1;
        padding: 3px 7px;
        width: auto;
        position: absolute;
        top: -24px;
        left: 45px;
    }

        section.contactForm .infoText.clicked {
            display: inline;
        }

    section.contactForm button:hover {
        background-color: #0C272F;
    }

    section.contactForm span {
        color: #F4AD3B;
    }

    section.contactForm .textareaWrapper {
        display: none;
    }

        section.contactForm .textareaWrapper.message {
            display: block;
        }

    section.contactForm .textareaWrapper textarea {
        display: none;
    }

        section.contactForm .textareaWrapper.message textarea {
            display: block;
        }


/* #endregion [/Contact Form] */


/* #region [QUICK INFO] */
section.quickInfo {
    padding: 0 0 80px;
}

    section.quickInfo .text-box {
        margin-left: 100px;
    }

        section.quickInfo .text-box h3 {
            font-size: 42px;
            font-weight: 700;
            line-height: 50px;
            margin: 0 0 30px;
        }

        section.quickInfo .text-box .text {
            font-size: 17px;
            line-height: 24px;
        }

    section.quickInfo .box {
        border: 1px solid #d4dbdd;
        padding: 56px 22px 42px;
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
        margin-bottom: 20px;
        cursor: pointer;
        height: calc(100% - 20px);
    }

        section.quickInfo .box:hover {
            box-shadow: 0px 10px 20px #43434433;
            border: none;
        }

        section.quickInfo .box .title {
            font-size: 20px;
            line-height: 26px;
            font-weight: 700;
            margin: 20px 0 17.5px;
            color: #0c272f;
        }

        section.quickInfo .box .text {
            color: #72838d;
            font-size: 15px;
            line-height: 21px;
        }

        section.quickInfo .box .icon {
            width: 50px;
            height: 50px;
        }

    section.quickInfo .category {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        margin: 50px 0 40px;
    }

@media (max-width: 991.98px) {
    section.quickInfo .text-box {
        margin: 0 0 20px;
    }
}


@media (max-width: 767.98px) {
    section.quickInfo .box .title {
        font-size: 18px;
        line-height: 22px;
        margin: 20px 0 10px;
    }

    section.quickInfo .box .text {
        font-size: 17px;
    }

    section.quickInfo .text-box h3 {
        font-size: 34px;
        line-height: 44px;
    }
}
/* #endregion [/QUICK INFO] */

/* #region [NEWSLETTER SUBSCRIPTION] */
section.newsletterSubscription {
    padding: 80px 0 100px;
    text-align: center;
}

    section.newsletterSubscription h3 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 20px;
    }

    section.newsletterSubscription .text {
        font-size: 17px;
        line-height: 24px;
        margin: 0 0 40px;
    }

    section.newsletterSubscription .mc-field-group {
        margin: 0 0 15px;
    }

    section.newsletterSubscription input:not([type="submit"]) {
        font-size: 17px;
        line-height: 20px;
        padding: 20px;
        color: #72838d;
        background: #ffffff;
        border: none;
        width: 100%;
        outline: none;
    }

    section.newsletterSubscription input:focus,
    section.newsletterSubscription #mc_embed_signup input.mce_inline_error:focus {
        outline: 1px solid #f4ad3b;
    }

    section.newsletterSubscription .button {
        width: 100%;
    }

    section.newsletterSubscription #mc_embed_signup div.mce_inline_error {
        background: none;
        font-size: 12px;
        font-weight: 400;
        padding: 5px 0;
    }

    section.newsletterSubscription #mc_embed_signup input.mce_inline_error {
        outline: 2px solid #6b0505;
    }

@media (max-width: 767.98px) {
    section.newsletterSubscription h3 {
        font-size: 34px;
        line-height: 44px;
    }
}
/* #endregion [/NEWSLETTER SUBSCRIPTION] */

/* #region [HEADER IMAGE] */
section.headerImage {
    padding: 80px 0 100px;
    margin: 0;
}

    section.headerImage.first.showBreadCrumb {
        padding: 0;
        margin-top: -56px;
    }

    section.headerImage .image {
        height: 450px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
/* #endregion [/HEADER IMAGE] */

/* #region [NEWS ARTICLE] */
section.newsArticle {
    padding: 80px 0 100px;
}

    section.newsArticle.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.newsArticle h1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 30px;
    }

        section.newsArticle h1.small {
            font-size: 32px;
            line-height: 42px;
        }

    section.newsArticle h2 {
        font-size: 28px;
        font-weight: 700;
        line-height: 42px;
        margin: 60px 0 30px;
    }

    section.newsArticle .date,
    section.newsArticle .author {
        font-size: 17px;
        line-height: 20px;
        color: #72838d;
        margin: 0 0 10px;
    }

    section.newsArticle .content {
        font-size: 18px;
        line-height: 24px;
    }

        section.newsArticle .content p:not(.imageCaption):last-child {
            margin: 0;
        }

        section.newsArticle .content a,
        section.newsArticle .content a:hover {
            color: #f4ad3b;
            font-weight: 700;
            text-decoration: underline;
        }

        section.newsArticle .content img {
            width: 100%;
            height: auto;
            margin: 50px 0 20px;
        }

        section.newsArticle .content .imageCaption {
            font-size: 15px;
            line-height: 18px;
            color: #72838d;
            margin: 0 0 80px;
            text-align: center;
        }


        section.newsArticle .content .video-container {
            position: relative;
            padding-bottom: 56.25%;
            padding-top: 0;
            height: 0;
            overflow: hidden;
            margin: 50px 0 20px;
        }

            section.newsArticle .content .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

@media (max-width: 767.98px) {
    section.newsArticle h1 {
        font-size: 34px;
        line-height: 44px;
    }

        section.newsArticle h1.small {
            font-size: 26px;
            line-height: 36px;
        }

    section.newsArticle h2 {
        font-size: 22px;
        line-height: 32px;
    }
}
/* #endregion [/NEWS ARTICLE] */

/* #region [SHARING] */
.sharing {
    padding: 80px 0 0;
    display: flex;
}

    .sharing .caption {
        font-size: 12px;
        line-height: 16px;
        color: #f4ad3b;
        text-transform: uppercase;
        letter-spacing: 0.24px;
        margin: 0 20px 0 0;
        display: flex;
        align-items: center;
    }

    .sharing.grey .caption {
        color: #72838d;
    }

    .sharing .caption:after {
        content: "";
        width: 33px;
        height: 0.5px;
        background-color: #f4ad3b;
        margin: 0 0 0 6.5px;
        display: inline-block;
    }

    .sharing.grey .caption:after {
        background-color: #72838d;
    }

    .sharing .shareBtn {
        width: 48px;
        height: 43px;
        cursor: pointer;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

        .sharing .shareBtn.facebookSharing {
            background-image: url("/_img/icons/btn_facebook.svg");
            margin-right: -1px;
        }

        .sharing .shareBtn.twitterSharing {
            background-image: url("/_img/icons/btn_twitter.svg");
        }

    .sharing.grey .shareBtn.facebookSharing {
        background-image: url("/_img/icons/btn_facebook_grau.svg");
    }

    .sharing.grey .shareBtn.twitterSharing {
        background-image: url("/_img/icons/btn_twitter_grau.svg");
    }

    .sharing .shareBtn.facebookSharing:hover {
        background-image: url("/_img/icons/btn_facebook_gelb.svg");
    }

    .sharing .shareBtn.twitterSharing:hover {
        background-image: url("/_img/icons/btn_twitter_gelb.svg");
    }

    .sharing.grey .shareBtn.facebookSharing:hover {
        background-image: url("/_img/icons/btn_facebook_grau_gelb.svg");
    }

    .sharing.grey .shareBtn.twitterSharing:hover {
        background-image: url("/_img/icons/btn_twitter_grau_gelb.svg");
    }
/* #endregion [/SHARING] */

/* #region [PAGINATION] */
.pagination {
    border-top: 6px solid #0c272f;
    display: block;
    border-radius: 0;
    padding: 24px 0 0;
    margin: 80px 0 0;
}

    .pagination.grey {
        border-top-color: #e8eef1;
    }

    .pagination a {
        font-size: 15px;
        line-height: 20px;
        color: #f4ad3b;
        font-weight: 700;
    }

        .pagination a.next {
            float: right;
        }

            .pagination a.prev:before,
            .pagination a.next:after {
                content: "";
                background-image: url("/_img/icons/icon_arrow_gelb.svg");
                background-size: contain;
                background-repeat: no-repeat;
                display: inline-block;
                width: 18.25px;
                height: 18px;
                margin-bottom: -3.5px;
                margin-left: 8px;
            }

        .pagination a.prev:before {
            margin-left: 0;
            margin-right: 8px;
            transform: rotate(180deg);
        }
/* #endregion [/PAGINATION] */

/* #region [TEXT GRAPHIC] */
section.textGraphic {
    padding: 80px 0 100px;
    overflow: hidden;
}

    section.textGraphic.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.textGraphic h1,
    section.textGraphic h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        margin: 0 0 30px;
    }

    section.textGraphic .text {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 80px;
    }

        section.textGraphic .text p:last-child {
            margin: 0;
        }

    section.textGraphic .graphic {
        width: 75%;
        height: auto;
        margin-left: 50%;
        transform: translate(-50%, 0);
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

        section.textGraphic .graphic.withTextIcons {
            width: 550px;
        }


    section.textGraphic .imageCaption {
        font-size: 15px;
        line-height: 18px;
        color: #72838d;
        margin: 25px 0 0;
        text-align: center;
    }

    section.textGraphic img.label {
        position: absolute;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

        section.textGraphic img.label:first-child {
            top: 10px;
            left: 200px;
        }

        section.textGraphic img.label:nth-child(2) {
            top: 170px;
            left: 140px;
        }

        section.textGraphic img.label:nth-child(3) {
            top: 310px;
            left: 180px;
        }

        section.textGraphic img.label:nth-child(4) {
            top: 0;
            right: 130px;
        }

        section.textGraphic img.label:nth-child(5) {
            top: 100px;
            right: 65px;
        }

        section.textGraphic img.label:nth-child(6) {
            top: 290px;
            right: 100px;
        }

@media (max-width: 1199.98px) {
    section.textGraphic img.label:first-child {
        left: 110px;
    }

    section.textGraphic img.label:nth-child(2) {
        left: 50px;
    }

    section.textGraphic img.label:nth-child(3) {
        left: 90px;
    }

    section.textGraphic img.label:nth-child(4) {
        right: 30px;
    }

    section.textGraphic img.label:nth-child(5) {
        right: -5px;
    }

    section.textGraphic img.label:nth-child(6) {
        right: 0;
    }
}

@media (max-width: 991.98px) {
    section.textGraphic .graphic {
        width: 100%;
    }

        section.textGraphic .graphic.withTextIcons {
            width: 350px;
            transform: translate(-55%, 0);
        }

    section.textGraphic img.label:first-child {
        top: -20px;
        left: 60px;
    }

    section.textGraphic img.label:nth-child(2) {
        top: 90px;
        left: 20px;
    }

    section.textGraphic img.label:nth-child(3) {
        top: 190px;
        left: 50px;
    }

    section.textGraphic img.label:nth-child(4) {
        top: -20px;
        right: 10px;
    }

    section.textGraphic img.label:nth-child(5) {
        top: 60px;
        right: -15px;
    }

    section.textGraphic img.label:nth-child(6) {
        top: 190px;
        right: 0;
    }
}

@media (max-width: 767.98px) {
    section.textGraphic h1,
    section.textGraphic h2 {
        font-size: 26px;
        line-height: 36px;
    }

    section.textGraphic .graphic.withTextIcons {
        width: 255px;
    }

    section.textGraphic img.label {
        transform: scale(0.75);
    }

        section.textGraphic img.label:first-child {
            top: -20px;
            left: 40px;
        }

        section.textGraphic img.label:nth-child(2) {
            top: 60px;
            left: -10px;
        }

        section.textGraphic img.label:nth-child(3) {
            top: 140px;
            left: 20px;
        }

        section.textGraphic img.label:nth-child(4) {
            top: -20px;
            right: -20px;
        }

        section.textGraphic img.label:nth-child(5) {
            top: 40px;
            right: -40px;
        }

        section.textGraphic img.label:nth-child(6) {
            top: 120px;
            right: -25px;
        }
}

@media (max-width: 575.98px) {
    section.textGraphic .graphic.withTextIcons {
        width: 225px;
    }

    section.textGraphic img.label {
        transform: scale(0.7);
    }

        section.textGraphic img.label:first-child {
            top: -30px;
            left: 50px;
        }

        section.textGraphic img.label:nth-child(2) {
            top: 40px;
            left: -10px;
        }

        section.textGraphic img.label:nth-child(3) {
            top: 115px;
            left: 5px;
        }

        section.textGraphic img.label:nth-child(4) {
            top: -35px;
            right: 10px;
        }

        section.textGraphic img.label:nth-child(5) {
            top: 25px;
            right: -40px;
        }

        section.textGraphic img.label:nth-child(6) {
            top: 120px;
            right: 15px;
        }
}

@media (max-width: 499.98px) {
    section.textGraphic .graphic,
    section.textGraphic .graphic.withTextIcons {
        width: 100%;
        margin: 0;
        transform: translate(0, 0);
    }

    section.textGraphic img.label {
        display: none;
    }
}
/* #endregion [/TEXT GRAPHIC] */

/* #region [TEXT VIDEO] */
section.textVideo {
    padding: 80px 0 100px;
}

    section.textVideo.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.textVideo h1,
    section.textVideo h2 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 50px;
    }

    section.textVideo .text {
        font-size: 20px;
        line-height: 26px;
    }

        section.textVideo .text p:last-child {
            margin: 0;
        }

    section.textVideo .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 0;
        height: 0;
        overflow: hidden;
    }

        section.textVideo .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    section.textVideo .videoLabel {
        margin: 25px 0 0 45%;
    }

@media (max-width: 991.98px) {
    section.textVideo .videoLabel {
        margin: 20px 25px 25px 0;
        float: right;
    }
}

@media (max-width: 767.98px) {
    section.textVideo h1,
    section.textVideo h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 499.98px) {
    section.textVideo .videoLabel {
        margin: 20px 0 25px 50%;
        float: left;
        transform: translate(-50%, 0);
    }
}
/* #endregion [/TEXT VIDEO] */

/* #region [QUESTIONS ANWSERS] */
section.questionsAnwsers {
    padding: 80px 0 100px;
    overflow: hidden;
}

    section.questionsAnwsers.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.questionsAnwsers .category {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        margin: 0 0 40px;
    }

    section.questionsAnwsers .box {
        height: calc(100% - 16px);
        cursor: pointer;
        margin-bottom: 16px;
    }

        section.questionsAnwsers .box.flipBox {
            position: relative;
            -webkit-perspective: 600px;
            -moz-perspective: 600px;
            perspective: 600px;
        }

        section.questionsAnwsers .box.image {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 50px 80px;
        }

        section.questionsAnwsers .box .overlay {
            -webkit-transition: all ease 0.2s;
            transition: all ease 0.2s;
            height: calc(100% - 16px);
            width: calc(100% - 15px);
            position: absolute;
            top: 0;
            left: 7.5px;
            background-image: linear-gradient( 1deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100% );
        }

        section.questionsAnwsers .box:hover .overlay {
            opacity: 0.5;
        }

        section.questionsAnwsers .box.flipBox .front,
        section.questionsAnwsers .box.flipBox .back {
            padding: 50px 80px;
            height: 100%;
            z-index: 1000;
            -webkit-transform: rotateX(0deg) rotateY(0deg);
            -moz-transform: rotateX(0deg) rotateY(0deg);
            transform: rotateX(0deg) rotateY(0deg);
            -webkit-transform-style: preserve-3d;
            -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

        section.questionsAnwsers .box.flipBox .back {
            position: absolute;
            top: 0;
            z-index: 900;
            -webkit-transform: rotateY(-180deg);
            -moz-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
            overflow-y: auto;
        }

        section.questionsAnwsers .box.flipBox.flipped .front {
            z-index: 900;
            -webkit-transform: rotateY(180deg);
            -moz-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }

        section.questionsAnwsers .box.flipBox.flipped .back {
            z-index: 1000;
            -webkit-transform: rotateX(0deg) rotateY(0deg);
            -moz-transform: rotateX(0deg) rotateY(0deg);
            transform: rotateX(0deg) rotateY(0deg);
        }

        section.questionsAnwsers .box.flipBox.white .front,
        section.questionsAnwsers .box.flipBox.white .back {
            background-color: #ffffff;
        }

        section.questionsAnwsers .box.flipBox.blue .front,
        section.questionsAnwsers .box.flipBox.blue .back {
            background-color: #bdddf2;
        }

        section.questionsAnwsers .box.grey .front,
        section.questionsAnwsers .box.grey .back {
            background-color: #e8eef1;
        }

        section.questionsAnwsers .box.flipBox.yellow .front,
        section.questionsAnwsers .box.flipBox.yellow .back {
            background-color: #fffe9a;
        }

    section.questionsAnwsers h3 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 60px;
        color: #0c272f;
        z-index: 1;
    }

    section.questionsAnwsers .box.image h3 {
        color: #ffffff;
        margin: 0;
    }

    section.questionsAnwsers .box.image .category {
        color: #ffffff;
        margin-bottom: 20px;
        z-index: 1;
    }

    section.questionsAnwsers .flip {
        font-size: 15px;
        font-weight: 700;
        line-height: 18px;
        z-index: 1;
        margin: 0;
    }

        section.questionsAnwsers .flip:after {
            content: "";
            background-image: url("/_img/icons/icon_flip_antwort.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 20px;
            height: 13px;
            margin-left: 10px;
            z-index: 1;
        }

    section.questionsAnwsers .icon {
        width: 70px;
        height: 70px;
        margin: 60px 0;
    }

    section.questionsAnwsers .text {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 50px;
    }

        section.questionsAnwsers .text p:last-child {
            margin: 0;
        }

@media (max-width: 767.98px) {
    section.questionsAnwsers h3 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 499.98px) {
    section.questionsAnwsers .box.image,
    section.questionsAnwsers .box.flipBox .front,
    section.questionsAnwsers .box.flipBox .back {
        padding: 30px;
    }
}
/* #endregion [/QUESTIONS ANWSERS] */

/* #region [SCIENCE CHANNEL] */
section.scienceChannel {
    padding: 0 0 80px;
}

    section.scienceChannel.paddingTop {
        padding: 80px 0;
    }

    section.scienceChannel .borderTop {
        border-top: 6px solid #db4168;
    }

    section.scienceChannel .titleBox {
        padding: 100px 75px 17.5px 10px;
        background-color: #db4168;
        margin: 50px 0;
        width: 150px;
    }

        section.scienceChannel .titleBox p {
            font-size: 15px;
            font-weight: 500;
            line-height: 20px;
            text-transform: uppercase;
            color: #ffffff;
            margin: 0;
        }

    section.scienceChannel .text {
        font-size: 17px;
        line-height: 20px;
        margin: 0 0 50px;
    }

    section.scienceChannel .downloadBox {
        padding: 20px 16px;
        background-color: #72838d;
        border-top: 6px solid #db4168;
        height: 100%;
    }

        section.scienceChannel .downloadBox .title {
            font-size: 17px;
            line-height: 24px;
            color: #ffffff;
            margin: 0 0 30px;
        }

        section.scienceChannel .downloadBox .link {
            font-size: 15px;
            line-height: 20px;
            color: #f29ab0;
            font-weight: 700;
            margin: 0;
        }

            section.scienceChannel .downloadBox .link:after {
                content: "";
                background-image: url("/_img/icons/icon_arrow_pink.svg");
                background-size: contain;
                background-repeat: no-repeat;
                display: inline-block;
                width: 12px;
                height: 12px;
                margin-bottom: -2px;
                margin-left: 10px;
            }

            section.scienceChannel .downloadBox .link.download:after {
                content: "";
                background-image: url("/_img/icons/icon_arrow_down_pink.svg");
                background-size: contain;
                background-repeat: no-repeat;
                display: inline-block;
                width: 12px;
                height: 7px;
                margin-bottom: 1px;
                margin-left: 10px;
            }

@media (max-width: 991.98px) {
    section.scienceChannel .row > div:not(:last-child) .downloadBox {
        margin-bottom: 16px;
        height: calc(100% - 16px);
    }
}
/* #endregion [/SCIENCE CHANNEL] */

/* #region [TEXT COLUMNS] */
section.textColumns {
    padding: 80px 0 0;
}

    section.textColumns.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.textColumns.big {
        padding: 80px;
    }

    section.textColumns .text2Col {
        padding: 0 80px;
    }

    section.textColumns .text3Col {
        padding: 0 20px;
    }

    section.textColumns .title {
        font-size: 20px;
        line-height: 26px;
        font-weight: 700;
        margin: 0 0 20px;
        color: #0c272f;
    }

    section.textColumns h1,
    section.textColumns h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        margin: 0 0 30px;
    }

    section.textColumns.big h1,
    section.textColumns.big h2 {
        font-size: 69px;
        line-height: 83px;
    }

    section.textColumns h4 {
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        margin: 0 0 20px;
        color: #0c272f;
    }

    section.textColumns .text {
        font-size: 17px;
        line-height: 24px;
        color: #0c272f;
        margin: 0 0 80px;
    }

        section.textColumns .text ul {
            margin: 0;
            padding: 0 0 0 20px;
        }

        section.textColumns .text p:last-child {
            margin: 0;
        }

        section.textColumns .text a,
        section.textColumns .text a:hover {
            color: #f4ad3b;
            font-weight: 700;
            text-decoration: underline;
        }

    section.textColumns .button {
        margin: 80px 0 0;
    }

    section.textColumns .logos {
        padding: 0 0 80px;
        margin-top: -10px;
    }

        section.textColumns .logos img {
            width: 100%;
            height: auto;
            padding: 30px 50px;
            cursor: pointer;
        }

@media (min-width: 992px) {
    section.textColumns .row > div:nth-child(3n) .text3Col {
        padding: 0 0 0 40px;
    }

    section.textColumns .row > div:nth-child(3n + 1) .text3Col {
        padding: 0 40px 0 0;
    }
}

@media (max-width: 991.98px) {
    section.textColumns .row > div:not(:last-child) .text3Col .text {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    section.textColumns h1,
    section.textColumns h2 {
        font-size: 26px;
        line-height: 36px;
    }

    section.textColumns.big h1,
    section.textColumns.big h2 {
        font-size: 55px;
        line-height: 68px;
    }
}

@media (max-width: 499.98px) {
    section.textColumns .text2Col {
        padding: 0 30px;
    }

    section.textColumns .logos img {
        padding: 20px;
    }
}
/* #endregion [/TEXT COLUMNS] */

/* #region [STATISTICS BOXES] */
section.statisticsBoxes {
    padding: 80px 0 100px;
}

    section.statisticsBoxes.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.statisticsBoxes h1,
    section.statisticsBoxes h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        margin: 0 0 30px;
    }

    section.statisticsBoxes .text {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 60px;
    }

        section.statisticsBoxes .text p:last-child {
            margin: 0;
        }

    section.statisticsBoxes .box {
        padding: 48.5px 40px 34px;
        margin: 0;
        height: 100%;
        box-shadow: 0px 10px 20px #00000033;
        background-color: #ffffff;
        text-align: center;
    }

        section.statisticsBoxes .box .title {
            font-family: "Roboto Slab", serif;
            font-size: 53px;
            line-height: 70px;
            font-weight: 700;
            margin: 0 0 13.5px;
            color: #0c272f;
        }

        section.statisticsBoxes .box .text {
            color: #0c272f;
            font-size: 15px;
            line-height: 21px;
            margin: 0;
        }

@media (min-width: 992px) {
    section.statisticsBoxes .box {
        margin: 0 25px;
    }

    section.statisticsBoxes .boxes > div:nth-child(3n) .box {
        margin: 0 0 0 50px;
    }

    section.statisticsBoxes .boxes > div:nth-child(3n + 1) .box {
        margin: 0 50px 0 0;
    }
}

@media (max-width: 991.98px) {
    section.statisticsBoxes .boxes > div:not(:last-child) .box {
        margin: 0 0 15px;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    section.statisticsBoxes h1,
    section.statisticsBoxes h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
/* #endregion [/STATISTICS BOXES] */

/* #region [STUDY OVERVIEW] */
section.studyOverview {
    padding: 80px 0 100px;
}

    section.studyOverview.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.studyOverview h1,
    section.studyOverview h2 {
        font-weight: 700;
        font-size: 32px;
        line-height: 42px;
        margin: 0 0 80px;
        padding: 0 100px;
    }

    section.studyOverview .studies {
        padding: 0 100px;
    }

        section.studyOverview .studies tr th:first-child,
        section.studyOverview .studies tr td:first-child {
            min-width: 32px;
        }

        section.studyOverview .studies tr th:nth-child(3),
        section.studyOverview .studies tr td:nth-child(3) {
            min-width: 57px;
        }

        section.studyOverview .studies tr th:last-child,
        section.studyOverview .studies tr td:last-child {
            min-width: 47px;
        }

@media (max-width: 991.98px) {
    section.studyOverview h1,
    section.studyOverview h2,
    section.studyOverview .studies {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    section.studyOverview h1,
    section.studyOverview h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
/* #endregion [/STUDY OVERVIEW] */

/* #region [DETAIL STUDY OVERVIEW] */
section.detailStudyOverview {
    padding: 80px 0 100px;
}

    section.detailStudyOverview.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.detailStudyOverview h1,
    section.detailStudyOverview h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 42px;
        margin: 0 0 30px;
    }

    section.detailStudyOverview .text {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 60px;
    }

        section.detailStudyOverview .text p:last-child {
            margin: 0;
        }

    section.detailStudyOverview .studyCard.flipBox {
        position: relative;
        -webkit-perspective: 600px;
        -moz-perspective: 600px;
        perspective: 600px;
        cursor: pointer;
        margin: 0 0 30px;
    }

        section.detailStudyOverview .studyCard.flipBox.noFlip {
            cursor: initial;
        }

        section.detailStudyOverview .studyCard.flipBox .front,
        section.detailStudyOverview .studyCard.flipBox .back {
            height: 100%;
            z-index: 1000;
            -webkit-transform: rotateX(0deg) rotateY(0deg);
            -moz-transform: rotateX(0deg) rotateY(0deg);
            transform: rotateX(0deg) rotateY(0deg);
            -webkit-transform-style: preserve-3d;
            -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

        section.detailStudyOverview .studyCard.flipBox .back {
            position: absolute;
            top: 0;
            z-index: 900;
            -webkit-transform: rotateY(-180deg);
            -moz-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
        }

        section.detailStudyOverview .studyCard.flipBox.flipped .front {
            z-index: 900;
            -webkit-transform: rotateY(180deg);
            -moz-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }

        section.detailStudyOverview .studyCard.flipBox.flipped .back {
            z-index: 1000;
            -webkit-transform: rotateX(0deg) rotateY(0deg);
            -moz-transform: rotateX(0deg) rotateY(0deg);
            transform: rotateX(0deg) rotateY(0deg);
        }

        section.detailStudyOverview .studyCard.flipBox img {
            width: 100%;
            min-width: 350px;
            height: auto;
        }

    section.detailStudyOverview a,
    section.detailStudyOverview .flip {
        font-size: 15px;
        line-height: 20px;
        color: #f4ad3b;
        font-weight: 700;
        cursor: pointer;
        margin: 0;
    }

        section.detailStudyOverview a.prev.mobile,
        section.detailStudyOverview a.next.mobile {
            display: none;
        }

        section.detailStudyOverview a.prev {
            margin-left: -25px;
        }

        section.detailStudyOverview a.next {
            float: right;
            margin-right: -25px;
        }

            section.detailStudyOverview a.prev:before,
            section.detailStudyOverview a.next:after {
                content: "";
                background-image: url("/_img/icons/icon_arrow_gelb.svg");
                background-size: contain;
                background-repeat: no-repeat;
                display: inline-block;
                width: 18.25px;
                height: 18px;
                margin-bottom: -3.5px;
                margin-left: 8px;
            }

        section.detailStudyOverview a.prev:before {
            margin-left: 0;
            margin-right: 8px;
            transform: rotate(180deg);
        }

        section.detailStudyOverview .flip:before {
            content: "";
            background-image: url("/_img/icons/icon_flip_antwort_gelb.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 20px;
            height: 14px;
            margin-right: 8px;
            margin-bottom: -1px;
            z-index: 1;
        }

@media (max-width: 767.98px) {
    section.detailStudyOverview h1,
    section.detailStudyOverview h2 {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 575.98px) {

    section.detailStudyOverview .studyCard.flipBox img {
        min-width: 225px;
    }

    section.detailStudyOverview a.prev, section.detailStudyOverview a.next {
        display: none;
    }

        section.detailStudyOverview a.prev.mobile,
        section.detailStudyOverview a.next.mobile {
            display: block;
            margin: 0;
        }
}
/* #endregion [/DETAIL STUDY OVERVIEW] */

/* #region [DETAIL STUDY] */
section.detailStudy {
    padding: 80px 0 100px;
}

    section.detailStudy.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.detailStudy .box {
        background-color: #ffffff;
        box-shadow: 0px 50px 50px #4343441a;
        padding: 50px 80px 100px;
    }

    section.detailStudy h1,
    section.detailStudy h2 {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        margin: 0 0 30px;
    }

    section.detailStudy .studyProgress h2 {
        text-align: center;
        margin: 0 0 10px;
    }

    section.detailStudy h4 {
        font-size: 20px;
        font-weight: 700;
        line-height: 26px;
        border-top: 1px solid #e8eef1;
        padding: 60px 0 0;
        margin: 0 0 40px;
    }

    section.detailStudy .content {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 40px;
    }

        section.detailStudy .content p:last-child {
            margin: 0;
        }

        section.detailStudy .content a,
        section.detailStudy .content a:hover {
            color: #f4ad3b;
            font-weight: 700;
            text-decoration: underline;
        }

    section.detailStudy .subtitle {
        font-size: 17px;
        line-height: 20px;
        color: #72838d;
        margin: 0;
        text-align: center;
    }

    section.detailStudy .box {
        margin: 0 0 100px;
    }

    section.detailStudy .studyProgress {
        margin: 60px 0 0;
    }

        section.detailStudy .studyProgress .progressCircle {
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
        }

            section.detailStudy .studyProgress .progressCircle .progressbar-text {
                font-size: 78px;
                line-height: 81px;
                font-weight: 700;
                color: #1b1b1b;
                top: 122.5px !important;
                transform: translate(-50%, 0) !important;
                display: flex;
            }

                section.detailStudy .studyProgress .progressCircle .progressbar-text .small {
                    font-size: 19px;
                    line-height: 25px;
                    font-weight: 700;
                    align-self: start;
                    margin-top: 10px;
                }

    section.detailStudy a.back {
        color: #f4ad3b;
        font-size: 15px;
        line-height: 20px;
        font-weight: 500;
    }

        section.detailStudy a.back:before {
            content: "";
            background-image: url("/_img/icons/icon_arrow_gelb.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 18.25px;
            height: 18px;
            margin-bottom: -3px;
            margin-right: 8px;
            transform: rotate(180deg);
        }

@media (max-width: 767.98px) {
    section.detailStudy h1,
    section.detailStudy h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 499.98px) {
    section.detailStudy .box {
        padding: 30px 30px 50px;
        margin: 0 0 50px;
    }
}
/* #endregion [/DETAIL STUDY] */

/* #region [MEDIA REPORTS] */
section.mediaReports {
    padding: 80px 0 100px;
}

    section.mediaReports.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.mediaReports .mediaReport {
        cursor: pointer;
        margin: 0 0 30px;
    }

    section.mediaReports .logoWrapper {
        background-color: #0c272f;
        width: 100%;
        height: 100%;
        min-height: 150px;
    }

        section.mediaReports .logoWrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    section.mediaReports .text {
        padding: 30px 0;
        margin: 0 30px 0 0;
        min-height: 150px;
    }

        section.mediaReports .text p {
            font-size: 15px;
            line-height: 21px;
            margin: 0;
            color: #0c272f;
        }

        section.mediaReports .text .date {
            color: #72838d;
        }

@media (max-width: 575.98px) {
    section.mediaReports .text {
        min-height: auto;
        margin: 0;
        padding: 15px 0;
    }

    section.mediaReports .mediaReport {
        margin-bottom: 0;
    }

    section.mediaReports .logoWrapper {
        display: none;
    }
}
/* #endregion [/MEDIA REPORTS] */

/* #region [LINK LISTS] */
section.linkLists {
    padding: 80px 0 100px;
}

    section.linkLists.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.linkLists.small {
        padding: 40px 0;
    }

    section.linkLists .linkList:not(:last-child) {
        margin: 0 0 80px;
    }

    section.linkLists h1,
    section.linkLists h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        margin: 0 0 30px;
    }

    section.linkLists ul {
        list-style: none;
        margin: 0;
        padding: 0 0 0 1px;
        font-size: 17px;
        line-height: 34px;
    }

        section.linkLists ul li {
            padding: 4px 0;
            line-height: 26px;
        }

    section.linkLists.small ul {
        line-height: 42px;
    }

        section.linkLists.small ul li {
            padding: 8px 0;
            line-height: 26px;
        }

    section.linkLists a {
        text-decoration: underline;
        color: #f4ad3b;
        word-break: break-word;
    }

    section.linkLists.small a {
        font-weight: 700;
    }

@media (max-width: 767.98px) {
    section.linkLists h1,
    section.linkLists h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
/* #endregion [/LINK LISTS] */

/* #region [IMAGE GALLERY] */
section.imageGallery {
    padding: 80px 0 100px;
}

    section.imageGallery.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.imageGallery.small {
        padding: 40px 0 15px;
    }

    section.imageGallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 50px 0 30px;
    }

    section.imageGallery .imageCaption {
        font-size: 15px;
        line-height: 21px;
        margin: 0 0 30px;
    }

    section.imageGallery h1,
    section.imageGallery h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 700;
        margin: 0 0 5px;
    }

    section.imageGallery .intro {
        font-size: 15px;
        line-height: 21px;
        color: #72838d;
        margin: 0;
    }

@media (max-width: 767.98px) {
    section.imageGallery h1,
    section.imageGallery h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
/* #endregion [/IMAGE GALLERY] */

/* #region [PEOPLE] */
section.people {
    padding: 80px 0 0;
    margin: 0 0 -20px;
}

    section.people.first.showBreadCrumb {
        padding: 40px 0 0;
    }

    section.people.small {
        padding: 0;
    }

    section.people .row > div:nth-child(3n + 1) .person {
        margin: 0 60px 80px 0;
    }

    section.people .row > div:nth-child(3n + 2) .person {
        margin: 0 30px 80px;
    }

    section.people .row > div:nth-child(3n + 3) .person {
        margin: 0 0 80px 60px;
    }

    section.people .person {
        height: calc(100% - 30px);
        padding: 30px 10px;
        background: #ffffff;
    }

        section.people .person.grey {
            background-color: #e8eef1;
        }

        section.people .person.blue {
            background-color: #bdddf2;
        }

        section.people .person.black {
            background-color: #0c272f;
            color: #ffffff;
        }

        section.people .person img {
            border-radius: 250px;
            margin: 0 auto;
            display: block;
            width: 75%;
            height: auto;
            object-fit: contain;
        }

        section.people .person .name {
            font-size: 20px;
            line-height: 26px;
            font-weight: 700;
            text-align: center;
            margin: 20px 0;
        }

        section.people .person .position {
            font-size: 17px;
            line-height: 24px;
            text-align: center;
            margin: 0 0 25px;
            color: #72838d;
        }

        section.people .person .info {
            font-size: 17px;
            line-height: 24px;
            text-align: center;
            margin: 0;
        }

        section.people .person a {
            color: #f4ad3b;
            font-size: 15px;
            line-height: 18px;
            margin: 30px auto 0;
            font-weight: 700;
            text-align: center;
            display: block;
        }

@media (max-width: 991.98px) {
    section.people .row > div:nth-child(3n + 1) .person,
    section.people .row > div:nth-child(3n + 2) .person,
    section.people .row > div:nth-child(3n + 3) .person {
        margin: 0 30px 60px;
    }
}
/* #endregion [/PEOPLE] */

/* #region [QUESTION ANWSERS REVIEW] */
section.questionAnwsersReview {
    padding: 80px 0 100px;
}

    section.questionAnwsersReview.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.questionAnwsersReview h3 {
        font-size: 32px;
        font-weight: 700;
        line-height: 42px;
        margin: 0 0 60px;
        color: #0c272f;
    }

    section.questionAnwsersReview .category {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        margin: 0 0 40px;
        color: #e84d75;
    }

    section.questionAnwsersReview .box {
        padding: 30px;
        margin: 0 0 50px;
        box-shadow: 0px 10px 20px #00000033;
        background-color: #e8eef1;
        width: 60%;
    }

    section.questionAnwsersReview.grey .box {
        background-color: #ffffff;
    }

    section.questionAnwsersReview .box.big {
        width: 80%;
    }

    section.questionAnwsersReview .box .text {
        color: #0c272f;
        font-size: 15px;
        line-height: 21px;
        margin: 0;
    }

    section.questionAnwsersReview .text {
        font-size: 17px;
        line-height: 28px;
    }

        section.questionAnwsersReview .text p:last-of-type {
            margin: 0;
        }

        section.questionAnwsersReview .text ul {
            padding: 0 0 0 20px;
            margin: 0;
        }

@media (max-width: 991.98px) {
    section.questionAnwsersReview .textAnwsers > div:not(:last-child) .text {
        margin: 0 0 50px;
    }

    section.questionAnwsersReview .box,
    section.questionAnwsersReview .box.big {
        width: 100%;
        height: calc(100% - 30px);
        margin: 0 0 30px !important;
    }

    section.questionAnwsersReview .cardAnwsers > div:last-child .box,
    section.questionAnwsersReview .cardAnwsers > div:last-child .box.big {
        margin: 0 !important;
    }
}

@media (max-width: 767.98px) {
    section.questionAnwsersReview .box,
    section.questionAnwsersReview .box.big {
        height: auto;
    }

    section.questionAnwsersReview h3 {
        font-size: 26px;
        line-height: 36px;
    }
}
/* #endregion [/QUESTION ANWSERS REVIEW] */

/* #region [CTA BANNER] */
section.ctaBanner {
    padding: 0 0 100px;
}

    section.ctaBanner.first.showBreadCrumb {
        margin-top: -56px;
    }

    section.ctaBanner .headerImage {
        width: 100%;
        height: 380px;
        background-size: cover;
    }

    section.ctaBanner .box {
        padding: 40px 80px;
        box-shadow: 0px 10px 20px #00000040;
        background-color: #ffffff;
        margin-top: -100px;
    }

        section.ctaBanner .box .logo {
            width: 100%;
            height: auto;
            object-fit: contain;
            padding-right: 65px;
        }

        section.ctaBanner .box h3 {
            font-size: 32px;
            font-weight: 700;
            line-height: 42px;
            margin: 0 0 10px;
            color: #0c272f;
        }

        section.ctaBanner .box p {
            font-size: 17px;
            line-height: 24px;
            margin: 0 0 30px;
            color: #0c272f;
        }

            section.ctaBanner .box p.more {
                color: #f4ad3b;
                font-size: 15px;
                font-weight: 700;
                line-height: 1px;
                margin: 0;
            }

                section.ctaBanner .box p.more:after {
                    content: "";
                    background-image: url("/_img/icons/icon_arrow_gelb.svg");
                    background-size: contain;
                    background-repeat: no-repeat;
                    display: inline-block;
                    width: 18.25px;
                    height: 18px;
                    margin-bottom: -3.5px;
                    margin-left: 13px;
                }

@media (max-width: 767.98px) {
    section.ctaBanner .box .logo {
        margin-bottom: 50px;
    }

    section.ctaBanner .box h3 {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 499.98px) {
    section.ctaBanner .box {
        padding: 40px;
    }
}
/* #endregion [/CTA BANNER] */

/* #region [RESULTLIST] */
section.resultList {
    padding: 80px 0 100px;
}

    section.resultList.first.showBreadCrumb {
        padding-top: 40px;
    }

    section.resultList h1,
    section.resultList h2 {
        font-weight: 700;
        font-size: 32px;
        line-height: 42px;
        margin: 0 0 60px;
    }

    section.resultList .results tr th:first-child,
    section.resultList .results tr td:first-child {
        min-width: 60px;
    }

    section.resultList .results tr th:last-child,
    section.resultList .results tr td:last-child {
        min-width: 47px;
    }

@media (min-width: 992px) {
    section.resultList .results tr th:nth-child(2),
    section.resultList .results tr td:nth-child(2) {
        min-width: 200px;
    }
}


@media (max-width: 767.98px) {
    section.resultList h1,
    section.resultList h2 {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 499.98px) {
    section.resultList table.dataTable.customDataTable tr th:first-child,
    section.resultList table.dataTable.customDataTable tr td:first-child,
    section.resultList table.dataTable.customDataTable thead tr th.sorting:after {
        display: none;
    }


    section.resultList table.dataTable.customDataTable tr th:nth-child(2),
    section.resultList table.dataTable.customDataTable tr td:nth-child(2) {
        padding-left: 12.5px;
    }
}
/* #endregion [/RESULT LIST] */

/* #region [DATA TABLE] */
table.dataTable.customDataTable {
    border-bottom: none;
}

    table.dataTable.customDataTable tr {
        background-color: #ffffff;
    }

    table.dataTable.customDataTable.blue tr {
        background-color: #bdddf2;
    }

    table.dataTable.customDataTable tbody tr {
        cursor: pointer;
        -webkit-transition: all ease 0.2s;
        transition: all ease 0.2s;
    }

        table.dataTable.customDataTable tbody tr:hover {
            background-color: #e8eef1;
        }

    table.dataTable.customDataTable.blue tbody tr:hover {
        background-color: #e6f3fa;
    }

    table.dataTable.customDataTable tr th,
    table.dataTable.customDataTable tr td {
        font-weight: 500;
        outline: none;
    }

    table.dataTable.customDataTable tr th {
        font-size: 13px;
        line-height: 18px;
        border-bottom: 4px solid #72838d;
        padding: 10px 45px 10px 0;
    }

    table.dataTable.customDataTable tr td {
        font-size: 15px;
        line-height: 20px;
        border-bottom: 1px solid #72838d;
        padding: 20px 45px 20px 0;
    }

    table.dataTable.customDataTable tbody tr:last-child td {
        border-bottom: 4px solid #72838d;
    }

    table.dataTable.customDataTable tr th:first-child,
    table.dataTable.customDataTable tr td:first-child {
        padding-left: 30px;
    }

    table.dataTable.customDataTable thead tr th.sorting,
    table.dataTable.customDataTable thead tr th.sorting_asc,
    table.dataTable.customDataTable thead tr th.sorting_desc {
        background-image: none;
    }

        table.dataTable.customDataTable thead tr th.sorting:after,
        table.dataTable.customDataTable thead tr th.sorting_asc:after,
        table.dataTable.customDataTable thead tr th.sorting_desc:after {
            content: "";
            background-image: url("/_img/icons/icon_arrow_sorting.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 10px;
            height: 15px;
            margin-bottom: -3.5px;
            margin-left: 5px;
        }

        table.dataTable.customDataTable thead tr th.sorting_asc:after {
            background-image: url("/_img/icons/icon_arrow_sorting_asc.svg");
        }

        table.dataTable.customDataTable thead tr th.sorting_desc:after {
            background-image: url("/_img/icons/icon_arrow_sorting_desc.svg");
        }

    table.dataTable.customDataTable tr td a.more,
    table.dataTable.customDataTable tr td a.more:hover,
    table.dataTable.customDataTable tr td a.download,
    table.dataTable.customDataTable tr td a.download:hover {
        text-decoration: underline;
        color: #0c272f;
    }

        table.dataTable.customDataTable tr td a.more:after {
            content: "";
            background-image: url("/_img/icons/icon_arrow_down_double_schwarz.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 7.5px;
            height: 6.5px;
            margin-bottom: 2px;
            margin-left: 3px;
            transform: rotate(270deg);
        }

        table.dataTable.customDataTable tr td a.download:after {
            content: "";
            background-image: url("/_img/icons/icon_arrow_down_schwarz.svg");
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 12px;
            height: 7px;
            margin-bottom: 1px;
            margin-left: 10px;
        }

@media (max-width: 991.98px) {
    table.dataTable.customDataTable tr th,
    table.dataTable.customDataTable tr td {
        padding-right: 25px;
    }

        table.dataTable.customDataTable tr th:first-child,
        table.dataTable.customDataTable tr td:first-child {
            padding-left: 12.5px;
        }
}

@media (max-width: 499.98px) {
    table.dataTable.customDataTable tr th:last-child,
    table.dataTable.customDataTable tr td:last-child,
    table.dataTable.customDataTable thead tr th.sorting:after {
        display: none;
    }
}
/* #endregion [/DATA TABLE] */

/* #region [COOKIE BANNER] */

div.cookieSection {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0c272f;
    padding: 20px 0;
    color: white;
    display: none;
    z-index: 9;
}

    div.cookieSection.visible {
        display: block;
    }


    div.cookieSection.hide {
        display: none;
    }

    div.cookieSection button.confirm.button {
        float: right;
        font-size: 16px;
    }

    div.cookieSection a {
        color: #f4ad3b;
    }

/* #endregion [/DATA TABLE] */
