@charset "utf-8";

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v40-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #707173;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #DEDEDE;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.web {
    color: #0000ee;
    text-decoration: underline;
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 1.5rem;
    color: #0a50a1;
    margin: 0 0 1rem;
}

h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

header {
    padding: 2rem 0 0;
}

article {
    padding: 2rem 3rem 1rem;
}

.flex {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.blue {
    color: #0a50a1;
}

footer {
    padding: 1rem 0 0.5rem
}

.red_line,
.green_line,
.blue_line {
    height: 0.187rem;
    margin-bottom: 0.1rem;
}

.red_line {
    background-color: red;
}

.green_line {
    background-color: green;
}

.blue_line {
    background-color: #3961e2;
}

a.apply {
    background-color: #3153ac;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
}

a.apply:hover {
    background-color: #4067C9;
}

.button {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

@media only screen and (max-width: 49.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    h1 span {
        white-space: nowrap;
    }

    ul {
        padding-left: 0.937rem;
    }
}

@media only screen and (max-width: 48rem) {
    .flex {
        flex-direction: column;
    }
}

@media only screen and (max-width: 40rem) {

    article,
    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 23.437rem) {
    header {
        padding: 0;
    }

    .blau {
        text-align: center;
    }

    .blue {
        margin: 0;
    }

    h1 {
        font-size: 1.25rem;
        text-align: center;
    }
}