/**************************************************************************************
**
** INIT VARS
**
***************************************************************************************/

:root{
    --base-color: #ee2c24;
    --base-color-dark: #b0291e;
    --base-font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --prompt-font-family: "Prompt", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --robot-font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --front-font-family: "Mukta", "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --menu-font-family: "Mukta", "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --bigfront-font-family: "Prompt", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
https://www.w3schools.com/cssref/css_selectors.asp
*/

/**************************************************************************************
**
** COMMON
**
***************************************************************************************/

.pagewrapper{
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
    color: black;
    font-family: var(--front-font-family);
}

a{transition: all 0.6s ease;}

.center{
    text-align: center;
}

@media only screen {
    .centeronsmall{text-align: center;}
}

@media only screen and (min-width: 40em) {
    .centeronsmall{text-align: left;}
}

@media only screen and (min-width: 64em) {
    .centeronsmall{text-align: left;}
}

@media only screen and (min-width: 90em) {
    .centeronsmall{text-align: left;}
}


/**************************************************************************************
**
** PRELOADER
**
***************************************************************************************/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #FFF;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;

    align-items: center;
}

#preloader > div {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid var(--base-color); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/**************************************************************************************
**
** HEADER & MENU
**
***************************************************************************************/

header{
    background-color: white;
    display: flex;
    position: fixed;
    z-index: 99;
    top: 0px;
    box-shadow: 0px 0px 2px 1px #E2E2E2;
}

#logo{
    float: left;
}

.topmenu{
    float: left;
    flex-grow: 1;
    text-align: right;
    min-width: 60px;
}

/* Idea with checkbox toggler by Traversy Media */
/* https://codepen.io/bradtraversy/pen/vMGBjQ */

.topmenu .toggler {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.topmenu .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0 1rem 0 1rem;
    align-items: center;
    justify-content: center;
    background: white;
}

.topmenu .toggler:checked + .hamburger {
    background: white;
}

.topmenu .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}



.topmenu .hamburger > div::before,
.topmenu .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

.topmenu .hamburger > div::after {
    top: 10px;
}

/* probleempje met android */
/*.topmenu .toggler:hover ~ .hamburger > div {
    background: var(--base-color);
}*/


/* Toggler Animation */
.topmenu .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
}

  /* Turns Lines Into X */
.topmenu .toggler:checked + .hamburger > div:before,
.topmenu .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.topmenu .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}

nav a{
    font-family: var(--menu-font-family);
    color: #666666;
}

.contactmenu{
    background-color: var(--base-color);
    color: white;
    padding: 0 15px;
    border-radius: 6px;
}

.contactmenu:hover{
    background-color: var(--base-color-dark);
    color: yellow;
}


.topmenu .toggler:checked ~ nav {
    /*top: 50vh;
    left: 0px;
    transform: translate(0,-50%);*/
    background-color: white;
    transition-duration: 0.4s;
    width: 100%;
    z-index: 2;
}

.topmenu .toggler:checked ~ nav a {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
}


.curtain{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: rgba(0, 0, 0, .4);
    display: none;
    transition: all 0.4s ease;
}

.topmenu .toggler:checked ~ .curtain {
    display: block;
}



@media only screen {
    header{
        height: 50px;
        width: 100%;
    }
    #logo{
        max-width: 400px;
        max-height: 50px;
        margin: 0 30px 0 10px;
    }
    #logo a img{
        max-height: 46px;
        margin: 3px 0px 1px 0px;
    }
    nav{
        position: absolute;
        top: -9999px;
    }
    .topmenu .toggler:checked ~ nav {
        top: 50px;
        left: 0px;
        padding: 20px;
    }
    nav a{
        font-size: 16px;
        line-height: 46px;
    }
    nav a{
        margin-right: 20px;
    }
    .contactmenu {
        color: #000;
        background: none;
    }
    .topmenu .toggler {
        height: 50px;
        width: 60px;
        display: block;
    }
    .topmenu .hamburger {
        height: 50px;
        width: 60px;
        display: flex;
    }
}

@media only screen and (min-width: 40em) {
    header{
        height: 54px;
        width: 100%;
    }
    #logo{
        max-width: 400px;
        max-height: 54px;
        margin: 0 30px 0 10px;
    }
    #logo a img{
        max-height: 50px;
        margin: 2px 0px 2px 0px;
    }
    nav{
        position: absolute;
        top: -9999px;
    }
    .topmenu .toggler:checked ~ nav {
        top: 50px;
        left: 0px;
        padding: 20px;
    }
    nav a{
        font-size: 18px;
        line-height: 50px;
        margin: 2px 0px 2px 0px;
    }
    nav a{
        margin-right: 20px;
    }
    .contactmenu {
        color: #000;
        background: none;
    }
    .topmenu .toggler {
        height: 50px;
        width: 60px;
        display: block;
    }
    .topmenu .hamburger {
        height: 50px;
        width: 60px;
        display: flex;
    }
}

@media only screen and (min-width: 64em) {
    header{
        height: 60px;
        width: 100%;
    }
    #logo{
        max-width: 400px;
        max-height: 60px;
        margin: 0 45px 0 15px;
    }
    #logo a img{
        max-height: 54px;
        margin: 3px 0px 3px 0px;
    }
    .topmenu .toggler:checked ~ nav {
        padding: 20px;
    }
    nav{
        position: relative;
        top: 0;
    }
    nav a{
        font-size: 20px;
        line-height: 60px;
    }
    nav a{
        margin-right: 20px;
    }
    .contactmenu{
        background-color: var(--base-color);
        color: white;
    }
    .topmenu .toggler {
        display: none;
    }
    .topmenu .hamburger {
        display: none;
    }
}

@media only screen and (min-width: 90em) {
    header{
        height: 66px;
        width: 100%;
    }
    #logo{
        max-width: 400px;
        max-height: 66px;
        margin: 0 60px 0 15px;
    }
    #logo a img{
        max-height: 60px;
        margin: 3px 0px 3px 0px;
    }
    .topmenu .toggler:checked ~ nav {
        padding: 20px;
    }
    nav{
        position: relative;
        top:0;
    }
    nav a{
        font-size: 24px;
        line-height: 66px;
    }
    nav a{
        margin-right: 20px;
    }
    .contactmenu{
        background-color: var(--base-color);
        color: white;
    }
    .topmenu .toggler {
        display: none;
    }
    .topmenu .hamburger {
        display: none;
    }
}


/**************************************************************************************
**
** HOME
**
***************************************************************************************/


#frontpage{
    position: relative;
    width: 100%;
}

#frontpagepanel-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;

    align-items: center;
    
}

#scrollformore{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50px;
    text-align: center;
}

#scrollformore img{
    max-height: 24px;
}

#frontpagetext{
    grid-area: fptext;
}

#frontpagevisual{
    grid-area: fpvisual;
}


#frontpagetext h1{
    color:#CBCDCF;
    font-family: var(--bigfront-font-family);
}


#frontpagetext p{
    color: black;
    font-family: var(--front-font-family);
}

#frontpagetext p a{
    font-weight: 300;
    background-color: var(--base-color);
    color: white;
    padding: 10px 20px 10px 20px;
    border-radius: 6px;
}

#frontpagetext p a:hover{
    background-color: var(--base-color-dark);
    color: yellow;
}



@media only screen {
    #frontpage{
        height: calc(100vh - 46px);
        margin-top: 46px;
    }
    #frontpagepanel{
        max-width: 96vw;
        padding: 0px 10px 0px 10px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: 
        "fpvisual"
        "fptext";
    }
    #scrollformore{
        display: none;
    }
    #frontpagevisual{
        margin: 0px 0px 10px 0px;
    }
    #frontpagetext{
        text-align: center;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 24px;
    }
    #frontpagetext p{
        margin-top: 20px;
        font-weight: 400;
        font-size: 20px;
    }
}

@media only screen and (min-width: 40em) {
    #frontpage{
        height: calc(100vh - 54px);
        margin-top: 54px;
    }
    #frontpagepanel{
        position: relative;
        padding: 0px 20px 0px 20px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: 
        "fpvisual"
        "fptext";
    }
    #scrollformore{
        display: none;
    }
    #frontpagevisual{
        margin: 0px 0px 30px 0px;
    }
    #frontpagetext{
        text-align: center;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 40px;
    }
    #frontpagetext p{
        margin-top: 30px;
        font-weight: 400;
        font-size: 24px;
    }
}

@media only screen and (min-width: 64em) {
    #frontpage{
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
    #frontpagepanel{
        position: relative;
        padding: 0px 20px 0px 20px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: 
        "fptext fpvisual";
    }
    #scrollformore{
        display: block;
    }
    #frontpagevisual{
        margin: 0px 0px 0px 0px;
    }
    #frontpagetext{
        text-align: left;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 40px;
    }
    #frontpagetext p{
        margin-top: 30px;
        font-weight: 400;
        font-size: 32px;
    }
}

@media only screen and (min-width: 75em) {
    #frontpage{
        height: calc(100vh - 66px);
        margin-top: 66px;
    }
    #frontpagepanel{
        position: relative;
        padding: 0px 20px 0px 20px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: 
        "fptext fpvisual";
    }
    #scrollformore{
        display: block;
    }
    #frontpagevisual{
        margin: 0px 0px 0px 0px;
    }
    #frontpagetext{
        text-align: left;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 50px;
    }
    #frontpagetext p{
        margin-top: 30px;
        font-weight: 400;
        font-size: 36px;
    }
}


@media only screen and (min-width: 90em) {
    #frontpage{
        height: calc(100vh - 66px);
        margin-top: 66px;
    }
    #frontpagepanel{
        position: relative;
        padding: 0px 20px 0px 20px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 45% 55%;
        grid-template-areas: 
        "fptext fpvisual";
    }
    #scrollformore{
        display: block;
    }
    #frontpagevisual{
        margin: 0px 0px 0px 0px;
    }
    #frontpagetext{
        text-align: left;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 50px;
    }
    #frontpagetext p{
        margin-top: 30px;
        font-weight: 400;
        font-size: 36px;
    }
}


@media only screen and (min-width: 120em) {
    #frontpage{
        height: calc(100vh - 66px);
        margin-top: 66px;
    }
    #frontpagepanel{
        position: relative;
        padding: 0px 20px 0px 20px;
        max-width: 80vw;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 45% 55%;
        grid-template-areas: 
        "fptext fpvisual";
    }
    #scrollformore{
        display: block;
    }
    #frontpagevisual{
        margin: 0px 0px 0px 0px;
    }
    #frontpagetext{
        text-align: left;
    }
    #frontpagetext h1{
        font-weight: bold;
        font-size: 60px;
    }
    #frontpagetext p{
        margin-top: 30px;
        font-weight: 400;
        font-size: 36px;
    }
}

/**************************************************************************************
**
** CLIENTS
**
***************************************************************************************/

#clients{
    border-top: #E2E2E2 1px solid;
}

#clientlist{
    width: 100%;
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
}


/**************************************************************************************
**
** GREY BANNER
**
***************************************************************************************/

#greyback{
    /*background-color: var(--base-color);*/
    background-color: #F6F9FA;
    border-top: #E2E2E2 1px solid;
    border-bottom: #E2E2E2 1px solid;
}

#greyinner{
    width: 100%;
    max-width: 64em;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 20px 20px;
}


/**************************************************************************************
**
** CREDITS
**
***************************************************************************************/


#projectweb-be{
    background-color: #F6F9FA;
    border-top: #E2E2E2 1px solid;
}

#projectweb-be section{
    width: 100%;
    max-width: 64em;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px 0px 20px;
}


/**************************************************************************************
**
** MAIN
**
***************************************************************************************/

main{
    max-width: 64em;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 20px 20px;
}


.pagetitle{
    color: black;
    font-family: var(--front-font-family);
    font-weight: bold;
    color: var(--base-color);
}

.summary{
    font-family: var(--base-font-family);
    font-weight: 300;
}

.maintext > p{
    font-family: var(--base-font-family) !important;
    color: #666666 !important;
}

.maintext.black > p{ /* https://www.w3schools.com/cssref/css_selectors.asp */
    color: black !important;
}

/*main p{
    font-family: var(--base-font-family);
    line-height: 36px;
    font-size: 18px;
}*/

.partners{
    color: #CCC;
    display: block;
    /*border-bottom: #CCC 1px solid;*/
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.zexie{
    position: relative;
}

.zexie-title{
    grid-area: zexietitle;
}

.zexie-body{
    grid-area: zexiebody;
}

.zexie-pic{
    grid-area: zexiepic;
}

.zexie-pic > div > img{
    max-height: 700px;
}







@media only screen {
    .pagetitle{
        font-size: 26px;
    }
    .smallcompensator{
        height: 30px;
    }
    .zexie{
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: 
        "zexietitle"
        "zexiepic"
        "zexiebody";
    }
    .maintext > p{
        font-size: 14px !important;
        line-height: 32px !important;
    }
}

@media only screen and (min-width: 40em) {
    .pagetitle{
        font-size: 36px;
    }
    .smallcompensator{
        height: 30px;
    }
    .zexie{
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: 
        "zexietitle"
        "zexiepic"
        "zexiebody";
    }
    .maintext > p{
        font-size: 16px !important;
        line-height: 36px !important;
    }
}

@media only screen and (min-width: 64em) {
    .pagetitle{
        font-size: 46px;
    }
    .smallcompensator{
        height: 25px;
    }
    .zexie{
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: 
        "zexietitle zexiepic"
        "zexiebody zexiepic";
    }
    .maintext > p{
        font-size: 18px !important;
        line-height: 40px !important;
    }
}

@media only screen and (min-width: 90em) {
    .pagetitle{
        font-size: 60px;
    }
    .smallcompensator{
        height: 20px;
    }
    .zexie{
        display: grid;
        grid-template-columns: 60% 40%;
        grid-template-areas: 
        "zexietitle zexiepic"
        "zexiebody zexiepic";
    }
    .maintext > p{
        font-size: 18px !important;
        line-height: 44px !important;
    }
}

/**************************************************************************************
**
** FOOTER
**
***************************************************************************************/

footer{
    background-color: #000;
    border-top: #E2E2E2 1px solid;
}

footer section{
    max-width: 64em;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px 0px 20px;
}

.footerbutton{
    color: grey;
    font-family: var(--menu-font-family);
}

.footerbutton:hover{
    color: white;
}




@media only screen {
    .footerbutton:first-of-type{
        /*margin-right: 0px;*/
        display: block;
    }
    .js-pwcmb-notice-toggle{
        text-align: center !important;
        display: block;
    }
}

@media only screen and (min-width: 40em) {
    .footerbutton:first-of-type{
        /*margin-right: 30px;*/
        display: block;
    }
    .js-pwcmb-notice-toggle{
        text-align: right !important;
        display: block;
    }
}

@media only screen and (min-width: 64em) {
    .footerbutton:first-of-type{
        /*margin-right: 40px;*/
        display: block;
    }
    .js-pwcmb-notice-toggle{
        text-align: right !important;
        display: block;
    }
}

@media only screen and (min-width: 90em) {
    .footerbutton:first-of-type{
        /*margin-right: 50px;*/
        display: block;
    }
    .js-pwcmb-notice-toggle{
        text-align: right !important;
        display: block;
    }
}


/**************************************************************************************
**
** FORMULIER
**
***************************************************************************************/

.grecaptcha-badge { visibility: hidden; }

ul.Inputfields{
	list-style:none;
	padding:0;
	margin:0px;
}

#wrap_tegenvervelendeventjes{
	display: none;
}

.tegendevervelendeventjes{
	display:none;
}

p.InputfieldError{
	background-color: #e31f18;
	color: #FFFFFF;
	padding: 5px;
}


.InputfieldFieldset{
	border: #CCCCCC 1px solid;
	padding: 20px 20px 20px 20px;
    margin-bottom: 30px;
    background-color: #FFF;
}

.labeltitle{
	font-weight: bold;
}


#wrap_pa_surname, #wrap_pa_name, #wrap_pa_phone, #wrap_pa_email{
    float: left;
    
}


@media only screen {
	#wrap_pa_surname, #wrap_pa_phone{
		width: 100%;
	}
	#wrap_pa_name,  #wrap_pa_email{
		width: 100%; padding-left: 0px;
	}
}

@media print, screen and (min-width: 40em) {
	#wrap_pa_surname{
		width: 40%;
	}
	#wrap_pa_name{
		width: 60%;
		padding-left: 20px;
	}
	#wrap_pa_phone{
		width: 40%;
	}
	#wrap_pa_email{
		width: 60%;
		padding-left: 20px;
	}
}





/**************************************************************************************
**
** COOKIE CONSENT
**
***************************************************************************************/


h4.pwcmb-widget__title{
    color: #ff4539;
}

.js-pwcmb-allow-cookies {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 1rem 0;
	font-family: inherit;
	padding: 0.85em 1em;
	-webkit-appearance: none;
	border: 1px solid transparent;
	border-radius: 3px;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
	font-size: 0.9rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	background-color: var(--base-color);
	color: #fefefe; }
	[data-whatinput='mouse'] .pwcmb-widget__button {
	  outline: 0; }
	.js-pwcmb-allow-cookies:hover, .js-pwcmb-allow-cookies:focus {
	  background-color: var(--base-color-dark);
	  color: #fefefe; }

.js-pwcmb-manage-cookies, .js-pwcmb-save-pref{
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 1rem 0;
	font-family: inherit;
	padding: 0.85em 1em;
	-webkit-appearance: none;
	border: 1px solid transparent;
	border-radius: 3px;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
	font-size: 0.9rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	background-color: #CCCCCC !important;
}