@font-face {
    font-family: "din-2014";
    src:    url(../assets/font/din_2014_400_normal.eot),
            url('../assets/font/din_2014_400_normal.eot?#iefix') format('embedded-opentype'),
            url(../assets/font/din_2014_400_normal.woff2) format('woff2'),
            url(../assets/font/din_2014_400_normal.woff) format('woff'),
            url(../assets/font/din_2014_400_normal.ttf) format('truetype'),
            url('../assets/font/din_2014_400_normal.svg#din-2014') format('svg');
    font-display: auto;
    font-stretch: normal;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "din-2014";
    src:    url(../assets/font/din_2014_400_italic.eot),
            url('../assets/font/din_2014_400_italic.eot?#iefix') format('embedded-opentype'),
            url(../assets/font/din_2014_400_italic.woff2) format('woff2'),
            url(../assets/font/din_2014_400_italic.woff) format('woff'),
            url(../assets/font/din_2014_400_italic.ttf) format('truetype'),
            url('../assets/font/din_2014_400_italic.svg#din-2014') format('svg');
    font-display: auto;
    font-stretch: normal;
    font-weight: 400;
    font-style: italic;
}
:root {
    --black: rgba(5, 5, 5, 1);
    --white: rgba(250, 250, 250, 1);
    --transparent: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar {
    display: none;
}
* {
    box-sizing: border-box;
}
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: var(--transparent);
    hyphenate-character: '-';
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
body {
    background-color: var(--white);
    padding: 0;
    margin: 0;
}
div, a, svg, p, img {
    background-color: #fff0;
    padding: 0;
    margin: 0;
    border: 0;
    border-spacing: 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -ms-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
    font-size: 100%;
    text-align: left;
    text-transform: none;
    text-decoration: none;
    vertical-align: baseline;
    font-family: "din-2014", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
}
.pageFader {
  background-color: var(--black);
  position: fixed;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  z-index: 99;
}
.pageFader.fade-out {
  opacity: 0;
}
.pageFader.fade-in {
  opacity: 1;
}
a {
    pointer-events: all;
}
a:hover,
a:focus {
    opacity: .3;
    cursor: pointer;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.underline {
    -webkit-text-decoration: underline;
    -moz-text-decoration: underline;
    -ms-text-decoration: underline;
    -o-text-decoration: underline;
    text-decoration: underline;
}
.colFixed,
.colScroll {
    display: grid;
    width: var(--maxWidth);
    padding: calc((var(--maxWidth) / var(--baseValue)) * 1);
}
.colFixed {
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: var(--black);
}
.colFixed * {
    color: var(--white);
}
.colScroll {
    background-color: var(--white);
}
.colScrollSection {
    display: contents;
}
.colFixedRight img,
.colScrollSectionImage img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}
@media only screen and (max-width:767.9px) {
    :root {
        --baseValue: 16;
        --maxWidth: 100vw;
        --margin: 0vw;
    }
    .colFixed,
    .colScroll {
        grid-template-columns: repeat(14, calc((var(--maxWidth) / var(--baseValue)) * 1));
    }
    .colFixed {
        position: relative;
        overflow: hidden;
        height: auto;
    }
    .colFixedLeft,
    .colFixedRight,
    .colScrollSectionInfo,
    .colScrollSectionImage {
        grid-column: 1 / 15;
    }
    .colFixed {
        padding-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .colScroll {
        padding-top: calc((var(--maxWidth) / var(--baseValue)) * 3);
        padding-bottom: calc((var(--maxWidth) / var(--baseValue)) * 0);
    }
    .colScrollSectionImage {
        margin-top: calc((var(--maxWidth) / var(--baseValue)) * -2);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .scrollIndicator {
        display: none;
    }
}
@media only screen and (min-width:768px) {
    :root {
        --baseValue: 44;
    }
    .colFixed,
    .colScroll {
        grid-template-columns: repeat(42, calc((var(--maxWidth) / var(--baseValue)) * 1));
        align-items: center;
    }
    .colFixedLeft,
    .colScrollSectionInfo {
        grid-column: 10 / 21;
    }
    .colFixedRight,
    .colScrollSectionImage {
        grid-column: 23 / 34;
    }
    .colScrollSectionInfo,
    .colScrollSectionImage {
        display: flex;
        height: calc((var(--maxWidth) / var(--baseValue)) * 14);
        flex-direction: column;
        justify-content: center;
    }
    .colScroll {
        grid-auto-flow: column;
        position: relative;
        margin-top: 100vh;
    }
}
@media only screen and (min-width:768px) and (max-width:1159.9px) {
    :root {
        --maxWidth: 100vw;
        --margin: 0vw;
    }
}
@media only screen and (min-width:1160px) {
    :root {
        --maxWidth: 100vw;
        --margin: 0vw;
    }
}
@media only screen and (min-width:1440px) and (min-aspect-ratio:21/9) {
    :root {
        --maxWidth: 50vw;
        --margin: 25vw;
    }
    .colFixed,
    .colScroll {
        width: 100vw;
        padding: calc((var(--maxWidth) / var(--baseValue)) * 1) calc(var(--margin) + calc((var(--maxWidth) / var(--baseValue)) * 1));
    }
}
.colScroll {
    grid-row-gap: calc((var(--maxWidth) / var(--baseValue)) * 2);
}
@media only screen and (max-width:767.9px) {
    .fontS {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45); /* base value = x1 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .675); /* base value x1.5 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .75);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontL {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * 1.35); /* base value x3 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
}
@media only screen and (min-width:768px) and (max-width:1159.9px) {
    .fontS {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45); /* base value = x1 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .675); /* base value x1.5 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .75);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontL {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * 1.35); /* base value x3 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
}
@media only screen and (min-width:1160px) {
    .fontS,
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45); /* base value = x1 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * .5);
    }
    /*
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .675); /* base value x1.5 *//*
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .75);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    */
    .fontL {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * 1.35); /* base value x3 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
}
@media only screen and (min-width:1440px) and (min-aspect-ratio:21/9) {
    /*
    .fontS {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45);
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .675);
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .75);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .fontL {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * 1.35);
        line-height: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    */
    .fontS,
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45);
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * .5);
    }
    /*
    .fontM {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .675); /* base value x1.5 *//*
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .75);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    */
    .fontL {
        font-size: calc((var(--maxWidth) / var(--baseValue)) * 1.35); /* base value x3 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
    .contentScroll {
        width: 50vw !important;
        margin-left: 25vw;
    }
}
.contentScroll {
    position: relative;
    width: 100vw;
    margin-top: 100vh;
    z-index: 1;
}
.contentSection {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: fit-content;
    background-color: var(--white);
    color: var(--black);
    gap: calc((var(--maxWidth) / var(--baseValue)) * 1);
    padding: calc((var(--maxWidth) / var(--baseValue)) * 1);
}
.scrollIndicator {
    position: fixed;
    bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    left: 50%;
    transform: translateX(-50%);
    width: calc((var(--maxWidth) / var(--baseValue)) * 1);
    height: calc((var(--maxWidth) / var(--baseValue)) * 1);
    color: var(--white);
    fill: var(--white);
    pointer-events: none;
    animation: bounce 1.35s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.sectionImage,
.sectionInfo {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    min-height: 100%;
}
.sectionImage {
    max-width: calc(50vw - calc((var(--maxWidth) / var(--baseValue)) * 6));
}
.sectionImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.sectionInfo {
    flex-direction: column;
    text-align: left;
    line-height: 1.4;
    margin-left: 0;
    max-width: calc(50vw - calc((var(--maxWidth) / var(--baseValue)) * 1.5));
}
@media only screen and (min-width: 768px) {
    .sectionInfo {
        width: calc(50vw - calc((var(--maxWidth) / var(--baseValue)) * 1.5));
    }
}
.sectionInfo {
    flex: 0 0 auto;
    max-width: calc((var(--maxWidth) / var(--baseValue)) * 14);
}
@media only screen and (max-width: 767.9px) {
    .contentSection {
        flex-direction: column !important;
        height: auto;
    }
    .sectionImage,
    .sectionInfo {
        flex: 0 0 auto;
        max-width: calc(100vw - calc((var(--maxWidth) / var(--baseValue)) * 2));
    }
    .sectionImage img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

p:not(:nth-child(1)) {
    text-indent: calc((var(--maxWidth) / var(--baseValue)) * 1);
}
.lightboxCount {
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    text-indent: 0 !important;
    text-align: center;
}
.lightboxCount {
    position: fixed;
    margin: 0 !important;
    z-index: 2;
}
@media only screen and (min-width:768px) and (max-width:1159.9px) {
    .lightboxCount {
        height: calc((var(--maxWidth) / var(--baseValue)) * 3.5);
    }
}
@media only screen and (min-width:1160px) {
    .lightboxCount {
        height: calc((var(--maxWidth) / var(--baseValue)) * 2);
        font-size: calc((var(--maxWidth) / var(--baseValue)) * .45); /* base value = 1 */
        line-height: calc((var(--maxWidth) / var(--baseValue)) * .5);
        margin-bottom: calc((var(--maxWidth) / var(--baseValue)) * 1);
    }
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: calc((var(--maxWidth) / var(--baseValue)) * 38);
    max-height: calc(100vh - (var(--maxWidth) / var(--baseValue)) * 6);
    object-fit: contain;
}

.lightboxPrev,
.lightboxNext,
.lightboxCount,
.lightboxClose {
    position: fixed;
    margin: 0;
    z-index: 1001;
    fill: #fff;
    cursor: pointer;
}

.lightboxCount {
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color:#fff;
    font-size: calc((var(--maxWidth) / var(--baseValue)) * .45);
}

.lightboxPrev,
.lightboxNext {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: calc((var(--maxWidth) / var(--baseValue)) * 1);
}
.lightboxPrev {
    left: calc((var(--maxWidth) / var(--baseValue)) * 1 + var(--margin));
}
.lightboxNext {
    right: calc((var(--maxWidth) / var(--baseValue)) * 1 + var(--margin));
}

.lightboxClose {
    top: calc((var(--maxWidth) / var(--baseValue)) * 1);
    right: calc((var(--maxWidth) / var(--baseValue)) * 1 + var(--margin));
    height: calc((var(--maxWidth) / var(--baseValue)) * 1.2);
}

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

    .lightbox img {
        max-width: calc((var(--maxWidth) / var(--baseValue)) * 14);
        max-height: calc(100vh - (var(--maxWidth) / var(--baseValue)) * 10);
    }

    .lightboxPrev,
    .lightboxNext,
    .lightboxCount,
    .lightboxClose {
        display: block;
    }

    .lightboxPrev,
    .lightboxNext,
    .lightboxClose {
        position: fixed;
        bottom: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        top: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        height: calc((var(--maxWidth) / var(--baseValue)) * 2);
    }

    .lightboxPrev {
        left: calc((var(--maxWidth) / var(--baseValue)) * 1);
        right: auto;
    }

    .lightboxNext {
        right: calc((var(--maxWidth) / var(--baseValue)) * 1);
        left: auto;
    }

    .lightboxClose {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .lightboxCount {
        bottom: calc((var(--maxWidth) / var(--baseValue)) * 0.25);
    }
}
@media only screen and (max-width:767.9px) {

    .lightbox img {
        max-width: calc((var(--maxWidth) / var(--baseValue)) * 14);
        max-height: calc(100vh - (var(--maxWidth) / var(--baseValue)) * 10);
    }

    .lightboxPrev,
    .lightboxNext,
    .lightboxCount,
    .lightboxClose {
        display: block;
    }

    .lightboxPrev,
    .lightboxNext,
    .lightboxClose {
        position: fixed;
        bottom: calc((var(--maxWidth) / var(--baseValue)) * 1.5);
        top: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        height: calc((var(--maxWidth) / var(--baseValue)) * 2);
    }

    .lightboxPrev {
        left: calc((var(--maxWidth) / var(--baseValue)) * 1);
        right: auto;
    }

    .lightboxNext {
        right: calc((var(--maxWidth) / var(--baseValue)) * 1);
        left: auto;
    }

    .lightboxClose {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .lightboxCount {
        bottom: calc((var(--maxWidth) / var(--baseValue)) * 0.25);
    }

    .lightboxPrev:active,
    .lightboxNext:active {
        -webkit-transform: translateX(0%) translateY(0%) scale(.9);
        -moz-transform: translateX(0%) translateY(0%) scale(.9);
        -ms-transform: translateX(0%) translateY(0%) scale(.9);
        -o-transform: translateX(0%) translateY(0%) scale(.9);
        transform: translateX(0%) translateY(0%) scale(.9);
    }
}
@media only screen and (min-width: 768px) {
    .lightboxPrev:active,
    .lightboxNext:active {
        -webkit-transform: translateX(0%) translateY(-50%) scale(.9);
        -moz-transform: translateX(0%) translateY(-50%) scale(.9);
        -ms-transform: translateX(0%) translateY(-50%) scale(.9);
        -o-transform: translateX(0%) translateY(-50%) scale(.9);
        transform: translateX(0%) translateY(-50%) scale(.9);
    }
}


@media only screen and (max-width: 767.9px) {
    .contentFixed {
        position: relative;
        overflow: hidden;
        height: auto;
    }
    .contentScroll {
        margin-top: 0;
    }
}


@media only screen and (min-width: 768px) {
    .contentSection {
        padding: calc((var(--maxWidth) / var(--baseValue)) * 3) 0;
    }
}

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

    .colScrollSection:nth-child(1) .colScrollSectionImage { grid-column: 1 / 2;}  /* Image left */
    .colScrollSection:nth-child(1) .colScrollSectionInfo  { grid-column: 16 / 28;}  /* Info right */
    
    .colScrollSection:nth-child(2) .colScrollSectionImage { grid-column: 21 / 38;}  /* Image right */
    .colScrollSection:nth-child(2) .colScrollSectionInfo  { grid-column: 8 / 19;}  /* Info left */
    
    .colScrollSection:nth-child(3) .colScrollSectionImage { grid-column: 6 / 23;}  /* Image left */
    .colScrollSection:nth-child(3) .colScrollSectionInfo  { grid-column: 25 / 36;}  /* Info right */
    
    .colScrollSection:nth-child(4) .colScrollSectionImage { grid-column: 21 / 38;}  /* Image right */
    .colScrollSection:nth-child(4) .colScrollSectionInfo  { grid-column: 8 / 19;}  /* Info left */
    
    .colScrollSection:nth-child(5) .colScrollSectionImage { grid-column: 6 / 23;}  /* Image left */
    .colScrollSection:nth-child(5) .colScrollSectionInfo  { grid-column: 25 / 36;}  /* Info right */

    .colScrollSection:nth-child(6) .colScrollSectionImage { grid-column: 21 / 38;}  /* Image right */
    .colScrollSection:nth-child(6) .colScrollSectionInfo  { grid-column: 8 / 19;}  /* Info left */
    
    
    .colScrollSectionInfo,
    .colScrollSectionImage {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

#mail,
.underline,
a {
    pointer-events: all;
    -webkit-text-decoration: underline;
    -moz-text-decoration: underline;
    -ms-text-decoration: underline;
    -o-text-decoration: underline;
    text-decoration: underline;
}
#mail:hover,
.underline:hover,
a:hover {
    opacity: 0.3 !important;
    cursor: pointer;
}