﻿@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

article {
    padding: 1rem 2rem 0;
}

footer {
    padding: 0 2rem;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 26px;
    line-height: 31px;
}

h2 {
    font-size: 18px;
    margin: 20px 0;
    line-height: 22px;
}

h3 {
    font-size: 1.125rem;
    margin: 20px 0;
    color: #003366;
    line-height: 1.25rem;
}

p {
    margin: 0 0 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.5rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.link {
    color: #003366 !important;
    text-decoration: underline !important;
}

.images {
    position: relative;
}

.images:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
}

.logo {
    margin: 1rem 2rem
}

.headerbild {
    position: relative;
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 1rem;
}

.title :is(h1, p) {
    color: #FFF;
    text-align: center;
}

.infor {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem;
}

.infor p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.button {
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
}

.button a {
    font-weight: bold;
}

.apply a {
    display: inline-block;
    padding: 19px 1rem;
    background: #003366;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    width: 300px;
}

.apply a:hover {
    background: #001A33;
}

.box {
    margin: 20px auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 100%;
    padding: 1rem 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box p {
    text-align: center;
    margin: 0;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .title br {
        display: none;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media all and (max-width:480px) {
    .title {
        position: static;
        transform: none;
        background: #000;
    }

    ul {
        margin-left: 0
    }
}