@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-700.woff') format('woff'), url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px), url(../images/bg.jpg) no-repeat top center;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.farbe,
.farbe {
    color: #0094d8;
}

a.dotted {
    color: #0094d8;
    text-decoration: underline 1px dotted #0094d8;
}

a.dotted:hover {
    color: #333;
    text-decoration: underline 1px solid #0094d8;
}

p {
    margin: 0 0 26px;
}

.margin {
    margin: 0
}

.margin+ul {
    margin: 0 0 .75rem
}

.aside p:last-of-type {
    margin: 0;
}

h1 {
    font-size: 26px;
    line-height: 1.3;
    margin: 26px 0;
    color: #0094d8;
}

h1 small {
    font-weight: 400;
}

h2 {
    font-size: 20px;
    line-height: 1.3;
    color: #0094d8;
    padding: 12px 26px;
    background: #e6e6e6;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 20px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -20px;
    font-size: 26px;
    line-height: 0.9;
}

header {
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 17px;
    padding: 20px 26px 16px;
    background: #fff;
    box-shadow: 0 0 26px rgba(0, 0, 0, .125);
    display: flex;
}

.logo:hover {
    opacity: 0.62;
}

section {
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 17px;
    background: #fff;
    box-shadow: 0 0 26px rgba(0, 0, 0, .125);
}

.aside {
    padding: 12px 26px 26px;
}

footer {
    display: flex;
    justify-content: center;
}

a.apply {
    text-align: center;
    font-size: 17px;
    color: #fff;
    background-color: #0094d8;
    margin: 38px auto 53px;
    padding: 9px 90px;
    border-radius: 5px;
    border: 2px solid #0094d8;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: uppercase;
}

a.apply:hover {
    color: #0094d8;
    background-color: transparent;
    border: 2px solid #0094d8;
    text-decoration: none;
    opacity: 0.62;
}


.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%;
}

.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;
    }

    body {
        background: rgba(239, 239, 239, 1);
    }

    h1 {
        font-size: 25px;
        text-align: center;
    }

    h2 {
        padding: 12px 16px;
    }

    header {
        padding: 16px;
    }

    .aside {
        padding: 12px 16px 16px;
    }

    h1 br {
        display: none;
    }

}

@media only screen and (max-width: 599px) {
    #wrapper {
        padding: .5rem;
    }

    header {
        justify-content: center;
        margin-bottom: .5rem;
    }

    section {
        margin-bottom: .5rem;
    }

    a.apply {
        margin: 1rem auto;
    }
}