@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 18.75rem, rgba(239, 239, 239, 1) 50rem), url(../images/wald_kletterwald.jpg) no-repeat top center;
    background-size: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #c50015;
    white-space: nowrap;
}

a:hover {
    color: #c50015;
    text-decoration: underline;
}

p {
    margin-bottom: 1.625rem;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin: -1.625rem 0 1.625rem;
}

h2 {
    color: #c50015;
    font-size: 1.313rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

ul {
    list-style: none;
    margin: 0 0 1.625rem .75rem;
}

ul ul {
    margin-bottom: 0;
}

ul li {
    padding: 0 0 0 .625rem;
    position: relative;
}

ul li:before {
    content: '\00a0';
    position: absolute;
    width: .5rem;
    height: .125rem;
    left: -.625rem;
    top: .687rem;
    background-color: #c50015;
    border-radius: 0 .187rem 0 .187rem;
}

ul ul li:before {
    content: '\00BB';
    width: auto;
    height: auto;
    background-color: inherit;
    border-radius: none;
    top: 0;
}

.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;
    }
}

.button a {
    display: inline-block;
    font-size: 15px;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    background-color: #c50015;
    border: 2px solid #c50015;
    padding: 8px 60px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 26px;
    margin-bottom: 53px;
    border-radius: 1px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.button a:hover {
    color: #c50015;
    background-color: #fff;
}

header {
    display: flex;
    padding: 1.063rem 2.188rem;
}

article {
    padding: 2.188rem 2.188rem 0;
}

footer {
    padding: 0 2.188rem;
    display: flex;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: none;
    }

    header {
        padding: 1.063rem 2rem;
    }

    article {
        padding: 2rem 2rem 0;
    }

    footer {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 40rem) {

    header {
        justify-content: center;
        padding: 1.063rem 1rem;
    }

    article {
        padding: 1.563rem 1rem 0;
    }

    footer {
        padding: 0 1rem;
        justify-content: center;
    }

    p,
    ul {
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 1.7rem;
        margin: -.625rem 0 1.25rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: .625rem;
    }

    .button a {
        margin: 1rem 0 2rem;
    }
}