:root {
    --darkgreen: #354E57;
    --lightgreen: #547665;
    --beige: #F3F0E9;
    --white: #FFFFFF;
    --black: #000000;
    --orange: #FF5421;

    --hero_title: 75px;
    --hero_title_lineheight: 68px;

    --big_title: 50px;
    --big_title_lineheight: 58px;
    
    --normal_title: 42px; /* paul: was 46px */
    --normal_title_lineheight: 51px;

    --small_title: 30px;
    --small_title_lineheight: 36px;

    --xsmall_title: 24px;
    --xsmall_title_lineheight: 30px;

    --xxsmall_title: 20px;
    --xxsmall_title_lineheight: 27px;
}


body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--lightgreen);
    line-height: 1.6;
    overflow-x: hidden;
}

input, 
select {
    font-family: 'DM Sans', sans-serif;
}

img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}

a,
input,
button,
.bhg_button,
.gform_footer input[type="submit"] {
    -webkit-transition: all .35s ease;
            transition: all .35s ease;
}

header #logo svg {
    -webkit-transition: all .25s ease;
            transition: all .25s ease;
}

a {
    text-decoration: none;
    color: var(--orange);
}

a:hover {
    color: var(--darkgreen);
}

.mobile_only {
    display: none;
}

li {
    list-style-position: inside;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--lightgreen);
}

h1,
#text h1 {
    font-size: var(--big_title);
    line-height: var(--big_title_lineheight);
}

h2 {
    font-size: var(--normal_title);
    line-height: var(--normal_title_lineheight);
}

h3 {
    font-size: var(--xsmall_title);
    line-height: var(--xsmall_title_lineheight);    
}

h4 {
    font-size: var(--xxsmall_title);
    line-height: var(--xxsmall_title_lineheight);    
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

#wachten {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4)
}

#wachten img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
}

/* BEGIN door paqqa */

.icon {
  height: 15px;  
  vertical-align: middle;
}

.iconLarge {
  height: 25px;  
  vertical-align: middle;
}

.formFieldExplanation {
  display: block;
  /*clear: both;*/
  font-size: smaller;
  font-style:italic;  
  /*color: #272727;*/
}

.errorExplanation {
  display: block;
  max-width: 450px;
  font-size: smaller;
  color: red;
  /*border-bottom: 1px solid red;*/
  margin-bottom: 10px;
  margin-top: -10px;
}

.fout, .input-fout {
	border: 2px solid red !important;
	background-color: #ffe8e8 !important; /*lichtrood*/
}

.rood {
	color: red!important;
}
.groen {
	color: green!important;
}
.oranje {
	color: orange!important;
}
.blauw {
  color: blue!important;
}
.grijs {
  color: gray!important; 
}
.vet {
	font-weight: bold!important;
}
.cursief {
	font-style: italic!important;	
}

.large {
	font-size: large;
}
.larger {
	font-size: larger;
}
.small {
	font-size: small;
}
.smaller {
	font-size: smaller;
}

.clickable {
	cursor: pointer;
}
.underline {
	text-decoration: underline;
}

/* alignment left, right of centered */
.centered {
  text-align: center!important;  
}

.left {
  text-align: left!important; 
}

.right {
  text-align: right!important; 
}

.noWrap, .nowrap {
	white-space: nowrap;
}

.mobileOnly, .tabletOnly {
  display: none !important;
}
.noDesktop {
  display: none; 
}

/* ------------------------------------------------------------------------------------------------- bericht */
div#bericht {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  height: auto;
}
div#bericht div {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: white;
  height: auto;
  min-height: 50px;
  padding: .5% 1%;
}  

div#bericht div.negatief {
  color: red;
  font-weight: bold;
  background: white;
  border-bottom: 2px solid red;
  border-top: none;
  box-shadow: 5px 5px 10px gray;
}

div#bericht div.positief {
  color: green;
  font-weight: bold;
  background: white;
  border: 2px solid green;
  border-top: none;
}

div#bericht div.waarschuwend {
  color: orange;
  font-weight: bold;
  background: white;
  border: 2px solid orange;
  border-top: none;
}

span#bericht_sluiten {
  display: block;
  clear: both;
  width: 100%;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
}

/* END door paqqa */


/* Grid */

.row {
    position: relative;
    padding-left: 45px;
    padding-right: 45px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

#inhoud {
    margin-top: 78px;
}

/* Header */

#header_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-weight: 700;
    background: var(--beige);
    z-index: 9;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

#header_wrapper .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	padding-top: 15px;
    padding-bottom: 15px;
}

#header_logo img {
    width: auto;
    max-width: 200px;
}

#header_languages {
    display: none;
    float: left;
}

header nav ul {
    display: flex;
    margin-right: -10px;
}

header nav ul li {
    position: relative;
    padding: 0px 10px;
}

header nav ul li.active a {
	color: var(--orange);
}

header nav ul li a {
    position: relative;
    padding: 15px 0;
    font-size: 14px;
    line-height: 16px;
    color: var(--darkgreen);
    letter-spacing: calc(1em * 0.001 * 30);
}

header nav ul li a:after {
    position: absolute;
    display: block;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(.52,.01,.16,1);
    transition: transform 0.5s cubic-bezier(.52,.01,.16,1);
    bottom: -2px;
    left: 0;
    width: 100%;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-top: 1px solid;
    content: "";
    padding-bottom: inherit;
}

header nav li.current-menu-item a:after,
header nav ul li a:hover:after {
    backface-visibility: hidden;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.hamburger {
    display: none;
}


/* Buttons */

.qrorder_button {
    border-radius: 30px;
    font-size: 12px;
    /* height: 36px; 
    line-height: 34px;*/
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.qrorder_button_small {
    /* height: 31px; */
    line-height: 29px;
}

.qrorder_button_large {
    font-size: 15px;
    /* height: 41px; 
    line-height: 39px; */
    padding: 10px 40px;
}

.qrorder_main_button {
    color: var(--white);
    border: solid 1px var(--orange);
    background: var(--orange);
}

.qrorder_main_button:hover {
    color: var(--orange);
    background: var(--white);
}

.qrorder_main_button_green {
    color: var(--white);
    border: solid 1px var(--lightgreen);
    background: var(--lightgreen);
}

.qrorder_main_button_green:hover {
    color: var(--white);
    background: var(--orange);
    border: solid 1px var(--orange);
}

.qrorder_secondary_button {
    border: solid 1px var(--darkgreen);
    background: var(--white);
}

.qrorder_button.orange {
    color: var(--orange);
    border-color: var(--orange);
}

.qrorder_button.qrorder_button_outline {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.qrorder_button.qrorder_button_outline_green {
    color: var(--lightgreen);
    border: solid 1px;
    border-color: var(--lightgreen);
    background: transparent;
    margin-left: 20px;
}

.qrorder_secondary_button:hover,
.qrorder_button.orange:hover,
.qrorder_button.qrorder_button_outline:hover,
.qrorder_button.qrorder_button_outline_green:hover {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}



/* Resp. videos */

.responsive_vid_wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.responsive_vid_wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* basic section */
.basic-section {
    text-align: left;
    padding: 70px 0;
    background: var(--beige);
}
.basic-section .row {
    max-width: 800px;
}


/* Hero */

.hero {
    position: relative;
    /* height: 700px; */
}

.hero-content:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: var(--black); 

    /*
    background: -moz-linear-gradient(90deg, rgba(255,84,33,0.35) 0%, rgba(255,84,33,0.1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,84,33,0.35) 0%, rgba(255,84,33,0.1) 100%);
    background: linear-gradient(90deg, rgba(255,84,33,0.35) 0%, rgba(255,84,33,0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff5421",endColorstr="#ff5421",GradientType=1);
    */

    /*
    background: -moz-linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    background: -webkit-linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    background: linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#354e57",endColorstr="#ff5421",GradientType=1);
    */
}

.hero-content.has-color-overlay:before {
    opacity: 0.8;
    background: -moz-linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    background: -webkit-linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    background: linear-gradient(90deg, rgba(53,78,87,1) 0%, rgba(255,84,33,0.35) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#354e57",endColorstr="#ff5421",GradientType=1);
}

.hero img {
    object-fit: cover;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

.hero-content .row * {
    max-width: 750px;
}

.hero,
.hero h1,
.hero h2 {
    color: var(--white);
}

.hero .separator-line {
    width: 200px;
    display: block;
    border-top: solid 2px;
    margin: 20px 0;
}

.hero-content {
    /* position: absolute;
    bottom: -0;
    width: 100%; */
    padding-bottom: 80px;

    padding-top: 270px;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero .text_above_image h1 {
    font-size: var(--hero_title);
    line-height: var(--hero_title_lineheight);
    font-weight: 500;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight);
    font-weight: 400;
    margin-bottom: 7.5px;
}

.hero_intro_text {
    font-size: 28px;
    line-height: 38px;
    max-width: 700px;
    padding-top: 20px;
    padding-bottom: 100px;
}

.hero .qrorder_button {
    margin-top: 25px;
}


/* Intro */

.intro {
    text-align: center;
    padding: 70px 0;
    background: var(--beige);
}

.bigger-p {
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight);
}

.intro .row {
    max-width: 850px;
}

.intro h2 {
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight);
}


/* USP's */

.usps {
    padding: 70px 0;
    text-align: center;
}

.usps .row {
    max-width: 1100px;
}

.usps h3 {
    margin-bottom: 50px;
}

.usps ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.usps ul li {
    flex: 0 0 33.33%;
    margin-bottom: 25px;
}

.usps li p {
    max-width: 270px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.usps ul li svg {
    width: 45px;
    height: 45px;
    margin-bottom: -5px;
}

.usps ul li svg path,
.usps ul li svg polyline {
    fill: var(--orange);
}



/* How it works */

.howitworks {
    padding: 70px 0;
    text-align: center;
}

.howitworks .row {
    max-width: 1100px;
}

.howitworks h2 {
    /* color: var(--orange); */
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight); 
    margin-bottom: 35px;
}

.howitworks ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.howitworks ul li {
    flex: 0 0 50%;
    margin-bottom: 25px;
}

.howitworks ul li h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.howitworks li p {
    padding-left: 35px;
    padding-right: 35px;
    margin-left: auto;
    margin-right: auto;
}

.howitworks ul li svg {
    width: 65px;
    height: 65px;
    margin-bottom: -5px;
}

.howitworks ul li svg path,
.howitworks ul li svg polyline {
    fill: var(--orange);
}



/* Steps */

.steps {
    padding: 70px 0;
    display: none; /* verborgen 20240729 */
}


/* Call to action */

.call_to_action {
    padding: 70px 0;
    background: var(--lightgreen);
    color: var(--white);
}

.call_to_action .row {
    display: flex;
    flex-wrap: wrap;
}

.cta_content,
.cta_images {
    position: relative;
    flex: 0 0 50%;
}

.cta_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta_content_inner {
    padding-right: 100px;
}

.cta_content_inner h2 {
    color: var(--white);
}

.cta_content_inner p a {
    color: var(--white);
    text-decoration: underline;
}

.cta_content_inner .qrorder_button {
    margin-top: 25px;
}

.cta_images img:nth-child(1) {
    max-width: 80%;
    padding-bottom: 80px;
}

.cta_images img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 65%;
}

.cta_images .video {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
}




/* FAQ */

.faqs {
    background: var(--beige);
    padding: 70px 0;
}

.faq_toggles {
    margin: 100px 0;
}

.faq_toggles_outer {
    max-width: 645px;
    max-width: 850px; /* door paqqa 20240729 */
    margin: 0 auto;
}

.faq_toggles_outer h2 {
    color: var(--orange);
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight); 
    margin-bottom: 35px;
}

.faq_toggle span {
    font-size: 18px;
    line-height: 1.3;
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-decoration: none;
    border-bottom: solid 1px var(--lightgreen);
    cursor: pointer;
    color: var(--lightgreen);
    font-weight: 700;
}

.faq_toggle span svg {
    /* position: absolute;
    top: 25px;
    right: 20px; 
    margin: 0 20px;
    width: 25px;
    min-width: 25px;
    height: 25px; */
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.faq_toggle span.active svg,
.faq_toggle span.active:after {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.faq_toggle_content {
    margin-top: 20px;
    color: var(--lightgreen);
}

.faq_toggle_content ul {
    padding: 0;
}

/*
.faq_toggle_content li {
    position: relative;
    list-style: none;
    padding-left: 35px;
}

.faq_toggle_content li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    width: 15px;
    height: 16px;
    background-image: url(img/arrow_list_red.svg);
    background-repeat: no-repeat;
    background-position: center;
}
*/



/* QRorder video */

.qrorder_video {
    position: relative;
    background: url(images/hero/hero_04.jpg);
    background-position: center !important;
    background-size: cover !important;
}

.qrorder_video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(53, 78, 87);
    background: -moz-linear-gradient(90deg, rgba(53, 78, 87, 0.75) 0%, rgba(255, 84, 33, 0.65) 100%);
    background: -webkit-linear-gradient(90deg, rgba(53, 78, 87, 0.75) 0%, rgba(255, 84, 33, 0.65) 100%);
    background: linear-gradient(90deg, rgba(53, 78, 87, 0.75) 0%, rgba(255, 84, 33, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#354e57",endColorstr="#ff5421",GradientType=1);
}

/*
.qrorder_video.active:before {
    background: rgb(53, 78, 87);
    background: -moz-linear-gradient(90deg, rgba(53, 78, 87, 0.9) 0%, rgba(255, 84, 33, 0.9) 100%);
    background: -webkit-linear-gradient(90deg, rgba(53, 78, 87, 0.9) 0%, rgba(255, 84, 33, 0.9) 100%);
    background: linear-gradient(90deg, rgba(53, 78, 87, 0.9) 0%, rgba(255, 84, 33, 0.9) 100%);
}
*/

.qrorder_video_video {
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .25s ease;
            transition: all .25s ease;
}

.qrorder_video_video.active {
    opacity: 1;
    z-index: 1;
}

.qrorder_video_content {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 0%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.qrorder_video_content h2 {
    color: var(--white);
    max-width: 500px;
    margin-bottom: 40px;
}

.block_video_play_button {
    width: 150px;
    height: 150px;
    border: solid 2px var(--white);;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.block_video_play_button:hover {
    opacity: 0.6;
}

.block_video_play_button svg {
    width: 70px;
    height: 70px;
    margin-left: 15px;
}




/* Forms */

.form-section {
    padding: 70px 0 ;
    background: var(--beige);
}

.form-section .row {
    max-width: 800px;
}

.form-section h1,
#contactformulierWrapper h2 {
    font-size: var(--small_title);
    line-height: var(--small_title_lineheight);
}

.form-section .form-fields-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-fields-wrapper.message-fields {
    align-items: flex-start;
}

.form-section form label {
    display: inline-block;
}

.form-section form input:not(.qrorder_button),
.form-section form textarea {
    flex: 0 0 50%;
    padding: 8px;
    border-radius: 5px;
    box-shadow: none;
    border: solid 1px var(--darkgreen);
}

.form-section form input[type="checkbox"] {
    flex: 0 0 auto;
}

.form-section form textarea {
    min-height: 100px;
}

.formFieldExplanation {
    font-size: 13px;
    font-style: italic;
    display: inline-block;
    margin-bottom: 10px;
}

.form-fields-wrapper.password-fields + .formFieldExplanation {
    max-width: 450px;
}

.form-fields-wrapper.terms-fields {
    justify-content: flex-start;
}

#avAgreed {
    margin: 0 10px 0 0;
}

.form-section .qrorder_button {
    margin-top: 20px;
}

.form-section #veilig {
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
}

/* Footer */

#voeter_menu {
    text-align: center;
    font-size: 85%;
}

#voeter_menu a {
    padding: 0 10px;
}

#credits {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: x-small;
}

.whatsapp-floater {
    position: fixed;
    bottom: 20px;
    right: 20px;
}


@media screen and (max-width: 1200px) {

header nav ul li {
    padding: 0px 7.5px;
}

header nav ul li a {
    font-size: 13px;
}

}



@media screen and (max-width: 1100px) {
 
.row {
    padding-left: 25px;
    padding-right: 25px;
}
  
.hamburger {
    display: block !important;
    position: absolute;
    top: 0px;
    right: 0;
    width: 78.5px;
    height: 78.5px;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 999;
    outline: 0;
    margin: 0;
    padding: 0;
    background: var(--darkgreen);
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

/*
header.scrolled .hamburger {
    top: -12px;
}
*/

.hamburger-box {
    width: 42px;
    height: 42px;
    display: inline-block;
    position: relative;
    top: 6px;
    left: 1px;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}

.hamburger-inner {
    width: 26px;
    left: 8px;
}

.hamburger-inner::before, 
.hamburger-inner::after {
    width: 18px;
    left: 4px;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    position: absolute;
    height: 1px;
    background-color: var(--white);
    border-radius: 4px;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

.hamburger-inner::before, 
.hamburger-inner::after {
    content: "";
    display: block; 
}

.hamburger-inner::before {
    top: -8px; 
}

.hamburger-inner::after {
    bottom: -8px; 
}


/*
header.open-menu {
    position: absolute !important;
}



header.open-menu {
    position: fixed;
    padding: 25px 0 !important;
}

header.open-menu #logo {
    z-index: 999;
}

header.open-menu  #logo svg {
    width: 100px;
    height: 60px;
}

.home header.open-menu #logo svg path#Path_4 {
    fill: var(--darkgreen);
}
*/

header.open-menu .hamburger {
    background: var(--beige);
}

header.open-menu .hamburger .hamburger-inner::before, 
header.open-menu .hamburger .hamburger-inner::after {
    width: 27px;
}

button.hamburger.hamburger--stand.is-active {
    top: -5px;
    right: 0px;
}

.hamburger--stand.is-active .hamburger-inner {
    height: 0px;
    transform: rotate(90deg);
    background-color: transparent;
    transition: transform 0.75s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
  
.hamburger--stand.is-active .hamburger-inner::before {
    background-color: var(--darkgreen);
    top: -2px;
    transform: rotate(-45deg);
    transition: top 0.75s 0.1s ease-out, transform 0.75s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--stand.is-active .hamburger-inner::after {
    background-color: var(--darkgreen);
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.75s 0.1s ease-out, transform 0.75s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header nav {
    position: fixed;
    top: 75px; 
    left: -110%;
    width: 100%;
    height: calc(100% - 75px);
    background: var(--beige);
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

header.open-menu nav {
    left: 0;
}

header nav ul {
    display: block;
    padding: 0;
    margin: 30px 0 0 !important;
}

header nav ul li {
    display: block;
    width: 100%;
    padding: 0 25px;
}

header nav ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 12.5px 0;
    color: var(--lightgreen) !important;
    /* font-size: 20px; */
    line-height: 24px;
    border-bottom: solid 1px;
}

header nav ul li.active a {
	color: var(--orange)!important;
	l
	font-weight: normal;
	padding-left: 10px;
}

header nav ul li a:before {
    content: '';
    position: absolute;
    top: 19px;
    right: 0;
    background: url(img/mobile_menu_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 13px;
    height: 14px;
}

/*
.hero {
    height: 550px;
}
*/

.hero-content {
    padding-top: 200px;
    padding-bottom: 40px;
}


	.noMobile {
     display: none !important; 
  }
  
  .noDesktop {
     display: inline-block !important; 
  }
  
  .mobileOnly {
    display: inline-block !important; 
  }

  .noDesktop {
    display: block!important; 
  }

  .noTablet {
    display: none !important; 
  }
  
  .tabletOnly {
    display: block; 
  }



}  


@media screen and (max-width: 1000px) {


:root {
    --hero_title: 60px;
    --hero_title_lineheight: 50px;

    --big_title: 40px;
    --big_title_lineheight: 48px;
    
    --normal_title: 36px;
    --normal_title_lineheight: 41px;

    --small_title: 24px;
    --small_title_lineheight: 31px;

    --xsmall_title: 20px;
    --xsmall_title_lineheight: 24px;
}

/*
.hero {
    height: 450px;
}
*/

.hero-content {
    padding-top: 80px; /*200px;*/
}

.hero-content .row * {
    max-width: 600px;
}

.hero .separator-line {
    width: 200px;
    display: block;
    border-top: solid 2px;
    margin: 10px 0;
}

.intro,
.usps,
.call_to_action,
.steps,
.faqs,
.form-section {
   padding: 50px 0;
}

.intro .row {
    max-width: 700px;
}

.cta_content {
    flex: 0 0 60%;
}

.cta_images {
    flex: 0 0 40%;
}

.cta_content_inner {
    padding-right: 40px;
}

.block_video_play_button {
    width: 80px;
    height: 80px;
}

.block_video_play_button svg {
    width: 30px;
    height: 30px;
    margin-left: 8px;
}

.qrorder_video_content {
    top: 25%;
}

.qrorder_video_content h2 {
    margin-bottom: 30px;
}

}




@media screen and (max-width: 767px) {

#header_logo img {
    max-width: 150px;
}

.hamburger {
    width: 66.25px;
    height: 66.25px;
}

#inhoud {
    margin-top: 66px;
}

header nav {
    top: 66px;
    height: calc(100% - 66px);
}

.qrorder_video .row {
    padding: 0;
}

.howitworks ul li {
    flex: 0 0 100%;
}

.cta_content, 
.cta_images {
    flex: 0 0 100%;
}

.cta_content {
    margin-bottom: 35px;
}

}


@media screen and (max-width: 500px) {

:root {
    --hero_title: 50px;
    --hero_title_lineheight: 60px;

    --big_title: 30px;
    --big_title_lineheight: 38px;
    
    --normal_title: 28px;
    --normal_title_lineheight: 36px;

    --small_title: 22px;
    --small_title_lineheight: 28px;

    --xsmall_title: 20px;
    --xsmall_title_lineheight: 24px;
}

.hero-content h1 {
    font-size: 24px;
    line-height: 30px;
}

.hero-content h2 {
    font-size: 18px;
}

.hero-content .row p {
    font-size: 13px;
}

.qrorder_button_large {
    padding: 10px 20px;
    font-size: 14px;
}

.usps ul li {
    flex: 0 0 50%;
}

.usps ul li p,
.howitworks li p {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}

.qrorder_video_content {
    top: 13%;
}

.qrorder_video_content h2 {
    margin-bottom: 15px;
}

.block_video_play_button {
    width: 50px;
    height: 50px;
}

.block_video_play_button svg {
    width: 15px;
    height: 15px;
    margin-left: 3px;
}

.form-section .form-fields-wrapper {
    flex-wrap: wrap;
}

.form-section form label,
.form-section form input,
.form-section form textarea {
    flex: 0 0 100% !important;
}

.form-section .form-fields-wrapper.terms-fields {
    display: block;
}

.form-fields-wrapper.terms-fields label {
    display: inline;
}

#avAgreed {
    margin: -4px 5px 0 0;
}

.icon {
	height: 25px;
	margin: 0 3px 3px 0;
}


}


@media screen and (max-width: 360px) {

.hero-content {
    padding-top: 20px;  /* 100px;*/
}

}
