

/* COLORS --------------------------------------------------------------------------------------------------------------------------------------------------------- */
.color-petrol {
    background-color: #cfdceb;
    color: #004d7e;
}

.color-lightblue {
    background-color: #f2f7f9;
}

.color-calltoaction {
    background-color: #cd007b;
}

.color-darkblue {
    background-color: #004d7e;
}

/* BASICS --------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* text */
h1, h2, h3, h4 {
    color: #004d7e;
}

h4 {
    margin: 15px 0 5px 0;
}

.introtext {
    color: #004d7e;
}

a {
    text-decoration: none;
    color: #cd007b;
}
.primary-btn, .secondary-btn, .tertiary-btn {
    background-color: #004d7e;
}

.secondary-btn {
    box-shadow: inset 0px 0px 0px 2px #004d7e;
    color: #004d7e;
    background-color: transparent;
}

.tertiary-btn {
    background-color: transparent;
    color: #cd007b;
    padding: 5px 0;
}

/* HEADER --------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* header basics */
header {
    box-shadow:none;
}

/* header navigation */

nav ul li {
    border-bottom: 2px solid #abc9e3;
}

header nav > ul > li:first-child {
    border-top: 2px solid #abc9e3;
}

nav ul li a {
    color: #004d7e;
}

nav ul li a:hover {
    background-color: #d8e8f7;
}

/* second level list*/
header nav ul ul {
    border-top: 2px solid #abc9e3;
}

header nav ul ul li {
    border-bottom: 2px solid #abc9e3;
}

/* Important Information Banner */
.infobanner {
    background-color: #8c5b93;
    color: #fff;
}

.infobanner a {
    color: #fff;
}


/* ARTICLE --------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* article basics */
article {
    padding: 0 0 150px;
}

article nav ul li a {
    color: #004d7e;
}

.teaserbox-interview .text {
    color: #004d7e;
}

article .content > .date {
    color: #004d7e;
}

.dropdown-btn.active {
    color: #004d7e;
}

.dropdown-content li a {
    color: #004d7e;
}

.filter-btn {
    color: #004d7e;
    border: 2px solid #004d7e;
}

.filter-btn.active {
    background-color: #004d7e;
}

article .news-related-files ul {
    list-style-type: none;
}

article .news-related-files ul li:before {
    content: '';
    height: 15px;
    width: 15px;
    margin: 5px 10px 10px 0;
    float: left;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../Images/icon-file.svg');
}

article .page-navigation ul {
    list-style-type: none;
    margin: 10px 0 30px 0;
    padding: 0;
}

article .page-navigation ul li {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    margin: 0 10px 0 0;
    line-height: 10px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}

article .page-navigation ul li.current {
    line-height: 50px;
}

article .page-navigation ul li.next, article .page-navigation ul li.previous {
    width: auto;
}

article .page-navigation ul li a {
    width: 100%;
    display: block;
    height: 100%;
    padding: 20px;
}

article .page-navigation ul li:hover {
    background-color: #f2f6f6;
}

/* RELATED CONTENT ------------------------------------------------------------------------------------------------------------------------------------------------ */

.related-content {
    background-color: transparent;
    padding: 10px 15px 150px;
    position: relative;
}

.related-content .secondary-btn {
    box-shadow: inset 0px 0px 0px 2px #004d7e;
    color: #004d7e;
    margin: 0 20px 20px 0;
}


/* FOOTER --------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* footer basics */
footer {
    position: relative;
    margin-top: 0;
}

footer .content {
    padding: 60px 15px 30px;
}

footer .content ul li a,
footer ul li a {
    color: #004d7e;
}

footer .secondary-btn {
    box-shadow: inset 0px 0px 0px 2px #004d7e;
    color: #004d7e;
}

.footer-curve {
    height: 50px;
    width: 100%;
    left: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    top: -40px;
    background-position: center bottom;
    background-image: url('Images/curve.svg');
}

.footer-curve-rc {
    background-image: url('../Images/curve-rc.svg');
}

.footer-figuren {
    position: absolute;
    top: -60px;
    right: 50px;
    width: 250px;
}


/* Cookie Banner */
.cookie-banner {
    background-color: #8c5b93;
    color: #fff;
}

.cookie-banner-close {
    background-image: url("../Images/icon-big-close-white.svg");
}

.cookie-banner .secondary-btn {
    color: #fff;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

/* MEDIA QUERIES --------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* min-width 990 */
@media only screen and (min-width: 990px) {

    header {
        height: 144px;
    }
    header nav.fixed {
        height:45px;
    }
    header nav ul ul li {
        border-bottom: 2px solid #f2f2f2;
    }
    /* buttons */
    .main-cta {
        box-shadow: inset 0px 0px 0px 2px #004d7e;
        color: #004d7e;
    }

    header nav.fixed {
        background-color: #cfdceb;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.06);
    }

    header nav > ul > li > a {
        color: #004d7e;
    }

    header nav > ul > li.active > a {
        border-bottom: 5px solid #cd007b;
    }

    header nav > ul > li > ul > li > a {
        color: #004d7e;
    }

    header nav > ul > li:first-child {
        border-top: 0;
    }

    /* article */
    article {
        padding: 50px 50px 150px;
    }

    footer {
        margin-top: 0px;
    }

    .footer-curve {
        height: 80px;
        top: -70px;
    }

    .footer-figuren {
        right: 200px;
    }
}

/* min-width 1200 */
@media only screen and (min-width: 1200px) {
    /* footer */
    footer .content {
        padding: 60px 50px 30px;
    }
}

header nav ul {
    background-color: #cfdceb;
}
header nav .mobilemenuarrow {
    background-image:url("../Images/icon-big-arrow-down-blue.svg");
}

