@charset "utf-8";

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #666;
    font: 400 1rem/1.7em 'Open Sans', Arial, sans-serif;
    background: #e9e9e9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    overflow: hidden;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

header {
    background: #009fe3;
    padding-top: 2rem;
}

.content {
    max-width: 61.25rem;
    margin: 0 auto;
    position: relative;
}

header a {
    position: absolute;
    top: 2rem;
    right: 1rem;
}

article p {
    margin: 0 0 1rem;
}

article :is(p, ul) {
    hyphens: auto;
}

article .flex {
    display: flex;
    justify-content: space-between;
}

article section {
    background: #fff;
    width: 70%;
    padding: 1.5rem 1.5rem 2.5rem;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
    margin-top: -5rem;
}

article aside {
    background: #fff;
    width: 30%;
    padding: 1.5rem;
    border-bottom: solid 30px #009fe3;
    display: flex;
    flex-wrap: wrap;
}

article aside .logo {
    align-self: flex-end;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

article :is(h1, h2) {
    color: #009fe3;
    font-weight: normal;
}

article h1 {
    font-size: 2.5rem;
    margin: 1.5rem 0 3rem;
    line-height: 120%;
}

article h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 0 -1.5rem;
}

article h3 {
    font-size: 1rem;
    margin: 0 0 0 1.1rem;
}

article h2:before {
    content: "";
    font-size: 0;
    padding: 21px 0 0 0;
    border-right: solid 2rem #009fe3;
    margin-right: 9px;
}

article ul {
    margin: 0 0 1rem 1.1rem;
    list-style: none;
}

article ul li:before {
    content: "\00BB";
    float: left;
    font-size: 20px;
    margin: -2px 0 0 -20px;
}

article .blau {
    color: #009fe3;
}

article .apply {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

article a.btn {
    background: #009fe3;
    color: #fff;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.75rem;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
}

article a.btn:hover {
    background: #4cbceb;
}

footer {
    background: #009fe3;
    margin-top: -100px;
    height: 130px;
}

@media only screen and (max-width: 61.188rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 52.5rem) {
    header a {
        display: none;
    }

    article .flex {
        flex-direction: column;
    }

    article section {
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        padding: 1rem 1rem 2rem;
    }

    article aside {
        width: 100%;
        border-bottom: none;
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 2rem 1rem 1rem;
    }

    article aside .logo {
        align-self: center;
    }
}

@media only screen and (max-width: 36rem) {
    article h1 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 30rem) {
    article h1 {
        font-size: 1.5rem;
    }
}