*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial; 
	scroll-behavior: smooth;
}
h1 {
	font-size: 40px;
	padding-bottom: 50px;
}
.container {
	width: 100%;
	height: 100vh;
} 
#TopBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
}
  
#TopBtn:hover {
	background-color: #555;
	transition: 0.5s;
}
#PhoneBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: rgba(40, 154, 128, 0.9);
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 10px;
}
#PhoneBtn i {
	margin-right: 10px;
}
#PhoneBtn:hover {
	background-color: rgba(40, 154, 128, 1.0);;
	box-shadow: 0 5px 15px rgba(14, 227, 39, .4);
	transition: 0.5s;
  }

.navbar {
	width: 100%;
	height: 80px;
	background-color: #fff;
	padding-left: 16%;
	padding-right: 16%;
	display: flex;
	align-items: center;
	border-width: 0px;
	border-bottom-color: #074694;
	border-bottom-style: solid;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	z-index: 10;
	position: fixed;
}
.logo {
	width: 250px;
} 
.navbar nav{
	flex: 1;
	text-align: right;
}
.navbar nav ul li{
	list-style: none;
	display: inline-block;
	margin-right: 30px;
}	
.navbar nav ul li a{
	text-decoration: none;
	color: #000;
	font-size: 20px;
	color: #074694;
	font-weight: bold;
}
.navbar nav ul li a:hover{
	color: #289a80;
}
.menu-icon{
	width: 25px;
	cursor: pointer;
	display: none;
	margin-right: 2%;
}



.banner {
	padding-top: 80px;
	min-height: 45vh;
}
	.banner-row {
		display: flex;
	}
	.banner-column {
		flex: 25%;
		padding: 10px;
	}
	.banner img {
		height: 45vh;
		object-fit: cover;
	  }
.m-banner {
	padding-top: 80px;
	min-height: 45vh;
	display: none;
}
.m-banner-row {
	display: flex;
}	
.m-banner-column {
	flex: 25%;
	padding: 10px;
}
.m-banner img {
	height: 45vh;
	object-fit: cover;
}



.header-container {
	height: 500px;
}
.header {
	width: ;
	height: 500px;
	background-image: linear-gradient(rgba(57,58,59,0.8),rgba(57,58,59,0.8)),url(../images/bg.jpg);
	background-position: relative;
	background-size: ;
	padding: 0 0%;
	overflow: hidden;
} 
.headerm {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(57,58,59,0.8),rgba(57,58,59,0.8)),url(../images/bg.jpg);
	background-position: relative;
	background-size: cover;
	padding: 0 0%;
	display: none;
} 
.header-text {
	padding-top: 10%;
	padding-left: 16%;
	font-size: 25px;
	font-family: sans-serif; 
	font-weight: bold;
	letter-spacing: 1.5px;
	transform: translateZ(1px);
	z-index: 2;
	opacity: 1.0;
}
.header-text p {
	font-family: sans-serif; 
	text-decoration: none;
	color: #ffffff;
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 2px;
	Line-height: 1.8;
	z-index: 2;
	opacity: 1.0;
	text-shadow: 2px 2px #000000;
	-webkit-animation: fadeIn ease 2.5s;
	-moz-animation: fadeIn ease 2.5s;
	-o-animation: fadeIn ease 2.5s;
	-ms-animation: fadeIn ease 2.5s;
}
.header-text a {
	font-size: 30px;
}
.btn-primary {
	background-color: rgba(40, 154, 128, 0.8);
	border: none;
	color: #ffffff;
	box-shadow: none;
	padding: 20px 65px;
	margin-top: 0px;
	text-decoration: none;
	border-radius: 30px;
	animation: fadeIn ease 3s;
	-webkit-animation: fadeIn ease 5s;
	-moz-animation: fadeIn ease 5s;
	-o-animation: fadeIn ease 5s;
	-ms-animation: fadeIn ease 5s;
}
.btn-primary:hover {
	background-color: rgba(40, 154, 128, 1.0);;
	box-shadow: 0 5px 15px rgba(14, 227, 39, .4);
	transition: 0.5s;
  }
.box1 {
	text-align: right;
	padding-right: 16%;
	color: #FFF;
	line-height: 1.8;
	padding-top: 10%;
}
.box1 p {
	letter-spacing: 4px;
	font-size: 70px;
}
.advies {
	opacity: 0;
}
.ondersteuning {
	opacity: 0;
}
.ontzorging {
	opacity: 0;
}
.slide-left {
	animation: slideleft 1s linear forwards;
}
.slide-right {
	animation: slideright 1s linear forwards;
}

@keyframes slideleft {
	0%{
		transform: translate(100px);
		opacity: 0;
	}
	100%{
		transform: translate(0px);
		opacity: 1;	
	}
}
@keyframes slideright {
	0%{
		transform: translate(-100px);
		opacity: 0;
	}
	100%{
		transform: translate(0px);
		opacity: 0.5;	
	}
}
.advies.slide-right {
	animation-delay: 4s;
}
.ondersteuning.slide-right {
	animation-delay: 5s;
}
.ontzorging.slide-right {
	animation-delay: 6s;
}
  @keyframes fadeIn {
	0% {
		opacity:0;
	  }
	50% {
	  opacity:0;
	}
	100% {
	  opacity:1;
	}
  }
  
  @-moz-keyframes fadeIn {
	0% {
		opacity:0;
	  }
	50% {
	  opacity:0;
	}
	100% {
	  opacity:1;
	}
  }
  
  @-webkit-keyframes fadeIn {
	0% {
		opacity:0;
	  }
	50% {
	  opacity:0;
	}
	100% {
	  opacity:1;
	}
  }
  
  @-o-keyframes fadeIn {
	0% {
		opacity:0;
	  }
	50% {
	  opacity:0;
	}
	100% {
	  opacity:1;
	}
  }
  
  @-ms-keyframes fadeIn {
	0% {
		opacity:0;
	  }
	50% {
	  opacity:0;
	}
	100% {
	  opacity:1;
  }
  }

.section2 {
	margin-top: 25px;
	margin-left: 16%;
	margin-right: 16%;
	min-height: 200px;
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 35px;
	padding-bottom: 25px;
	display: flex;

	background-color: #074694;
	border-width: 1px;
	border-style: ridge;
	border-color: #074694;
	border-radius: 25px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.section2 h1 {
	font-size: 32px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: #fff;
}
.section2 {
	font-weight: bold;
}
.s2column1 {
	float: left;
	width: 35%;
	padding-right: 4%;
	line-height: 1.4;
	font-size: 20px;
}
.s2column1 p{
	margin-bottom: 10px;
	color: #fff;
}
.s2column2 {
	float: right;
	width: 65%;
	padding-left: 1%;
	padding-top: 10px;
}
.s2column2 p{
	margin-bottom: 10px;
	line-height: 1.4;
	color: #fff;
}
.section3 {
	width: 100%;
	min-height: 100px;
	padding-left: 16%;
	padding-right: 16%;
	padding-top: 35px;
	padding-bottom: 25px;
	display: flex;
	line-height: 1.4;
}
.section3 h1 {
	color: #074694;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.s3column1 {
	width: 33.33%;
	padding-right: 2%;
}
.s3column2 {
	width: 33.33%;
	padding-left: 2%;
	padding-right: 2%;
}
.s3column3 {
	width: 33.33%;
	padding-left: 2%;
}


/* ------- start of slogan ------- */

.slogan {
	height: 200px;
	padding-left: 16%;
	padding-right: 16%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slogan p {
	font-size: 30px;
	margin-top: auto;
	margin-bottom: auto;
	text-align: center;
}

/* ------- end of slagon ------- */

/* ------- start of veiligheidsscan ------- */

.banner1 {
	min-height: 400px;
	background-image: linear-gradient(rgba(57,58,59,0.7),rgba(57,58,59,0.7)),url(../images/bg3.jpg);
	background-attachment: fixed;
	background-size: cover;
	padding-top: 80px;
	overflow: hidden;
}

/* ------- end of veiligheidsscan ------- */





/*---------------- Begin - Diensten ----------------*/
.diensten {
	width: 100%;
	min-height: 100vh;
	background-color: #fff;
	padding-top: 80px;
	padding-left: 16%;
	padding-right: 16%;
	padding-bottom: 50px;
}
.diensten h1 {
	text-align: center;
	color: #074694;
}
.diensten h3 {
	padding: 18px 0px 10px 0px;
	color: #074694;
}
.diensten p {
	padding-bottom: 10px;
}
.content {
	overflow: hidden;
	margin-top: 18px;
	background-color: #fff;
	max-height: 0;
	transition: max-height 0.5s ease-out;
}
.collapsible {
	border: none;
	color: #074694;
	background-color: #fff;
	transition-duration: 0.4s;
	cursor: pointer;
	padding: 10px;
	transition: 0.5s;
}
.active, .collapsible:hover {


	background-color: #074694;
	color: #fff;
}
/*---------------- Einde - Diensten ----------------*/

.diensten-faq {
	min-height: 5vh;
	background-color: #074694;
	margin-top: 80px;
	border-radius: 25px;
	padding-top: 50px;
	padding-bottom: 50px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.diensten-faq h2 {
	text-align: center;
	color: #fff;
	padding-bottom: 50px;
}
.diensten-faq details {
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 25px;
	color: #fff;
}
.diensten-faq summary {
	font-weight: bold;
	color: #fff;
}
.diensten-faq p {
	padding-top: 10px;
	color: #fff;
}





.banner2 {
	min-height: 400px;
	background-image: linear-gradient(rgba(57,58,59,0.7),rgba(57,58,59,0.7)),url(../images/bg6.jpg);
	background-attachment: fixed;
	background-size: cover;
	padding-top: 80px;
	overflow: hidden;
}


/*---------------- Begin - Over Ons ----------------*/
.overons {
	width: 100%;
	background-color: rgba(243, 243, 243, 1.0);
	padding-bottom: 50px;
	border-width: 1px;
	border-bottom-color: #074694;
	border-bottom-style: ridge;
	border-top-style: ridge;
	border-top-color: #074694;
}
.teamtitel {
	width: 100%;
	justify-content: center;
	text-align: center;
	margin: 80px 0px 0px 0px;
}
.teamtitel h1 {
	color: #074694;
}
.overons p {
	text-align: center;
	color: #000;
	padding-bottom: 50px;
}
.team {
	display: flex;
	justify-content: space-around;
	margin: 20px 80px;
	padding-left: 7%;
	padding-right: 7%;
}
.profiel {
	flex-basis: 350px;
	margin-left: 10px;
	align-items: center;
	text-align: center;
}
.profiel .profiel-img {
	width: 260px;
	border-radius: 35%;
	filter: grayscale(100%);
	cursor: pointer;
	transition: 400ms;
}
.profiel:hover .profiel-img {
	filter: grayscale(0%);
	border-radius: 10%;
}
.naam {
	margin-top: 30px;
	font-size: 35px;
}
.profiel h3 {
	color: #074694;
}
.profiel h5 {
	font-size: 18px;
	font-weight: 100;
	letter-spacing: 3px;
	color: #393a3b;
}
.profiel p {
	font-size: 16px;
	margin-top: 20px;
	text-align: justify;
	margin-left: 0%;
	margin-right: 0%;
}
/*---------------- Einde - Over Ons ----------------*/


#map {
	height: 500px;
	width: 100%;
	margin-top: 50px;
	display: none;
}


.contact {
	width: 100%;
	min-height: 50vh;
	background-color: #074694;
	padding-top: 80px;
	padding-bottom: 50px;
}
.contactitems {
	display: flex;
	justify-content: space-around;
	padding-left: 16%;
	padding-right: 16%;
}
.contactitem {
	align-items: center;
	text-align: center;
}
.fa-5x {
	color: #fff;
}
.contact a {
	cursor: pointer;
}
/*#toggleBtn {
	cursor: auto;
}*/
.contact i {
	transition: transform 0.2s;
}
.contact i:hover {
	transform: scale(1.2);
}
.contact h1 {
	text-align: center;
	color: #fff;
	padding-bottom: 50px;
}
.contact h2 {
	text-align: center;
	color: #fff;
	padding-bottom: 20px;
}
.contact p {
	text-align: center;
	color: #fff;
	padding-bottom: 70px;
}
.opencontactform {
	background-color: #777;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
  }
.contactform {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.contactform form {
	width: 90%;
	max-width: 600px;
}
.inputgroup {
	margin-bottom: 50px;
	position: relative;
}
.inputgroup input, textarea {
	width: 100%;
	padding: 10px;
	outline: 0;
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
	font-size: 15px;
}
.inputgroup label {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px;
	color: #fff;
	cursor: text;
	transition: 0.2s;
}
.contactform button {
	padding: 10px 0;
	color: #fff;
	outline: none;
	background: transparent;
	border: 1px solid #fff;
	width: 100%;
	cursor: pointer;
	transition: 0.5s;
}
.contactform button:hover {
	letter-spacing: 1px;
}
.inputgroup input:focus~label,
.inputgroup input:valid~label,
.inputgroup textarea:focus~label,
.inputgroup textarea:valid~label {
	top: -35px;
	font-size: 14px;
}
.row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.row .inputgroup {
	flex-basis: 48%;
}






/* ------- start of Footer ------- */

	.footer {
		width: 100%;
		min-height: 300px;
		background-color: #2a2b2b;
		display: flex;
	}
	.column {
		float: left;
		padding: 10px;
		padding-top: 40px;
		/*width: 33.33%;*/
	}
	.column h1{
		color: #fff;
		padding-bottom: 10px;
	}
	.column p{
		padding-top: 20px;
		color:#fff;
		line-height: 2;
		font-size: 14px;
	}
	.column a{
		color:#fff;
		line-height: 2;
		font-size: 14px;
		text-decoration: none;
	}
	.column nav ul li{
		list-style: none;
		line-height: 2;
	}	
	.column nav ul li a{
		text-decoration: none;
		color: #fff;
		font-size: 14px;
	}
	.column nav ul li a:hover{
		color: #289a80;
	}
	.mobiel {
		display: none;
	}
	.left {
		padding-left: 16%;
		width: 50%;
	}
	.middle{
		padding-left: 10%;
		width: 25%;
	}
	.right{
		padding-right: 16%;
		text-align: left;
		width: 25%;
		float: right;
	}

/* ------- end of Footer ------- */
/* ------- start of Disclaimer ------- */

	.disclaimer {
		width: 100%;
		height: 50px;
		padding-left: 16%;
		background-color: #393a3b;
		display: flex;
		border-width: 2px;
		border-top-color: #393a3b;
		border-top-style: ridge;
		z-index: 10;
	}
	.disclaimer p{
		color:#ffffff;
		margin-top: auto;
		margin-bottom: auto;
		font-size: 10px;
	}
	.disclaimer a{
		color:#ffffff;
		margin-top: auto;
		margin-bottom: auto;
		font-size: 10px;
	}
 
/* ------- end of Disclaimer ------- */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
	/* -------#### Mobiele versie van de website ####------- */
	@media only screen and (max-width:1150px){
		nav {
			display: block;
		}
		nav ul{
				width: 100%;
				background: #FFF;
				position: absolute;
				top: 75px;
				right: 0;
				z-index: 2;
				background-color: #fff;
				display: block;
		}
		nav ul li{
			display: block;
			margin-top: 10px;
			margin-bottom: 10px;
		}
		.navbar {
			padding-left: 1%;
			padding-right: 1%;
		}
		.navbar nav ul li{
			display: block;
		}	
		.menu-icon{
			display: block;
		}
		#menulist{
			overflow: hidden;
			transition: 1s;
		}
		.banner {
			display: none;
		}
		.m-banner {
			display: block;
			height: 25vh;
			min-height: 35vh;
			padding-bottom: 10px;
		}
		.m-banner img {
			height: 25vh;
		}
		.header {
			background-position: center;
			display:none;	
		}
		.headerm {
			background-position: center;
			display: block;	
			overflow: hidden;
		}
		.header-text {
			padding-top: 30%;
			padding-left: 2%;
			font-size: 20px;
		}
		.header-text p {
			font-size: 32px;
			transform: none;
			-webkit-animation: fadeIn ease 0s;
			-moz-animation: fadeIn ease 0s;
			-o-animation: fadeIn ease 0s;
			-ms-animation: fadeIn ease 0s;
		}
		.header-text a {
			font-size: 22px;
		}

		.section2 {
			margin-top: 25px;
			margin-left: 0;
			margin-right: 0;
			min-height: ;
			width: 100%;
			padding-left: 4%;
			padding-right: 4%;
			padding-top: 35px;
			padding-bottom: 25px;
			display: block;
			background-color: #074694;
			border-width: 0px;
			border-style: none;
			border-color: ;
			border-radius: 0px;
			box-shadow: none;
			overflow: hidden;
		}
		.section2 h1 {
			font-size: 32px;
			margin-bottom: 10px;
			padding-bottom: 10px;
			color: #fff;
		}
		.section2 {
			font-weight: bold;
		}
		.s2column1 {
			float: left;
			width: 100%;
			padding-right: 4%;
			line-height: 1.4;
			font-size: 20px;
		}
		.s2column1 p{
			margin-bottom: 10px;
			color: #fff;
		}
		.s2column2 {
			float: left;
			width: 100%;
			padding-left: 0%;
			padding-top: 10px;
		}
		.s2column2 p{
			margin-bottom: 10px;
			line-height: 1.4;
			color: #fff;
		}

		/*.section2 {
			width: 100%;
			min-height: 200px;
			padding-left: 2%;
			padding-right: 2%;
			padding-top: 35px;
			padding-bottom: 25px;
			display: block;
			background-color: #f3f3f3;
			border-width: 1px;
			border-bottom-color: #074694;
			border-bottom-style: ridge;
			border-top-style: ridge;
			border-top-color: #074694;
			overflow: hidden;
		}
		.s2column1 {
			float: center;
			width: 100%;
			padding-right: 2%;
			padding-left: 2%;
			line-height: 1.4;
			font-size: 20px;
		}
		.s2column1 p{
			margin-bottom: 10px;
		}
		.s2column2 {
			float: center;
			width: 100%;
			padding-left: 2%;
			padding-right: 2%;
		}
		.s2column2 p{
			margin-bottom: 10px;
			line-height: 1.4;
		}*/
		.section3 {
			width: 100%;
			min-height: 100px;
			padding-left: 2%;
			padding-right: 2%;
			padding-top: 35px;
			padding-bottom: 25px;
			display: block;
			line-height: 1.4;
			overflow: hidden;
		}
		.section3 h1 {
			padding-top: 20px;
		}
		.s3column1 {
			width: 100%;
			padding-left: 2%;
			padding-right: 2%;
		}
		.s3column1 p{
			margin-bottom: 10px;
		}
		.s3column2 {
			width: 100%;
			padding-left: 2%;
			padding-right: 2%;
			padding-top: 20px;
			padding-bottom: 1%;
		}
		.s3column2 p{
			margin-bottom: 10px;
		}
		.s3column3 {
			width: 100%;
			padding-left: 2%;
			padding-right: 2%;
		}
		.s3column3 p{
			margin-bottom: 10px;
		}
		.slogan {
			padding-left: 10%;
			padding-right: 10%;
		}
		.veiligheidsscan {
			height: 400px;
			background-attachment: scroll;
			background-size: cover;
		}
		.banner1 {
			background-attachment: scroll;
			background-size: cover;
			background-position: center;
		}
		.diensten {
			padding-left: 4%;
			padding-right: 4%;
		}
		.banner2 {
			background-attachment: scroll;
			background-size: cover;
			background-position: center;
		}
		.team {
			flex-direction: column;
		}
		.profiel {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
		}
		.profiel p {
			text-align: center;
			margin: 20px 10px 80px 10px;
			font-size: 20px;
		}
		.contact {
			padding-left: 4%;
			padding-right: 4%;
		}
		.contact p {
			padding-bottom: 0;
		}
		.contactitems {
			flex-direction: column;
		}
		.contactitem {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			margin-top: 100px;
		}

		/* ------- start of Footer ------- */

		.footer {
			width: 100%;
			min-height: 400px;
			background-color: #2a2b2b;
			display: flex;
		}
		.column {
			float: left;
			padding: 10px;
			padding-top: 40px;
			width: 100%;
		}
		.column h1{
			color: #fff;
		}
		.column p{
			padding-top: 20px;
			color:#fff;
			line-height: 1.6;
			font-size: 14px;
		}
		.column nav ul li{
			list-style: none;
			line-height: 2;
			display: inline-block;
		}	
		.column nav ul li a{
			text-decoration: none;
			color: #fff;
			font-size: 14px;
		}
		.column nav ul li a:hover{
			color: #289a80;
		}
		.mobiel {
			display: block;
		}
		.pc {
			display: none;
		}
		.left {
			padding-left: 1%;
			width: 50%;
		}
		.middle{
			width: 0;
			display: none;
		}
		.right{
			padding-right: 1%;
			text-align: right;
			width: 50%;
		}

		/* ------- end of Footer ------- */
		/* ------- start of Disclaimer ------- */

		.disclaimer {
			padding-left: 1%;
		}
 
		/* ------- end of Disclaimer ------- */
	}