@charset "utf-8";

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-sans-v19-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/nunito-sans-v19-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v19-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito-sans-v19-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/nunito-sans-v19-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/nunito-sans-v19-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nunito-sans-v19-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/nunito-sans-v19-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v19-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito-sans-v19-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/nunito-sans-v19-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/nunito-sans-v19-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #3c3c3c;
    font: 400 1em/1.6 'Nunito Sans', sans-serif;
    background: linear-gradient(to bottom, #ededeb00 0%, #ededeb00 38vw, #EDEDEB 55vw, #EDEDEB 100vw), url("../images/hintergrund.jpg") no-repeat top center;
    background-size: contain;
}
img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    max-width: 822px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 1.5625rem -0.75rem rgba(0, 0, 0, 0.5);
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
p {
    margin: 0 0 1.25rem;
}
.small_text {
    font-size: 0.8125rem;
    line-height: 2;
}
.nowrap {
    white-space: nowrap;
}
a.link {
    color: #021d49;
}
a.link:hover {
    text-decoration: underline;
}
ul {
    margin: 0 0 3.125rem;
    padding: 0;
    list-style: none;
}
ul li {
    padding: 0 0 0 1.25rem;
    margin: 0 0 0.1875rem;
}
ul li:before {
    content: "";
    background-color: #3c3c3c;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.5625rem;
    margin: 0 0 0 -1.25rem;
}
h1 {
    color: #021d49;
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    line-height: 1;
}
h2 {
    color: #021d49;
    font-size: 1.250rem;
    margin: 0 0 0.625rem;
}
header {
    padding: 1.5625rem 3.75rem;
}
article {
    padding: 3.75rem 3.75rem 0;
}
.content :is(p, h2,a.link) {
    color: #fff;
}
.content {
    padding: 1.5rem 3.75rem;
    margin: 0 -3.75rem;
    background: #1D4289;
}
.button_container {
    margin: 3.125rem 0 0
}
a.apply {
    color: #fff;
    border: 2px solid #fff;
    width: 9.375rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.apply:hover{
    background-color: #021d49;
}
.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}
.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
@media only screen and (max-width: 821px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .small_text {
        line-height: 1.6;
    }
    ul {
        margin: 0 0 1.5625rem;
    }
    h1 {
        font-size: 1.75rem;
        line-height: 1.4;
        margin: 1.5625rem 0;
    }
    h2 {
        margin: 0 0 0.3125rem;
    }
    header {
        padding: 1rem;
    }
    article {
        padding: 1rem;
    }
    .button_container {
        margin: 1.5625rem 0
    }
}