@charset "UTF-8";

/*@font-face {
    font-family: 'Archivo-Black';
    src: url('../fonts/archivo-black-v17-latin-regular.woff2') format('woff2');
}*/
/* @font-face {
    font-family: 'Roboto-Mono';
    src: url('../fonts/roboto-mono-v22-latin-300.woff2') format('woff2');
} */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v26-latin-900.woff2') format('woff2');
}
/* @font-face {
    font-family: 'SuisseIntl-Book';
    src: url('../fonts/SuisseIntl-Book-WebS.woff2') format('woff2');
} */
@font-face {
    font-family: 'NunitoSans-500';
    src: url('../fonts/nunito-sans-v19-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'NunitoSans-800';
    src: url('../fonts/nunito-sans-v19-latin-800.woff2') format('woff2');
}

:root {
    --light: #FFF;
    --dark: #000;
    --inactive: #BABABA;
    --hover: #444;
    --hover2: #777;
    --line: #DDD;
    --bg: #F2F2F2;
    --yellow: #FFF56A;

    --FSS: 1.1vw;
    --FSD: 1.1vw;
    --FSM: 2vw;
    --FSL: 3.13vw;
    --FSXL: 4.17vw;

    --tf: .55;
    --br: .3rem;
    --hh: 6rem;
}
@media (max-width: 768px) {
    :root {
        --FSS: 3.5vw;
        --FSD: 4vw;
        --FSM: 5.5vw;
        --FSL: 7.5vw;
        --FSXL: 12vw;

        --tf: 2;
        --hh: 5rem;
    }
}

/* Basic HTML Stuff -------------------------------------------------- */
html{
    scroll-behavior: smooth;
    font-size: var(--FSD);
}
body{
    margin: 0;
    cursor: default;
    color: var(--dark);
    background-color: var(--light);
    font-family: 'NunitoSans-500', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: background-color 5s ease-in-out;
}

img, .ns, nav, button, svg, path{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
::selection {
    background: var(--dark);
    color: var(--light);
}

*{
    box-sizing: border-box;
}


/* Links ------------------------------------------------------------ */
a{ 
    color: inherit;
    transition: border .2s ease,
                transform .2s ease;
    outline: 0;
    text-decoration: underline;
    text-decoration-thickness: .06em;
    text-underline-offset: .2em;
    outline: 0;
}
a:hover{ 
    text-decoration: none;
}
a:active{
    transform: translateY(.15em);
}
.nb{
    text-decoration: none !important;
}
.underlined{
    border-bottom: 1px solid var(--dark);
    transition: border 0.2s ease;
}

a svg{
    margin: 0 .5em;
    width: 1.5rem;
    height: auto;
    transition: transform .2s ease;
}
a path{
    fill: var(--dark);
}


/* Media ------------------------------------------------------------ */
figure, picture{
    margin: 0;
    padding: 0;
}
figure img, figure video, figure svg, picture img, picture svg{
    width: 100%;
    height: auto;
    transition: filter .2s ease,
                opacity .2s ease;
}
video{
    background-color: var(--bg);
}
img, video, svg, iframe{
    vertical-align: middle;
}

.loading{
    filter: blur(5px);
    opacity: .8;
}


/* Typography -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6{
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
.ds_font{
    font-family: 'Montserrat', sans-serif;
}
.bold, strong{
    font-family: 'NunitoSans-800', sans-serif;
}

html, body, .FSD{ 
    font-size: var(--FSD);
    line-height: 1.4em;
}
.FSS{ 
    font-size: var(--FSS);
    line-height: 1.2em;
}
.FSM{ 
    font-size: var(--FSM);
    line-height: 1em;
    text-transform: uppercase;
}
.FSL{ 
    font-size: var(--FSL);
    line-height: 1em;
    text-transform: uppercase;
}
.FSXL{ 
    font-size: var(--FSXL);
    line-height: 1em;
    text-transform: uppercase;
}

/* GUI ---------------------------------------------------------------- */
svg path{
    fill: var(--dark);
}
button svg{
    width: 100%;
    height: auto;
}
button{
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--FSD);
}
button, .button{
    cursor: pointer;
}
button:focus, input:focus {
    outline:0;
}

ul {
	list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.button{
    background-color: var(--dark);
    color: var(--light);
    height: 2.8rem;
    border-radius: var(--br);
    min-width: 5rem;
    padding: 0 1.2rem;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color .2s ease,
                transform .2s ease;
    font-family: 'NunitoSans-500', sans-serif;
    flex-shrink: 0;
}
.sec_button{
    background-color: transparent;
    border: 1px solid var(--dark) !important;
    color: var(--dark);
    transition: color .2s ease,
                boder-color .2s ease,
                transform .2s ease;
}
.ter_button{
    background-color: transparent;
    color: var(--dark);
    transition: color .2s ease,
                transform .2s ease;
}
button:active, .filter_tag:active{
    transform: translateY(.1em);
}
.filter_tag{
    display: inline-flex;
    gap: .5rem;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 5rem;
    padding: .25rem 1rem;
    transition: color .2s ease,
                background-color .2s ease;
    flex-shrink: 0;
}
.filter_tag svg{
    width: .6rem;
    height: auto;
    display: none;
}
.filter_tag svg path{
    fill: var(--light);
}
.ft_active{
    background-color: var(--dark);
    color: var(--light);
}
.ft_active svg{
    display: inline-flex;
}

@media (min-width: 1024px) {
    .button:hover{
        transform: scale(1.03);
    }
    .filter_tag:hover{
        background-color: rgba(0,0,0,.08);
    }
    .ft_active:hover{
        background-color: rgba(0,0,0,.7);
    }
}


/* Grid -------------------------------------------------------------- */
.mob_on{
    display: none;
}
.mob_off{
    display: inline-flex;
}

@media (max-width: 768px) {
    .mob_on{
        display: inline-flex;
    }
    .mob_off{
        display: none;
    }
}

/* Header & Navi ------------------------------------------------------- */
.nav{
    position: fixed;
    width: 62%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .8);
    height: var(--hh);
    padding: 0 4rem 0 7rem;
    transition: transform .4s ease;
}
.short_nav{
    width: 50%;
}
.hide{
    transform: translateY(calc(var(--hh)*-1));
}
.nav a, .footer a{
    text-decoration: none;
}
.nav a:hover, .footer a:hover{
    text-decoration: underline;
}
.logo svg{
    width: 2.8rem;
    height: 2.8rem;
}
.active_lang{
    display: none !important;
}
.links{
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}
@media (max-width: 768px) {
    .nav{
        width: 100%;
        padding: 0 7vw 0 5.5vw;
    }
    .links{
        gap: 1.5rem;
    }
    .logo svg{
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Footer ------------------------------------------------------------- */
.footer{
    position: relative;
    background-color: var(--bg);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 4rem;
    z-index: 1;
}
.footer ul{
    display: flex;
    gap: 2rem;
}
@media (max-width: 768px) {
    .footer{
        padding: 1rem 5vw;
    }
    .footer ul{
        gap: 0;
        width: 100%;
        justify-content: space-between;
    }
}


/* Home Elements ------------------------------------------------------ */
.hc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
    position: relative;
}
.hc figure{
    width: 38vw;
    height: 60vw;
    flex-shrink: 0;
}
.hc4 figure{
    height: 38vw;
}
.hc video, .hc img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hc div{
    width: 40vw;
    margin-left: 8rem;
    flex-shrink: 0;
}
.hc p, .hc .button, .newsletter p, .newsletter .button{
    margin-left: 4rem;
}
.hc h1{
    width: 70%;
}
.hc2{
    padding-left: 4rem;
    margin-top: -4rem;
}
.hc2 div{
    margin: 0 8rem 0 0;
}
.hc3{
    margin-top: -4rem;
}
.hc4{
    margin-top: -4rem;
    align-items: flex-end;
}

.newsletter{
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    margin-right: 4rem;
    padding: 6rem 0 9rem 0;
    margin-top: -4rem;
}
.newsletter figure{
    /* width: 52.5vw; */
    width: 50vw;
    display: flex;
    justify-content: center;
}
.newsletter svg{
    width: 18vw;
    height: auto;
}
.newsletter div{
    width: 40vw;
    flex-shrink: 0;
}

.reviews{
    display: flex;
    gap: 5.5vw;
    width: 100%;
    position: relative;
    padding: 8rem 4rem 8rem 8rem;
}
.revs_hd{
    width: 40vw;
}
.revs_hd figure{
    width: 50%;
    height: auto;
}
.revs_hd h2{
    margin: 1rem 0 2rem 0;
}
.revs{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 35vw;
}
.revs p{
    margin-bottom: .5rem;
}
.revs .clt{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.revs figure{
    width: 6rem;
}
.revs .button{
    display: ;
}


@media (max-width: 768px) {
    .hc{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
    }
    .hc h1{
        margin-top: 2.5rem;
    }
    .hc figure{
        width: 90vw;
        height: 90vw;
    }
    .hc div{
        width: 98vw;
        margin: 0 1vw;
        padding-right: 1vw;
    }
    .hc p, .hc .button, .newsletter p, .newsletter .button{
        margin-left: 9vw;
    }
    .hc1{
        margin-top: var(--hh);
    }
    .hc2{
        padding-left: 0;
        align-items: flex-start;
        margin-top: 3rem;
    }
    .hc3{
        margin-top: 4rem;
    }
    .hc4{
        padding-left: 0;
        margin-top: -10vw;
    }
    .hc div{
        margin-top: 1rem;
    }
    .hc div{
        order: 1;
    }
    .hc figure{
        order: 0;
    }

    .newsletter{
        flex-direction: column;
        margin-right: 10vw;
        padding: 1rem 0 6rem 0;
        position: relative;
        margin-top: -10vw;
    }
    .newsletter figure{
        width: 80%;
        margin-bottom: 1rem;
        justify-content: flex-end;
    }
    .newsletter svg{
        width: 25vw;
    }
    .newsletter div{
        width: 100%;
        padding: 0 5vw 0 1vw;
    }

    .reviews{
        flex-direction: column;
        align-items: center;
        padding: 5rem 0 4rem 0;
        gap: 0;
    }
    .reviews div{
        width: 96vw;
    }
    .revs_hd h2{
        margin: 1rem 0;
    }
    .revs, .revs .mob_on{
        justify-content: center;
    }
}

/* Works Overview --------------------------------------------------- */
.works{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg);
    padding: 10.3rem 0 4rem 0;
    min-height: 100vh;
}
.works .w_hd{
    width: 100%;
    padding-left: 8rem;
}
.filter{
    background-color: var(--yellow);
    position: fixed;
    right: 0;
    top: 0;
    width: 38%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 2.1rem 4rem;
    transition: transform .4s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter strong{
    margin-top: .2rem;
}
.filter div{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-end;
}
.w_teaser{
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: var(--bg);
    padding: 6rem 0 8rem 0;
    margin-top: -4rem;
}
.w_teaser h2{
    margin-left: 4rem;
    align-self: flex-start;
}
.w_wrap{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.w_wrap div{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin: 2rem 0;
}
.w_wrap div a{
    width: calc((100% - 3rem) / 4);
    display: flex;
    transition: opacity .4s ease,
                transform .2s ease;
}
.w_wrap figure{
    background-color: var(--light);
    box-shadow: 0 0 10px 2px rgba(0,0,0,.05);
    border-radius: var(--br);
    width: 100%;
}
.w_wrap img{
    border-radius: var(--br) var(--br) 0 0;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}
.w_wrap figcaption{
    padding: 1rem;
}
@media (min-width: 1024px) {
    .w_wrap div a:hover{
        transform: scale(1.015);
    }
}
@media (max-width: 768px) {
    .works{
        padding: 12rem 0 2rem 0;
    }
    .works .w_hd{
        padding-left: 6vw;
    }
    .filter{
        right: auto;
        left: 0;
        top: var(--hh);
        height: var(--hh);
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding: 0 6vw;
        overflow: scroll;
    }
    .filter div{
        flex-direction: row;
        padding-right: 12vw;
    }
    .w_teaser{
        margin-top: 4rem;
        padding: 4rem 0 6rem 0;
    }
    .w_wrap{
        width: 96%;
    }
    .w_teaser h2{
        margin-left: 0;
        margin-left: 7.5vw;
    }
    .w_wrap div{
        gap: .5rem;
    }
    .w_wrap div a{
        width: calc((100% - .5rem) / 2);
        display: flex;
    }
}

/* Works Elements --------------------------------------------------- */
.d_main{
    display: flex;
}
.info, .assets{
    width: 50%;
    scroll-behavior: smooth;
}
.assets iframe{
    width: 100%;
    height: calc(50vw/16*9);
}
.cookie_vid{
    background-color: var(--bg);
    width: 100%;
    height: calc(50vw/16*9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 4rem;
}
.cookie_vid h2{
    margin: 0;
}
.cookie_vid p{
    margin-bottom: 2rem;
}
.info{
    padding: 0 3rem 0 8rem;
    word-break: break-word;
}
.info_wrap{
    position: sticky;
    top: 6rem;
    margin-top: 15vw;
    display: flex;
}
.info h1{
    margin: 0 0 .2em 0;
    text-transform: uppercase;
}
.work_info{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 6vw);
    justify-content: space-between;
    width: 100%;
}
.work_info .d_main{
    display: flex;
    flex-direction: column;
}
.print_sec{
    border-top: var(--line) 1px solid;
    margin-top: 3rem;
    padding-top: 1.5rem;
}
.print_sec .button{
    margin-top: .5rem;
}
.work_info footer{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 8rem;
}
.facts{
    margin: 0 0 1em 0;
}
.actions{
    display: flex;
    margin: 1.5rem 0 0 0;
    flex-wrap: wrap;
    gap: .5rem;
}

.overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    z-index: 2;
    display: none;
    transition: background-color .2s ease;
}
.open{
    background-color: rgba(0,0,0,.2);
}
.popup{
    background-color: var(--light);
    width: 56%;
    padding-bottom: 3rem;
    border-radius: var(--br);
    box-shadow: 0 0 1vw rgba(0,0,0,.1);
    transform: translateY(100vh);
    transition: transform .25s ease;
}
.open .popup{
    transform: translateY(0);
}
.popup header{
    height: 5rem;
    padding: 0 2rem 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup main{
    padding: 0 3rem;
    overflow: auto;
    max-height: calc(90vh - 12vw);
}
.popup .intro p{
    margin-top: 0;
}
.popup .intro{
    margin-bottom: 3rem;
}
.popup svg{
    width: 3.2rem;
    cursor: pointer;
    transform-origin: center;
    transition: transform .2s ease;
}
.popup svg path{
    fill: var(--dark);
}
.option{
    display: flex;
    flex-direction: column;
    border-top: var(--line) 1px solid;
}
.overlay .button{
    margin-top: 1em;
}
.overlay footer{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    padding: 0 3rem;
}
.t_row{
    display: flex;
    padding: .7rem 0;
    gap: .5rem;
    width: 100%;
}
.t_row span{
    width: 33%;
}
.tb{
    border-top: var(--line) 1px solid;
}

.nl_box{
    background-color: var(--yellow);
    padding: 1.5rem 2rem 2rem 2rem;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.nl_box header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nl_box svg{
    width: 2.5rem;
    height: auto;
}
.nl_box p{
    margin-top: .2rem;
}

@media (min-width: 1024px) {
    .work_info footer a:hover svg{
        transform: translateX(.25em);
    }
    .popup svg:hover{
        transform: rotateZ(90deg);
    }
}

@media (max-width: 768px) {
    .d_main{
        flex-direction: column;
    }
    .info{
        width: 100%;
        order: 1;
        margin-top: calc(80vh - .3rem);
        background-color: var(--light);
        padding-bottom: 15vw;
        border-radius: var(--br) var(--br) 0 0;
        box-shadow: 0 0 15px 3px rgba(0,0,0,.15);
        padding: 0 2vw;
        z-index: 1;
    }
    .info::before{
        content: " ";
        display: block;
        width: 18vw;
        height: .3rem;
        margin-left: 41vw;
        background-color: var(--line);
        /* justify-self: center; */
        margin-top: .8rem;
        border-radius: .15rem;
    }
    .info_wrap{
        margin-top: 1.3rem;
    }
    .work_info{
        min-height: 0;
    }
    .work_info footer{
        margin: 6vw 0 5vw 0;
        height: 4rem;
    }
    .print_sec{
        margin-top: 2.5rem;
        padding-top: 1rem;
    }
    .assets{
        position: fixed;
        width: 100%;
        height: 80vh;
        order: 0;
        overflow: scroll;
        z-index: 0;
        /* flex-shrink: 1; */
    }
    .assets iframe{
        width: 100%;
        height: calc(100vw/16*9);
    }
    .cookie_vid{
        width: 100vw;
        min-height: calc(100vw/16*9);
        padding: 0 5vw;
    }

    .overlay{
        align-items: flex-end;
    }
    .popup{
        width: 100%;
    }
    .popup header{
        height: 18vw;
        padding: 0 2vw 0 5vw;
    }
    .popup main{
        padding: 0 5vw;
        max-height: calc(90vh - 38vw);
    }
    .popup svg{
        width: 3.2rem;
    }
    .overlay footer{
        padding: 0 5vw;
    }

    .nl_box{
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        margin-top: 3rem;
    }
}

/* About ------------------------------------------------------------ */
.about .hc{
    align-items: flex-start;
    padding-bottom: 5rem;
}
.about h1{
    margin-top: 10rem;
}
.about .hc div{
    width: 42vw;
}
.about .w_teaser, .prints .w_teaser{
    margin: 0;
}

@media (max-width: 768px) {
    .about .hc{
        padding: var(--hh) 0 3rem 0;
        align-items: flex-end;
    }
    .about h1{
        margin-top: 2rem;
        width: 100%;
    }
    .about .hc div{
        width: 98vw;
    }
    .about .w_teaser{
        padding-bottom: 4rem;
    }
}

/* Prints ----------------------------------------------------------- */
.p_intro{
    align-items: flex-end;
}
.p_intro div:first-child{
    margin-bottom: 6rem;
}
.USPs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: var(--yellow);
    margin: 0;
    width: 38vw;
    height: 38vw;
}
.USPs li{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 14rem;
    line-height: 1.2em;
}
.USPs svg{
    width: 3rem;
    height: auto;
    flex-shrink: 0;
}
.slider{
    width: 100%;
    margin-top: -3rem;
}
.imgs{
    width: 100%;
    overflow: scroll;
    display: flex;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.imgs figure{
    flex-shrink: 0;
    width: 40vw;
}
.slider div:last-child{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.slider .txt{
    width: 50vw;
    margin-top: -3rem;
    padding: 3rem 4rem;
    background-color: var(--light);
    position: relative;
}
.slider .txt p, .slider .txt .button{
    margin-left: 4rem;
}
.sl_cntr{
    padding: 2rem 4rem;
}
.sl_cntr button{
    width: 2.5rem;
    height: 2.5rem;
}
.sl_cntr button svg{
    width: 100%;
    height: auto;
}
.sl_cntr button:first-child svg{
    transform: rotate(180deg);
}

.p2{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
    margin-top: -6rem;
}
.p2 figure:first-child{
    width: 50vw;
    height: 25vw;
}
.p2 .hc{
    margin-top: -4rem;
    justify-content: flex-start;
}
.p2 .txt{
    margin-left: 6rem;
    width: 38vw;
}
.p2 .hc figure{
    width: 50vw;
    height: 50vw;
}

.p3{
    margin-top: 4rem;
}
.p3 figure{
    width: 25vw;
    height: 50vw;
}
.p3 figure:last-child{
    margin-top: -16rem;
}
.p3 .txt{
    width: 38vw;
    margin-left: 2rem;
}

.t_con{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem;
    gap: 1rem;
}

/* @media (min-width: 1024px) {
    
} */
@media (max-width: 768px) {
    .p_intro div:first-child{
        margin-bottom: 2.5rem;
    }
    .USPs{
        align-items: flex-start;
        gap: 1rem;
        width: 90vw;
        height: auto;
        margin-top: var(--hh);
        padding: 2rem;
    }
    .USPs svg{
        width: 2.7rem;
    }
    .slider{
        margin-top: 0;
        margin-bottom: 2rem;
    }
    .imgs figure{
        width: 90vw;
    }
    .slider .txt{
        width: 90vw;
        padding: 2rem 1vw;
    }
    .slider .txt p, .slider .txt .button{
        margin-left: 9vw;
    }
    .sl_cntr{
        display: none !important;
    }

    .p2{
        margin-top: 0;
        margin-bottom: 4rem;
    }
    .p2 figure:first-child{
        width: 90vw;
        height: 45vw;
    }
    .p2 .hc{
        margin-top: 0;
    }
    .p2 .txt{
        margin-left: 1vw;
        width: 98vw;
    }
    .p2 .hc figure{
        width: 90vw;
        height: 90vw;
    }

    .p3{
        margin-top: 0;
        margin-bottom: 4rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .p3 figure{
        width: 45vw;
        height: 90vw;
    }
    .p3 figure:last-child{
        margin-top: 0;
    }
    .p3 .txt{
        width: 98vw;
        margin-left: 1vw;
    }

    .t_con{
        padding: 1rem 1vw 4rem 10vw;
        align-items: flex-start;
    }

    .prints .w_teaser{
        padding-bottom: 4rem;
    }
}

/* Cookies ---------------------------------------------------------- */
.cookies{
    background-color: rgba(0,0,0,.2);
    display: flex;
}
.cookies .popup{
    width: 50%;
    padding: 1vw 3vw 3vw 3vw;
    transform: translateY(0);
}
.cookies .popup h2{
    margin: 1.5rem 0;
}
.cookies .popup div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cookies .ter_button{
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cookies .popup{
        width: 100%;
        padding: 2vw 5vw 15vw 5vw;
    }
}


/* Legal Elements --------------------------------------------------- */
.legal{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 10rem 0;
    min-height: 100vh;
    overflow-wrap: break-word;
}
.legal .wrap{
    display: block;
    width: 80%;
}
.legal h2{
    font-family: 'NunitoSans-800', sans-serif;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .legal{
        padding: calc(var(--hh) + 2rem) 0 2rem 0;
    }
    .legal .wrap{
        width: 90%;
        height: auto;
        padding-top: 0;
    }
    .legal .wrap p{
       padding: 0;
    }
}