@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/raleway-v34-latin-regular.eot');
    src: url('../fonts/raleway-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway-v34-latin-regular.woff2') format('woff2'), url('../fonts/raleway-v34-latin-regular.woff') format('woff'), url('../fonts/raleway-v34-latin-regular.ttf') format('truetype'), url('../fonts/raleway-v34-latin-regular.svg#Raleway') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/raleway-v34-latin-500.eot');
    src: url('../fonts/raleway-v34-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway-v34-latin-500.woff2') format('woff2'), url('../fonts/raleway-v34-latin-500.woff') format('woff'), url('../fonts/raleway-v34-latin-500.ttf') format('truetype'), url('../fonts/raleway-v34-latin-500.svg#Raleway') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/raleway-v34-latin-700.eot');
    src: url('../fonts/raleway-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway-v34-latin-700.woff2') format('woff2'), url('../fonts/raleway-v34-latin-700.woff') format('woff'), url('../fonts/raleway-v34-latin-700.ttf') format('truetype'), url('../fonts/raleway-v34-latin-700.svg#Raleway') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #5f6e73;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.3;
    background: #fff url(../images/hintergrund.jpg) no-repeat fixed;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1::after {
    content: " ";
    width: 60px;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-left: -30px;
    background-color: rgb(219, 144, 27);
}

h2 {
    font-size: 20px;
    font-weight: 500;
    color: #dc911b;
    margin: 0 0 .625rem
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline
}

a.website {
    color: #dc911b;
    font-weight: bold
}

p {
    margin: 0 0 20px;
}

ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
    position: relative
}

ul li:before {
    content: '\00a0';
    position: absolute;
    width: .562rem;
    height: .312rem;
    left: 0;
    top: .562rem;
    background-color: #dc911b;
    -webkit-border-radius: 0 3px 0 3px;
    border-radius: 0 3px 0 3px;
}

header {
    padding: 1.875rem 3.125rem
}

.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;
    }
}

a.apply {
    color: #fff;
    background: #DC911B;
    border: .062rem solid #DC911B;
    padding: .5rem 1.75rem;
    font-weight: 700;
    font-size: 15px;
    display: block;
    text-align: center;
    letter-spacing: 3px;
    width: fit-content;
    margin: 3rem auto 1rem
}

a.apply:hover {
    background: #fff;
    color: #DC911B;
    text-decoration: none
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gray,
.white {
    padding: 40px 50px
}

.gray {
    background: #F7F9F9
}

footer {
    background: #DC911B;
    padding: 1.875rem 3.125rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 1rem;
    border-top: .062rem solid #fff
}

footer p,
a.web {
    color: #fff
}

footer p {
    margin: 0
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: none
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    body {
        font-size: 1rem;
    }

    ul li:before {
        top: .5rem;
    }

    header {
        padding: 1rem;
    }

    header,
    article {
        background: #fff;
    }

    a.apply {
        margin: 1rem auto .375rem
    }

    .gray,
    .white {
        padding: 1rem
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 750px) {
    h1 {
        letter-spacing: 0
    }

    h1 br {
        display: none;
    }

    h2 {
        font-size: 1.125rem;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

@media only screen and (max-width: 499px) {
    footer {
        flex-direction: column;
        align-items: center
    }

    footer p {
        text-align: center;
        margin: 0 0 1rem
    }
}

@media only screen and (max-width: 376px) {
    a.apply {
        width: 100%
    }
}
