@font-face {
    font-family: 'SuisseIntl';
    src: url(fonts/SuisseIntl-Regular-WebXL.woff);
    src: url(fonts/SuisseIntl-Regular-WebXL.woff2);
}

@font-face {
    font-family: 'SuisseIntlItalic';
    src: url(fonts/SuisseIntl-RegularItalic-WebXL.woff);
    src: url(fonts/SuisseIntl-RegularItalic-WebXL.woff2);
}


@font-face {
    font-family: 'SuisseWorks';
    src: url(fonts/SuisseWorks-Regular-WebXL.woff);
    src: url(fonts/SuisseWorks-Regular-WebXL.woff2);
}

@font-face {
    font-family: 'SuisseWorksItalic';
    src: url(fonts/SuisseWorks-RegularItalic-WebXL.woff);
    src: url(fonts/SuisseWorks-RegularItalic-WebXL.woff2);
}


@font-face {
    font-family: 'SuisseIntlMono';
    src: url(fonts/SuisseIntlMono-Regular-WebXL.woff);
}



body {
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'SuisseIntl';
    margin: 0;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.wrapper {
    height: calc(100vh - 1rem);
    width: calc(100vw - 1rem);
    height: calc(100dvh - 1rem);
    width: calc(100dvw - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    height: 1.4rem;
    margin: 0.5rem
}

#prev,
#next {
    margin: 0;
    cursor: pointer;
    font-size: 1.4em;
    height: 100%;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serif {
    font-family: 'SuisseWorks', serif;
}

.italic {
    font-family: 'SuisseIntlItalic';
}

.slider-area {
    height: 70vh;
    height: 70dvh;
    padding-bottom: 0.5rem;
}

.slick-track {
    display: flex;
    height: 70vh;
    height: 70dvh;
}

.grid-area-top {
    display: grid;
    flex: 2;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}

.grid-area-bottom {
    display: grid;
    flex: 0.75;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}

.pad {
    padding: 0.5rem;
}

.border-right {
    border-right: 1px solid #fff;

}

.grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

 .disable {
    pointer-events: none;
}

.grid-container a,
.back {
    text-decoration: none;
    color: currentColor;
}

.uppercase {
    text-transform: uppercase;
}


.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.hide {
    display: inline-block;
}


#zoom-container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

#grid-area-top {
    transition: 0.4s;
}

#grid-area-top.opened {
    opacity: 0.25;
}

p {
    margin: 0;
    padding: 0;
}

.item-e {
    border-top: none;
    display: flex !important;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.item-a {
    justify-content: flex-end;
    padding-bottom: 0.5rem;
}

.captions {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}



.slider-area {
    transition: 0.4s;
}




.item-b {
    grid-column-start: span 5;
}

.item-c {
    border-top: none;
    grid-column-start: span 3;

}

.item-d {
    border-top: none;
    font-family: 'SuisseIntlMono';
    grid-column-start: span 2;
}

.item-i {
    grid-column-start: span 2;
}

.grid-area-bottom {
    grid-template-columns: repeat(12, 1fr);
}

.slide-container {
    overflow: hidden;
    /* padding: 0 0.5rem; */
    position: relative;
}

.slick-slide {
    margin: 0 0.25rem;
}

.slick-list {
    margin: 0 -0.25rem;
}


.slide-container img {
    position: absolute;
}

.slick-slider {
    width: 100%;
}

#closebutton{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 9999;
    pointer-events: none;
    transition: 0.6s;
    opacity: 0;
    cursor: pointer;
}

#closebutton.opened{
    opacity: 1;
    pointer-events: initial;
}

.semi{
    width: 50vw;
    padding-bottom: 5rem;
}

.indent{
    padding-left:2rem;
}

/* p {
    margin-bottom: 1rem;
} */

.imprint-container{
    height: 100vh;
    overflow: scroll;
}

.back{
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
}

.semi a{
    text-decoration: none;
    color: #fff;
}

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


    .semi{
        width: auto;
    }

    .grid-area-bottom {
        flex: 1.25;
    }

    body {
        font-size: 0.75rem;
    }

    .grid-area-bottom {
        grid-template-areas:
            "b b"
            "c d";
    }

    .item-b {
        grid-column-start: span 12;
        border-bottom: 1px solid #fff;
        border-right: none;


    }

    .item-c {
        border-top: none;
        grid-column-start: span 6;

    }

    .item-d {
        border-top: none;
        grid-column-start: span 3;
    }

    .item-i {
        grid-column-start: span 3;
        border-right: none;
    }


    .slider-area {
        height: 60vh;
        height: 60dvh;
    }

    .slick-track {
        height: 60vh;
        height: 60dvh;
    }

    .item-a {
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .item-e {
        border-top: 1px solid #fff;
        justify-content: center;
        padding-top: 0;
    }

    .hide {
        display: none;
    }
}