@import url('https://cdn.3wm.de/fonts/css2?family=Khand:wght@300;400;500;600;700&family=Teko:wght@300..700&display=swap');

html, body {
    font-family: "Khand", system-ui;
    font-size: 25px;
    line-height: 2em;
    font-optical-sizing: auto;
    font-weight: 200;
    font-variation-settings: "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

/**
 * HEADER
 */
header {
    height: 100vh;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    pointer-events: none;
}

header * {
    pointer-events: all;
}

/**
 * LOGO
 */
#logo {
    z-index: 10;
    text-align: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    transition: all 0.5s;
    max-width: 600px;
}

#logo img {
    transition: all 0.5s;
}

.scrolled #logo {
    mix-blend-mode: exclusion;
}

.scrolled #logo img {
    max-width: 50%;
}

/**
 * NAVIGATION
 */
#navOpenWrapper {
    position: absolute;
    left: 30px;
    top: 50%;
    height: 24px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 50;
    transition: 0.5s;
    background: #000;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 8px;
}

#navOpenWrapper:hover {
    box-shadow: 0px 0px 12px #fff;
}

#navOpen {
    position: relative;
    top: 11px;
    background: #ffffff;
    transition: all 0ms 300ms;
}

#navOpen, #navOpen:before, #navOpen:after {
    text-shadow: none !important;
    box-shadow: none !important;
    width: 25px;
    height: 2px;
}

#navOpen:before, #navOpen:after {
    transition: background 250ms ease-in-out;
}

#navOpen:before {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 6px;
    width: 15px;
    background: #ffffff;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

#navOpen:after {
    content: "";
    position: absolute;
    left: 5px;
    width: 15px;
    top: 6px;
    background: #ffffff;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu--open #navOpen {
    background: rgba(255, 255, 255, 0) !important;
}

.menu--open #logo {
    display: none;
}

.menu--open #navOpen:before, .menu--open #navOpen:after {
    background: #ffffff;
}

.menu--open #navOpen:after {
    top: 0;
    transform: rotate(45deg);
    width: 25px;
    left: 0;
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu--open #navOpen:before {
    bottom: 0;
    transform: rotate(-45deg);
    width: 25px;
    left: 0;
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu--open #navOpen,
.menu--open #navOpen:before,
.menu--open #navOpen:after {
    box-shadow: none !important;
}

#navWrapper {
    display: none;
}

.menu--open #navWrapper {
    display: block;
}

#nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#nav #navContent,
#nav #navContent a,
#nav #navContent a:hover,
#nav #navContent a:visited,
#nav #navContent a.focus {
    color: #FFFFFF;
    text-decoration: none;
}

#nav #navContent .content {
    text-align: left;
    font-size: 1.2rem;
}

#nav img {
    margin-bottom: 20px;
}

#nav img.logo {
    max-width: 300px;
}

#nav nav {
    position: relative;
}

#nav nav .menu {
    text-transform: uppercase;
    font-size: 44px;
    line-height: 1.1em;
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

/**
 * SIDEBAR
 */
#sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-end;
}

#sidebar ul li {
    pointer-events: all;
    background: #000000;
    color: #ffffff;
    border-radius: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px;
    display: block;
    width: 20px;
    line-height: 20px;
    text-align: center;
    height: 20px;
    margin-bottom: 3px;
    transition: all 0.5s;
    white-space: nowrap;
    border: 1px solid #fff;
}

#sidebar ul li:hover {
    box-shadow: 0px 0px 12px #fff;
}

#sidebar ul li.toggle * {
    display: none;
}

#sidebar ul li.toggle i {
    display: block;
}

#sidebar ul li.toggle:hover {
    height: 100%;
    line-height: 1.2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#sidebar ul li.toggle:hover * {
    display: unset;
}

#sidebar ul li .fa {
    position: relative;
    color: #fff;
}

#sidebar ul li .fa-clock-o {
    top: -2px;
}

#sidebar ul li .fa-instagram {
    top: -2px;
}

#sidebar ul li .fa-facebook-f {
    top: -1px;
    left: 2px;
}

#sidebar ul li .fa-phone {
    top: -1px;
    left: 1px;
}

#sidebar ul li.toggle:hover .fa {
    position: unset;
}

#sidebar a, #sidebar a:hover, #sidebar a:visited, #sidebar a:focus {
    color: #ffffff;
    text-decoration: none;
}

/**
 * STRUKTURBILD
 */
#strukturbild {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-color: #3b3b3b;
}

#strukturbild .strukturbild_image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

#strukturbild .contentContainer {
    position: absolute;
    top: 45%;
    left: 5%;
    right: 5%;
    color: #fff;
    text-align: center;
    font-size: 4rem;
    line-height: 1em;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

#strukturbild h1,
#strukturbild .h1 {
    text-shadow: 0 0 10px #292929;
}

/**
 * CONTENT
 */
.templateContainer {
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

#contentWrapper .templateContainer {
    padding: 5% 20%;
    background-size: cover;
    background-position: center center;
}

#contentWrapper .contentPadding10Prozent {
    padding-bottom: 10%;
    padding-top: 15%;
}

#Container_1 a.content,
#footer a {
    text-decoration: none;
    border-bottom: 1px dotted;
}

/**
 * TEXT
 */

a {
    text-decoration-style: dotted;
}

h1, .h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin: 0 0 1em 0;
    font-family: "Teko", sans-serif;
}

h1, .h1 {
    font-size: 3.5rem;
    line-height: 1em;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5em 0 0.5em 0;
}

h2 {
    font-size: 2rem;
    line-height: 1em;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
    color: #01244C;
}

.headlinesBackgrounds {
    font-size: 120px;
}

p {
    text-align: center;
}

.textWithBackground {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.7);
    line-height: 2.5;
    background-color: rgba(0, 0, 0, 0.7);
    box-decoration-break: clone;
}

/**
 * FOOTER
 */
#footer {
    padding: 10% 20%;
}

/**
 * COPYRIGHT
 */
#copyright {
    background-color: #3b3b3b;
    text-align: center;
    color: #8D8D8D;
    font-size: 1.2rem;
    padding: 0 !important;
}

#copyright a, #copyright a:hover, #copyright a:visited, #copyright a:focus {
    text-decoration: none;
    color: #8D8D8D;
}

/**
 * 404
 */
.four_o_four_wrapper img {
    max-width: 300px;
}

/**
 * MOBILE
 */
.mobile .current_structure {
    display: none;
}

@media (max-width: 1200px) {
    #contentWrapper .templateContainer,
    #footer,
    #copyright {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 1000px) {
    body {
        font-size: 22px;
    }

    h1, .h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    #strukturbild .contentContainer {
        font-size: clamp(0.9rem, 8vw, 4rem);
    }

    p {
        line-height: 37px;
    }
}

@media (max-width: 800px) {
    #nav {
        display: block;
        text-align: center;
    }

    #nav > img {
        margin-top: 20px;
        margin-right: 0px;
    }

    #nav nav {
        padding-top: 20px;
    }

    #nav #navContent .content {
        text-align: center;
    }

    #sidebar {
        right: 20px;
    }

    #navOpenWrapper {
        left: 20px;
    }

    #logo img {
        width: 300px;
    }

    .scrolled #logo img {
        width: 75px;
    }

    #contentWrapper .templateContainer,
    #footer,
    #copyright {
        padding-left: 5%;
        padding-right: 5%;
    }

    #strukturbild .contentContainer {
        bottom: 5%;
    }

    .content {
        float: none !important;
        width: 100% !important;
    }

    #copyright .content,
    #copyright .content p {
        text-align: center !important;
    }
}