﻿:root {

    --colorTransparent: rgba(255, 255, 255, 0);
    --colorWhite: rgba(255, 255, 255, 1);
    --colorBlack: rgba(0, 0, 0, 1);
    --colorYellow: rgba(255, 251, 143, 1);

    --scrollmargin: 140px;
    --distanceleft: 290px;

    --maxWidthNarrow: 470px;
    --maxWidthNormal: 720px;
    --maxWidthWide: 970px;
    --maxWidthFull: 1175px;

}

/* --- Reset --- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* --- Font-Family --- */

@font-face {
    font-family: 'Folio';
    src: url('../fonts/Folio-Light.woff2') format('woff2'),
        url('../fonts/Folio-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: auto;
}

body,
.control-group textarea,
.control-group .btn-primary {
    font-family: 'Folio', sans-serif;
}

/* --- Font-Styles --- */

.logo,
.introtext,
.navigation-main a,
.postit-close,
.page-headline,
.postit-title {
    font-size: 18px;
}

body,
.navigation-footer a {
    font-size: 14px;
}

.team-box .text,
.text-470,
.gallery-item-text {
    font-size: 11px;
}


@media screen and (min-width: 280px) {

    .logo,
    .introtext,
    .navigation-main a,
    .page-headline,
    .postit-close,
    .postit-title {
        font-size: calc(18px + (32 - 18) * (100vw - 280px) / (1920 - 280));
    }

    body,
    .navigation-footer a {
        font-size: calc(14px + (20 - 14) * (100vw - 280px) / (1920 - 280));
    }

}

@media screen and (min-width: 1920px) {

    .logo,
    .introtext,
    .navigation-main a,
    .page-headline,
    .postit-close,
    .postit-title {
        font-size: 32px;
    }

    body,
    .navigation-footer a {
        font-size: 18px;
    }

}

.page-headline {
    letter-spacing: 1px;
}

.postit-text,
.postit-menu a {
    letter-spacing: 1px;
    line-height: 28px;
}

.text-720,
.text-720-no-border {
    letter-spacing: 1px;
    line-height: 28px;
}

.text-470 {
    letter-spacing: 1px;
    line-height: 16px;
}

/* --- Colors --- */

.control-group .btn-primary,
.gallery-item-text {
    color: var(--colorWhite);
}

.logo,
.introtext a,
section .page-text a,
.navigation a,
.postit-menu a {
    color: var(--colorBlack);
}

.navigation a,
section .page-text a:hover,
.introtext a:hover,
.postit-menu a,
.postit-text a:hover {
    text-decoration-color: var(--colorTransparent);
}

.navigation a:hover,
.navigation .language-active span,
.navigation .item-active a,
.postit-menu a:hover,
.postit-text a {
    text-decoration-color: var(--colorBlack);
}

.control-group .btn-primary {
    background: var(--colorBlack);
}

.contact-form .control-group input[type="text"],
.contact-form .control-group input[type="email"],
.control-group textarea {
    border: 1px solid var(--colorBlack);
    caret-color: var(--colorBlack);
    color: var(--colorBlack);
}

.contact-form .control-group input[type="checkbox"] {
    accent-color: var(--colorBlack);
}

::placeholder {
    color: var(--colorBlack);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--colorBlack);
}

::-ms-input-placeholder {
    color: var(--colorBlack);
}

/* --- Main --- */

html {
    /* height: 100vh; */
    /* overflow-x: hidden; */
    /* overflow-y: scroll; */
    scroll-behavior: smooth;
    width: 100vw;
}

body {
    /* min-height: 100vh; */
    min-width: 280px;
    opacity: 1;
    position: relative;
    transition: opacity 2s;
    width: 100vw;
}

.is-loading {
    opacity: 0;
    transition: opacity .2s;
}

.is-landscape .bg.loaded,
.is-portrait .bg.loaded {
    opacity: 1;
}

.outer {
    min-height: 100vh;
    padding-top: var(--scrollmargin);
    scroll-behavior: smooth;
}

main {
    min-height: 100vh;
    position: relative;
}

header {
    left: 60px;
    margin: auto;
    max-width: var(--maxWidthFull);
    pointer-events: none;
    position: fixed;
    right: 60px;
    top: 155px;
    transition: all .2s;
    width: 100%;
}

.layer-gallery {
    box-sizing: border-box;
    padding: 0 30px;
    position: absolute;
    width: 100vw;
    z-index: 0;
}

.layer-text {
    margin: 0 auto;
    max-width: var(--maxWidthWide);
    pointer-events: none;
    position: relative;
    transition: all .2s;
    width: 100%;
    z-index: 1;
}

.show-gallery .layer-gallery {
    z-index: 10;
}

.show-gallery .layer-gallery .gallery {
    opacity: 1;
    visibility: visible;
}

.show-gallery header,
.show-gallery .layer-text {
    opacity: 0.2;
}

/* --- Logo --- */

.logo {
    left: 0;
    pointer-events: all;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

/* --- Clock / Menu-Button --- */

.clock {
    background: var(--colorWhite);
    border-radius: 50%;
    cursor: pointer;
    height: 60px;
    pointer-events: all;
    width: 60px;
}

.clock-desktop {
    display: inline-block;
    left: 145px;
    position: absolute;
    top: 0;
}

.clock-mobile {
    bottom: 15%;
    display: none;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    z-index: 100;
}

.dot {
    background: var(--colorBlack);
    border-radius: 50%;
    bottom: 0;
    height: 4px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    z-index: 10;
}

.hands {
    left: 50%;
    margin-left: -0.5px;
    position: absolute;
    width: 1px;
}

.hours-hand {
    background: #333;
    height: 15px;
    top: 15px;
    transform-origin: 50% 15px;
    z-index: 5;
}

.minutes-hand {
    background: var(--colorBlack);
    height: 20px;
    top: 10px;
    transform-origin: 50% 20px;
    z-index: 6;
}

.seconds-hand {
    background: #c00;
    height: 25px;
    top: 5px;
    transform-origin: 50% 25px;
    z-index: 7;
}

.diallines {
    background: var(--colorBlack);
    height: 4px;
    left: 50%;
    margin-left: -0.5px;
    position: absolute;
    transform-origin: 50% 30px;
    width: 1px;
    z-index: 2;
}

.diallines:nth-of-type(5n+3) {
    height: 8px;
}

/* --- Introtext --- */

.introtext {
    left: 235px;
    line-height: 40px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 30px;
    top: 5px;
    transition: opacity .2s;
    visibility: hidden;
    width: 700px;
}

.show-intro {
    /* height: 100vh;
    overflow: hidden; */
}

.show-intro .introtext {
    opacity: 1;
    visibility: visible;
}

.introtext a {
    pointer-events: all;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    transition: text-decoration-color .2s;
}

/* --- Gallery --- */

.show-navigation .layer-gallery,
.layer-gallery-mobile {
    display: none;
}

.gallery {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    position: sticky;
    top: 140px;
    transition: opacity .2s;
    visibility: hidden;

    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.show-navigation .layer-gallery section:first-child .gallery:not(.preview-gallery) {
    opacity: 0;
    visibility: hidden;
}

.show-intro .layer-gallery section:first-child .gallery,
.show-content .gallery {
    opacity: 0.2;
    visibility: visible;
}

.preview-gallery {
    opacity: 0.2;
    position: fixed;
    visibility: visible;
}

.show-gallery .gallery {
    opacity: 1;
    overflow-x: scroll;
    visibility: visible;
    z-index: 1;
}

.gallery-item {
    align-items: flex-start;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 0;
    line-height: 0;
    margin: 0 30px 30px 0;
    /* max-height: 470px;
    max-width: 470px; */
    width: 470px;
}

.gallery-item:last-child {
    margin: 0;
}

.gallery-item-imagebox {
    display: flex;
    /* flex-direction: column; */
    max-height: 100%;
    max-width: 100%;
    position: relative;
}

.gallery-item img {
    max-height: 100%;
    max-width: 100%;
}

.gallery-item-text {
    bottom: 30px;
    left: 30px;
    position: absolute;
    right: 30px;
    text-align: center;
}

.gallery-item-download,
.gallery-item-download::after,
.gallery-item-download::before {
    box-sizing: border-box;
    display: block;
    position: absolute;
}

.gallery-item-download {
    border: 1px solid;
    border-top: 0;
    box-sizing: border-box;
    color: var(--colorWhite);
    height: 6px;
    pointer-events: none;
    right: 20px;
    top: 30px;
    width: 19px;
}

.show-gallery .gallery-item-download {
    pointer-events: all;
}

.gallery-item-download::after {
    bottom: 5px;
    border-bottom: 1px solid;
    border-left: 1px solid;
    content: '';
    height: 7px;
    left: 5px;
    transform: rotate(-45deg);
    width: 7px;
}

.gallery-item-download::before {
    background: currentColor;
    bottom: 5px;
    content: '';
    height: 10px;
    left: 8px;
    width: 1px;
}

/* --- Navigation --- */

.navigation-container {
    height: calc(100vh - 185px);
}

.navigation {
    position: absolute;
}

.show-navigation:not(.is-scrolled) {
    height: 100vh;
    overflow: hidden;
}

.navigation-main {
    left: 235px;
    line-height: 40px;
    opacity: 0;
    top: 5px;
    transition: opacity .2s;
    visibility: hidden;
}

.show-navigation .navigation-container .navigation-main,
.show-navigation .navigation-container .navigation-footer {
    opacity: 1;
    visibility: visible;
}

.navigation-main li {
    pointer-events: all;
}

.navigation a,
.navigation span {
    display: inline-block;
    pointer-events: all;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    transition: text-decoration-color .2s;
    white-space: nowrap;
    word-break: keep-all;
}

.navigation span {
    text-decoration: underline;
}

.navigation a {
    cursor: pointer;
}

.navigation-footer {
    bottom: 0;
    left: 0;
}

.navigation-language {
    bottom: 0;
    right: 0;
}

.show-content .navigation-language,
.show-content .navigation-footer {
    display: none;
}

.show-content .navigation-language li:not(.language-active) {
    display: none;
}

.navigation .navigation-item-level1 {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}

.navigation-footer .navigation-item-level1,
.navigation-language .navigation-item-level1 {
    display: inline-block;
    margin: 0 5px 0 0;
}

.navigation-main .navigation-item-level2:not(:last-child):after,
.navigation-footer .navigation-item-level1:not(:last-child):after,
.navigation-language .navigation-item-level1:not(:last-child):after {
    content: ', ';
    display: inline-block;
}

.show-content .navigation-language li:not(:last-child):after {
    display: none;
}

.navigation .navigation-level2 {
    line-height: 0;
    padding-left: 30px;
    visibility: hidden;
    white-space: nowrap;
}

.navigation .navigation-item-level1:hover .navigation-level2 {
    position: relative;
    visibility: visible;
}

.navigation-main .navigation-item-level2 {
    display: inline-block;
    line-height: 0;
    margin: 0 10px 0 0;
}

.navigation-main a {
    line-height: 45px;
}

/* --- Content --- */

section {
    margin-bottom: 50px;
    scroll-margin-top: var(--scrollmargin);
}

.page {
    margin-bottom: 60px;
    scroll-margin-top: var(--scrollmargin);
    position: relative;
}

.page-headline {
    display: flex;
    line-height: 80px;
    margin: 0 auto;
    max-width: var(--maxWidthNormal);
    /* opacity: 0;
    transition: opacity .2s;
    visibility: hidden; */
    width: 100%;
}

.headline-parent {
    margin-right: 30px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 14px;
    white-space: nowrap;
}

.page-headline h1 {
    white-space: nowrap;
}

.page-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: var(--maxWidthWide);
    /* opacity: 0; */
    /* transition: opacity .2s; */
    /* visibility: hidden; */
    width: 100%;
}

.page-text {
    background: var(--colorWhite);
    box-sizing: border-box;
    flex-shrink: 0;
    margin-bottom: 30px;
    pointer-events: all;
    position: relative;
    width: 100%;
}

.text-720 {
    /* height: 850px; */
    margin-left: auto;
    margin-right: auto;
    max-width: var(--maxWidthNormal);
    padding: 50px 60px 80px 60px;
}

.text-720-no-border {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--maxWidthNormal);
    padding: 50px 0;
}

.text-470 {
    height: 550px;
    max-width: var(--maxWidthNarrow);
    padding: 30px 40px 60px 40px;
}

.text-with-border {
    border: 2px solid var(--colorBlack);
}

.page-text:last-child {
    margin-bottom: 0;
}

.page-text h2,
.page-text h3,
.page-text p,
.page-text ul {
    margin-bottom: 25px;
}

.page-text p:last-child {
    margin-bottom: 0;
}

.page-text a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2.5px;
    transition: text-decoration-color .2s;
}

.list-press {
    list-style-type: square;
    margin-left: 15px;
    margin-top: -20px;
}

.text-footer {
    bottom: 0;
    position: absolute;
}

.text-720 .text-footer {
    left: 60px;
    line-height: 80px;
    right: 60px;
}

.text-470 .text-footer {
    left: 40px;
    line-height: 60px;
    right: 40px;
}

.footer-pagecount {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}

.footer-title-long+.footer-pagecount {
    left: auto;
}

.show-content .page-headline,
.show-content .page-inner {
    opacity: 1;
    visibility: visible;
}

.page-placeholder {
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

/* --- Aktuelles / Post-It --- */

.show-postit {
    height: 100vh;
    overflow: hidden;
    width: 100vw;
}

.postit-container {
    margin: 0 auto;
    max-width: var(--maxWidthNormal);
    width: 100%;
}

.postit-menu {
    aspect-ratio: 1;
    background: var(--colorYellow);
    box-sizing: border-box;
    display: block;
    max-width: 360px;
    opacity: 0;
    padding: 30px 35px;
    pointer-events: all;
    transition: opacity .2s;
    visibility: hidden;
    width: 100%;
}

.show-content .postit-menu {
    opacity: 1;
    visibility: visible;
}

.postit-menu a {
    cursor: pointer;
    display: block;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    transition: text-decoration-color .2s;
}

.postit {
    background: var(--colorYellow);
    bottom: 30px;
    box-sizing: border-box;
    display: block;
    left: 0;
    margin: auto;
    max-width: 550px;
    opacity: 0;
    padding: 30px;
    pointer-events: all;
    position: fixed;
    right: 0;
    top: 30px;
    transition: opacity .2s;
    visibility: hidden;
    width: 100%;
    z-index: 100;

    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.postit.is-visible {
    opacity: 1;
    visibility: visible;
}

.postit-close,
.postit-title,
.postit-text {
    background: var(--colorYellow);
    left: 30px;
    margin: auto;
    position: absolute;
    right: 30px;
}

.postit-close {
    cursor: pointer;
    display: block;
    line-height: 90px;
    text-align: center;
    top: 0;
}

.postit-title {
    bottom: 0;
    line-height: 90px;
}

.postit-text {
    bottom: 90px;
    overflow-x: hidden;
    overflow-y: scroll;
    top: 90px;

    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.postit-text a {
    color: var(--colorBlack);

    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    transition: text-decoration-color .2s;
}

/* --- Videos --- */

.start-video {
    margin-bottom: 30px;
    max-width: 1080px;
    position: relative;
    width: 100%;
}

.video::before {
    content: '';
    display: block;
    padding-top: 56.25%;
    width: 100%;
}

.video iframe,
.video object,
.video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* --- Team --- */

.page-team {
    flex-wrap: wrap;
    max-width: var(--maxWidthWide);
}

.page-team:after {
    display: block;
    content: '';
    max-width: 23%;
    width: 100%;
}

.team-box {
    background: var(--colorWhite);
    border: 2px solid var(--colorBlack);
    box-sizing: border-box;
    cursor: pointer;
    height: 100%;
    margin-bottom: 3%;
    max-width: 23%;
    overflow: hidden;
    padding: 25px 25px 45px 25px;
    pointer-events: all;
    position: relative;
    width: 100%;
}

.box-image {
    user-select: none;
    transition: all ease .4s;
}

.box-first-image {
    position: relative;
}

.box-second-image {
    bottom: 45px;
    left: 25px;
    position: absolute;
    right: 25px;
    top: 25px;
}

.box-position {
    bottom: 45px;
    left: 25px;
    position: absolute;
    right: 25px;
    user-select: none;
    top: 25px;
    transition: all ease .4s;
}

.team-box .box-second-image,
.team-box-selected .box-first-image,
.team-box-selected:hover .box-first-image,
.team-box-selected .box-second-image,
.team-box-selected:hover .box-second-image,
.team-box.second-image-available:not(.team-box-selected):hover .box-first-image,
.team-box:not(.team-box-selected) .box-position {
    opacity: 0;
    visibility: hidden;
}

.team-box:not(.team-box-selected) .box-first-image,
.team-box.second-image-available:not(.team-box-selected):hover .box-second-image,
.team-box-selected .box-position {
    opacity: 1;
    visibility: visible;
}

.team-box img {
    width: 100%;
}

.box-name {
    bottom: 0;
    left: 25px;
    line-height: 47px;
    position: absolute;
    right: 25px;
    text-align: center;
}

.box-position {
    line-height: 130%;
}

/* --- Kontakt --- */

.contact-form .control-group {
    padding: 0 0 15px 0;
}

.contact-form .control-group label {
    line-height: 150%;
}

.contact-form .control-group input[type="text"],
.contact-form .control-group input[type="email"] {
    box-sizing: border-box;
    height: 30px;
    padding: 0 5px;
    width: 100%;
}

.control-group .optional {
    display: none;
}

.control-group textarea {
    box-sizing: border-box;
    height: 100px;
    padding: 5px;
    resize: vertical;
    width: 100%;
}

.accept-privacy {
    line-height: 140%;
}

.control-group .btn-primary {
    border: 0;
    cursor: pointer;
    float: right;
    line-height: 30px;
    margin: 20px 0 0 0;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.contact-form .control-group:last-child::after {
    clear: both;
    content: '';
    display: block;
}

#system-message-container {
    position: relative;
    top: -60px;
    z-index: 0;
}

#jform_consentbox-lbl {
    display: none;
}

/* --- Anmeldung --- */

.anmeldung,
.anmeldung iframe {
    height: 90vh
}

/* --- Presse --- */

.presseverteiler .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 30px;
}

.presseverteiler .gallery {
    padding-left: 0;
}

.presseverteiler .gallery::after {
    display: inline-block;
    content: '';
    width: 31%;
}

.presseverteiler .columns-3 .gallery-item {
    margin: 0 0 4% 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 31%;
}

.presseverteiler .gallery-item .item-image {
    display: block;
    font-size: 0;
    line-height: 0;
    position: relative;
}

.presseverteiler .gallery-item .item-image::before {
    content: '';
    display: block;
    padding-top: 66%;
}

.presseverteiler .gallery-item img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.presseverteiler .gallery-item .item-title {
    display: none;
}

.presseverteiler .icon-image,
.presseverteiler .icon-file {
    box-shadow: 0 0 0 2px;
    box-sizing: border-box;
    display: inline-block;
    height: 16px;
    margin: 0 8px 0 0;
    overflow: hidden;
    position: relative;
}

.presseverteiler .icon-image {
    width: 20px;
}

.presseverteiler .icon-file {
    border: 2px solid var(--colorTransparent);
    border-right: 0;
    border-top: 0;
    border-top-right-radius: 4px;
    width: 14px;
}

.presseverteiler .icon-image::after,
.presseverteiler .icon-image::before,
.presseverteiler .icon-file::after,
.presseverteiler .icon-file::before,
.presseverteiler .download-set::after,
.presseverteiler .download-set::before,
.presseverteiler .download-item::after,
.presseverteiler .download-item::before {
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
}

.presseverteiler .icon-image::after,
.presseverteiler .icon-image::before {
    border: 2px solid var(--colorBlack);
}

.presseverteiler .icon-image::before {
    border-radius: 100%;
    height: 6px;
    left: 2px;
    top: 2px;
    width: 6px;
}

.presseverteiler .icon-image::after {
    height: 16px;
    left: 6px;
    top: 9px;
    transform: rotate(45deg);
    width: 16px;
}

.presseverteiler .icon-file::before {
    background: var(--colorBlack);
    box-shadow: 0 4px 0, -6px -4px 0;
    left: 0;
    height: 2px;
    top: 8px;
    width: 10px;
}

.presseverteiler .icon-file::after {
    border-bottom: 2px solid;
    border-left: 2px solid;
    height: 6px;
    right: -1px;
    top: -1px;
    width: 6px;
}

.presseverteiler .download-set,
.presseverteiler .download-item {
    box-sizing: border-box;
    width: 16px;
    height: 6px;
    border: 2px solid;
    border-top: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    margin-top: 8px;
}

.presseverteiler .download-item {
    display: block;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 30px;
    transform: scale(var(--ggs, 2));
    transition: opacity ease .2s;
}

.presseverteiler .gallery-item:hover .download-item {
    opacity: 1;
}

.presseverteiler .download-set {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    text-indent: -99999px;
    top: 13px;
    transform: scale(var(--ggs, 1));
}

.presseverteiler .download-set::after,
.presseverteiler .download-item::after {
    width: 8px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 2px;
    bottom: 4px
}

.presseverteiler .download-set::before,
.presseverteiler .download-item::before {
    border-radius: 3px;
    width: 2px;
    height: 10px;
    background: currentColor;
    left: 5px;
    bottom: 5px
}

.presseverteiler .file-list {
    list-style-type: square;
    margin: 0 0 25px 25px;
}

.presseverteiler .file-list li a {
    font-weight: 400;
}

.presseverteiler .content-article:not(.presseverteiler) .download-item {
    display: none;
}

/* --- Media Queries --- */

@media screen and (max-width: 970px) and (hover: none) {

    .is-landscape .navigation-main .navigation-item-level1 {
        display: inline-block;
    }

    .is-landscape .navigation-main .navigation-item-level1:not(:last-child):after {
        content: ', ';
        display: inline-block;
        margin: 0 10px 0 0;
    }

    .is-landscape .postit-menu {
        aspect-ratio: auto;
    }

}

@media screen and (max-width: 970px) {

    .is-portrait .navigation-main {
        bottom: 25%;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
    }

    .is-landscape .navigation-main {
        bottom: auto;
        left: 0;
        top: 15%;
    }

    .outer,
    section,
    .page {
        scroll-margin-top: 60px;
    }

    .outer {
        overflow-x: hidden;
        padding-top: 0;
    }

    main {
        top: 80px;
    }

    .show-intro main {
        top: 30px;
    }

    .navigation-container {
        height: calc(100vh - 30px);
    }

    header {
        bottom: 40px;
        left: 45px;
        margin: auto;
        max-width: 100%;
        position: fixed;
        right: 45px;
        top: 40px;
        transition: opacity .2s;
        width: auto;
        z-index: 0;
    }

    .show-intro header {
        z-index: 1;
    }

    .logo {
        left: 0;
        right: 0;
        margin: auto;
        position: fixed;
        text-align: center;
        text-decoration: none;
        top: 40px;
    }

    .clock-desktop {
        display: none;
    }

    .clock-mobile {
        display: inline-block;
    }

    .introtext {
        left: 5px;
        margin: auto;
        max-width: 100%;
        opacity: 0;
        position: absolute;
        right: 5px;
        top: 50px;
        width: auto;
    }

    .navigation .navigation-level2 {
        display: none;
    }

    .layer-text {
        box-sizing: border-box;
        padding: 0 15px;
        max-width: 100%;
    }

    .show-navigation .layer-text {
        display: none;
    }

    .layer-text .page {
        margin-bottom: 0;
    }

    .layer-text .page-text {
        margin-bottom: 15px;
    }

    .layer-text section {
        margin-bottom: 30px;
    }

    .page-headline {
        max-width: none;
    }

    .gallery-item {
        margin: 0 15px 15px 0;
    }

    .headline-parent {
        margin-right: 15px;
    }

    .text-720,
    .text-470 {
        height: auto;
        max-width: 100%;
        padding: 15px 15px 45px 15px;
    }

    .text-720 .text-footer,
    .text-470 .text-footer {
        left: 15px;
        line-height: 45px;
        right: 15px;
    }

    .text-470 {
        font-size: calc(14px + (20 - 14) * (100vw - 280px) / (1920 - 280));
        line-height: 28px;
    }

    .postit {
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: 20px;
        width: auto;
    }

    .layer-gallery-mobile {
        display: block;
        pointer-events: all;
    }

    .show-intro .layer-gallery section:not(:first-child),
    .show-content .layer-gallery section {
        display: none;
    }

    .layer-gallery-mobile .gallery {
        opacity: 1;
        overflow-x: scroll;
        position: relative;
        top: auto;
        transition: none;
        visibility: visible;
    }

    .page-inner {
        max-width: 100%;
        width: 100%;
    }

    .team-box {
        max-width: 32%;
    }

    .show-intro .layer-gallery {
        border-top: 1px solid var(--colorWhite);
        padding: 0;
    }

    .show-intro .layer-text {
        background: var(--colorWhite);
        padding: 0;
        margin: 0 0 0 30px;
        max-width: calc(100% - 30px);
    }

    .show-intro .layer-gallery section:first-child .page {
        height: calc(100vh - 30px) !important;
    }

    .show-intro .layer-gallery section:first-child .gallery {
        flex-direction: column;
        opacity: 1;
    }

    .show-intro .layer-gallery section:first-child .gallery-item-imagebox,
    .show-intro .layer-gallery section:first-child .gallery-item-imagebox img {
        max-height: inherit;
        max-width: inherit;
    }

    .show-intro-gallery header,
    .show-intro-gallery .layer-text {
        left: calc(100vw - 20px);
        opacity: 0.2;
        width: 100%;
    }

    .show-intro-gallery .logo,
    .show-intro-gallery .clock-mobile {
        display: none;
    }

    .show-intro-gallery {
        height: 100%;
        overflow: auto !important;
    }

    .show-intro-gallery .outer {
        overflow: hidden;
    }

    .show-intro-gallery .gallery {
        overflow-y: scroll;
        padding: 0 30px;
    }

    .show-intro-gallery .gallery:first-child .gallery-item {
        max-width: 100%;
        width: auto;
    }

    .show-intro-gallery .gallery:first-child .gallery-item-imagebox {
        max-height: 100% !important;
        max-width: 100% !important;
    }

    .page-team:after {
        max-width: 32%;
    }

}

@media screen and (max-width: 700px) {

    .gallery-item {
        max-height: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
    }

    .show-intro .layer-gallery section:first-child .gallery-item {
        margin: 0 0 30px 0;
    }

    .team-box {
        margin-bottom: 4%;
        max-width: 48%;
    }

    .navigation-footer,
    .navigation-language {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .navigation-footer {
        bottom: 30px;
    }

    .navigation-language {
        bottom: 0;
    }

    .navigation-footer li:last-child,
    .navigation-language li:last-child {
        margin: 0;
    }

    .introtext {
        line-height: 34px;
    }

}

@media screen and (max-width: 500px) {

    .team-box {
        margin-bottom: 30px;
        max-width: 100%;
    }

}

@media screen and (max-width: 320px) {

    .logo,
    .introtext,
    .navigation-main a,
    .page-headline,
    .postit-close,
    .postit-title {
        font-size: 14px;
    }

    body,
    .navigation-footer a {
        font-size: 12px;
    }


    .introtext {
        line-height: 26px;
        top: 30px;
    }

    .clock-mobile {
        bottom: 16%;
    }

    .navigation-footer {
        bottom: 10px;
    }

    .navigation-language {
        bottom: -20px;
    }

}