@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v27-latin-300.eot');
    src: url('../fonts/roboto-condensed-v27-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-300.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-300.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-300.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #707070;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    background: #e5e5e5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1.562rem auto;
    overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.blau {
    color: #1f6fb9;
}

a.blau:hover {
    text-decoration: underline;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 500;
}

span {
    white-space: nowrap
}

h1 {
    font-size: 43px;
    font-weight: 300;
    line-height: 0.9;
    margin: 0px 0px 20px;
}

h1 small {
    font-size: 20px;
}

h2 {
    font-weight: 400;
    font-size: 26px;
    padding: 0px 0px 5px 0px;
    margin: 0;
    color: #1f6fb9;
}

ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

ul li {
    padding: 0 0 0 14px;
    position: relative;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -14px;
    font-size: 30px;
    line-height: 0.7;
    color: #1f6fb9;
}

.slider {
    position: relative;
    margin: 0 0 25px;
}

.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;
    }
}

header {
    padding: 30px 50px;
}

article {
    padding: 40px;
    border: 1px solid #cccccc;
    background: #fff;
}

footer {
    padding: 30px 50px;
    background: #4c4c4c;
    color: #fff;
}

footer p:first-of-type {
    margin: 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;
    }

    h1 {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }

    article,
    footer {
        padding: 1rem;
    }

    footer {
        text-align: center
    }
}
