    /*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */


/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: hsl(180, 40%, 5%);
    font-size: 1.5em;
    line-height: 1.4;
    background: #ffffff;
    text-align: center;
    font-family: "garamond-pro", serif;
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 100%
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

embed, iframe, object {
    max-width: 100%;
    display: block;
    width: 100%;
}

iframe {
    border: 0;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */


/* kenBurns animations, very basic */

@-webkit-keyframes left-right {
    0% {
        -webkit-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
    100% {
        -webkit-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
}

@-o-keyframes left-right {
    0% {
        -o-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
    100% {
        -o-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
}

@keyframes left-right {
    0% {
        -webkit-transform: translateY(-20%) translateX(-10%);
        -o-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
    100% {
        -webkit-transform: translateY(0%) translateX(10%);
        -o-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
}

@-webkit-keyframes right-left {
    0% {
        -webkit-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
    100% {
        -webkit-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
}

@-o-keyframes right-left {
    0% {
        -o-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
    100% {
        -o-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
}

@keyframes right-left {
    0% {
        -webkit-transform: translateY(0%) translateX(10%);
        -o-transform: translateY(0%) translateX(10%);
        transform: translateY(0%) translateX(10%);
    }
    100% {
        -webkit-transform: translateY(-20%) translateX(-10%);
        -o-transform: translateY(-20%) translateX(-10%);
        transform: translateY(-20%) translateX(-10%);
    }
}


/* added to the original element calling slippry */

.sy-box.sy-loading {
    background: url("/img/sy-loader.gif") 50% 50% no-repeat;
    -webkit-background-size: 32px 32px;
    background-size: 32px;
    min-height: 40px;
}

.sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
    visibility: hidden;
}


/* element that wraps the slides */

.sy-slides-wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.sy-slides-wrap:hover .sy-controls {
    display: block;
}


/* element that crops the visible area to the slides */

.sy-slides-crop {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}


/* list containing the slides */

.sy-list {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
}

.sy-list.horizontal {
    -webkit-transition: left ease;
    -o-transition: left ease;
    transition: left ease;
}

.sy-list.vertical {
    -webkit-transition: top ease;
    -o-transition: top ease;
    transition: top ease;
}


/* single slide */

.sy-slide {
    position: absolute;
    width: 100%;
    z-index: 2;
}

.sy-slide.kenburns {
    width: 140%;
    left: -20%;
}

.sy-slide.kenburns.useCSS {
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
    -webkit-animation-name: left-right;
    -o-animation-name: left-right;
    animation-name: left-right;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
    -webkit-animation-name: right-left;
    -o-animation-name: right-left;
    animation-name: right-left;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sy-slide.sy-active {
    z-index: 3;
}

.sy-slide>img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0;
}

.sy-slide>a {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.sy-slide>a>img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0;
}


/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */

.sy-controls {
    display: none;
    list-style: none;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0;
    margin: 0;
}

.sy-controls li {
    position: absolute;
    width: 10%;
    min-width: 4.2em;
    height: 100%;
    z-index: 33;
}

.sy-controls li.sy-prev {
    left: 0;
    top: 0;
}

.sy-controls li.sy-prev a:after {
    background-position: -5% 0;
}

.sy-controls li.sy-next {
    right: 0;
    top: 0;
}

.sy-controls li.sy-next a:after {
    background-position: 105% 0;
}

.sy-controls li a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

.sy-controls li a:link, .sy-controls li a:visited {
    opacity: 0.4;
}

.sy-controls li a:hover, .sy-controls li a:focus {
    opacity: 0.8;
    outline: none;
}

.sy-controls li a:after {
    content: "";
    background-image: url("/img/arrows.svg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    text-align: center;
    text-indent: 0;
    line-height: 2.8em;
    color: #111;
    font-weight: 800;
    position: absolute;
    background-color: #fff;
    width: 2.8em;
    height: 2.8em;
    left: 50%;
    top: 50%;
    margin-top: -1.4em;
    margin-left: -1.4em;
    border-radius: 50%;
}

@media only screen and (max-device-width: 600px) {
    .sy-controls {
        display: block;
    }
    .sy-controls li {
        min-width: 2.1em;
    }
    .sy-controls li a:after {
        width: 1.4em;
        height: 1.4em;
        margin-top: -0.7em;
        margin-left: -0.7em;
    }
}


/* captions, styled fo the overlay variant */

.sy-caption-wrap {
    position: absolute;
    bottom: 2em;
    z-index: 12;
    left: 50%;
}

.sy-caption-wrap .sy-caption {
    position: relative;
    left: -50%;
    background-color: rgba(0, 0, 0, 0.54);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 1.2em;
}

.sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
    color: #e24b70;
    font-weight: 600;
    text-decoration: none;
}

.sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
    text-decoration: underline;
}

@media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .sy-caption-wrap {
        left: 0;
        bottom: 0.4em;
    }
    .sy-caption-wrap .sy-caption {
        left: 0;
        padding: 0.2em 0.4em;
        font-size: 0.92em;
        border-radius: 0;
    }
}


/* pager bubbles */

.sy-pager {
    clear: both;
    display: block;
    width: 100%;
    margin: 1em 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.sy-pager li {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 1em 0 0;
    border-radius: 50%;
}

.sy-pager li.sy-active a {
    background-color: #008687;
}

.sy-pager li a {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ccc;
    text-indent: -9999px;
    -webkit-background-size: 2em 2em;
    background-size: 2em;
    border-radius: 50%;
}

.sy-pager li a:link, .sy-pager li a:visited {
    opacity: 1.0;
}

.sy-pager li a:hover, .sy-pager li a:focus {
    opacity: 0.6;
}


/* element to "keep/ fill" the space of the content, gets intrinsic height via js */

.sy-filler {
    width: 100%;
}

.sy-filler.ready {
    -webkit-transition: padding 600ms ease;
    -o-transition: padding 600ms ease;
    transition: padding 600ms ease;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

#wrapper {
    position: relative;
    min-height: 100%
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin: 0;
    background: #008687;
    padding: .7rem 0 .4rem;
}

header img {
    width: 100%;
}

header a {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0 0 0 40px;
}

main {
    padding-bottom: 100px;
}

.content {
    max-width: 768px;
    margin: 2rem auto;
    text-align: left
}

h1, h3 {
    font-family: 'futura-pt-bold', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
}

h2 {
    font-family: "garamond-pro", serif;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-top: 0;
}

h1::after {
    border-bottom: 1px solid #008687;
    display: block;
    content: '';
    width: 5rem;
    margin: 1rem auto .6rem;
}

p a, label a {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #008687;
    padding-bottom: 0;
    color: inherit;
}

p a:hover {
    color: #008687;
}

blockquote {
    margin: 0;
    font-style: italic;
}

p, blockquote {
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-chars: auto 3;
    -webkit-hyphenate-limit-lines: 4;
    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: auto 3;
    -ms-hyphenate-limit-lines: 4;
    hyphens: auto;
    hyphenate-limit-chars: auto 5;
    hyphenate-limit-lines: 2;
}

form {
    width: 100%;
    margin: 0 auto;
}

label {
    display: block;
    width: 100%;
    margin: 1rem 0 0;
    padding: 0 .3rem;
}

input, textarea {
    width: 100%;
    margin: 0;
    padding: .3rem .3rem;
    box-sizing: border-box;
    border: 1px solid #061313;
    border-radius: 0;
}

#pruefung {
    display: none !important;
    visibility: hidden !important;
}

input[type=checkbox] {
    width: 1rem;
    display: inline;
    float: left;
    margin: 1.2rem 0 0;
    padding: 0;
    padding: 0
}

label.checkbox {
    display: inline-block;
    width: 90%;
}

button[type=submit] {
    width: 100%;
    text-transform: uppercase;
    padding: .5rem 0;
    border: none;
    background: #008687;
    color: #ffffff;
    font-family: futura-pt-bold, sans-serif;
    margin: 1rem 0;
}

button[type=submit]:hover {
    background: #184e4e;
    cursor: pointer;
}

button[type=submit]:active {
    background: #000000;
    cursor: pointer;
}

#lhnlsignup {
    height: 1220px;
}

footer {
    background: #061313;
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ffffff;
    padding: 20px 0;
    margin: 0;
}

footer a {
    color: #ffffff;
    font-family: sans-serif;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    font-size: .5em;
}

footer a:hover {
    color: #008687;
    border-color: #008687;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden, [hidden] {
    display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}


/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active, .sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}


/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before, .clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


/* 384 px */

@media only screen and (min-width: 24em) {
    #lhnlsignup {
        height: 740px
    }
}


/* 414 px */

@media only screen and (min-width: 25.875em) {
    #lhnlsignup {
        height: 1000px
    }
}


/* 560 px */

@media only screen and (min-width: 35em) {
    .sy-pager, .sy-controls li a:after {
        transform: scale(.5, .5);
    }
    #lhnlsignup {
        height: 670px
    }
}


/* 768 px */

@media only screen and (min-width: 48em) {
    #lhnlsignup {
        height: 800px
    }
}


@font-face {
    font-family: "futura-pt-bold";
    src: url("../fonts/futura-pt-bold.woff2") format("woff2"),
    url("../fonts/futura-pt-bold.woff") format("woff"),
    url("../fonts/futura-pt-bold.odf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}
@font-face {
    font-family: "garamond-pro";
    src: url("../fonts/garamond-pro-italic.woff2") format("woff2"),
    url("../fonts/garamond-pro-italic.woff") format("woff"),
    url("../fonts/garamond-pro-italic.otf") format("opentype");
    font-display: auto;
    font-style: italic;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "garamond-pro";
    src: url("../fonts/garamond-pro.woff2") format("woff2"),
    url("../fonts/garamond-pro.woff") format("woff"),
    url("../fonts/garamond-pro.otf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}   


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *, *::before, *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
        /* Style adjustments for high resolution devices */
        a, a:visited {
            text-decoration: underline;
        }
        a[href]::after {
            content: " (" attr(href) ")";
        }
        abbr[title]::after {
            content: " (" attr(title) ")";
        }
        /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
        a[href^="#"]::after, a[href^="javascript:"]::after {
            content: "";
        }
        pre {
            white-space: pre-wrap !important;
        }
        pre, blockquote {
            border: 1px solid #999;
            page-break-inside: avoid;
        }
        /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
        thead {
            display: table-header-group;
        }
        tr, img {
            page-break-inside: avoid;
        }
        p, h2, h3 {
            orphans: 3;
            widows: 3;
        }
        h2, h3 {
            page-break-after: avoid;
        }
    }
    