@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v50-latin-regular.eot');
    src: url('../fonts/roboto-v50-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v50-latin-regular.woff') format('woff'), url('../fonts/roboto-v50-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v50-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v50-latin-500.eot');
    src: url('../fonts/roboto-v50-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-500.woff2') format('woff2'), url('../fonts/roboto-v50-latin-500.woff') format('woff'), url('../fonts/roboto-v50-latin-500.ttf') format('truetype'), url('../fonts/roboto-v50-latin-500.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v50-latin-700.eot');
    src: url('../fonts/roboto-v50-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-700.woff2') format('woff2'), url('../fonts/roboto-v50-latin-700.woff') format('woff'), url('../fonts/roboto-v50-latin-700.ttf') format('truetype'), url('../fonts/roboto-v50-latin-700.svg#Roboto') format('svg');
}

:root {
    --main-color: #005eab;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #003e72;
    font: 400 0.9375rem/1.3em 'Roboto', Arial, sans-serif;
    background: url('../images/hintergrund.jpg') no-repeat top center fixed;
    background-size: cover;
}

strong {
    font-weight: 500;
}

h1,
h2,
h3,
.box strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    border: 1px solid #003e72;
    background: transparent;
}

p {
    margin: .5rem 0;
}

h1 {
    font-size: 2em;
    line-height: 120%;
    margin: 1rem 0 2rem;
}

h2 {
    font-size: 1.0625rem;
    line-height: 120%;
    margin: 1rem 0 0.5rem;
    color: #0069b4;
}

h3 {
    font-size: 1.0625rem;
    color: #fff;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: var(--main-color);
}

.info {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.info :is(.fas, .far) {
    margin-right: 0.625rem;
}

header {
    padding: 1rem 3rem;
    margin-bottom: 1rem;
    background: #fff;
}

.slide {
    position: relative;
}

.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;
    }
}

.content {
    background: #fff;
    padding: 1rem 3rem;
}

ul {
    margin: .5rem 0 1rem 1.25rem;
    list-style-type: none;
}

li ul {
    padding: 0 0 0.5rem;
    margin: 0 0 0 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.25rem;
}

hr {
    border: 1px solid #0069b4;
    margin: 0 -4rem 0.5rem;
}

hr.nomgl {
    margin-left: 0;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 48%;
}

.box {
    padding: 2rem 3rem;
    background: #0069B4;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.box div {
    width: 48%;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

@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;
    }
}

@media only screen and (max-width: 768px) {
    ul {
        margin: .5rem 0 1rem 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }

    .flex,
    .box {
        flex-direction: column;
    }

    :is(.flex, .box) div {
        width: auto;
    }

    hr {
        margin-left: 0;
    }
}

@media only screen and (max-width: 30rem) {

    .content,
    .box {
        padding: 1rem;
    }
}