@font-face {
    font-family: "Klara Regular";
    src: url("Fonts/Karla-Regular.eot");
    src: 
    url("Fonts/Karla-Regular.ttf") format("ttf"),
    url("Fonts/Karla-Regular.woff") format("woff"),
    url("Fonts/Karla-Regular.woff2") format("woff2"),
    url("Fonts/Karla-Regular.otf") format("opentype"),
    url("Fonts/Karla-Regular.svg#filename") format("svg");
}
@font-face {
    font-family: "Klara Medium";
    src: url("Fonts/Karla-Medium.eot");
    src: 
    url("Fonts/Karla-Medium.ttf") format("ttf"),
    url("Fonts/Karla-Medium.woff") format("woff"),
    url("Fonts/Karla-Medium.woff2") format("woff2"),
    url("Fonts/Karla-Medium.otf") format("opentype"),
    url("Fonts/Karla-Medium.svg#filename") format("svg");
}
@font-face {
    font-family: "Klara Bold";
    src: url("Fonts/Karla-Bold.eot");
    src: 
    url("Fonts/Karla-Bold.ttf") format("ttf"),
    url("Fonts/Karla-Bold.woff") format("woff"),
    url("Fonts/Karla-Bold.woff2") format("woff2"),
    url("Fonts/Karla-Bold.otf") format("opentype"),
    url("Fonts/Karla-Bold.svg#filename") format("svg");
}
@font-face {
    font-family: "Klara ExtraBold";
    src: url("Fonts/Karla-ExtraBold.eot");
    src: 
    url("Fonts/Karla-ExtraBold.ttf") format("ttf"),
    url("Fonts/Karla-ExtraBold.woff") format("woff"),
    url("Fonts/Karla-ExtraBold.woff2") format("woff2"),
    url("Fonts/Karla-ExtraBold.otf") format("opentype"),
    url("Fonts/Karla-ExtraBold.svg#filename") format("svg");
}
::-webkit-scrollbar{
    width:0;
    display: none;
}
::-webkit-scrollbar-thumb{
    width:0;
}
html, body {
	font-family: 'Klara Medium', 'Helvetica', sans-serif;
	text-align: left;
	font-size: 12pt;
	color: #6E6E6E;
	line-height:1.7;
	width:100%;
	padding:0px;
	margin:0px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    font-smooth: always;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size:inherit;
    margin:0;
}
a{
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    text-decoration: none;
}
a:link {color: #1D3D4D}
a:visited {color:#1D3D4D}
a:hover {color:#6E6E6E}
a:active {color:#6E6E6E}
b {
    font-family: 'Klara ExtraBold', 'Helvetica', sans-serif;
}
/*HEADER*/
.container {
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(22deg, #F6F5F1, #F5F5F2, #F4F7F7);
}
.achtergrond{
    z-index: 0;
    height: auto;
    width: 60vw;
    position: absolute;
    top: 58vh;
    right: -24vw;
}
#nav-icon {
    width: 29px;
    height: 20px;
    position: relative;
    top: 0;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 500;
    display: none;
}
#nav-icon span {
    position: absolute;
    height: 2px;
    width: 29px;
    background-color: #1D3D4D;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    border-radius: 2px;
}
#nav-icon span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#nav-icon span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#nav-icon span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -2px;
    left: 4px;
}
#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 4px;
}
.headerbalk{
    width: calc(100vw - 12em);
    display: flex;
    position: fixed;
    top: 1em;
    background: white;
    padding: 1em;
    border-radius: 1em;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 100;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.headerbalk-links {
    flex: 1;
    white-space: nowrap;
    text-align: left;
}
.headerbalk-logo {
    flex: 1;
}
.headerbalk-logo img{
    height: 2em;
    cursor: pointer;
}
.headerbalk-cta {
    flex: 1;
    text-align: right;
    white-space: nowrap;
    gap: 1em;
    display: flex;
    justify-content: end;
    align-items: center;
}
.headerbalk-links .headerbalk-cta{
    display: none;
}
.headerbalk-links a{
    color: #1D3D4D;
    text-decoration: none;
    padding-left: 3em;
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
}
.headerbalk-links a:first-of-type{
    padding-left: .5em;
}
.headerbalk-links a:hover{
    color:#6E6E6E;
}
.only-on-mobile-in-menu {
    display: none;
}
.contact-buttons {
    display: flex;
    gap: 1em;
    position: fixed;
    left: 1em;
    bottom: 1em;
    flex-direction: column;
    z-index: 100;
}
.contact-buttons a {
    background-color: #DEC3A3;
    padding: 1em;
    border-radius: 2em;
    animation: contactButtonsFlash 5s ease-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.contact-buttons a:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}
@keyframes contactButtonsFlash {
    0%{
        background-color: #DEC3A3;
    }
    79.9%{
        background-color: #DEC3A3;
    }
    80%{
        background-color: #6AA18D;
    }
    85%{
        background-color: #6AA18D;
    }
    100%{
        background-color: #DEC3A3;
    }
}
.button {
	font-family: 'Klara ExtraBold', 'Helvetica', sans-serif;
    padding: 0.5em 1em;
    border-radius: 2em;
    border: 2px solid #1D3D4D;
    background-color: #1D3D4D;
    color: white;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: normal;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.button:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}
a.button:link{color: white;}
a.button:hover{color: white;}
a.button:active{color: white;}
a.button:visited{color: white;}

.button.empty {
    border: 2px solid #1D3D4D;
    background-color: transparent;
    color: #1D3D4D !important;
}
.button.green {
    background-color: #6AA18D;
    border: 2px solid #6AA18D;
    color: white;
    line-height: 1.2;
}
.button.white {
    border: 2px solid #ffffff;
}
.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc(100vw - 6em);
    z-index: 1;
}
.header-1 {
    font-family: 'Klara Regular', 'Helvetica', sans-serif;
    font-size: 4.5em;
    padding-top: 2em;
    line-height: 1;
    max-width: 1000px;
    color: black;
}
.header-2 {
    font-size: 3em;
	font-family: 'Klara Regular', 'Helvetica', sans-serif;
    line-height: 1.2;
    color: #1D3D4D;
}
.header-3 {
    color: #000000;
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
    font-size: 2em;
    padding-bottom: 0.7em;
}
.header-4 {
    color: #6AA18D;
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
    text-transform: uppercase;
}
.face-above-the-fold{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 2em;
}
.face-above-the-fold img{
    width: 15vw;
    height: 15vw;
}
.centered.clients{
    z-index: 2;
}
.clients-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.clients-wrapper a {
    position: relative;
    max-width:calc(100vw - 4em);
}
.clients-wrapper-info {
    display: none;
    text-align: left;
    background-color: white;
    border-radius: .5em;
    --tw-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 4px 8px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 1em;
    position: absolute;
    z-index: 1;
}
.clients-wrapper-info.clients-wrapper-color{
    background-color: #F6F5F1;
}
.clients-wrapper-logo {
    height: 4em;
    width: auto;
}
.clients-wrapper-title {
    font-size: 1.5em;
    font-family: 'Klara ExtraBold';
    color: #1D3D4D;
    white-space: nowrap;
}
.clients-wrapper-website{
    font-family: 'Klara Medium';
    margin-top: -1em;
    margin-bottom: 1em;
    color: #6AA18D;
}
.clients-wrapper a:hover .clients-wrapper-info{
    display: block;
}
.clients-wrapper-info span {
    color: #1D3D4D;
}
.clients-wrapper-review {
    max-width: calc(100vw - 6em);
    height: auto;
    width: 250px;
    border-radius: .5em;
}
.clients-wrapper-info-scroll-arrow{
    display: none;
}
.highlighted-item {
    height: 3em;
    width: auto;
    padding: 1em;
    cursor: pointer;
    display: inline-block;
    filter: grayscale(100%);
}
.highlighted-item:hover{
    filter: grayscale(0%);
}
.toggle {
    background-color: #E8E8E8;
    display: flex;
    padding: 0.3em;
    color: #6AA18D;
    border-radius: 3em;
    position: relative;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    margin-top: .5em;
}
.selected {
    position: absolute;
    height: calc(100% - 0.6em);
    width: calc(33.33% - 0.2em);
    background-color: white;
    border-radius: 3em;
    z-index: 1;
    left: 0.3em;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.toggle-title {
    z-index: 2;
    padding: 0.5em 0;
    flex: 33%;
    cursor: pointer;
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
}
.toggle-title.active {
	font-family: 'Klara ExtraBold', 'Helvetica', sans-serif;
}
.columns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100vw - 6em);
    gap: 4em;
    z-index: 1;
}
.columns.inverted {
    flex-direction: row-reverse;
}
.columns.blog{
    align-items: flex-start;
}
.columns.blog .column:nth-of-type(1){
    flex: 30%;
}
.columns.blog .boxed{
    width:auto;
}
.columns.blog .boxed .faq-item{
    padding:.5em 1em;
}
.table-wrapper{
    width: 100%;
    overflow-x: scroll;
}
.artikel-tabel{
    width:100%
}
.artikel-tabel td{
    padding:.5em;
    vertical-align: top;
}
.artikel-tabel tr:nth-child(1) td{
    font-weight: bold;
    color: #6AA18D;
    border-bottom: 1px solid #6AA18D;
}
.artikel-tabel tr td:nth-child(1){
    color: #6AA18D;
}
.boxed{
    background-color: white;
    padding: 2em;
    border-radius: 2em;
    width: calc(100vw - 14em);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.topalign {
    align-items: flex-start;
}
.column {
    flex: 50%;
    text-align: left;
    padding: 2em;
}
.column img {
    width: 100%;
    height: auto;
    border-radius: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.highlights-wrapper {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    padding: 1em 5em 2em 5em;
}
.highlight-box {
    padding: 2em 5em;
    text-align: left;
    flex: calc(50% - 10em);
    position: relative;
}
.highlight-box .highlight:nth-of-type(1){
    position: relative;
}
.highlight {
    width: 100%;
    opacity:0;
    margin-top:2em;
    margin-bottom:-2em;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    position: relative;
    max-height: 0;
}
@keyframes newhighlight {
    from{
        opacity:0;
        margin-top:2em;
        margin-bottom:-2em;
    }
    to{
        opacity:1;
        margin-top:0em;
        margin-bottom:0em;
    }
}
.highlight.active {
    width: 100%;
    opacity: 1;
    margin-top:0em;
    margin-bottom:0em;
    max-height: 100vh;
}
.highlight.active div{
    animation: newhighlight .2s forwards .2s ease-in-out;
}
.highlight b {
    color: #1D3D4D;
}
.highlight img {
    width: 2em;
    height: auto;
    padding: 1em 0;
}
.highlight.active div, .highlight.active img{
    opacity: 0;
}
.highlight.active img{
    animation: newhighlight .4s forwards 0s ease-in-out;
}
li {
    position: relative;
    padding: 0.5em 0;
}
::marker {
    content: "";
}
li::before {
    content: url(https://www.nodey.nl/logos/checkmark.svg);
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    left: -2.5rem;
}
li.li1::before {
    content: url(https://www.nodey.nl/logos/li1.svg);
}
li.li2::before {
    content: url(https://www.nodey.nl/logos/li2.svg);
}
li.li3::before {
    content: url(https://www.nodey.nl/logos/li3.svg);
}
li.li4::before {
    content: url(https://www.nodey.nl/logos/li4.svg);
}
li.li5::before {
    content: url(https://www.nodey.nl/logos/li5.svg);
}
li.li6::before {
    content: url(https://www.nodey.nl/logos/li6.svg);
}
li.li7::before {
    content: url(https://www.nodey.nl/logos/li7.svg);
}
li.li8::before {
    content: url(https://www.nodey.nl/logos/li8.svg);
}
li.li9::before {
    content: url(https://www.nodey.nl/logos/li9.svg);
}
li.li10::before {
    content: url(https://www.nodey.nl/logos/li10.svg);
}
.faq-item {
    display: block;
    position: relative;
    background-color: #F7F7F6;
    padding: 1.5em;
    border-radius: 1em;
    margin-top: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}
.faq-item:first-of-type {
    margin-top: 0;
}
.faq-button {
	font-family: 'Klara ExtraBold', 'Helvetica', sans-serif;
    position: absolute;
    right: 2em;
    background-color: #1D3D4D;
    color: white;
    padding: 0 0.8em;
    border-radius: 0.7em;
    cursor: pointer;
}
.faq-title {
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
    cursor: pointer;
    color: #4A4A4A;
    max-width: calc(100% - 3em);
}
.faq-text {
    opacity:0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin-top: 0;
}
.faq-item.open .faq-text {
    opacity:1;
    max-height: 100vh;
    overflow: visible;
    margin-top: 1em;
}
.contact.boxed {
    padding: 4em;
    width: calc(100vw - 18em);
}
.contact-header {
    display: flex;
    gap: 5em;
    text-align: left;
}
.contact-info {
    flex: 1;
    max-width: calc((100% - 5em) / 2);
}
.contact-person {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #1D3D4D;
}
.contact-person img {
    height: 10em;
    width: auto;
    padding-right: 2em;
}
.contact-person-name div {
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
}
.contact-gegevens {
    display: flex;
    padding: 4em 0;
    color: #1D3D4D;
}
.contact-gegevens div {
    text-align: left;
    flex: 25%;
}
.contact-gegevens h2{
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
}
.contact-gegevens div div {
    font-family: 'Klara Bold', 'Helvetica', sans-serif;
}
.contact-gegevens div:nth-of-type(3) {
    flex: 50%;
}
.button-wrapper {
    text-align: left;
    z-index: 10;
}
.button-wrapper .button:nth-of-type(2) {
    margin-left: 1em;
}
.contact-formulier, .referral-formulier{
    position: relative;
    border-top: 1px solid #D7D7D7;
    margin-top: 4em;
    text-align: left;
}
.contact-formulier .header-2, .referral-formulier .header-2{
    padding-top: 2rem;
}
.contact-formulier table, .referral-formulier table {
    width: 100%;
    text-align: left;
    margin-top: 2em;
    padding-bottom: 5.5em;
}
.contact-formulier table tr td:nth-of-type(1), .referral-formulier table tr td:nth-of-type(1) {
    width: 25%;
}
.contact-formulier table div, .referral-formulier table div {
	font-family: 'Klara Bold', 'Helvetica', sans-serif;
    color: #1D3D4D;
}
.textareatabletitle{
    vertical-align: top;
    padding-top: 2em;
}
input, textarea {
    background-color: #F8F8F8;
    border: none;
    padding: 2em 1em;
    border-radius: 1em;
    width: calc(100% - 2em);
    max-width: 600px;
    margin: 0.5em 0;
    outline: 0;
    color: #1D3D4D;
    font-family: 'Klara Medium', 'Helvetica', sans-serif;
}
.send-contactform, .send-referralform {
    background-color: #DEC3A3;
    padding: 1em;
    line-height: 1;
    font-size: 2em;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 1em;
    cursor: pointer;
    border-bottom-right-radius: 2em;
}
.checklist-wrapper {
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.checklist-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}
.checklist-bullet {
    border: 2px solid #6AA18D;
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5em;
}
.checklist-item.checked .checklist-bullet {
    background-color: #6aa18d;
}

.footer .columns {
    align-items: flex-start;
}
img.footer-logo {
    height: 2em;
    width: auto;
    box-shadow: none;
}
.footer .columns .column:nth-of-type(2) {
   text-align: right;
}
.footer-title {
    font-size: 2em;
    color: #1D3D4D;
	font-family: 'Klara Medium', 'Helvetica', sans-serif;
    line-height: 1;
}
.cookiebalk {
    bottom: 1em;
    width: calc(100vw - 12em);
    display: flex;
    position: fixed;
    background: #1D3D4D;
    padding: 1em;
    border-radius: 1em;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 100;
    justify-content: center;
    align-items: center;
    color: white;
}
.cookiebalk-text{
    flex: 1;
    text-align: left;
}
.cookiebalk a {
    color: white !important;
}
.cookies-accepteren{
    margin-left: 1em;
}
.blogs {
    width: calc(100vw - 10em);
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.blog-item {
    background-color: white;
    padding: 1em;
    border-radius: 1em;
    flex: calc(33% - 3em);
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    text-align: left;
    display: inline-block;
    cursor: pointer;
    padding-bottom: 4em;
}
.blog-item:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}
.blog-image {
    width: 100%;
    padding-bottom: 56%;
    border-radius: .5em;
    position: relative;
    background-size: cover;
}
.blog-title{
    font-size: 1.5em;
    padding-bottom: .5em;
    line-height: 1.2;
    padding-top: .5em;
}
.blog-button{
    position: absolute;
    bottom: 1em;
}
.blog-item:hover .blog-button{
    border: 2px solid #1D3D4D;
    background-color: #1D3D4D;
}

/*FOOTER*/

/*KLEINERE SCHERMEN*/
@media only screen and (max-width: 800px) {
    .blogs{
        width: calc(100vw - 4em) !important;
    }
    .blog-item{
        flex: calc(50% - 3em) !important;
    }
    .clients-wrapper-review{
        min-width: 50vw;
        max-width: calc(100vw - 6em);
    }
    .clients-wrapper-logo {
        height: 3em;
    }
    .columns {
        flex-direction: column !important;
        width: calc(100vw - 4em);
    }
    .column {
        flex: 100%;
        padding: 0;
        width: 100%;
    }
    .button-wrapper .button:nth-of-type(2) {
        margin-top: 1em;
        margin-left: 0;
    }
    .centered{
        max-width: calc(100vw - 4em);
    }
    .centered.boxed{
        width: calc(100vw - 6em) !important;
        padding:1em;
    }
    .toggle-title{
        font-size: .7rem;
    }
    .highlights-wrapper {
        width: 100%;
        padding: 1em 0 1em 0;
        gap: 2em;
    }
    .highlighted-item {
        padding: .5em;
        height: 2em;
    }
    .highlight-box {
        padding: 0;
        flex: 100%;
    }
    .header-1{
        font-size: 4em;
    }
    .header-2 {
        font-size: 2em;
    }
    .columns.boxed {
        width: calc(100vw - 8em) !important;
    }
    .contact.boxed {
        padding: 2em;
        width: calc(100vw - 8em);
    }
    .contact-header {
        flex-direction: column;
        gap: 2em;
    }
    .contact-info {
        flex: 1;
        max-width: 100%;
    }
    .contact-person {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .contact-person img{
        padding: 0em;
        padding-right: 2em;
    }
    .contact-gegevens {
        flex-direction: column;
        gap: 1em;
        padding-top: 2em;
    }
    .contact-formulier table tr, .referral-formulier table tr {
        display: flex;
        flex-direction: column;
    }
    .contact-formulier table tr td, .referral-formulier table tr td {
        width: 100% !important;
    }
    .textareatabletitle {
        padding-top: 0;
    }
    .contact-person-name {
        text-align: left;
    }
    .contact-formulier table, .referral-formulier table{
        padding-bottom: 7.5em;
    }
    .achtergrond {
        width: 160vw;
        right: -62vw;
    }
    .headerbalk {
        width: calc(100vw - 4em);
    }
    .headerbalk-logo {
        display: flex;
    }
    #nav-icon{
        display: block;
    }
    @keyframes show-menu {
        from{
            opacity:0;
        }
        to{
            opacity:1;
        }
    }
    .headerbalk-links {
        padding: 2em;
        border-radius: 1em;
        background-color: white;
        position: absolute;
        top: 3em;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 1em;
        font-size: 1.5em;
        width: calc(100vw - 5.5em);
        max-height: calc(100vh - 7.5em);
        overflow: scroll;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        opacity: 0;
        display:none;
    }
    .headerbalk-links.open {
        animation: show-menu .2s forwards 0s ease-in-out;
        display: flex;
    }
    .headerbalk-links a {
        padding: 0 !important;
        margin-bottom: 2em;
    }
    .only-on-mobile-in-menu {
        display: block;
    }
    .headerbalk-cta{
        display: none;
    }
    .headerbalk-links .headerbalk-cta{
        display: block;
    }
    .headerbalk-links .headerbalk-cta a {
        padding: 0.5em 1em !important;
        font-size: 1rem;
    }
    .cookiebalk {
        display: block;
        width: calc(100vw - 4em);
        text-align: right;
    }
    .cookiebalk-text {
        padding-bottom: 2em;
    }
    .footer .columns .column:nth-of-type(2) {
        text-align: left;
    }
    .colofon {
        margin-top: 1em;
    }
}
@media only screen and (max-width: 500px) {
    .clients-wrapper-review{
        min-width: calc(100vw - 6em);
    }
    .clients-wrapper-info{
        max-width: calc(100vw - 6em);
    }
    .clients-wrapper-logo {
        height: 2em;
    }
    .blog-item {
        flex: 100% !important;
    }
}
/*VOOR IPHONE*/
@media only screen and (max-device-width: 800px) {
    .blogs{
        width: calc(100vw - 4em) !important;
    }
    .blog-item{
        flex: 100% !important;
    }
    .contact-buttons{
        flex-direction: row;
    }
    .face-above-the-fold{
        flex-direction: column-reverse;
    }
    .face-above-the-fold img{
        width:33vw;
        height:33vw;
    }
    .clients-wrapper{
        overflow: scroll;
        gap: 2em;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    .clients-wrapper .highlighted-item{
        height: auto;
        width: calc(100vw - 6em);
        display: none;
    }
    .clients-wrapper-info-scroll-arrow{
        display: inline;
    }
    .clients-wrapper-review{
        min-width: 50vw;
        max-width: calc(100vw - 6em);
    }
    .clients-wrapper-info{
        width: calc(100vw - 6em);
        max-width: calc(100vw - 6em);
        display: block;
        position: relative;
    }
    .clients-wrapper-logo {
        height: 2em;
    }
    .columns {
        flex-direction: column !important;
        width: calc(100vw - 4em);
    }
    .column {
        flex: 100%;
        padding: 0;
        width: 100%;
    }
    .button-wrapper .button:nth-of-type(2) {
        margin-top: 1em;
        margin-left: 0;
    }
    .centered {
        max-width: calc(100vw - 4em);
    }
    .centered.boxed{
        width: calc(100vw - 6em) !important;
        padding:1em;
    }
    .toggle-title{
        font-size: .7rem;
    }
    .header-1{
        font-size: 2em;
        margin-top: 1em;
    }
    .header-2 {
        font-size: 2em;
    }
    .highlights-wrapper {
        width: 100%;
        padding: 1em 0 1em 0;
        gap: 2em;
    }
    .highlighted-item {
        padding: .5em;
        height: 2em;
    }
    .highlight-box {
        padding: 0;
        flex: 100%;
    }
    .columns.boxed {
        width: calc(100vw - 8em) !important;
    }
    .contact.boxed {
        padding: 1em;
        width: calc(100vw - 4em);
    }
    .contact-header {
        flex-direction: column;
        gap: 2em;
    }
    .contact-info {
        flex: 1;
        max-width: 100%;
    }
    .contact-person {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .contact-person img{
        padding: 0em;
        padding-right: 2em;
    }
    .contact-gegevens {
        flex-direction: column;
        gap: 1em;
        padding-top: 2em;
    }
    .contact-formulier table tr, .referral-formulier table tr {
        display: flex;
        flex-direction: column;
    }
    .contact-formulier table tr td, .referral-formulier table tr td {
        width: 100% !important;
    }
    .textareatabletitle {
        padding-top: 0;
    }
    .contact-person-name {
        text-align: left;
    }
    .contact-formulier table, .referral-formulier table{
        padding-bottom: 7.5em;
    }
    .achtergrond {
        width: 160vw;
        right: -62vw;
    }
    .headerbalk {
        width: calc(100vw - 4em);
    }
    .headerbalk-logo {
        display: flex;
    }
    #nav-icon{
        display: block;
    }
    @keyframes show-menu {
        from{
            opacity:0;
        }
        to{
            opacity:1;
        }
    }
    .headerbalk-links {
        padding: 2em;
        border-radius: 1em;
        background-color: white;
        position: absolute;
        top: 3em;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 1em;
        font-size: 1.5em;
        width: calc(100vw - 5.5em);
        max-height: calc(100vh - 7.5em);
        overflow: scroll;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        opacity: 0;
        display: none;
    }
    .headerbalk-links.open {
        animation: show-menu .2s forwards 0s ease-in-out;
        display: flex;
    }
    .headerbalk-links a {
        padding: 0 !important;
        margin-bottom: 2em;
    }
    .only-on-mobile-in-menu {
        display: block;
    }
    .headerbalk-cta{
        display: none;
    }
    .headerbalk-links .headerbalk-cta{
        display: block;
    }
    .headerbalk-links .headerbalk-cta a {
        padding: 0.5em 1em !important;
        font-size: 1rem;
    }
    .cookiebalk {
        display: block;
        width: calc(100vw - 4em);
        text-align: right;
    }
    .cookiebalk-text {
        padding-bottom: 2em;
    }
    .footer .columns .column:nth-of-type(2) {
        text-align: left;
    }
    .colofon {
        margin-top: 1em;
    }
}