/* Reset */
*,*::before,*::after{
    box-sizing:border-box
}
html,
body {
    margin: 0;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Custom Styles */
@font-face {
    font-family: 'Silka';
    src: url('../fonts/silka-regular-webfont.eot');
    src: url('../fonts/silka-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/silka-regular-webfont.woff2') format('woff2'),
    url('../fonts/silka-regular-webfont.woff') format('woff'),
    url('../fonts/silka-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Silka';
    src: url('../fonts/silka-medium-webfont.eot');
    src: url('../fonts/silka-medium-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/silka-medium-webfont.woff2') format('woff2'),
    url('../fonts/silka-medium-webfont.woff') format('woff'),
    url('../fonts/silka-medium-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Silka';
    src: url('../fonts/silka-bold-webfont.eot');
    src: url('../fonts/silka-bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/silka-bold-webfont.woff2') format('woff2'),
    url('../fonts/silka-bold-webfont.woff') format('woff'),
    url('../fonts/silka-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Silka', sans-serif;
    background: #0e1116;
}

.hidden-mobile {
    display: none;
}

.visible-mobile {
    display: block;
}

.w-100 {
    width: 100%;
}

a {
    color: #002e57;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

.viewport {
    position: relative;
    min-height: 100dvh;
    width: 100%;
    overflow: clip;
    color: #000000;
    isolation: isolate;
}

.bg picture,
.bg img {
    display: block;
    width: 100%;
    height: 100%;
    content-visibility: auto;
}
.bg img {
    object-fit: cover;
    object-position: center center;
    filter: none;
}
.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    background: #ffffff;
    color: #002e57;
    text-align: left;
}

header {
    flex-grow: 1;
}

header hr {
    margin: 1.5rem 0 0;
    border-top: 1px solid rgba(0, 46, 87, 0.25);
    border-right: none;
    border-bottom: none;
    border-left: none;
}

header h1 {
    margin: 1.5rem 0 1.5rem 0;
    font-size: 50px;
    font-weight: normal;
    line-height: 60px;
    color: #00305b;
}

header h2 {
    margin: 2rem 0 3rem 0;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.5rem;
    color: #00305b;
}

header h3 {
    margin: 2rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: #00305b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header h4 {
    margin: 2rem 0 1rem 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5rem;
    color: #00305b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header p {
    margin: 2rem auto 1.25em;
    font-size: 20px;
    line-height: 30px;
}

header img {
    margin-bottom: 1rem;
}

header .cta-container {
    display: flex;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    gap: 1em;
}
header .cta {
    display: inline-flex;
    justify-content: center;
    padding: 9px 15px;
    width: 100%;
    align-items: center;
    gap: 1rem;
    border-radius: 20px;
    border: 1px solid #002e57;
    background-color: #fff;
    font-size: 16px;
    color: #002e57;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .15s ease, opacity .2s ease;
}
header .cta:hover {
    background-color: #002e57;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}
header .cta:active {
    background-color: #002e57;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(0);
}

body.imprint,
body.privacy {
    header h2 {
        text-align: center;
    }

    header p {
        margin-bottom: 1.75rem;
    }
}

footer {
    margin: 2rem 0 0 0;
    align-items: flex-end;
}

footer img {
    display: block;
    margin: 0 auto 1.25rem;
    width: 100%;
}

footer ul.contact {
    margin: 0 0 2rem 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    list-style: none;
}

footer ul.contact li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 46, 87, 0.25);
}

footer p {
    font-size: 12px;
}

footer p a {
    color: #002e57;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

footer p a:hover,
footer p a:active,
footer p a:focus {
    text-decoration: none;
}

@media (min-width: 768px) {
    body {
        overflow: hidden;
    }

    body.imprint,
    body.privacy {
        header h2 {
            text-align: left;
        }
    }

    .hidden-mobile {
        display: block;
    }

    .visible-mobile {
        display: none;
    }

    .bg {
        position: fixed;
        inset: 0;
        z-index: -1;
        content-visibility: auto;
    }

    header h1 {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
        font-size: 40px;
        line-height: 50px;
    }

    header img {
        margin-bottom: 0.25rem;
    }

    header p {
        margin-top: 1.25rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    header .cta-container {
        margin-top: 2rem;
        margin-bottom: 0;
    }

    footer p {
        margin-bottom: 0;
    }

    footer img {
        margin: 0 0 1rem;
        width: 40px;
        height: 40px;
    }

    footer ul.contact {
        margin-bottom: 1.5rem;
        font-size: 14px;
        line-height: 20px;
    }

    footer ul.contact li {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .container {
        position: fixed;
        top: 0;
        left: 80px;
        width: 520px;
        height: 100dvh;
        padding: 1.5rem 3rem;
        overflow: auto;
    }
}