/* ----------------------------------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(105, 105, 105, 0.51);

    --grey-background: #d4d4d4;
    --grey-background-opac: rgba(240, 240, 240, 0.8);
	--black-background-opac: rgba(0,0,0, 0.3);
	--white-background-opac: rgba(255,255,255, 0.3);
}
/* Alleen styling toepassen als het apparaat een muis heeft */

/* ----------------------------------global-styles---------------------------------- */
@import "reset.css";

@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");
}
*{
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	min-height: 100%;
	overflow: -moz;
	overflow-y: scroll;
	overflow-anchor: none;
}
body {
    font: 500 2rem/1.5 boston, sans-serif;
	padding: 0;
	margin: 0;
	color: var(--secondary-shade);
}
body::after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    /* Use 100vh for a better fix with the mobile address bar appearing/disappearing */
    height: 100vh;
    z-index: -1; /* Puts the background behind your main content */
    background: var(--white-background-opac) url('../images/brug.jpg') top right no-repeat;
	background-blend-mode:color-burn;
	background-size:150vh;
}

/* ---------html elementen---------------------------------- */

h1,h2,h3,h4{
	font: 900 3rem/1.3 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; 
}
#selfiestaand{
	position: absolute;
	width: 25vw;
	right: 5px;
	top: 50vh;
	border-radius: 4px;
	z-index: 9;
	transition: 1s;
	display: inline-block;
}
.down{
	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);
	}
}
fieldset{
	position: absolute;
	right: 5px;
	top: 10vh;
	padding: 2px;
	font-size: 12px;
	margin: 0;
	text-align: left;
	max-width: 67px;
	z-index: 21;
}
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;
}
.construction{
	font-size: 1.6rem;
}
.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);
}
#privacypolicy{
	text-decoration: underline;
	font-size: 1.8rem;
}
.logosmall{
    width: 30px;
	height: 30px;
}
/* --------------header-------------- */

#mainheader {
    position: fixed;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: top;
	height: 50px;
	z-index: 21;
    width: 100%;
}
#logothepage{
	display: block !important;
    position: absolute;
	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: 20;
}
.mainnav{
	height: 310px;
    display: flex;
	flex-direction: column;
    position: fixed;
    right: -100%;
	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: .5rem;
    width: 100%;
}
.mainnav li{
	margin: 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: 700;
	transition: 0.5s;
    cursor: default;
}
.menuactive:hover{
	background: var(--primary-shade);
	cursor: default;
	transition: 0.5s;
	font-weight: 700;
}
.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: 700;
	transition: 0.5s;
    cursor: pointer;
	color: var(--secondary-shade);
	background: rgba(0,0,0,.1);
	width: 100%;
}
.menuitem:hover{
    background: rgba(0,0,0,.5);
	cursor: pointer;
	font-weight: 700;
	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: 20;
	}
.line1, .line2, .line3{
    display: block;
	width: 40px;
	height: 3px;
	background: black;
	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;
	min-height: max-content;
    flex-wrap: wrap;
	max-width: 100%;
}
.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%;
}
.asterixdivmain{
	margin: 0 auto;
	text-align: center;
    padding: 20px;
	display: flex;
	justify-content: center;
    font-size: 30px;
    color: var(--grey-base);
    width: 100%;
}
.asterixdivsub{
	margin: 0 auto;
	text-align: center;
    padding: 20px;
	display: flex;
	justify-content: center;
    font-size: 30px;
    color: var(--grey-base);
    width: 100%;
}
.maincontent {
	display: flex;
	flex-wrap: wrap;
    margin: 2px auto 0 auto;
    padding: 0;
	transition: 0.5s;
	width: 100%;
	min-height: 100px;
	background-color: var(--white-background-opac);
}
#hiddenimg {
	visibility: hidden;
	width: 100%;
	height: 73vh;
    margin: 0;
}
.insprong{
	padding: 0 0 0 40px;
}
.subcontent{
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	flex-wrap: wrap;
	min-height: max-content;
	transition: 0.5s;
    width: 100%;
	background-color: var(--white-background-opac);
}
.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: 100px auto;
	padding: 30px 10px;
	border: hidden;
	border-radius: 4px;
	transition: 0.5s;
	overflow-wrap: break-word;
	word-wrap: break-word;
	z-index: 20;
}
.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: 0 auto 100px;
}
.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;
    flex-wrap: wrap;
	min-height: 400px;
	margin: 0;
	display: flex;
	overflow: visible;
	transition: 0.2s;
	top: 0;
	position: relative;
    gap:1px;
    padding: 0;
	width: 100%;
}
.tegelcontainer{
	gap:40px;
}
.tegelcontainerpf{
	padding: 100px 0;
	background-color: var(--black-background-opac);
}
.tegelcontainer::-webkit-scrollbar, .tegelcontainerpf::-webkit-scrollbar {
	display: none; /* Hides the scrollbar */
}
.tegels {
	padding: 0 0 140px 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(--grey-base);
	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-size: 3rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	min-height: 60px;
}
.tegels p {
	margin: 15px 5px 150px 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 2px 5px 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 {
	width: 45vw;
	display: inline-block;
	padding: 5px;
	min-width: 300px;
	border: hidden;
	border-radius: 4px;
	margin: 0 auto;
	transition: 0.5s;
    resize: none;
}
.form-group label{
	text-align: left;
    padding: 0;
	color: var(--secondary-shade);
}
.g-recaptcha{
    padding: 0 30px;
}
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;
    background-color: var(--white-background-opac);
	padding-top: 10rem;
	transition: 0.5s;
    margin: -1px 0;
}

.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.png) 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;
}
.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){
body::after {
    background: var(--white-background-opac) url('../images/brug.jpg') right/cover no-repeat;
}
h2{
	font-size: 2.6rem;
}
#logothepage{
	width: 8rem;
}
#hiddenimg {
	height: 90vh;
}
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;
}
.asterixdivmainindex{
    display: none;
}
.box1, .box2, .box3, .box4, .box5, .box6, .box7 {
	width: 80%;
	position: relative;
	flex-wrap: wrap;
}
.box2 {
	text-align: center;
}
.box3 {
	padding: 10px;
}
.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;
}
.tegels {
	min-width: 180px;
    max-width: 200px;
    min-height: fit-content;
}
.tegels p{
	margin: 5px;
}
.tegels h5{
	font-size: 1.8rem;
	}
#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;
}
#selfiestaand{
	width: 20vw;
	top: 40vh;
}
}
/* --------------------------------------MEDIASCREEN 1150PX-------------------------------------------------- */

@media screen and (min-width: 1150px) {
body {
	font: 400 2.2rem/2.6rem boston, sans-serif;
}
h2{
	font-size: 3.2rem;
}
.box1 h3, .box2 h3{
	font-size: 3.4rem;
	color: var(--primary-shade);
}

/* -------------------------header---------------------------- */
.asterixdivmain{
    display: none;
}
#logothepage{
	width: 10rem;
}
.menu_icon_box{
	display: none;
}
.mainnav{
	border-bottom: 0.2rem solid var(--secondary-shade);
	padding: 0;
	margin: 0;
    z-index: 10;
    opacity: 1;
    pointer-events: fill;
	flex-direction: row;
    position: relative;
    right: 0;
	height: auto;
	background: none;
}
.menuitem{
	width: max-content;
	line-height: 2rem;
	padding: 3px 10px 5px 10px;
	margin: 0 5px 0 5px;
	text-transform: lowercase;
	background: rgba(0,0,0,.0);
}
.menuactive{
	width: max-content;
	line-height: 2rem;
	padding: 3px 10px 5px 10px;
	margin: 0 5px 0 5px;
    color: black;
	text-transform: lowercase;
	background: rgba(0,0,0,.1);
}
.menuactive:hover{
	background: rgba(0,0,0,.1);
}
    
/* -----------------------main------------------------------ */
#selfiestaand{
	width: 15vw;
}
.down{
	visibility: hidden;
	display: none;
}
.mainindex {
	position: relative;
	margin: -70px auto 0 0;
	background: none;
}
.maincontent {
	margin: 0 auto;
	position: unset;
	background: none;
	min-height: 200px;
}
.box1 {
	top: 15vh;
	left: 90px;
	position: absolute;
	width: 50vw;
	margin: 0 10px;
	background: none;
}
.box2 {
	top: 65vh;
	left: 90px;
	position: absolute;
	width: 65vw;
	margin: 0 10px;
	background: none;
}
.box3, .box4, .box5, .box6, .box7 {
    position: relative;
	width: 60vw;
}
.box6 {
	width: 50vw;
	top: 10vh;
	left: 100px;
	position: absolute;
	text-align: left;
	margin: 0 10px;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	background: var(--grey-base-opac) url(../images/cellphone-6531139_640.jpg) bottom/contain no-repeat;
	background-blend-mode:screen;
	}
.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;
}
.tegelcontainerpf {
	padding: 5vw;
    gap: 20px;
}
.footerleft {
    background-size: 180px;
}
}

/*------------------------- 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);
	}
}