:root{
    /* CSS HEX */
    --foreground: #FFFFFF;
    --background: #203573;
    --background-text: #122357;
    --backgroundtrans: #203573bb;
    --accent1: #7FADDD;
    --accent1trans: #7FADDDbb;
    --accent2: #fff14f;
    --accent2trans: #fff14fbb;
    --accent3: #287BC0;
    --accent3trans: #287BC0bb;
    --blacktrans:#14141488;
    --blacktrans2:#141414f1;
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--foreground);
}
@font-face {
    font-family: 'Folio Std Bold Condensed';
    src: url('../fonts/Folio-Std-Bold-Condensed.ttf') format('truetype');
}
h1, h2, h3, h4{
    font-family: 'Folio Std Bold Condensed', sans-serif;
}
p{
    font-family: 'Poppins', sans-serif;
}

/*-DEBUG-/ *{outline: solid 1px red;} /-DEBUG-*/

/*--------General--------------------*/
.grecaptcha-badge { 
    visibility: hidden !important;
}
body{
    text-align: center;
    background-color: var(--background);
}
.section{
    width: 100%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--background);
}
.content-wrapper{
    width: 65%;
    margin: auto;
    background-color: transparent;
}
h2{
    font-weight: 700;
    font-size: 40px;
    color: var(--background);
}
h3{
    font-weight: 700;
    font-size: 28px;
    color: var(--background);
    margin-top: 20px;
}
h3 i{
    font-weight: 600;
    font-size: 28px;
    color: var(--background);
}
p{
    font-weight: 300;
    font-size: 18px;
}
p i{
    font-weight: 300;
    font-size: 22px;
}
p strong{
    font-weight: 700;
    font-size: 22px;
}
p strong u{
    font-weight: 700;
    font-size: 22px;
    text-decoration-color: var(--accent2);
}
.spacer{
    margin-top: 10px;
}
.spacer-double{
    margin-top: 20px;
}
.hero-btn{
    font-family: 'poppins', sans-serif;
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--accent1);
    padding: 12px 34px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    border-style: none;
    border-radius: 10px;
    width: auto;
}
.hero-btn:hover{
    background: var(--accent1trans);
    transition: 0.5s;
    -webkit-box-shadow: 0 0 5px 0px var(--accent2);
    box-shadow: 0 0 5px 0px var(--accent2);
    color: var(--accent2);
}
#results .success{
    color: green;
    font-weight: 700;
}
#results .error{
    color: red;
    font-weight: 700;
}

/*--------Navigation-----------------*/
.navigation-container{
    position: fixed;
    height: 0;
    width: 100%;
    z-index: 99;
}
nav{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}
.nav-links{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
    z-index: 5;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 15px;
    position: relative;
    z-index: 5;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-family: pt-serif, serif;
    font-size: 22px;
    font-weight: 600;
    z-index: 5;
}
.social-media-links-nav{
    margin-top: 10px;
}
.social-media-link-nav{
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 20px;
    border-radius: 50%;
}
.social-media-link-nav:hover{
    -webkit-box-shadow: 0 0 5px 0px var(--accent2);
            box-shadow: 0 0 5px 0px var(--accent2);
    background-color: var(--accent2);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
}
#instagram-link-nav{
    background-image: url(../images/Logo_Social_Instagram_white.svg);
    background-size: contain;
    border-radius: 50%;
}
#facebook-link-nav{
    background-image: url(../images/Logo_Social_Facebook_white.svg);
    background-size: contain;
    border-radius: 50%;
}
#whatsapp-link-nav{
    background-image: url(../images/Logo_Social_Whatsapp_white.svg);
    background-size: contain;
    border-radius: 50%;
}

/*--------Header---------------------*/
header{
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    text-align: center;
}
.showreel{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}
.showreel-logo{
    position: absolute;
    width: 250px;
    height: 320px;
    left: 50%;
    top: 100px;
    transform: translateX(-50%) scale(1);
    transform-origin: top center;
}
.showreel-logo-1{
    position: absolute;
    overflow: visible;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 3;
}
.showreel-logo-2{
    position: absolute;
    overflow: visible;
    width: 100%;
    top: 245px;
    left: -5px;
    z-index: 3;
    animation-duration: 3s;
    animation-name: showreel-logo-2-animation;
}
@keyframes showreel-logo-2-animation{
    0%{
        opacity: 0;
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
}
.showreel-logo-3{
    position: absolute;
    overflow: visible;
    width: 50px;
    top: 35px;
    left: 215px;
    z-index: 4;
    animation-duration: 3s;
    animation-name: showreel-logo-3-animation;
}
@keyframes showreel-logo-3-animation{
    0%{
        -webkit-transform: translate(-100%, 85%) scale(0.8);
                transform: translate(-100%, 85%) scale(0.8);
    }
    10%{
        -webkit-transform: translate(-100%, 85%) scale(0.8);
                transform: translate(-100%, 85%) scale(0.8);
    }
    100%{
        -webkit-transform: translate(0%, 0%) scale(1);
                transform: translate(0%, 0%) scale(1);
    }
}
.showreel-logo-4{
    position: absolute;
    overflow: visible;
    width: 9px;
    top: 70px;
    left: 210px;
    z-index: 4;
    animation-duration: 4s;
    animation-name: showreel-logo-4-animation;
}
@keyframes showreel-logo-4-animation{
    0%{
        opacity: 0;
        -webkit-transform: translate(150%, -110%);
                transform: translate(150%, -110%);
    }
    58%{
        opacity: 0;
        -webkit-transform: translate(150%, -110%);
                transform: translate(150%, -110%);
    }
    59%{
        opacity: 1;
        -webkit-transform: translate(150%, -110%);
                transform: translate(150%, -110%);
    }
    100%{
        -webkit-transform: translate(0%, 0%);
                transform: translate(0%, 0%);
    }
}
.showreel-logo-5{
    position: absolute;
    overflow: visible;
    width: 7px;
    top: 84px;
    left: 205px;
    z-index: 4;
    animation-duration: 4s;
    animation-name: showreel-logo-5-animation;
}
@keyframes showreel-logo-5-animation{
    0%{
        opacity: 0;
        -webkit-transform: translate(280%, -130%);
                transform: translate(280%, -130%);
    }
    53%{
        opacity: 0;
        -webkit-transform: translate(280%, -130%);
                transform: translate(280%, -130%);
    }
    54%{
        opacity: 1;
        -webkit-transform: translate(280%, -130%);
                transform: translate(280%, -130%);
    }
    100%{
        -webkit-transform: translate(0%, 0%);
                transform: translate(0%, 0%);
    }
}
.showreel-logo-6{
    position: absolute;
    overflow: visible;
    width: 5px;
    top: 105px;
    left: 215px;
    z-index: 4;
    animation-duration: 4s;
    animation-name: showreel-logo-6-animation;
}
@keyframes showreel-logo-6-animation{
    0%{
        opacity: 0;
        -webkit-transform: translate(100%, -180%);
                transform: translate(100%, -180%);
    }
    40%{
        opacity: 0;
        -webkit-transform: translate(100%, -180%);
                transform: translate(100%, -180%);
    }
    41%{
        opacity: 1;
        -webkit-transform: translate(100%, -180%);
                transform: translate(100%, -180%);
    }
    100%{
        -webkit-transform: translate(0%, 0%);
                transform: translate(0%, 0%);
    }
}
.showreel-quote{
    position: absolute;
    max-height: 15%;
    max-width: 90%;
    bottom: calc(20vh);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    animation-duration: 6s;
    animation-name: showreel-quote-animation;
}
@keyframes showreel-quote-animation{
    0%{
        opacity: 0;
    }
    20%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.showreel-quote-cite{
    position: absolute;
    max-height: 25px;
    max-width: 80%;
    bottom: 130px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    animation-duration: 6s;
    animation-name: showreel-quote-cite-animation;
}
@keyframes showreel-quote-cite-animation{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%, -150%);
                transform: translate(-50%, -150%);
    }
    30%{
        opacity: 0;
    }
    100%{
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}
.scrolldown{
    left: 50%;
    -webkit-transform:translateX(-25px);
        -ms-transform:translateX(-25px);
            transform:translateX(-25px);
    background-color: transparent;
    z-index: 80;
    position: absolute;
    bottom: 25px;
    scale: 100% 90%;
}
@-webkit-keyframes scrolldown{
    0%{
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
        opacity: 0.7;
    }
    50%{
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
        opacity: 0.2;
    }
    100%{
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
        opacity: 0.7;
    }
}
@keyframes scrolldown{
    0%{
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
        opacity: 0.7;
    }
    50%{
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
        opacity: 0.2;
    }
    100%{
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
        opacity: 0.7;
    }
}
#scrolldown1{
    -webkit-animation: scrolldown 1.5s ease-in-out infinite;
            animation: scrolldown 1.5s ease-in-out infinite;
    stroke: var(--accent1trans);
}
#scrolldown2{
    -webkit-animation: scrolldown 1.5s ease-in-out infinite 0.15s;
            animation: scrolldown 1.5s ease-in-out infinite 0.15s;
    stroke: var(--accent1trans);
}

/*--------Nieuws--------------------*/
#section-nieuws {
    padding-top: 20px;
    margin-top: 0px;
    border-radius: 10px;
    padding-bottom: 40px;
}
#section-nieuws h2 {
    margin-bottom: 20px;
    color: white;
}
.news-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.news-post {
    display: none;
    background: var(--accent1);
    outline: 1px solid var(--accent2);
    border-radius: 18px;
    padding: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 5px var(--accent2trans);
}
.news-post.active {
    display: block;
}
.news-post-title {
    font-family: 'Folio Std Bold Condensed', sans-serif;
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--background);
}
.news-post-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: var(--backgroundtrans);
    margin-bottom: 15px;
}
.news-post-content {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    line-height: 1.8;
    color: var(--background);
}
.news-post-content p {
    margin-bottom: 15px;
}
.news-post-content a {
    color: var(--backgroundtrans);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    transition: color 0.3s ease;
}
.news-post-content a:hover{
    color: var(--accent2trans);
}
.news-post-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
}

/*--------Bio--------------------*/
#section-bio{
    background-color: var(--accent1);
    border-radius: 10px;
    padding-bottom: 0px;
}
#section-bio h2{
    margin-bottom: 20px;
}
#section-bio h3{
    margin-bottom: 5px;
}
#section-bio p{
    color: var(--background-text);
}
#section-bio p i{
    color: var(--background-text);
    font-weight: 700;
}
.section-bio-image{
    margin-top: 30px;
    width: 80%;
    max-width: 500px;
    height: auto;
    -webkit-filter: drop-shadow(1px 1px 1px var(--blacktrans));
            filter: drop-shadow(1px 1px 1px var(--blacktrans));
    mask-image: linear-gradient(
        to bottom,
        black 95%,
        transparent 100%
    );
}

form input.email {
    width: 300px;
    height: 50px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent1);
    border-radius: 8px;
    font-size: 16px;
    color: var(--background);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    margin: 10px 0;
}
form input.email::placeholder {
    color: var(--background);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-transform: none;
}
form input.email:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(255, 241, 79, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}
form input.email:hover {
    border-color: var(--accent2trans);
    background-color: rgba(255, 255, 255, 0.12);
}
form input.email:focus {
    animation: subtleGlow 1.5s infinite alternate;
}
@keyframes subtleGlow {
    0% {
        box-shadow: 0 0 0 3px rgba(255, 241, 79, 0.2);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(255, 241, 79, 0.35);
    }
}

/*-------- Voorwie Sectie --------------------*/
#section-voorwie {
    background-color: white;
    background-image: url(../images/background.png);
    border-radius: 10px;
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}
#section-voorwie .content-wrapper {
    width: 75%;
    margin: 0 auto;
    text-align: left;
}
#section-voorwie h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--backgroundtrans);
    text-align: center;
    margin-bottom: 50px;
}
.voorwie-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.voorwie-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.voorwie-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent2);
    font-weight: bold;
    font-size: 22px;
    background-color: var(--backgroundtrans);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.voorwie-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--accent3trans);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.voorwie-text.animate-active {
    animation-duration: 0.7s;
    animation-name: voorwie-animation;
    animation-fill-mode: forwards;
    opacity: 1;
}
@keyframes voorwie-animation {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.voorwie-text strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--backgroundtrans);
}
.voorwie-text strong u {
    font-family: 'Poppins', sans-serif;
    color: var(--background);
    text-decoration-color: var(--accent3trans);
}
#section-voorwie h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--background);
    text-align: center;
    margin: 50px 0 20px;
    font-style: italic;
}
.voorwie-conclusion {
    font-size: 18px;
    line-height: 1.7;
    color: var(--background);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.section-voorwie-image {
    display: block;
    margin: 40px auto 0;
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.section-voorwie-image:hover {
    transform: scale(1.02);
}

/*--------Boek--------------------*/
#section-boek{
    background-color: white;
    background-image: url(../images/background.png);
    border-radius: 10px;
    padding-bottom: 15px;
}
#section-boek h2{
    margin-bottom: 20px;
}
#section-boek h3{
    margin-bottom: 5px;
}
#section-boek p{
    color: var(--background);
    margin-bottom: 10px;
}
#section-boek p i{
    color: var(--background);
    font-weight: 700;
}
#section-boek p strong{
    color: var(--background);
    font-size: 18px;
}

/*--------Contact--------------------*/
#section-contact{
    padding-bottom: 5px;
}
form{
    padding: 0px;
    color:whitesmoke;
    background-color: var(--navyblue);
}
form p{
    padding-top: 5px;
    padding-bottom: 5px;
}
form p label{
    display: block;
}
form input.email{
    width: 300px;
    height: 30px;
    background-color: whitesmoke;
    border-radius: 5px;
    font-size: medium;
}
form textarea{
    width: 50%;
    height: 100px;
    background-color: whitesmoke;
    border-radius: 5px;
    font-size: medium;
}
.error{
    font-size: medium;
    font-weight: 600;
    color: red;
}
.confirmation{
    font-size: medium;
    font-weight: 600;
    color: green;
}
#section-contact form {
    padding: 20px;
    color: whitesmoke;
    background-color: var(--backgroundtrans);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}
#section-contact form p {
    padding: 10px 0;
    text-align: left;
}
#section-contact form p label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
#section-contact form input.email {
    width: 90%;
    max-width: 600px;
    height: 50px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent1);
    border-radius: 8px;
    font-size: 16px;
    color: var(--foreground);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    margin: 5px 0;
}
#section-contact form input.email::placeholder {
    color: var(--foreground);
    opacity: 0.7;
}
#section-contact form input.email:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(255, 241, 79, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}
#section-contact form textarea.message {
    width: 90%;
    max-width: 600px;
    height: 150px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent1);
    border-radius: 8px;
    font-size: 16px;
    color: var(--foreground);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    margin: 5px 0;
    resize: vertical;
}
#section-contact form textarea.message::placeholder {
    color: var(--foreground);
    opacity: 0.7;
}
#section-contact form textarea.message:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(255, 241, 79, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}
#section-contact .hero-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--accent1);
    padding: 12px 34px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    border-style: none;
    border-radius: 10px;
    width: auto;
    transition: all 0.3s ease;
}
#section-contact .hero-btn:hover {
    background: var(--accent1trans);
    box-shadow: 0 0 5px 0px var(--accent2);
    color: var(--accent2);
}
#section-contact #results .success {
    color: green;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}
#section-contact #results .error {
    color: red;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}
#section-contact #contact-logo {
    margin: 25px auto;
    display: block;
    max-height: 280px;
    max-width: 280px;
}
.submit-container {
    text-align: center !important;
    margin: 15px 0;
}
#section-contact h2, #section-contact h3{
    color: var(--accent1);
}
#section-contact p{
    font-weight: 500;
}
#section-contact a{
    text-decoration: none;
}
#section-contact a:hover{
    color: var(--accent2);
}
.section-contact-row{
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
}
#contact-logo{
    margin: 25px;
    max-height: 280px;
    max-width: 280px;
    height: 100%;
}
.social-media-links{
    margin-top: 10px;
    
}
.social-media-link{
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 20px;
    border-radius: 50%;
    background-color: transparent;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
}
.social-media-link:hover{
    -webkit-box-shadow: 0 0 5px 0px var(--accent2);
    box-shadow: 0 0 5px 0px var(--accent2);
    background-color: var(--accent2) !important;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
}
#tel-link{
    font-size: 18px;
    font-weight: 500;
}
#email-link{
    display: block;
    font-size: 18px;
    font-weight: 500;
}
#instagram-link{
    background-image: url(../images/Logo_Social_Instagram.svg?ver=2);
    background-size: contain;
    background-color: white;
}
#facebook-link{
    background-image: url(../images/Logo_Social_Facebook.svg);
    background-size: contain;
}
#whatsapp-link{
    background-image: url(../images/Logo_Social_Whatsapp.svg);
    background-size: contain;
}

/*--------Footer---------------------*/
footer{
    padding: 5px;
}
footer p{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #a9a9a9;
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
}
footer a{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    padding: 3px 0px;
    font-size: 12px;
    text-decoration: none;
}
#provity-link-svg1{
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
    position: absolute;
    left: -10px;
    bottom: 7px;
}
#provity-link-svg2{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    position: absolute;
    right: -10px;
    bottom: 7px;
}
/*--------Media queries--------------*/
/*--------Navigation query 1---------*/
@media screen and (min-width: 940px) {
    .nav-links ul li a::after{
        content: '';
        width: 0%;
        height: 3px;
        background: var(--accent2);
        display: block;
        margin: auto;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    .nav-links ul li a:hover::after{
        width: 100%;
    }
    .nav-links input{
        display: none;
    }
    #menu{
        background: var(--blacktrans);
        border-radius: 10px;
        -webkit-box-shadow: 0 0 2px 0px var(--accent2trans);
                box-shadow: 0 0 2px 0px var(--accent2trans);
    }
    #social-media-links-listitem{
        display: none;
    }
    #filler-listitem1{
        display: none;
    }
    #filler-listitem2{
        display: none;
    }
    #filler-listitem3{
        display: none;
    }
    #filler-listitem4{
        display: none;
    }
    #filler-listitem5{
        display: none;
    }
}
/*--------Navigation query 2---------*/
@media screen and (max-width: 940px) {
    nav{
        top: 0px;
        right: 0px;
    }
    .nav-links ul{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-line-pack: center;
            align-content: center;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a:hover{
        text-decoration: underline;
        -webkit-text-decoration-color: var(--accent2);
                text-decoration-color: var(--accent2);
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
    }
    .nav-links{
        -webkit-box-flex: 0;
            -ms-flex: 0;
                flex: 0;
        display: block;
        position: absolute;
        top: 33px;
        right: 27px;
        z-index: 1;
        -webkit-user-select: none;
        -moz-user-select: none;
         -ms-user-select: none;
             user-select: none;
    }
    #nav-language .nav-language-lang{
        padding: 15px;
    }
    .nav-links input{
        display: block;
        width: 45px;
        height: 45px;
        position: absolute;
        top: -4px;
        left: -8px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }
    .nav-links span{
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: white;
        -webkit-box-shadow: 1px 1.5px 2px 0px var(--accent1trans);
                box-shadow: 1px 1.5px 2px 0px var(--accent1trans);
        border-radius: 3px;
        z-index: 1;
        -webkit-transform-origin: 4px 0px;
            -ms-transform-origin: 4px 0px;
                transform-origin: 4px 0px;
        -webkit-transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease,
                    -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease,
                    -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -o-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease,
                    -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        
    }
    .nav-links span:first-child{
        -webkit-transform-origin: 0% 0%;
            -ms-transform-origin: 0% 0%;
                transform-origin: 0% 0%;
    }
    .nav-links span:nth-last-child(2){
        -webkit-transform-origin: 0% 100%;
            -ms-transform-origin: 0% 100%;
                transform-origin: 0% 100%;
    }
    .nav-links input:checked ~ span{
        opacity: 1;
        -webkit-transform: rotate(45deg) translate(-2px, -1px);
            -ms-transform: rotate(45deg) translate(-2px, -1px);
                transform: rotate(45deg) translate(-2px, -1px);
    }
    .nav-links input:checked ~ span:nth-last-child(3){
        opacity: 0;
        -webkit-transform: rotate(0deg) scale(0.2, 0.2);
            -ms-transform: rotate(0deg) scale(0.2, 0.2);
                transform: rotate(0deg) scale(0.2, 0.2);
    }
    .nav-links input:checked ~ span:nth-last-child(2){
        -webkit-transform: rotate(-45deg) translate(0, -1px);
            -ms-transform: rotate(-45deg) translate(0, -1px);
                transform: rotate(-45deg) translate(0, -1px);
    }
    #menu{
        top: 17px;
        left: 10px;
        position: absolute;
        height: 100vh;
        width: 100vw;
        text-align: center;
        background: var(--blacktrans2);
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        -webkit-transform: translate(50px, -50px);
            -ms-transform: translate(50px, -50px);
                transform: translate(50px, -50px);
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        transition: -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -o-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 0;
    }
    .nav-links input:checked ~ #menu{
        -webkit-transform: translate(calc(-100% + 50px), -50px);
            -ms-transform: translate(calc(-100% + 50px), -50px);
                transform: translate(calc(-100% + 50px), -50px);
    }
}
/*--------Responsive queries---------*/
@media screen and (max-height:750px) {
    /*--Showreel--*/
    .showreel-logo{
        top: 50px;
        transform: translateX(-50%) scale(0.8);
    }
}
@media screen and (max-height:500px) {
    /*--Showreel--*/
    .showreel-logo{
        top: 50px;
        transform: translateX(-50%) scale(0.5);
    }
    .showreel-quote{
        display: none;
    }
    .showreel-quote-cite{
        display: none;
    }
}

@media screen and (max-width: 940px) {
    /*--General--*/
    .content-wrapper, #section-bio .content-wrapper, #section-voorwie .content-wrapper, #section-boek .content-wrapper{
        width: 90%;
    }
    .section{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /*--Showreel--*/
    .showreel-logo{
        top: 50px;
    }

    /*--Quote--*/
    .showreel-quote{
        bottom: 180px;
    }
    .showreel-quote-cite{
        bottom: 100px;
    }

    /*--Bio--*/
    form input.email {
        width: 80%;
        max-width: 350px;
        height: 45px;
    }

    /*--Voorwie--*/
    #section-voorwie .content-wrapper {
        width: 90%;
    }
    .voorwie-text {
        font-size: 17px;
    }
    #section-voorwie h2 {
        font-size: 32px;
    }
    #section-voorwie h3 {
        font-size: 24px;
    }

    /*--Contact--*/
    .section-contact-row{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .section-contact-col{
        width: 100%;
        margin: auto;
        display: block;
        text-align: center;
    }
    #section-contact-img{
        text-align: center;
        padding-right: 0px;
    }
    #section-contact-img img{
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .social-media-link{
        display: inline-block;
        height: 50px;
        width: 50px;
        margin: 15px;
    }
    #section-contact form {
        width: 90%;
        padding: 15px;
    }
}
@media screen and (max-width: 940px) and (min-height: 500px) {
    /*--Header--*/
    .scrolldown{
        display: none;
    }
}
