@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3C3C3C;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #EDEDEB url(../images/bg.jpg) no-repeat top center;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1.562rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.5);
}

a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.blau {
    color: #044390;
}

.blau:hover {
    text-decoration: underline;
}

p {
    margin: 0 0 1.25rem;
}

h1 {
    font-size: 29px;
    line-height: 1.3;
    text-transform: inherit;
    padding: 20px 0;
    color: #044390;
    margin: 0
}

h1 span {
    display: block;
    font-size: 1.125rem;
}

h2 {
    font-size: 18px;
    padding: 18px 0 8px 0;
    color: #044390;
    margin: 0;
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0 0 1.25rem;
}

ul li {
    padding: 0 0 .125rem 22px;
    position: relative;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -22px;
    font-size: 26px;
    line-height: 0.9;
}

header {
    padding: 25px 60px;
}

article {
    padding: 55px 60px 0;
}

footer {
    padding: 0 3.75rem 2.5rem;
}

a.apply {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    text-transform: inherit;
    color: #ffffff;
    background: #044390;
    padding: 10px 20px;
    margin: 20px auto 15px auto;
}

a.apply:hover {
    text-decoration: none;
}

.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: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0 16px;
    }
}

@media only screen and (max-width: 480px) {

    h1,
    h1 + p,
    footer p {
        text-align: center;
    }

    header {
        display: flex;
        justify-content: center;
    }

    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
