* {
	margin: 0;
	padding: 0;
	outline: 0;
	border: none;
	box-sizing: border-box;
}

body {
	font-family: 'CocoGothic-Regular', sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: #585857;
	overflow-x: hidden;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.hidden {
	display: none;
}

.fullwidth {
	width: 100%;
}

.tablet,
.phone {
	display: none;
}


h1 {
	font-size: 60px;
	line-height: 70px;
	text-transform: uppercase;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-weight: 100;

}

h2 {
	font-size: 48px;
	line-height: 58px;
	text-transform: uppercase;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-weight: 100;

}

h3 {
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-weight: 100;
}


p {
	font-size: 16px;
	line-height: 20px;
}

a {
	color: inherit;
	text-decoration: underline;
}

.text-light {
	font-family: 'CocoGothic-Light', sans-serif;
}

section {
	position: relative;
	float: left;
	width: 100%;
	padding: 80px 0;
}

.notop {
	padding: 30px 0 80px;
}

.nultop {
	padding-top: 0;
}

.lightgrey {
	background: #F9F9F9;
}

.yellow {
	background: #ffdd00;
}

.darkgrey {
	background: #585857;
}

.white {
	background: #FFF;
}

.button {
	position: relative;
	display: inline-block;
	height: 40px;
	padding: 7px 30px 0;
	min-width: 200px;
	text-align: center;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 18px;
	line-height: 1;
	border: 3px solid #585857;
	color: #585857;
	border-radius: 20px;
	text-decoration: none;
	transition: background .25s, color .25s;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.button:hover {
	background: #585857;
	color: #fff;
}

.contentbutton {
	border: none;
	padding: 5px 30px;
	margin-top: 5px;
}

.yellowtext {
	color: #ffdd00;

}

.sliderbuttons .button {
	background: none;
	border: 3px solid #585857;
	color: #585857;
}

.sliderbuttons .button:hover {
	background: #585857;
	color: white;
}



/* ------ */
/* HEADER */
/* ------ */

header {
	position: relative;
	float: left;
	width: 100%;
}

.header-white {
	position: relative;
	float: left;
	width: 25%;
	background: #fff;
	transition: .5s;
}

.header-logo {
	position: relative;
	float: left;
	width: 100%;
	height: 150px;
	padding: 35px 50px 0 0;
}

.header-logo img {
	float: right;
	width: 160px;
}

.header-menu {
	position: relative;
	float: right;
	width: 210px;
}

.header-menu ul {
	list-style-type: none;
}

.header-menu ul li a{
	font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	color: inherit;
	display: inline-block;
	transition: .25s;
	width: 100%;
	padding: 10px 0;
}

.header-menu ul li a:hover {
	transform: translateX(25px);
}

.header-menu ul li a:hover::before{
	content: url(../img/dot.png);
	position:absolute;
	left: -25px;
	top: auto;
}

.header-menu ul li a.current {
	font-family: 'CocoGothic-Bold', sans-serif;
}

.header-yellow {
	position: relative;
	float: left;
	width: 75%;
	min-height: 450px;
	background: #FFDD00;
	padding: 150px 0 80px 100px;
	transition: .5s;
}

.header-yellow-content {
	opacity: 1;
	transition: .25s;
	position: relative;
	float: left;
	width: 100%;
}

.header-yellow-content.getyellow {
	opacity: 0;
}

.header-introtext {
	position: relative;
	float: left;
	max-width: 800px;
	margin-top: 15px;
}

.header-introtext-home {
	position: relative;
	float: left;
	max-width: 410px;
	margin-top: 30px;
}

header h2 {
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-weight: 100;
	margin-top: 30px;
}

.header-contact {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 25px;
}

.button_container {
	position: relative;
	float: right;
	height: 50px;
	width: 40px;
	cursor: pointer;
	z-index: 100;
	transition: opacity .25s ease, width .15s, margin .15s;
	margin: 20px;
	display: none;
}

.button_container:hover {
	width: 36px;
	margin: 20px 22px;
}

.button_container.active > .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #585857;
}
.button_container.active > .middle {
	opacity: 0;
	background: #585857;
}

.button_container.active > .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: #585857;
}


.streep {
	background: #585857;
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	border-radius: 5px;
	top: 0;
	left: 0;
	transition: all .35s ease;
	cursor: pointer;
}

.streep:nth-of-type(2) {
	top: 11px;
}

.streep:nth-of-type(3) {
	top: 22px;
}

header .overlay {
	position: absolute;
	background: #fff;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: width .5s;
	overflow: hidden;
	z-index: 99;
}

header .open {
	width: calc(100% - 80px);
}

header .open li {
	animation: fadeInRight .5s ease forwards;
	animation-delay: .35s;
}

header .open li:nth-of-type(2) {
	animation-delay: .4s;
}
header .open li:nth-of-type(3) {
	animation-delay: .45s;
}
header .open li:nth-of-type(4) {
	animation-delay: .5s;
}
header .open li:nth-of-type(5) {
	animation-delay: .55s;
}
header .open li:nth-of-type(6) {
	animation-delay: .6s;
}

header nav {
	font-size: 24px;
	position: relative;
	float: left;
	width: 100%;
	padding: 80px 0 0 60px;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	display: block;
	width: 100%;
	position: relative;
	opacity: 0;
}

header nav ul li a {
	display: block;
	position: relative;
	color: #585857;
	text-decoration: none;
	line-height: 1;
	margin-bottom: 35px;
}



@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}

header nav ul li a::after {
	width: 50%;
	left: 25%;
}

.logo-mobiel {
	opacity: 0;
	position: absolute;
	width: 70px;
	left: -78px;
	transition: 0s;
	transition-delay: 0s;
}

.logo-mobiel img {
	width: 100%;
}

.logo-mobiel.hideme {
	opacity: 0;
}

.taalmenu.hide {
	display: none;
}

.taalkeuze.active::before {
	content: url(../img/dot.png);
	position:absolute;
	left: -25px;
	top: auto;
}

.taalkeuze.active {
	transform: translateX(25px);
	font-family: 'CocoGothic-Bold', sans-serif;
}

.talenkeuze {
	display: none;
	margin-left: 20px;
}

.talenkeuze.show {
	display: block;
}

.kruimelpad {
	position: relative;
	float: left;
	width: 100%;
	background: #f9f9f9;
	padding-top: 25px;
}

.kruimelpad ol {
	list-style-type: none;
}

.kruimelpad ol li {
	float: left;
	margin-right: 5px;
}

.kruimelpad ol li a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
}

.contactpersoon,
.contactpersoon-gegevens {
	position: relative;
	width: 100%;
	float: left;
}

.contactpersoon img {
	width: 150px;
}

.contactpersoon-gegevens a {
	color: inherit;
	text-decoration: none;
}

.contactpersoon-gegevens {
	margin-bottom: 20px;
}

.neemcontactop {
	width: calc(100% - 600px);
	position: relative;
	float: left;
}

.contactpersoon-icon {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
}

.cpregel {
	position: relative;
	float: left;
	width: 100%;
}

.headericon {
	position: absolute;
	right: -100px;
	top: -50px;
}


/* ------ */
/* FOOTER */
/* ------ */
footer {
	position: relative;
	float: left;
	width: 100%;
	background: #585857;
	color: #fff;
	padding: 70px 0;
	font-size: 14px;
}

.footer-titel {
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
	float: left;
	width: 100%;

}

.footer-subtitel {
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 18px;
	margin-top: 20px;
	position: relative;
	float: left;
	width: 100%;
}

.callme {
	position: relative;
	float: left;
	width: 100%;
	background: #ffdd00;
	padding: 40px 0;
}

footer .yellowtext {
	color: #ffdd00;
}

.footericon {
	width: 20px;
	position: relative;
	float: left;
	margin-right: 10px;
}

.footer-row {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
}

.footer-logo {
	float: right;
	position: relative;
	width: 200px;
}

.footer-wecare {
	position: relative;
	width: 100px;
	float: left;
	margin-top: 40px;
}


.copyright {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 40px;
}

.footer-belme {
	position: relative;
	float: left;
	/*width: 200px;*/
	height: 40px;
	border-radius: 3px;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	padding: 5px 0 0;
	margin-right: 40px;
}

.footerbutton {
	min-width: unset;
	/*width: 200px;*/
	float: left;
	position: relative;
	padding: 5px 30px;
	background: #ffdd00;
}

footer a {
	color: inherit;
	text-decoration: none;
}









/* ---- */
/* HOME */
/* ---- */
.home-slider-content {
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 22px;
	line-height: 26px;
}

.home-slider-content img {
	margin-bottom: 15px;
}

.home-slider-content a {
	text-decoration: none;
	color: inherit;
}

.owl-carousel {
	width: calc(100% - 160px);
	margin-left: 80px;
}

.owl-prev {
	position: absolute;
	left: -80px;
	top: calc(50% - 20px);
	width: auto;
}

.owl-next {
	position: absolute;
	right: -80px;
	top: calc(50% - 20px);
	width: auto;
}

.slider-arrows {
	width: 23px;
}

.homeslider {
	padding-bottom: 50px;
}

.break {
	height: 4px;
	width: 30px;
	border-radius: 2px;
	background: #ffdd00;
	position: relative;
	display: inline-block;
	margin: 10px 0 15px;
}

.filosofie {
	margin-top: 80px;
}

.hometekst {
	padding: 0 25%;
}

.sliderbuttons {
	margin-bottom: 80px;
}




/* ----- */
/* ABOUT */
/* ----- */

.aboutblok {
	margin-bottom: 80px;
}

.aboutblok h3 {
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-icon {
	width: 30px;
	position: relative;
	float: left;
	margin-right: 20px;
}

.tussenkop {
	font-size: 48px;
	line-height: 58px;
	text-transform: uppercase;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-weight: 100;
	margin-bottom: 15px;
}

.services {
	padding: 0 25%;
}

.services a {
	margin-top: 40px;
}






/* ---------- */
/* INDUSTRIES */
/* ---------- */

.industries-blok {
	position: relative;
	float: left;
	width: calc(100% / 5);
	text-align: center;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 24px;
	line-height: 28px;
	padding: 40px;
}

.industries-blok a {
	text-decoration: none;
	color: inherit;
}

.industries-blok img {
	width: 100%;
	margin-bottom: 15px;
}

.nobottom {
	padding-bottom: 0;
}







/* ---- */
/* FORM */
/* ---- */
.form-input {
	position: relative;
	width: auto;
	height: 40px;
	border-radius: 3px;
	padding: 10px;
	font-family: 'CocoGothic-Regular', sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: #585857;
	font-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	max-width: 100%;
}

@media only screen and (min-width: 960px) {
	.belmijterug form {
		display: flex;
		justify-content: space-between;
	}
	.callme .form-group {
		max-width: 25%;
		margin-right: 1.5rem;
	}
	
}
.invoerveld {
	position: relative;
	float: left;
	width: 100%;
	height: 40px;
	border-radius: 3px;
	padding: 10px;
	font-family: 'CocoGothic-Regular', sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: #585857;
	font-size: 16px;
	margin-bottom: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.textarea {
	position: relative;
	float: left;
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	min-height: 200px;
	max-height: 200px;
	height: 200px;
	border-radius: 3px;
	padding: 10px;
	font-family: 'CocoGothic-Regular', sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: #585857;
	font-size: 16px;
	margin-bottom: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.bottomspace {
	margin-bottom: 40px;
}

.checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #585857;
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
	float: left;
	margin-top: 5px;
}

.checkbox:checked::before {
	content: url("../img/icons/vinkjegrijs.png");
	position: absolute;
	right: -3px;
	top: -5px;
}

.input-validation-error
.form-input.error,
.invoerveld.error,
.textarea.error {
	border: 2px solid #ff0000;
}

label.error {
	display: none!important;
}

.berichtsucces h3 {
	margin-bottom: 5px;
}



/* ---- */
/* TABS */
/* ---- */

/* Style the tab */
.tabs {
	overflow: hidden;
}

/* Style the buttons inside the tab */
.tab {
	background-color: inherit;
	float: left;
	cursor: pointer;
	padding: 10px 20px;
	border-top: 4px solid #F9F9F9;
	font-family: 'CocoGothic-Bold', sans-serif;
	font-size: 18px;
}

/* Change background color of buttons on hover */
.tab:hover {
	border-top: 4px solid #ffdd00;
}

/* Create an active/current tablink class */
.tab.active {
	background-color: #fff;
	border-top: 4px solid #ffdd00;
}

/* Style the tab content */
.tabcontent {
	display: none;
}

.tabcontent {
	-webkit-animation: fadeEffect 1s;
	animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@-webkit-keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}

.productbalk {
	position: relative;
	float: left;
	width: 100%;
	padding: 10px 20px;
}

.productbalk:nth-of-type(odd) {
	background: #fff;
}

.productbalk a {
	color: inherit;
	text-decoration: none;
}

.productbalkrel {
	position: relative;
	float: left;
	width: 100%;
	padding: 10px 20px;
}

.productbalkrel:nth-of-type(odd) {
	background: #f9f9f9;
}

.productbalkrel a {
	color: inherit;
	text-decoration: none;
}

.productpage h3 {
	margin-bottom: 20px;
}






.portal {
	width: 100%;
	height: 600px;
	position: relative;
	float: left;
}

.contactdetails a {
	color: inherit;
	text-decoration: none;
}

.downloadicon {
	width: 20px;
	position: relative;
	float: left;
	margin-right: 10px;
	padding-top: 3px;
}

.downloadlink {
	text-decoration: none;
}

.taalkeuzelink {
	float: left;
	width: 20px!important;
	font-size: 16px!important;
	line-height: 24px;
	text-decoration: none;
	color: inherit;
	display: inline-block;
	padding: 10px 10px 10px 0!important;
	margin-right: 10px;
	transition: .25s!important;
	opacity: .25!important;
}

.taalkeuzelink:hover {
	transform: none!important;
	opacity: 1!important;
}

.taalkeuzelink:hover::before{
	content: ''!important;
	position:absolute;
	left: 0!important;
	top: auto;
}

.taalkeuzelink.current {
	opacity: 1!important;
	font-family: 'CocoGothic-Regular', sans-serif!important;
}


.subtitelkleur {
	font-family: 'CocoGothic-Light', sans-serif;
}

.tabs ul {
	list-style-type: none;
}

.tabs ul li a {
	text-decoration: none;
}

.tabs ul li.r-tabs-state-active {
	background-color: #fff;
	border-top: 4px solid #ffdd00;
}

.notdownloadable {
	text-decoration: none;
	font-family: 'CocoGothic-Regular', sans-serif;
	background: none;
	font-size: 16px;
	line-height: 20px;
	color: #585857;
	cursor: pointer;
}

.translated {
	position: absolute;
	height: 40px;
	padding: 9px;
	top: 0px;
	color: #ffffff;
	background-color: #585857;
}

.translated > div {
	padding: 0px;
}

.translated img {
	position: relative;
    top: 2px;
}

.team-blok {
    position: relative;
    float: left;
    width: calc(100% / 5);
    text-align: center;
    font-family: 'CocoGothic-Light', sans-serif;
    font-size: 17px;
    line-height: 23px;
    padding: 20px;
    min-height: 351px;
}

.team-blok img {
	border-radius: 100%;
    width: calc(100% - 40px);
    margin-bottom: 12px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #FFFFFF;
}

.team-blok strong {
	display: block;
	font-family: 'CocoGothic-Bold', sans-serif;
    font-weight: 100;
}

.cs-skin-elastic > span::after { content: '\25BE' !important; }
ul{list-style-position: inside;}

.contact-image {
	border-radius: 100%;
	width: 150px;
	margin-left: 25px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 960px)
{
    .team-blok {
        width: calc(100% / 2) !important;
        min-height: 340px;
    }
}


