@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.eot');
    src: url('../fonts/roboto-v47-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v47-latin-regular.woff') format('woff'), url('../fonts/roboto-v47-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v47-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v47-latin-700.eot');
    src: url('../fonts/roboto-v47-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v47-latin-700.woff2') format('woff2'), url('../fonts/roboto-v47-latin-700.woff') format('woff'), url('../fonts/roboto-v47-latin-700.ttf') format('truetype'), url('../fonts/roboto-v47-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', "Arial", sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    background: #c8c8c8 url(../images/hintergrund.jpg) no-repeat;
    background-size: contain;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 52.5rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
    padding: 0 1.25rem;
}

:is(a:link, a:visited, a:active) {
    color: #003e6c;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.tel {
    color: inherit;
}

p {
    margin: 0 0 0.625rem;
}

.margin {
    margin: 0 0 1rem
}

span {
    white-space: nowrap
}

h1 {
    font-size: 1.125rem;
    margin: 1.25rem 0;
    line-height: 1.2;
    color: #003e6c;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #003e6c;
}

ul {
    padding: 0 0 0 1.3rem;
}

.slider {
    position: relative;
    margin: 0 0 0.5rem;
    border: 1px dashed #000000;
    box-shadow: 0 0 1.25rem -.75rem rgba(0, 0, 0, 1);
    background-color: #fff;
}

.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;
    }
}

.section {
    margin: 1rem 0 0;
    padding: 1.5rem 2rem;
    background: #fff;
    border: 1px dashed #000000;
    box-shadow: 0 0 1.25rem -.75rem rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 52.4375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: #c8c8c8;
    }
}

@media only screen and (max-width: 44rem) {
    .section {
        padding: 1rem;
    }

    h2 {
        margin-bottom: .625rem;
    }
}

@media only screen and (max-width: 30rem) {
    #wrapper {
        padding: .5rem;
    }

    .section {
        margin: .5rem 0 0;
    }
}