/*

    background-color: #3E6FF3;
*/


@font-face {
    font-family: 'Plex';
    src: url(font/IBMPlexSansVar-Roman.woff2) format('woff2'), url(font/IBMPlexSansVar-Roman.ttf) format('ttf');
    
    font-weight: 400;
}

body {
    font-family: Plex;
    background-color: black;
    color: white;
    line-height: 1;
    font-size: 30px;
margin:0;

    font-variation-settings: "wght"300, "wdth"300;
    cursor: url(muis.png)15 15, auto;
    

    

}

header {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 100%;
    overflow: hidden;
    z-index: 100000000000000;
}



header h1,
header h2 {
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
}


header h1 {
    font-size: 60px;
}



header h2,
h2 {
    font-size: 30px;
}



h1 span,
h2 span {
    width: 300px;
    flex: 0 0 auto;
    display: inline-block;
}

a {
    font-variation-settings: "wght"500, "wdth"100;
    transition: font-variation-settings 0.5s ease;
}

a:hover {
    font-variation-settings: "wght"700, "wdth"100;
    transition: font-variation-settings 0.5s ease;
        cursor: url(muis_active.png)15 15, auto;

}

u {
    text-decoration: underline 2px;
}

footer {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 100%;
    overflow: hidden;
    z-index: 100000000000000;
    line-height: 1;
}

footer h2 {
    text-align: right;
    font-size: 20px;
    color: rgb(235, 235, 235);
}

/* sections */

section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    grid-auto-flow: dense;
}





section div.split {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-position: center center;

}

section div.split:first-child {
    background-color: #111;
}

section div.slides {
    width: 500px;
    height: 750px;
    position: relative;


}

section div.slides img {
    position: absolute;

    object-fit: cover;
    top: 0;
    left: 0;
    /*    width: 500px;*/
    overflow: visible;
    /*    height: 750px;*/
    max-width: 600px;
    max-height: 750px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    cursor: url(muis_active.png)15 15, auto;

}

section div.info {
    max-width: 480px;
    padding: 32px;
}


section p {
    margin: 0 0 50px 0;
    line-height: 1.1;
}

section h1 {
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-size: 60px;
}


section a {
    background-color: none;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    padding: 12px 24px 12px 24px;
    border-radius: 50px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    display: inline-flex;
    align-items: center;
    transition: all ease-in 0.25s;
}

section a img {
    margin: 0 0 0 6px;
    width: 10px;
    height: 16px;
    object-fit: cover;
    object-position: center right;
    transition: all ease-in 0.25s;



}

section a:hover {
    background-color: #3E6FF3;
    border-color: #3E6FF3;
    transition: all ease-in 0.25s;
        cursor: url(muis_active.png)15 15, auto;

}

section a:hover img {
    width: 30px;
    -webkit-filter: invert(0);
    filter: invert(0);

    transition: all ease-in 0.25s;
    
}

section.alternative div.split:first-child {
    grid-column: 2;
}

section.alternative div.split:last-child {
    grid-column: 1;
}


/* sections */
/* nav */

nav {
    position: fixed;

    right: -50vw;
    top: 0;
    width: 50vw;
    height: 100vh;
    background-color: rgb(10, 15, 28);
    color: #ffffff;


    display: flex;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
    transition: all ease 0.5s;
    z-index: 200000000000000;
    overflow-x: hidden;
}

nav.open {
    right: 0;

}

nav a {
    color: black;
    text-decoration: none;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 80px;
    line-height: 1;
    right: 0;
    text-align: right;
    background-color: #fff;
    border-radius: 60px;
    padding: 14px 38px 12px 38px;
    font-variation-settings: "wght"400, "wdth"100;
    transition: all ease 0.5s;
}


nav a.actief:hover {
    font-variation-settings: "wght"400, "wdth"100;
        cursor: url(muis_active.png)15 15, auto;

}

nav a.actief {
    font-variation-settings: "wght"700, "wdth"100;
    background-color: rgb(0, 70, 255);
    color: #fff;
    transition: font-variation-settings ease 0.5s, padding ease 0.5s, ease color 1s, ease backgroundcolor 1s;
}


nav a img {
    width: 120px;
    height: 50px;
    object-fit: cover;
    object-position: center left;
    transition: all ease 0.5s;
}


nav a:hover img {
    width: 170px;
}

nav a.terug {
    display: none;
}

nav .dot {
    background-color: rgb(0, 70, 255);
    border-radius: 100px;
    min-width: 30px;
    transition: min-width 1s;
        cursor: url(muis.png)15 15, auto;

}

nav .dot:hover {
    min-width: 60px;
    transition: min-width 1s;

}

main {
    position: relative;
    z-index: 1;
    background: none;
    min-height: 100vh;
    transition: all ease 0.5s;
}

main.open {
    transform: translate(-50vw, 0);
}

a.toggle-nav {
    position: fixed;
    text-align: center;

    top: 0;
    right: 0;
    line-height: 1;
    margin: 20px 20px 0 0;
    text-decoration: none;
    color: #fff;
    transition: color 0.25s ease;
    font-variation-settings: "wght"500, "wdth"100;
}

a.toggle-nav:hover {
    color: #3E6FF3;
    transition: color 0.25s ease;
        cursor: url(muis_active.png)15 15, auto;


}

.break {
    flex-basis: 100%;
    height: 0;
}


/* nav */















@media (max-width: 1080px) {
    section {
        display: block;
    }

    section div.split {
        padding: 64px 0 64px 0;
    }

    main.open {
        transform: translate(-100vw, 0);

    }

    nav {
        right: -100vw;
        width: 100vw;
        z-index: 3;

    }
}

@media (max-width: 700px) {
    
    .top{
        padding-top: 100px;
        background-color:#111 ;
    }
    
    header h1, h1, section h1{  
        font-size:40px;
    }
    header h2, h2{
        font-size:20px;
    }
    p{
        font-size:25px;
        line-height:1.3;
    }  
    a{
        font-size:25px;
        line-height:1.3;
    }
	
	    section a {

        font-size: 25px;
    }

  /*  nav{
        margin:2vw;
    } */
     nav a{
        font-size:40px;
         margin-right: 10px;
             margin-bottom: 10px;

    }
        nav a img{
        width: 80px;
    height:30px;

        
    }
    nav a:hover img {
    width: 100px;
}
    nav .dot {
    background-color: rgb(0, 70, 255);
    border-radius: 100px;
    min-width: -0px;
    transition: min-width 1s;
        cursor: url(muis.png)15 15, auto;

}
    nav .dot:hover {
    min-width: 10px;
    transition: min-width 1s;

}
        
    
    section{
                margin-bottom:10vw;

    }
    section div.slides,
    section div.slides img {
        width: 70vw;
        overflow: visible;
/*        height: 118vw;*/
       max-width:100vw;
        max-height: 100vh;

    

    }
    
    section div.slides {
	max-height:  90vw;
	}
	
    
    
    section div.split{
min-height:50vw;
        overflow-x: hidden;
    }
}
