* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: MavenProRegular, Arial, sans-serif;
}

body {
    line-height: 1.5;
    color: #000548;
    position: relative;
}

header,
main,
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1em;
    padding-bottom: 0.75em;
    
}
header,
footer {
    padding: 0.75em;
}

header {
    background: #eb003c;
    color: #fff;
    margin-bottom: 0;
}

main {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

header a,
footer a {
    color: #fff;
    text-align: left;
}

header a::before {
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    top: 0.2em;
    width: .6em;
    height: .6em;
    transform: rotate(45deg);
    border-left: solid 2px #fff;
    border-bottom: solid 2px #fff;
}

.contentDiv {
    max-width: 960px;
    width: 100%;
    z-index: 2;
}

.headerPicture {
    width: 100%;
    height: 100%;
    max-height: 600px;
    position: relative;
    left: 0;
    top:0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headerPicture img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: 0 -10em;
    position: relative;
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
}
.headerPicture .contentDiv {
    position: relative;
    left: 0;
    bottom: calc(500px/2);
    height: 100%;
    color : #fff;
}

h2 {
    margin-top: 1em;
    font-family: MavenProBold;
    font-size: 2.2rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.15rem;
}

main ul.unorderedList-ul {
    margin-bottom: 1.25rem;
    margin-left: 2rem;
}

main ul li {
    list-style: none;
    position: relative;
    margin: .5rem 0;
    padding: 0;
    display: list-item;
    text-align: match-parent;
}

main ul.unorderedList-ul li::before {
    content: "";
    background: #eb003c;
    border-radius: 50%;
    height: .625rem;
    width: .625rem;
    display: inline-block;
    position: absolute;
    left: -1.25rem;
    top: calc((1.5rem - 0.625rem)/2);
}

a.download {
    padding-left: 1.5em;
    position: relative;
    display: inline-block;
    color: #000548;
}
a.download:hover {
    text-decoration: none;
}

a.download::before {
    font-family: za28db;
    content: '\E01D';
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 25%;
    left: 0;
    line-height: 1;
}

footer {
    background: #000548;
    color: #fff;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    list-style: none;
}

footer ul li {
    margin: .5rem;
    display: list-item;
}
form {
    margin: 5rem auto;
}
form label {
    margin-bottom: .5rem;
    display: inline-block;

}

form input {
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
    display: block;
    font-family: inherit;
    font-size: inherit;
    max-width: 100%;
    padding: .75em 1em;
    width: 100%;
}

button {
    margin: 1rem .5rem 1rem .5rem;
    padding: .4em 1em;
    background: #000548;
    border: 2px solid #000548;
    border-radius: 8px;
    color: #fff;
    transition: all ease .3s;
    cursor: pointer;
    display: inline-block;
    font-family: "MavenProMedium", Arial, sans-serif;
    font-size: 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: inhert;
}

button:hover {
    background-color: transparent;
    color: #000548;
}

.contactDiv,
.teaserDiv
 {
    background: #000548;
    color: #fff;
    padding: 1.5rem;
    font-family: "MavenProMedium", Arial, sans-serif;
    position: relative;
    width: 50%;
    margin-top: 1rem;
}

.contactDiv a {
    color: #fff;
    text-decoration: underline;
    padding-left: 1.5em;
    position: relative;
}

.contactDiv a:hover {
    text-decoration: none;
}

.contactDiv a::before {
    font-family: za28db;
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
    content: '\E031';
    transform: translate(0, -50%);
}

.accordeonHeader {
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 1.5em;
    font-family: MavenProBold;
    text-decoration: underline;
    position: relative;
    left: 0.2em;
}

.accordeonHeader::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-right: solid #eb003c 1px;
    border-bottom: solid #eb003c 1px;
    display: inline-block;
    transform: rotate(45deg);
    margin-right: 1em;
}

.accordeonHeader:hover {
    cursor: pointer;
    text-decoration: none;
}
.accordeonHeader:hover::before {
    border-color: #000548;
}

.contentAccordeon {
    display: none;
    position: relative;
    min-height: 600px;
}
.active {
    display: inline-block;
}
.activeArrow::before {
    content: '';
    transform: rotate(225deg);
    position: relative;
    top: 0.3em;
}

.teaserDiv {
    display: inline-block;
    margin-top: 2em;
    width: 100%;
}

.teaserDivA a {
    display: inline-block;
    text-decoration: none;
    color: #000548;
    background-color: #deff00;
    border: 2px solid #deff00;
    transition: all ease .3s;
    border-radius: 8px;
    padding: 0.4em 1em;
    margin-top: 1em;
}
.teaserDivA a:hover {
    background: none;
    color: #deff00;
}

/* .teaser {
    margin-top: 1.5em;
    background-color: #eb003c;
    padding: 1em;
    border: 2px solid #eb003c;
    border-radius: 5px;
    transition: all ease .3s;
    font-family: MavenProRegular, Arial, sans-serif;
}

.teaser span {
    font-family: MavenProBold, Arial, sans-serif;
}

.teaserA {
    text-decoration: none;
    color: #ffffff;
}

.teaser:hover {
    background: none;
    color: #eb003c;
} */

iframe {
    margin-top: 1em;
}

@media (max-width:900px) {
    .contentDiv {
        padding: 0.5em;
    }
    .contactDiv {
        width: 100%;
    }
}