/* ----------------------------------functions---------------------------------- */
:root{
	
    /* COLORS */
	--primary-tint: #C2D1D9;
	--primary-tint-opac: rgba(194, 209, 217, 0.5);
	--primary-base: #89A3B2;
	--primary-base-opac: rgba(137, 163, 178, 0.7);
	--primary-shade: #62747f;
	--primary-shade-opac: rgba(98, 116, 127, 0.5);

	--secondary-tint: #99c4dc;
	--secondary-tint-opac: rgba(153, 196, 220, 0.5);
	--secondary-base: #86a7ba;
	--secondary-base-opac: rgba(134, 167, 186, 0.7);
    --secondary-shade: #42535c;
	--secondary-shade-opac: rgba(84, 105, 117, 0.5);

	--tertiary-tint: #8cd9b9;
	--tertiary-tint-opac: rgba(140, 217, 185, 0.49);
    --tertiary-base: #75ae96;
	--tertiary-base-opac: rgba(117, 174, 150, 0.5);
    --tertiary-shade: #537c6a;
	--tertiary-shade-opac: rgba(83, 124, 106, 0.5);
	
	--accent-one: #B28989;
	--accent-two: #D4AF37;
	--accent-three: #2D3D45;
	
	--grey-tint: rgb(243, 243, 243);
	--grey-tint-opac: rgba(234, 234, 234, 0.5);
    --grey-base: #CCC;
    --grey-base-opac: rgba(204, 204, 204, 0.5);
	--grey-shade: #696969;
	--grey-shade-opac: rgba(39, 39, 39, 0.51);

    --grey-background: #b1b1b1;
    --grey-background-opac: rgba(100, 100, 100, 0.42);
	--black-background-opac: rgba(0,0,0, 0.3);
	--white-background-opac: rgba(255,255,255, 0.2);
}
/* Alleen styling toepassen als het apparaat een muis heeft */

/* ----------------------------------global-styles---------------------------------- */
@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Baumans&display=swap');
@font-face{
	font-family: boston;
	src: url("../fonts/BostonRegular.otf");
}
@font-face{
	font-family: bostonheavy;
	src: url("../fonts/BostonHeavy.otf");
}
@font-face{
	font-family: bostonheavyitalic;
	src: url("../fonts/BostonHeavyIt.otf");
}
@font-face{
	font-family: shantell;
	src: url("../fonts/ShantellSans-VariableFont_BNCE,INFM,SPAC,wght.ttf");
}

*{
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	min-height: 100%;
	overflow: -moz;
	overflow-y: scroll;
	overflow-anchor: none;
}
body {
    font: 400 2rem/1.4 baumans, sans-serif;
	padding: 0;
	margin: 0;
	color: var(--secondary-shade);
    background-color: white;
    overflow: hidden;
}
.hero1{
    position: absolute;
    top: -120%;
    right: 0;
    width: 100%;
    animation-name: hero1;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	animation-duration: 30s;
	animation-timing-function: ease-out;
}
@keyframes hero1 {
	0% {
        right: 0;
    }
	12% {
        right: 0;
	}
    25% {
        right: 100%;
        animation-timing-function: linear;
	}
    25%{
        right: -100%;
    }
    87% {
        right: -100%;
        animation-timing-function: ease-out;
    }
    100% {
        right: 0;
	}
}
.hero2{
    position: absolute;
    top: -120%;
    right: -100%;
    width: 100%;
    animation-name: hero2;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	animation-duration: 30s;
	animation-timing-function: ease-out;
}
@keyframes hero2 {
	0% {
        right: -100%;
    }
	12% {
        right: -100%;
	}
    25% {
        right: 0;
	}
    37% {
        right: 0;
	}
    50% {
        right: 100%;
        animation-timing-function: linear;
	}
    50%{
        right: -100%;
    }
    100% {
        right: -100%;
	}
}
.hero3{
    position: absolute;
    top: -120%;
    right: -100%;
    width: 100%;
    animation-name: hero3;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	animation-duration: 30s;
	animation-timing-function: ease-out;
}
@keyframes hero3 {
	0% {
        right: -100%;
    }
	37% {
        right: -100%;
	}
    50% {
        right: 0;
	}
    62% {
        right: 0;
	}
    75%{
        right: 100%;
        animation-timing-function: linear;
    }
    75%{
        right: -100%;
    }
    100% {
        right: -100%;
	}
}
.hero4{
    position: absolute;
    top: -120%;
    right: -100%;
    width: 100%;
    animation-name: hero4;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	animation-duration: 30s;
	animation-timing-function: ease-out;
}
@keyframes hero4 {
	0% {
        right: -100%;
    }
	62% {
        right: -100%;
	}
    75% {
        right: 0;
	}
    87% {
        right: 0;
	}
    100% {
        right: 100%;
        animation-timing-function: linear;
	}
    100%{
        right: -100%;
    }
}

/* ---------html elementen---------------------------------- */

h1,h2,h3,h4,h5{
	font: 900 3rem/1.2 bostonheavy, sans-serif;
	color: var(--secondary-shade);
	text-transform: uppercase;
	letter-spacing: 2px;
}
h1{
	font-size: 6.2rem;
}
h2{
	font-family: bostonheavyit;
	font-size: 1.8rem;
	margin: 0;
	letter-spacing: 1px;
}
h3{
	font-size: 3.4rem;
	color: white;
	margin: 0;
	letter-spacing: 3px;
}
h4{
	font-size: 2.4rem;
	margin: 0 0 20px 0;
}
h5{
    margin: 10px 0 20px 0;
	font-size: 2.2rem;
    line-height:1.2;
}
p{
	padding:0;
	margin: 20px 0;
}
a {
	text-decoration: underline;
	display: inline-block;
}
a:link, a:visited{
	cursor: pointer;
}
a:hover, a:active{
	cursor: pointer;
}
ul{
	list-style: none;
	font-size:2.2rem;
	margin: 0;
	padding:0;
}
span{
	display: inline-block;
}

/* ---------component-styles---------------------------------- */
#themeselect{
	z-index: 0; 
}
fieldset{
    display: block !important;
	position: absolute;
	right: 5px;
	top: 10vh;
	padding: 2px;
	font-size: 12px;
	margin: 0;
	text-align: left;
	max-width: 67px;
	z-index: 35;
}
fieldset input{
	margin: 0 0 0 10px;
	width: 10px;
	border: solid;
}
fieldset label{
	margin: 0 0 0 3px;
	cursor: pointer;
}
.linkreset{
	color: var(--secondary-shade);
	text-decoration: none;
}
.linkreset:link, .linkreset:visited{
	color: var(--secondary-shade);
	text-decoration: none;
}
.linkreset:hover{
	text-decoration: underline;
}
.proceslist {
	display: flex;
	justify-content:center;
	align-content: center;
	flex-direction: column;
	text-align: center;
	flex-wrap: wrap;
	transition: 0.5s;
	margin: 20px 0;
	padding: 0;
}
.pijlonder{
    display: inline-block;
}
.pijlrechts{
    display: none;
}
.btn{
    text-decoration: none;
	background-color: var(--primary-shade);
    border: 2px solid var(--primary-shade);
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: 1000;
	outline: 0;
	font-size: 1.6rem;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Een subtiele schaduw voor de ruststand */
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    /* Voorkom tekstselectie tijdens het klikken */
  	user-select: none;
    color: var(--primary-tint);
	padding: 10px;
}
.btnlink{
    display: block;
    width: 200px;
	margin: 5px auto;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Een subtiele schaduw voor de ruststand */
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    /* Voorkom tekstselectie tijdens het klikken */
  	user-select: none;
}
.btnnolink{
	margin: 7px 0;
    cursor: default;
}
.btncontact {
	margin: 0 auto;
	width: 45vw;
    transition: 0.2s;
}
.btn:link, .btn:visited {
    color: var(--primary-tint);
    transition: 0.2s;
	text-decoration: none;
}
.btn:hover, .btn:active {
    color: var(--secondary-shade);
	background: var(--primary-tint);
	border: 2px solid var(--primary-tint);
	cursor: pointer;
	text-decoration: none;
	transform: translateY(2px); /* Lift de knop omhoog */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
  	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}
.btnnolink:hover, .btnnolink:active {
    cursor: default;
    background-color: var(--primary-shade);
    border: 2px solid var(--primary-shade);
    color: var(--primary-tint);
}
.button1{
    width: 80%;
    margin: 0 auto 270px;
}
#privacypolicy{
	text-decoration: underline;
	font-size: 1.8rem;
}
.down{
    z-index: 1;
	font-size: 80px;
	margin: 0 auto;
	text-align: center;
	animation-name: opacitychange;
	animation-iteration-count: 10;
	animation-fill-mode: forwards;
	animation-duration: 3s;
	animation-timing-function: linear;
}
@keyframes opacitychange {
	0% {
	color: var(--secondary-base-opac);
	}
	50% {
	color: var(--secondary-tint-opac);
	}
	100% {
	color: var(--secondary-base-opac);
	}
}
.downsub{
	visibility: hidden;
    display: none;
}
.logosmall{
    width: 30px;
	height: 30px;
}
.logosmallsub{
    width: 30px;
	height: 30px;
    align-self: center;
}
#selfiestaand{
    display: none;
}
/* --------------header-------------- */

#mainheader {
    position: relative;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: top;
	z-index: 34;
    background: var(--white-background-opac) url('../images/brugwazig.webp') top left no-repeat;
	background-blend-mode:color-burn;
    background-size: cover;
    height: 40vh;
    min-height: 250px;
}
#logothepage{
	display: block !important;
    position: fixed;
	top: 0.2rem;
	left: 0.2rem;
	width: 8rem;
	margin: 0;
	animation-name: logothepage;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-timing-function: ease-out;
}
@keyframes logothepage {
	0% {
		left: -100px;
		top: 0.2rem;
	}
	100% {
		left: 0.2rem;
		top: 0.2rem;
	}
}
#mainnav{
    z-index: 999;
    height: fit-content;
}
.mainnav{
	height: 270px;
    display: flex;
	flex-direction: column;
    position: fixed;
    right: -100%;
    top: 0vh;
	margin: 0;
	padding: 15px 10px 0 0;
	justify-content: flex-end;
	background: var(--grey-tint);
    opacity: 0;
    pointer-events: none;
	text-align: center;
    transition: 500ms ease-in-out;
    gap: .1rem;
    width: 100%;
    z-index: 35;
}
.mainnav li{
	margin: 2px 5px;
}
.menuactive{
	background: var(--primary-shade);
	color: white;
	border-radius: 4px;
	outline: 0;
    width: 100%;
	font-size:2rem;
    text-decoration: none;
	display: inline-block;
	line-height: 2rem;
	padding: 10px;
	margin: 0 5px 0 5px;
	font-weight: 500;
	transition: 0.5s;
    cursor: default;
    text-transform: uppercase;
}
.menuactive:hover{
	background: var(--primary-shade);
	cursor: default;
	transition: 0.5s;
}
.menuitem{
	font-size:2rem;
    text-decoration: none;
	display: inline-block;
	line-height: 2rem;
	outline: 0;
	padding: 10px;
	margin: 0 5px 0 5px;
	border-radius: 4px;
	font-weight: 500;
	transition: 0.5s;
    cursor: pointer;
	color: var(--secondary-shade);
	background: rgba(0,0,0,.1);
	width: 100%;
    text-transform: uppercase;
}
.menuitem:hover{
	background: rgba(0,0,0,.1);
	cursor: pointer;
	color: black;
}
.menu_icon_box{
	display: inline-block;
	width: fit-content;
	height: auto;
	background: none;
	margin: 2px 10px 2px 5px;
	position: fixed;
	border-radius: 4px;
	cursor: pointer;
	right: 0;
    padding: 2px;
	z-index: 36;
	}
.line1, .line2, .line3{
    display: block;
	width: 40px;
	height: 3px;
	background:  var(--secondary-shade);
	border-radius: 50px;
	margin: 7px;
}
.active .line1{
    width: 28px;
	transform: translate(0, 15px)rotate(45deg);
    position: relative;
    left: 7px;
    top: -5px;
    transition: 200ms;
}
.active .line2{
	opacity: 0;
}
.active .line3{
    width: 28px;
	transform: translate(0, -15px)rotate(-45deg);
    position: relative;
    left: 7px;
    top: 5px;
    transition: 200ms;
}
.active.mainnav{
    right: 0;
    opacity: 1;
    pointer-events: fill;
    transition: 700ms;
}
/* --------------hero-------------- */
main {
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: flex-start;
	margin: 0;
    flex-wrap: wrap;
	max-width: 100%;
    background-color: none;
    min-height: 400px;
}
.mainindex {
	display: flex;
	position: relative;
	justify-content: flex-start;
	flex-wrap: wrap;
	min-height: max-content;
    margin: 0 auto;
    padding: 0;
	transition: 0.5s;
	width: 100%;
    background-color: none;
}
.asterixdivmain{
	margin: 0 auto;
	text-align: center;
    padding: 20px;
	display: flex;
	justify-content: center;
    font-size: 30px;
    color: var(--grey-base);
    width: 100%;
}
.asterixdivsub{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	margin: 0 auto;
    padding: 20px;
    font-size: 30px;
    color: var(--grey-base);
    width: 90%;
}
.maincontent {
    position: unset;
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0;
	transition: 0.5s;
    background-color: none;
    z-index: 33;
}
.insprong{
	padding: 0 0 0 40px;
}
.subcontent{
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	flex-wrap: wrap;
	min-height: 100px;
	transition: 0.5s;
    width: 100%;
    background-color: none;
}
.pijlrechts{
    display: none;
}
.pijlonder{
    display: inline-block;
}
#lijstaanbod{
	list-style:none;
	padding-left: 30px;
	line-height: 1.4;
}
#lijstaanbod li{
	margin: 15px 0;
}
.box1, .box2, .box3, .box4, .box5, .box6, .box7{
	text-align: left;
    background-color: var(--primary-base-opac);
	width: 97%;
	margin: 50px auto;
	padding: 30px 10px;
	border: hidden;
	border-radius: 4px;
	transition: 0.5s;
	overflow-wrap: break-word;
	word-wrap: break-word;
    z-index: 33;
}
.box1{
    margin-top: 40px;
}
.box1 h4, .box2 h4, .box3 h4, .box4 h4, .box5 h4, .box6 h4, .box7 h4 {
	text-shadow: 1px 1px 3px #ffffff;
}
.box3 ul li a{
    white-space: pre-wrap; /* CSS3 */    
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */    
    white-space: -o-pre-wrap; /* Opera 7 */    
    word-wrap: break-word; /* Internet Explorer 5.5+ */
	overflow-wrap: break-word;
}
.box5{
	background: var(--primary-base-opac);
	padding: 30px 10px;
	text-align: center;
}
.box6 {
	position: relative;
	text-align: left;
	background: var(--primary-base) url(../images/cellphone-6531139_640.jpg) bottom/contain no-repeat;
	background-blend-mode:screen;
	margin-bottom: 100px;
    padding-bottom: 150px;
}
.box7 {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
    height: fit-content;
	flex-wrap: wrap;
}
.tegelcontainer, .tegelcontainerpf{
	justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	min-height: 400px;
	margin: 0;
	display: flex;
	overflow: visible;
	transition: 0.2s;
	top: 0;
	position: relative;
    gap:1px;
	padding: 10px 0 0 0;
	width: 100%;
}
.tegelcontainer{
	gap: 40px;
    background-color: none;
}
.tegelcontainerpf{
	padding: 100px auto;
}
.tegelcontainer::-webkit-scrollbar, .tegelcontainerpf::-webkit-scrollbar {
	display: none; /* Hides the scrollbar */
}
.tegels {
	padding: 0;
	flex-grow: 1;
    flex-shrink: 1;
    flex: 1;
	flex-direction: column;
	display: flex;
	border-radius: 5px;
	vertical-align: top;
	text-align: left;
	margin: 5px;
	justify-content: flex-start;
	text-decoration: none;
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    min-width: 300px;
	color: black;
}
.tegels:hover{
	color: black;
	cursor: pointer;
	background-color: var(--primary-base-opac);
	/* transform: translateY(2px);  Lift de knop omlaag */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
	padding-top: 1px;
	text-decoration: none;
}

/*
.tegel1:active, .tegel1:focus, .tegel2:active, .tegel2:focus, .tegel3:active, .tegel3:focus, .tegel4:active, .tegel4:focus, .tegel5:active, .tegel5:focus{
	text-decoration: none;
	background-color: var(--grey-tint);
}
*/
.tegel1{
	background: url(../images/laptop-3196481_640.jpg) bottom/contain no-repeat;
	background-color: var(--primary-base-opac);
	border: solid 1px var(--grey-shade);
	background-blend-mode: multiply;
}
.tegel2{
	background: url(../images/coding-924920_640.jpg) bottom/contain no-repeat;
	background-color: var(--secondary-base);
	border: solid 1px var(--grey-shade);
	background-blend-mode: multiply;
}
.tegel3{
	background: url(../images/digitization-5180477_640.jpg) bottom/contain no-repeat;
	background-color: var(--tertiary-base);
	border: solid 1px var(--grey-shade);
    background-blend-mode: multiply;
}
.tegel4{
	background: url(../images/home-office-599475_640.jpg) bottom/contain no-repeat;
	background-color: var(--accent-two);
	border: solid 1px var(--grey-shade);
	background-blend-mode: multiply;
}
.tegel5{
	background: url(../images/cellphone-6531139_640.jpg) bottom/contain no-repeat;
	background-color: var(--accent-one);
	border: solid 1px var(--grey-shade);
	background-blend-mode:multiply;
}
.tegel6{
	background: url(../images/thehobby.jpg) bottom/contain no-repeat;
	background-color: var(--secondary-base);
	border: solid 1px var(--grey-shade);
	background-blend-mode:screen;
}
.tegel7{
	background: url(../images/thepagewp.jpg) bottom/contain no-repeat;
	background-color: var(--secondary-base);
	border: solid 1px var(--grey-shade);
	background-blend-mode:screen;
}
.tegel8{
	background: url(../images/zoektocht.jpg) bottom/contain no-repeat;
	background-color: var(--secondary-base);
	border: solid 1px var(--grey-shade);
	background-blend-mode:screen;
}
.tegel9{
	background: url(../images/vanechelpoel.png) bottom/contain no-repeat;
	background-color: var(--secondary-base);
	border: solid 1px var(--grey-shade);
	background-blend-mode:screen;
}
.tegels h5 {
	margin: 0;
	background: var(--grey-shade-opac);
	padding: 10px 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: white;
	font-weight: 800;
	text-transform: uppercase;
	min-height: 60px;
	font-size: 2.4rem;
	letter-spacing: 1.8px;
}
.tegels p {
	margin: 15px 5px 15px 5px;
}
#wp-logo{
	width: 100px;
	border-radius: 4px;
}
#wp-link{
	float: right;
}
#http{
	position: relative;
	width: 200px;
	border-radius: 4px;
	float:right;
	margin-left: 5px;
}
#digimap{
	position: relative;
	width: 19rem;
	border-radius: 4px;
	float:left;
	margin: 5px 5px 0 0;
}
#video{
	display: block; 
	margin: 10px auto; 
	border-radius: 4px;
}
#selfie{
	position: relative;
	width: 160px;
	border-radius: 4px;
	float: right;
	margin-left: 5px;
	margin-top: 10px;
}

.selfiezit{
	position: relative;
	width: 140px;
    height: 200px;
	border-radius: 4px;
	margin: 4px;
    float:left;
}
div.form-group {
	margin: 0;
	display: flex;
	flex-direction: column;
	transition: 0.5s;
}
.form-group input[type="text"], .form-group input[type="email"], .form-group textarea, .form-group button, .form-group label, select, .g-recaptcha {
	width: 40vw;
	display: inline-block;
	padding: 0;
    min-height: 30px;
	min-width: 300px;
	border: hidden;
	border-radius: 4px;
	margin: 2px auto;
	transition: 0.5s;
    resize: none;
}
.form-group label{
	text-align: left;
    padding: 0;
	color: var(--secondary-shade);
}
.g-recaptcha {
    margin: 20px;
}
div.embed {
	flex-direction: column;
}
div.alert-success, div.alert-danger {
	font-size: 18px;
	margin: 0 auto;
	padding: 5px 5px 5px 20px;
	font-weight: 1000;
	text-align: center;
	border-radius: 4px;
	width: 45vw;
	display: inline-block;
	min-width: 300px;
	transition: 0.5s;
}
div.alert-success {
	background-color: rgba(55, 173, 0, 0.2);
	color: darkgreen;
	border: 1px solid darkgreen;
}
div.alert-danger {
	background-color: rgba(255, 0, 0, 0.2);
	color: red;
	border: 1px solid red;
}

/* ----------------------footer--------------------- */
footer {
	min-height: 150px;
	padding-top: 10rem;
	transition: 0.5s;
    margin: -1px 0;
    background: none;
}

.footercontent {
	min-height: 150px;
	display: flex;
    flex-basis: 2;
	justify-content: space-between;
	background-color: var(--primary-base);
	transition: 0.5s;
	padding: 50px 5px;
}
.footerleft {
    display: flex;
    flex-direction: column;
    background: var(--primary-tint-opac) url(../images/logothepage.svg) bottom left/contain no-repeat;
    background-blend-mode:lighten;
    background-size: 100px;
	padding: 10px;
	border-radius: 4px;
	margin: 5px;
	font-weight: 1000;
	transition: 0.5s;
    justify-content: flex-start;
    flex-grow:1;
    flex-shrink:1;
    flex:1;
}
.footerleft h5{
	color: var(--primary-shade);
}
.footerright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	padding: 5px;
	border-radius: 4px;
	margin: 5px;
	text-align: right;
	align-items: flex-end;
	transition: 0.5s;
	background-color: var(--primary-tint-opac);
    background-blend-mode: color-burn;
    flex-grow:1;
    flex-shrink:1;
    flex:1;
}
.footerright h5{
	text-transform: none;
}
.footerdown {
	margin: 0 auto;
	text-align: center;
	transition: 0.5s;
	padding-bottom: 10px;
	background-color: var(--primary-base);
}
.footerdown p{
	margin: 0;
}
footer p{
    font-size: 2rem;
}


/* --------------------------------------MEDIASCREEN 450px-------------------------------------------------- */

@media screen and (min-width: 450px){
h2{
	font-size: 2.6rem;
}
#logothepage{
	width: 10rem;
}
fieldset{
	right: 10px;
}
span{
	display: inline-block;
}
.headerlabel {
	font-size: 18px;
}
.mainindex {
    margin: 0 auto;
	background-color: var(--white-background-opac);
}
.maincontent {
	margin: 0 auto;
	flex-direction: column;
    width:100%;
}
.asterixdivmainindex{
    display: none;
}
.box1, .box2, .box3, .box4, .box5, .box6, .box7 {
	width: 80%;
	position: relative;
	flex-wrap: wrap;
}
.box2 {
	text-align: center;
}

.box5 {
    background: none;
	background: var(--primary-base);
}
.box6 {
	align-self: center;
}
.tegelcontainer, .tegelcontainerpf{
	flex-wrap: wrap;
    transition: 0.5s;
    gap: 10px; 
    top: 0;
    align-items: flex-start;
    min-height: fit-content;
    margin: 0 auto;
    flex-direction: row;
}
.tegels {
	min-width: 180px;
    max-width: 200px;
    min-height: fit-content;
}
.tegels p{
	margin: 5px;
}
.tegels h5{
	font-size: 1.7rem;
	}
#privacylabel{
	text-align: center;
	font-size: 1.6rem;
}
.proceslist {
	display: flex;
	justify-content:left;
	align-content: left;
	flex-direction: row;
	text-align: center;
	flex-wrap: wrap;
	margin: 20px 0;
	padding: 0;
}
.proceslist p{
	margin-top: 10px;
}
.pijlonder{
    display: none;
}
.pijlrechts{
    display: inline-block;
    margin-top: 10px;
}
.footerleft{
    background-size: 120px;
}
}
/* --------------------------------------MEDIASCREEN 700px-------------------------------------------------- */

@media screen and (min-width: 700px){
.footerleft{
    background-size: 150px;
}
}
/* --------------------------------------MEDIASCREEN 900PX-------------------------------------------------- */

@media screen and (min-width: 900px) {
#mainheader {
    height: 50vh;
}
#selfiestaand{
	position: absolute;
	width: 15vw;
	right: 5px;
	bottom: 35vh;
	border-radius: 4px;
	z-index: 33;
	transition: 1s;
	display: inline-block;
    max-width: 200px;
}
}
/* --------------------------------------MEDIASCREEN 1150PX-------------------------------------------------- */

@media screen and (min-width: 1150px) {
body {
	font: 400 2.2rem/1.6 baumans, sans-serif;
}
h2{
	font-size: 3.2rem;
}
.box1 h3, .box2 h3{
	font-size: 3.4rem;
	color: var(--primary-shade);
}
#mainheader {
    height: 60vh;
    z-index: 32;
}
.button1{
    width: 80%;
    margin: 0 auto 160px;
}
/* -------------------------header---------------------------- */
.asterixdivmain{
    display: none;
}
#logothepage{
	width: 12rem;
}
.menu_icon_box{
	display: none;
}
.mainnav{
	border-bottom: 0.2rem solid var(--secondary-shade);
	padding: 0;
	margin: 0;
    opacity: 1;
    pointer-events: fill;
	flex-direction: row;
    position: relative;
    right: 0;
	height: auto;
	background: none;
}
.menuitem{
	width: max-content;
	line-height: 1.6rem;
	margin: 0 5px 0 5px;
	background: rgba(0,0,0,.0);
}
.menuactive{
	width: max-content;
	line-height: 1.6rem;
	margin: 0 5px 0 5px;
    color: black;
	background: rgba(0,0,0,.1);
}
.menuactive:hover{
	background: rgba(0,0,0,.1);
}
    
/* -----------------------main------------------------------ */
#selfiestaand{
	width: 15vw;
    bottom: 20vh;
}
.down{
    display: none;
	visibility: hidden;
}
.logosmallsub{
    display: none;
	visibility: hidden;
}
.downsub{
    display:block;
    visibility: visible;
	font-size: 80px;
	margin: 150px auto 0;
	text-align: center;
	animation-name: opacitychange;
	animation-iteration-count: 10;
	animation-fill-mode: forwards;
	animation-duration: 3s;
	animation-timing-function: linear;
}
@keyframes opacitychange {
	0% {
	color: var(--secondary-base-opac);
	}
	50% {
	color: var(--secondary-tint-opac);
	}
	100% {
	color: var(--secondary-base-opac);
	}
}

.downprivacy{
    display: block;
	visibility: visible;
}
.mainindex {
	position: relative;
	margin: 0 auto 0 0;
	background: none;
}
.maincontent {
	margin: 0 auto 0 120px;
	position: absolute;
    top: -350px;
	background: none;
    padding: 0;
    width: 70vw;
    justify-content: flex-start;
    align-items: flex-start;
}
.box1 {
	position: relative;
	width: 50vw;
	margin: -80px 0 0 0;
	background: none;
}
.box2 {
	position: relative;
	width: 65vw;
	margin: 0;
	background: none;
    padding: 0;
}
.box3, .box4, .box5, .box6, .box7 {
    position: relative;
	width: 60vw;
}
.box6 {
	width: 50vw;
	position: relative;
	text-align: left;
	margin: -80px 0 0 0;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	background: var(--secondary-base-opac) url(../images/cellphone-6531139_640.jpg) bottom/contain no-repeat;
	background-blend-mode:screen;
    align-self: flex-start;
	}
.box7 {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
    height: fit-content;
}
.tegelcontainer {
	margin: 0 auto;
	padding: 5px;
    gap: 20px;
    background-color: none;
}
.tegelcontainerpf {
	padding: 100px auto;
    gap: 20px;
}
.tegelcontainerpf p{
    margin-bottom: 140px;
}
.footerleft {
    background-size: 180px;
}
}
/* --------------------------------------MEDIASCREEN 1300PX-------------------------------------------------- */

@media screen and (min-width: 1300px) {
#selfiestaand{
    bottom: 10vh;
}
#mainheader {
    height: 70vh;
}
.downsub{
    margin: 100px auto 0;
}
.maincontent {
    top: -400px;
}
}
/* --------------------------------------MEDIASCREEN 1500PX-------------------------------------------------- */

@media screen and (min-width: 1500px) {

#mainheader {
    height: 80vh;
}
.downsub{
    margin: 10px auto 0;
}
.maincontent {
    top: -450px;
}
}

/*------------------------- Hover alleen voor desktops----------------- */
@media (hover: none) {
	.tegel1:hover, .tegel1:focus, .tegel1:active{
		background-color: var(--grey-base);
	}
	.tegel2:hover, .tegel2:focus, .tegel2:active{
		background-color: var(--secondary-base);
	}	
	.tegel3:hover, .tegel3:focus, .tegel3:active{
		background-color: var(--tertiary-base);
	}	
	.tegel4:hover, .tegel4:focus, .tegel4:active{
		background-color: var(--accent-two);
	}
	.tegel5:hover, .tegel5:focus, .tegel5:active{
		background-color: var(--accent-one);
	}
	.tegel6:hover, .tegel6:focus, .tegel6:active{
		background-color: var(--secondary-base);
	}
	.tegel7:hover, .tegel7:focus, .tegel7:active{
		background-color: var(--secondary-base);
	}
	.tegel8:hover, .tegel8:focus, .tegel8:active{
		background-color: var(--secondary-base);
	}
	.tegel9:hover, .tegel9:focus, .tegel9:active{
		background-color: var(--secondary-base);
	}
}