@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v27-latin-regular.eot');
    src: url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-regular.svg#NotoSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v27-latin-700.eot');
    src: url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg');
}
:root {
    --main-color: #005eab;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #333;
    font: 400 1rem/1.3em 'Noto Sans', Arial, sans-serif;
    background: url('../images/hintergrund.jpg') no-repeat top center fixed;
    background-size: cover;
}
h1, h2, h3, strong {
    font-weight: 700;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    background: transparent;
}
p {
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #005eaa;
    text-decoration: underline 1px dotted #005eaa;
}
h1, h2 {
    color: #0069b4;
}
h1 {
    font-size: 1.625em;
    line-height: 120%;
    margin: 1rem 0 0.5rem;
}
h2 {
    font-size: 1.25rem;
    line-height: 120%;
    margin-bottom: 1rem;
}
header {
    padding: 1rem 1.625rem;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 0 0 26px rgba(0, 0, 0, .44);
}
.slide {
    position: relative;
    margin-bottom: 1.25rem;
}
.slide > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slide > img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slide > img:nth-of-type(2) {
    animation-delay: 6s;
}
.slide > img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
.section {
    padding: 1rem 1.625rem;
    background: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 26px rgba(0, 0, 0, .44);
}
ul {
    margin: .5rem 0 1rem 1.25rem;
    list-style-type: none;
}
li {
    margin-bottom: 0.25rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.375em;
    line-height: 1;
    float: left;
    margin: -1px 0 0 -1.25rem;
}
footer {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}
footer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
a.apply {
    display: block;
    width: fit-content;
    margin: 2rem 0 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #005eaa;
    background: #005eaa;
    color: #fff;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }
    p,ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    header {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    a.apply {
        margin: 2rem auto 1rem;
    }
}
@media only screen and (max-width: 30rem) {
    .section, header {
        padding: 1rem;
    }
}