@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaBT-Book.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}@font-face {
    font-family: 'Futura Medium';
    src: url('../fonts/FuturaBT-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}@font-face {
    font-family: 'New Caledonia Regular';
    src: url('../fonts/NewCaledoniaLTStd.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}@font-face {
    font-family: 'New Caledonia Bold';
    src: url('../fonts/Futura-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}@font-face {
    font-family: 'Futura Bold';
    src: url('../fonts/Futura-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/*
///////////////////////////////////////////////
SPLASH PAGE
///////////////////////////////////////////////
*/

.splash{
    background-color: #EFEFEF;
    overflow: hidden;
    transition: .5s;
}

.a-splash{
    display: block;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.splash .press{
    width: 35vw;
    position: relative;
    height: auto;
    display: block;
    margin: 0 auto;    
    z-index: 1;
    max-width: 240px;
}

.splash .mandarin{
    width: 15vw;
    height: auto;
    max-width: 100px;
    position: absolute;
    animation: falling 5s linear infinite;
}

.pressimg:hover .splash{
    background-color: black;
}

@keyframes falling {
    from{
        top: -30%;
        rotate: 0deg;
    }

    to{
        top: 110%;
        rotate: 90deg;
    }
}
/*
///////////////////////////////////////////////
HEADER
///////////////////////////////////////////////
*/

.open{
}

.verborgen{
    display: none;
}

header{
    width: 100vw;
}

.burger{
    z-index: 999;
    padding: 10px 0px 0px 10px;
    position: fixed;
    background-color: transparent;
}

.stripes{
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: black;
    margin-bottom: 5px;
    transform-origin: center left;
    transition: 0.5s;
}

img{
    width: 50vw;
    height: auto;
}
.nav-header{
    height: 100vh;
    width: 100%;
    position: fixed;
    transition: 0.4s;
    cursor: pointer;
    top: -100vh;
    z-index: 2;
}

.slide{
    background-color: #333;
    top: 0vh;
    transition: 0.4s;
}

header ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header a{
    text-decoration: none;;
    color: #EFEFEF;
    width: 50vw;
    font-family: 'Futura Bold';
    text-align: center;
    font-size: 19px;
}

header li{
    list-style: none;
    transition: 0.4s ease-in;
    height: 20vh;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
}
    
header li:hover{
    background-color: #EFEFEF;
}

header li:hover a{
    color: #333;
}


/*
///////////////////////////////////////////////////////////////////////////
ALGEMENE ROTZOOI
///////////////////////////////////////////////////////////////////////////
*/

p:last-child{
    margin-bottom: 120px;
}

section{
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px 0px;
    min-height: 100vh;
    padding: 20px 0px;
}

h1, h2{
    font-family: 'Futura Bold';
}

h3, h4{
    font-family: 'Futura Medium';
}

body{
    font-family: 'New Caledonia Regular';
    font-size: 16px;
    background-color: #EFEFEF;
    color: #333333;
}

.device, .other{
    background-color: #333333;
    color: #EFEFEF;
}

h1{
    font-size: 50px;
    margin-top: 40px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    padding-left: 10px;
    width: max-content;
}
h2{
    font-size: 35px;
    border-top:2px solid #333;
    border-left: 2px solid #333;
    width: max-content;
    padding: 10px;
}
h3{
    margin-top: 50px;
    margin-left: 10px;
    padding: 10px;
    font-size: 30px;
    width: max-content;
    border-top: 2px solid #EFEFEF;
    border-left: 2px solid #EFEFEF;
    grid-column: 1/6;    
}

h4{
    font-size: 25px;
}

/*
//////////////////////////////////////////////////////////////////
HERO
//////////////////////////////////////////////////////////////////
*/

.hero img{
    justify-self: center;
    grid-column: 1 / 9;
}

.hero h1{
    grid-column: 2/5;
}

.hero h2{
    grid-column: 4/9;
}

.hero .text-hero{
    grid-column: 2/9;
    font-size: 20px;
    padding: 10px;
    width: max-content;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    margin-bottom: 40px;
}

/*
//////////////////////////////////////////////////////////////////
DEVICE
//////////////////////////////////////////////////////////////////
*/

.backgroundDevice{
    background-color: #333;
    width: 100%;
}

.device p{
    grid-column: 2/8;
}

.device img{
    grid-column: 1/9;
    width: 90vw;
    height: auto;
    justify-self: center;
    filter: grayscale(100%);
    transition: 0.3s;
}

.device img:hover{
    filter: grayscale(0%);
}

.device blockquote{
    grid-column: 2/8;
    padding: 0px 15px;
    font-size: 25px;
    font-style: italic;
    text-align: center;
}

/*
//////////////////////////////////////////////////////////////////
CREATOR
//////////////////////////////////////////////////////////////////
*/

.creator h3{
    border-top: 2px solid #333;
    border-left: 2px solid #333;
}

.creator img{
    grid-column: 1/9;
    width: 70vw;
    height: auto;
    justify-self: center;
}

.creator h4{
    grid-column: 5/8;
    width: max-content;
    padding: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
}

.creator p{
    grid-column: 2/8;
}

.creator blockquote{
    grid-column: 2/8;
    padding: 0px 15px;
    font-size: 25px;
    font-style: italic;
    text-align: center;
}

/*
//////////////////////////////////////////////////////////////////
OTHER
//////////////////////////////////////////////////////////////////
*/

.backgroundOther{
    background-color: #333;
    width: 100%;
}

.other img{
    grid-column: 1/9;
    width: 50vw;
    height: auto;
    justify-self: center;
    filter: grayscale(100%);
    transition: 0.3s;
}

.other img:hover{
    filter: grayscale(0%);
}

.other h4{
    width: max-content;
    grid-column: 1/8;
    justify-self: end;
    padding: 10px;
    border-bottom: 2px solid #EFEFEF;
    border-right: 2px solid #EFEFEF;
}

.other p{
    grid-column: 2/8;
}

/*
//////////////////////////////////////////////////////////////////
CONTACT
//////////////////////////////////////////////////////////////////
*/

.contact h3{
    border-top: 2px solid #333;
    border-left: 2px solid #333;
}

.contact{
    min-height: 30vh;
}

.contact p{
    grid-column: 2/8;
    margin-bottom: 15px;
}

.contact .readMore{
    grid-column: 1/9;
    justify-self: center;
    cursor: pointer;
}

.extraContact{
    grid-column: 2/8;
}

.contact li{
    list-style: none;
}

i{
    font-size: 25px;
    font-style: normal;
}

.contact ul{
    padding-bottom: 15px;
}

label{
    grid-column: 2/8;
}
input{
    grid-column: 2/8;
    background-color: #EFEFEF;
    color: #333;
    border: none;
    width: 80vw;
}

/*
//////////////////////////////////////////////////////////////////
FOOTER
//////////////////////////////////////////////////////////////////
*/

footer{
    font-family: 'Futura';
}

footer nav{
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    padding: 20px 10px 0px 10px;
    align-items: center;
}

footer li{
    list-style: none;
}

.socials{
    display: flex;
    align-items: center;
    gap: 10px;
}

footer img{
    width: 20px;
    height: auto;
}

footer a{
    text-decoration: none;
    color: #333;
}

#footerp{
    margin-bottom: 0px;
}
/*
//////////////////////////////////////////////////////////////////
MEDIAQUERIES
//////////////////////////////////////////////////////////////////
*/

@media (min-width:600px){
.hero img{
    max-width: 300px;
    height: auto;
}

.hero h2{
    grid-column: 5/9;
}

blockquote{
    max-width: 445px;
    display: block;
    margin: 0 auto;
}

.device img{
    max-width: 540px;
    height: auto;
}

.creator h4{
    grid-column: 6/8;
}

.creator img{
    max-width: 420px;
    height: auto;
}

.other img{
    max-width: 250px;
    height: auto;
}

.extraContact{
    grid-column: 1/9;
    text-align: center;
}

input{
    text-align: center;
}

}

@media (min-width: 900px){
    section{
        max-width: 900px;
        margin: 0 auto;
    }

    input{
        max-width: 700px;
    }

    header a{
        font-size: 25px;
    }

    footer nav{
        max-width: 900px;
        margin: 0 auto;
    }

    body{
        font-size: 20px;
    }

    h1{
        font-size: 70px;
    }

    h2{
        font-size: 45px;
        margin-bottom: 50px;
    }

    h3{
        font-size: 40px;
    }

    h4{
        font-size: 35px;
    }

    .device blockquote, .creator blockquote{
        font-size: 30px;
    }
}