@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap') *, *::before, *::after {
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
}

* {
	margin: 0;
}

body {
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
}

main {
    margin-bottom: 50px;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
	overflow-wrap: break-word;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	word-break: unset;
	hyphens: auto;
}

p {
	font-size:15px;
}

p a {
	font-weight: 700;
	text-decoration: none;
	color: #85b61f;
}

p a:hover,
i a:hover {
	border-bottom: 2px dashed #85b61f;
}

i a {
	font-weight: 700;
	text-decoration: none;
	color: #85b61f;
}

i {
	font-size: 1.1rem;
}

h1,
h2,
h3 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
	margin-bottom: 4px;
	line-height: 1.2;
	margin-bottom: 20px;
}

strong {
	font-weight: 900;
	font-size: 17px
}

table {
	font-size:15px;
}

/* HEADER */
#header {
	height: 380px;
	width: 100%;
	background-image: url("../img/header.jpg");
	background-repeat: no-repeat, repeat;
	background-size: cover;
	background-position: center center;
}

/* NAVBAR + LOGO */

.menu a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	height: auto;
	float: left;
	display: inline-block;
	padding-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 15px;
	line-height: 1.5;
}

.menu a.active {
	background-color: #fff;
	color: #85b61f;
}

.menu a:hover {
	background-color: #fff;
	color: #85b61f;
}

#navbar {
	background-color: #85b61f;
	background: radial-gradient(circle, rgba(133, 182, 31, 1) 0%, rgba(104, 149, 94, 1) 100%);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: #FFF;
	display: block;
	padding: 20px;
	position: relative;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.top-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: 980px;
	margin: 0 auto;

}

.top-nav div img {
	width: 175px;
	margin-top: -84px;
	-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
}

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
	height: inherit;
}

.menu>li {
	margin: 0 2px;
	overflow: hidden;
}

.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#menu-toggle {
	display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: #fff;
	position: absolute;
	height: 4px;
	width: 30px;
	transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 2px;
}

.menu-button::before {
	content: '';
	margin-top: -8px;
}

.menu-button::after {
	content: '';
	margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
	background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-405deg);
}

@media (max-width: 700px) {
	.menu-button-container {
		display: flex;
		z-index: 999;
	}

	.menu {
		position: absolute;
		top: 56px;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
		z-index: 999;
		border-bottom: 23px solid #85b61f;
	}

	.menu li a {
		width: 100%;
		text-align: center;
		border-bottom: 1px dashed #fff;
		color: #272727;
	}

	.menu li a.active {
		background-color: white;
		color: #85b61f;
	}

	#menu-toggle~.menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: 0.2s;
	}

	#menu-toggle:checked~.menu li {
		border: 0px solid #333;
		height: auto;
		padding: 0px 0;
		transition: 0.2s;
	}

	.menu>li {
		display: flex;
		justify-content: center;
		margin: 0;
		width: 100%;
		color: white;
		background-color: #fff;
	}

	.menu>li:not(:last-child) {
		border-bottom: 1px solid #444;
	}

	.menu a {
		padding: 20px 0;
	}
}


/* INTRO */
.intro {
	max-width: 769px;
	margin: 0 auto;
	padding-top: 50px;
}

.intro h4 {
	position: relative;
	padding-left: 30px;
}

.intro p {
	padding-left: 30px;
}
main .intro:first-child p {
	padding-left:0px;
}

.intro h4::before {
	content: "\229A";
	display: inline-block;
	width: 20px;
	height: 20px;
	left: -2px;
	position: absolute;
	text-align: center;
}

.green-intro {
	height: 130px;
	background: radial-gradient(circle, rgba(133, 182, 31, 1) 0%, rgba(104, 149, 94, 1) 100%);
	text-align: center;
	padding-top: 170px;
	color: #fff;
}

.green.twee {
	padding-top: 60px;
	padding-bottom: 100px;
	height: inherit;
	margin-top: 0;
	background: radial-gradient(circle, rgba(133, 182, 31, 1) 0%, rgba(104, 149, 94, 1) 100%);
	text-align: center;
	color: #fff;
	padding-left: 10px;
	padding-right: 10px;
	clear: both;
}

.green-intro h3 {
	color: #fff;
	margin-bottom: 20px;
}

.video-wrapper {
	width: 100%;
	min-width: 0;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: -130px;
}

.video {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 56.25%;
	margin-top: 50px;
}

/* BUTTONS */
a.btn-white {
	color: #82b326;
	font-weight: 800;
	font-size: 18px;
	text-decoration: none;
	background-color: white;
	padding: 5px 10px;
	border: 2px solid transparent;
	transition: 0.5s;
	display: inline-block;
	margin-top: 10px;
}

a.btn-white:hover {
	color: #fff;
	background-color: transparent;
	border: 2px solid white;
	transition: 0.5s;
}

a.btn-green {
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	text-decoration: none;
	background-color: #82b326;
	padding: 5px 10px;
	border: 2px solid transparent;
	transition: 0.5s;
	display: inline-block;
	margin-top: 10px;
}

a.btn-green:hover {
	color: #82b326;
	background-color: transparent;
	border: 2px solid #82b326;
	transition: 0.5s;
}

.white a.btn-white {
	color: #ffffff;
	font-weight: 800;
	font-size: 18px;
	text-decoration: none;
	background-color: #82b326;
	padding: 5px 10px;
	border: 2px solid transparent;
}

.white a.btn-white:hover {
	color: #82b326;
	background-color: transparent;
	border: 2px solid #82b326;
}

/* CALL TO ACTION */
.white {
	background-color: #fff;
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	padding: 20px 60px;
	margin-top: -62px;
	color: #82b326;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	display:block;
	margin:0 auto;
	max-width:900px;
	padding-left:15px;
	padding-right:15px;
	margin-top:50px;
}

footer div {
	width: 50%;
	float: left;
	margin-bottom: 50px;
}

footer h4 {
	color: #82b326;
}

.footer-img {}

.footer-img img {
	width: 100%;
}

/* COUNTER */
#counter {
	padding-left: 5.5vw !important;
	padding-right: 5.5vw !important;
	background-color: #e8e8e8;
	font-size: 0;
}

.counter-box {
	display: inline-block;
	padding: 30px 0;
	text-align: center;
	width: 32%;
}

.counter-box p {
	margin: 5px 0 0;
	padding: 0;
	color: #909090;
	font-size: 18px;
	font-weight: 500
}

.counter {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #666;
	line-height: 28px
}

/* AFNEMERS */
.afnemers {
	margin-top: 50px;
	text-align: center;
	margin-bottom: 50px;
	font-size: 0;
}

.afnemers .container {
	display: inline-block;
	text-align: center;
	font-size: 0;
	width: 33%;
	box-sizing: border-box;
}

.afnemers .container img {
	margin: 0 auto;
	width: 75%;
	max-width: 130px;
}

/* PAGE TITLES */
#page-intro {
	background: radial-gradient(circle, rgb(139 139 139) 0%, rgb(215 215 215) 100%);
	padding: 50px 20px;
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
}

/* OVER */
#over {
	max-width: 980px;
	margin: 0 auto;
}

#over .content {
	width: 60%;
	display: inline-block;
	box-sizing: border-box;
	margin-bottom: 40px;
}

#over .img {
	width: 40%;
	display: inline-block;
	margin-bottom: 30px;
}

#over .content.left {
	float: left;
	padding-right: 20px;
}

#over .content.right {
	float: right;
	padding-left: 30px;
}

.break {
	clear: both;
}

/* KLANTEN */
#part {
	border: 4px solid #ffb824;
	padding: 20px;
	color: #ffb824;
	font-weight: 600;
	margin-bottom: 20px;
}

/* CONTACT */
#main .contact {
	width:50%;
	display:inline-block;
	float:left;
}
#main table.contact {
	width:100%;
	display:inline-block;
}
table.contact tr td {

}
table.contact tr td:first-child {
	width: 70%;
}
table.contact tr td:last-child {
	width: 50%;
	text-align:right;
}
.map-responsive {
	overflow: hidden;
	position: relative;
	height: 300px;
	width:50%;
	display:inline-block;
}

.map-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* REGULAR CONTENT */
#main {
	max-width: 992px;
	margin: 0 auto;
}


@media only screen and (max-width: 992px) {
	main {
		padding-left: 30px;
		padding-right: 30px;
	}

	.green-intro,
	#counter,
	.green.twee {
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 50px;
		padding-right: 50px;
	}

	.footer-img {}

}

@media only screen and (max-width: 768px) {
	.counter-box {
		width: 100%;
	}
	.white a.btn-white, .white a.btn-green {
		font-size:14px;
	}
}

@media (max-width: 700px) {
	#over .content {
		width: 100%;
		padding-left: 0px;
	}

	#over .content.right {
		padding-left: 0;
	}

	#over .img {
		width: 100%;
	}

	#header {
		height: 200px;
	}

	.top-nav div img {
		width: 125px;
		margin-top: -84px;
	}
	#main .contact {
	width:100%;
	}
	#main .map-responsive {
	width:100%;
	margin-top:20px;
	}
}