@charset "UTF-8";
/* TYPOGRAFIE */
h1,
h2,
p,
a {
	font-family: Arial, sans-serif !important;
}
html, body {
	scroll-behavior: smooth;
}
h1 {
	font-size: 60px !important;
	line-height: 65px !important;
	font-weight: 500 !important;
}

h2 {
	font-size: 30px !important;
	line-height: 35px !important;
	font-weight: 500 !important;
}

h3 {
	font-size: 30px !important;
	line-height: 35px !important;
	font-weight: 500 !important;
}

p {
	font-size: 18px !important;
	line-height: 25px !important;
	font-weight: 500 !important;
	letter-spacing: -0.1px;
}

#content a {
	font-size: 18px;
	line-height: 25px;
	font-weight: 500;
	color: #ffffff;
	position: relative;
	display: inline-block;
}

#content a:hover:after {
	width: 0%;
}

#content a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.buttonsContainer {
	margin-top: 40px;
}

.buttonsContainer a.primaryBttn:not(:first-child) {
	border-top: 0;
}
.italic {
	font-style: italic;
}
.bold {
	font-weight: 700;
}
.displayNiks {
	display: none;
}
a.primaryBttn {
	width: 100%;
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px;
	border-bottom: 1px;
	border-style: solid;
	border-color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

a.primaryBttn .primaryBttnText {
	color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	margin: 0 !important;
}

a.primaryBttn .primaryBttnIcon line {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

a.primaryBttn:after {
	display: none;
}

a.primaryBttn:hover {
	background-color: #ffffff;
	padding: 20px 20px;
}

a.primaryBttn:hover .primaryBttnText {
	color: #4a1a8d !important;
}

a.primaryBttn:hover .primaryBttnIcon line {
	stroke: #4a1a8d;
}

.logoHomeLink:after {
	display: none;
}

/* ALGEMENE CSS */
body {
	background-color: #4a1a8d !important;
}

.container:after {
	display: none !important;
}

#content {
	width: 100%;
	margin-left: 0 !important;
}

#masthead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #4a1a8d !important;
	padding: 10px 0;
	margin: 0 auto;
	z-index: 10000;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#masthead.scrolled {
	background-color: #341263 !important;
	-webkit-transition: background-color 0.3s 300ms, all 0.3s;
	transition: background-color 0.3s 300ms, all 0.3s;
}

#masthead.scrolled .navLinkBttn {
	background-color: #ffffff;
}
#masthead.scrolled .navLinkBttn a {
	color: #341263 !important;
}
#masthead.scrolled .navLinkBttn:hover {
	background-color: #341263 !important;
}
#masthead.scrolled .navLinkBttn:hover a {
	color: #ffffff !important;
}

#masthead .container {
	width: 98% !important;
	margin: 0 auto;
}

#masthead .container nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#masthead .container nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#masthead .container nav ul li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#masthead .container nav ul li ul {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	top: 100%;
	left: 0%;
	transform: translateX(-20px) translateY(10px);
	background-color: #4a1a8d;
	border: 1px solid #ffffff;
	padding: 10px 20px;
	transition: 0.3s ease;
}
#masthead .container nav ul li:hover > ul {
	transform: translateX(-20px) translateY(0);
	opacity: 1;
	pointer-events: auto;
}
#masthead.scrolled .container nav ul li ul {
	background-color: #341263 !important;
}
#masthead .container nav ul li ul li {
	margin: 0 !important;
}
#masthead .container nav ul li ul li:not(:first-of-type) {
	margin-top: 15px !important;
}
#masthead .container nav ul li a {
	position: relative;
	color: #ffffff;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: -0.1px;
}

#masthead .container nav ul li a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 1px;
	background-color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

#masthead .container nav ul li:not(.navLinkBttn) a:hover:after {
	width: 100%;
	right: auto;
	left: 0;
}

#masthead .container nav ul li:not(:last-child) {
	margin-right: 40px;
}

#masthead .container nav ul li.navLinkBttn {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

#masthead .container nav ul li.navLinkBttn a {
	padding: 10px 22px;
	border: 1px solid #ffffff;
	/* 	border-radius: 2px; */
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

#masthead .container nav ul li.navLinkBttn a:after {
	display: none !important;
}

#masthead .container nav ul li.navLinkBttn:hover {
	background-color: #ffffff;
}

#masthead .container nav ul li.navLinkBttn:hover a {
	color: #4a1a8d;
}

#masthead .container nav ul li.current-menu-item > a:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
}
#masthead .container nav .languageContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#masthead .container nav .languageContainer a {
	position: relative;
	color: #ffffff;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: -0.1px;
}

#masthead .container nav .languageContainer a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

#masthead .container nav .languageContainer a:hover:after {
	width: 100%;
}

#masthead .container nav .languageContainer a:not(:last-child) {
	margin-right: 15px;
}

#masthead .container nav .languageContainer a.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
}
.mobileNav {
	/* 	display: none; */
	width: 95%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.inlineLinkSpacing {
	margin-top: 10px;
}
.inlineLinkSpacing + .buttonsContainer {
	margin-top: 55px;
}
.mobileNav.menuOpen .fakeLink {
	color: #ffffff;
}
.mobileNav.menuOpen .fakeLink:after {
	background-color: #ffffff;
}
.mobileNav.menuOpen .hiddenMenu {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.mobileNav a,
.mobileNav span {
	font-family: Arial, sans-serif !important;
	font-size: 14px;
	line-height: 25px;
	letter-spacing: -0.08px;
	color: #ffffff;
	position: relative;
}
.mobileNav a:after,
.mobileNav span:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
}
.mobileNav .fakeLink {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.mobileNav .fakeLink:after {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.mobileNav .hiddenMenu {
	position: fixed;
	height: 100%;
	width: 90%;
	right: 0;
	top: 0;
	background-color: #341263;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 2.5% 30px 10%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow-y: auto;
}
.mobileNav .hiddenMenu ul li {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-flow: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.mobileNav .hiddenMenu ul li ul {
	margin: 20px 0 0 20px;
	display: none;
}
.mobileNav .hiddenMenu ul li:hover ul {
	display: block;
}
.mobileNav .hiddenMenu ul li:not(:last-child) {
	margin-bottom: 20px;
}
.mobileNav .hiddenMenu ul li a {
	font-size: 30px;
	line-height: 35px;
	letter-spacing: -0.17px;
	color: #ffffff;
	position: relative;
}
.mobileNav .hiddenMenu ul li.hasSubMenu a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobileNav .hiddenMenu ul li.hasSubMenu a svg {
	fill: #ffffff;
	width: 30px;
	height: auto;
	transform: rotate(0);
	transition: 0.3s ease;
	will-change: transform;
}
.mobileNav .hiddenMenu ul li.hasSubMenu:hover a svg {
	transform: rotate(180deg);
}
.mobileNav .hiddenMenu ul li a:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
}
.mobileNav .hiddenMenu .languageContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.mobileNav .hiddenMenu .languageContainer a {
	font-size: 20px;
	line-height: 25px;
	color: #0096e6;
}
.mobileNav .hiddenMenu .languageContainer a.active:after {
	display: block;
}
.mobileNav .hiddenMenu .languageContainer a:not(:last-child) {
	margin-right: 10px;
}
.mobileNav .hiddenMenu .languageContainer a:after {
	display: none;
	background-color: #0096e6;
}
.footerMenu {
	padding-top: 30px;
	padding-bottom: 30px;
}

.footerMenu .container {
	width: 98% !important;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footerMenu .container .leftFooter,
.footerMenu .container .rightFooter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footerMenu .container .leftFooter ul,
.footerMenu .container .rightFooter ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
}

.footerMenu .container .leftFooter ul li,
.footerMenu .container .rightFooter ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footerMenu .container .leftFooter ul li a,
.footerMenu .container .rightFooter ul li a {
	position: relative;
	color: #ffffff;
	font-size: 18px;
	line-height: 25px;
}

.footerMenu .container .leftFooter ul li a:after,
.footerMenu .container .rightFooter ul li a:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.footerMenu .container .leftFooter ul li a:hover:after,
.footerMenu .container .rightFooter ul li a:hover:after {
	width: 100%;
}

.footerMenu .container .leftFooter ul li:not(:last-child),
.footerMenu .container .rightFooter ul li:not(:last-child) {
	margin-right: 25px;
}

.footerMenu .container .rightFooter a {
	color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footerMenu .container .rightFooter a i {
	font-size: 24px;
	line-height: 22px;
}

.footerMenu .container .rightFooter a:not(:last-child) {
	margin-right: 45px;
}

.footerMenu .container .copyright {
	margin: 0;
	margin-right: 25px;
	position: relative;
	color: #ffffff;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: -0.1px;
	text-align: left;
}

.section {
	width: 86%;
	margin: 0 13% 70px 1%;
}

.section.headerSection {
	position: relative;
	width: 98%;
	margin: 20px auto 140px auto;
}
.section.headerSection .serviceBadge {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: 22vw;
	margin-top: -150px;
	z-index: 12;
	width: 300px;
	height: 300px;
}
.section.headerSection .serviceBadge #contouren {
	transform-origin: center;
	animation: spin 20s linear infinite;
}
@media only screen and (max-width: 1024px) {
	.section.headerSection .serviceBadge {
		margin-top: -100px;
		width: 200px;
		height: 200px;
	}
}
@media only screen and (max-width: 768px) {
	.section.headerSection .serviceBadge {
		margin-top: -75px;
		width: 150px;
		height: 150px;
	}
}
@media only screen and (max-width: 475px) {
	.section.headerSection .serviceBadge {
		margin-top: -50px;
		width: 100px;
		height: 100px;
		margin-right: 14vw;
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	} to {
		transform: rotate(360deg);
	}
}

.section.headerSection img {
	width: 100%;
}

.section.fullwidthSection {
	width: 100%;
	margin: 0 auto 70px auto;
}

.section.infoSection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.infoSection .rightContent.halfColumn .halfColumn {
	width: 100%;
}
.section.infoSection .halfColumn h1.quote span.beginTeken {
	display: none;
}
.section.infoSection .rightContent.halfColumn .section {
	margin-right: 0px !important;
	width: 100%;
	margin: 0 !important;
}

.section.infoSection .rightContent.halfColumn .section:last-child {
	margin-bottom: 0;
}

.section.infoSection .rightContent.halfColumn .section p {
	margin-bottom: 40px;
}

.section.infoSection .rightContent.halfColumn .section .buttonsContainer {
	margin: 0;
}

.section.infoSection .halfColumn {
	width: calc(50% - 10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
}

.section.infoSection .halfColumn ul {
	margin: 10px 0 10px 20px;
}

.section.infoSection .halfColumn ul li {
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 18px;
	line-height: 25px;
}
.section.infoSection .halfColumn ul li:not(:last-child) {
	margin-bottom: 5px;
}
.section.infoSection .halfColumn h1 {
	color: #ffffff;
	margin-bottom: 25px;
	position: relative;
}

.section.infoSection .halfColumn h1.quote:before {
	content: "“";
	position: absolute;
	top: 0;
	left: -20px;
}
.desktopOnly {
	display: block;
}
.mobileOnly {
	display: none;
}
.section.infoSection.evenementItem .halfColumn h2 {
	margin-bottom: 0;
}
.section.infoSection.evenementItem .halfColumn .evenementItemDetails {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 16px;
}
/* .views-template-events .section.infoSection.evenementItem .rightContent.halfColumn {
border-bottom: 1px solid #ffffff;
padding-bottom: 30px;
} */
.views-template-nieuws-en-events .section.infoSection.evenementItem .rightContent.halfColumn:not(:last-child) {
	/* 	border-bottom: 1px solid #ffffff;
	padding-bottom: 30px; */
	margin-bottom: 70px;
}
.views-template-studenten .section.infoSection.evenementItem .rightContent.halfColumn {
	border-bottom: 0;
	padding-bottom: 0;
}
.actualiteitenMax .primaryBttn:not(:last-child) {
	border-bottom: 0;
}
.actualiteitenMax .buttonsContainer {
	margin-top: 80px;
}
.section.infoSection.evenementItem .rightContent.halfColumn .lastItemContent {
	border-bottom: 1px solid #ffffff;
	padding-bottom: 30px;
}
.section.infoSection.evenementItem .rightContent.halfColumn .lastItemContent:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.nieuwsEventsSubtext {
	margin-bottom: 70px;
}
.home .section.infoSection.evenementItem .rightContent.halfColumn:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.section.infoSection .halfColumn h2 {
	color: #ffffff;
	margin-bottom: 25px;
}

.section.infoSection .halfColumn h2:not(:first-child) {
	margin-top: 65px;
}
.section.infoSection .halfColumn h3 {
	font-size: 24px !important;
	line-height: 30px !important;
	color: #ffffff;
	margin-bottom: 20px;
}
.section.infoSection .halfColumn ol {
	margin: 0 0 0 20px;
}
.section.infoSection .halfColumn ol li {
	font-size: 18px !important;
	line-height: 25px !important;
	color: #ffffff;
}
.section.infoSection .halfColumn table {
	font-size: 18px !important;
	line-height: 25px !important;
	color: #ffffff;
}
.section.infoSection .halfColumn table th {
	text-align: left;
	font-weight: 700;
	border: 1px solid #ffffff;
	padding: 5px;
}
.section.infoSection .halfColumn table td {
	border: 1px solid #ffffff;
	padding: 5px;
	width: 25%;
}
.section.infoSection .halfColumn p {
	color: #ffffff;
}
.section.infoSection .halfColumn p.starterKopjes {
	font-weight: bold !important;
}
.section.bannerSection img {
	height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}

.section.bannerSection video {
	height: 500px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.section.imageSection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.imageSection .halfColumn {
	width: calc(50% - 10px);
	height: 500px;
}

.section.imageSection .leftBigImage img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.section.imageSection .rightGroupImages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.imageSection .rightGroupImages img {
	width: calc(50% - 10px);
	height: 48%;
	-o-object-fit: cover;
	object-fit: cover;
}
.single-vacature .section.infoSection.firstContentSection .halfColumn h1 {
	margin-bottom: 10px;
}
.single-vacature .section.infoSection.firstContentSection .halfColumn p {
	margin-bottom: 30px;
}
.section.imageSection .rightGroupImages img:nth-child(-n + 2) {
	margin-right: 20px;
}

.section.fullwidthSection.onzeVacaturesSection {
	padding: 70px 0;
	background-position: 0 20%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.section.fullwidthSection.onzeVacaturesSection .backgroundOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.section.fullwidthSection.onzeVacaturesSection .vacaturesContainer {
	position: relative;
	width: 86%;
	margin: 0 13% 70px 1%;
}

.section.fullwidthSection.onzeVacaturesSection .vacaturesContainer h2 {
	color: #ffffff;
	margin-bottom: 40px;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem {
	width: calc(50% - 10px);
	padding: 45px 50px 50px 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:after {
	display: none;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:not(:nth-child(-n + 2)) {
	margin-top: 20px;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.vacatureLocation {
	margin-bottom: 65px;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem
h3 {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: #0096e6;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.fakeLink {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	color: #0096e6 !important;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.fakeLink:after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #0096e6 !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover {
	background-color: #0096e6;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
h3 {
	color: #ffffff;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
.fakeLink {
	color: #ffffff !important;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
.fakeLink:after {
	background-color: #ffffff !important;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.meerVacaturesContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn {
	width: calc(50% - 10px);
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn {
	margin-top: 40px;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn:hover
.primaryBttnText {
	color: #0096e6 !important;
}

.section.fullwidthSection.onzeVacaturesSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn:hover
.primaryBttnIcon
line {
	stroke: #0096e6;
}

.section.videoSection .wp-video {
	width: 100% !important;
}

.section.videoSection .wp-video .mejs-overlay-button {
	background: url(/wp-content/uploads/2021/05/playBttn.svg)
		no-repeat;
	width: 106px;
	height: 106px;
	background-size: cover;
	background-position: 0 !important;
}

.section.videoSection .wp-video .mejs-controls {
	opacity: 0;
}

.section.videoSection .videoText {
	color: #ffffff;
	font-style: italic;
	margin-top: 20px;
}

.section.fullwidthSection.vacatureOverzichtSection .vacaturesContainer {
	width: 86%;
	margin: 0 13% 70px 1%;
}

.section.fullwidthSection.vacatureOverzichtSection .vacaturesContainer h2 {
	color: #ffffff;
	margin-bottom: 40px;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem {
	width: calc(50% - 10px);
	padding: 45px 50px 50px 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border: 3px solid #ffffff;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:after {
	display: none;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:not(:nth-child(-n + 2)) {
	margin-top: 20px;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.vacatureLocation {
	margin-bottom: 65px;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem
h3 {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: #0096e6;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.fakeLink {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	color: #0096e6 !important;
	margin-top: auto;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem
.fakeLink:after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #0096e6 !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover {
	background-color: #0096e6;
	border-color: #0096e6;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
h3 {
	color: #ffffff;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
.fakeLink {
	color: #ffffff !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem:hover
.fakeLink:after {
	background-color: #ffffff !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie {
	background-color: #d9dede;
	border-color: #d9dede;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie:hover {
	background-color: #4a1a8d;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie:hover
h3 {
	color: #d9dede;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie:hover
.fakeLink {
	color: #d9dede !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie:hover
.fakeLink:after {
	background-color: #d9dede !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie
h3 {
	color: #4a1a8d;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie
.fakeLink {
	color: #4a1a8d !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.itemsContainer
.vacatureItem.openSollicitatie
.fakeLink:after {
	background-color: #4a1a8d !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.meerVacaturesContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn {
	width: calc(50% - 10px);
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn {
	margin-top: 40px;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn:hover
.primaryBttnText {
	color: #0096e6 !important;
}

.section.fullwidthSection.vacatureOverzichtSection
.vacaturesContainer
.meerVacaturesContainer
.halfColumn
a.primaryBttn:hover
.primaryBttnIcon
line {
	stroke: #0096e6;
}

.section.fullwidthSection.contactSection {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 0;
}

.section.fullwidthSection.contactSection .contactBlockContentContainer {
	width: 86%;
	margin: 0 13% 0 1%;
	padding: 40px 12% 40px 0;
	background-color: #341263;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.noImage.section.fullwidthSection.contactSection .contactBlockContentContainer {
	min-height: 520px;
}
/* Cookie Notification */
#cookie-law-info-bar {
	position: fixed !important;
	bottom: 20px !important;
	left: 20px;
	padding: 50px;
	box-sizing: border-box;
	width: 600px;
	background-color: #341263 !important;
	box-shadow: none;
}
@media only screen and (max-width: 600px) {
	#cookie-law-info-bar {
		width: 100%;
		left: 0;
		bottom: 0 !important;
		padding: 20px !important;
	}
}
#cookie-law-info-bar br {
	display: none;
}
#cookie-law-info-bar h5 {
	font-size: 30px !important;
	line-height: 35px !important;
	font-weight: 500 !important;
	color: #ffffff;
	text-align: left;
	margin-bottom: 20px;
	font-family: Arial, sans-serif;
}
#cookie-law-info-bar .cookieNotification p {
	color: #ffffff;
	text-align: left;
	margin-bottom: 40px;
	font-family: Arial, sans-serif;
}
#wt-cli-accept-all-btn {
	width: 100%;
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px;
	border-bottom: 1px;
	border-style: solid;
	border-color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background-color: transparent !important;
	font-size: 18px;
	line-height: 25px;
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 20px;
	font-family: Arial, sans-serif;
}
#wt-cli-accept-all-btn:hover {
	background-color: #ffffff !important;
	color: #341263 !important;
	padding: 20px 20px;
}
.cli_settings_button {
	color: #ffffff !important;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	font-size: 18px;
	line-height: 25px;
	font-weight: 500;
	float: left;
	font-family: Arial, sans-serif;
}
.cli_settings_button:after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.cli_settings_button:hover:after {
	width: 0%;
}
.cli-modal-content {
	background-color: #341263;
}
.cli-modal-content svg path:first-child {
	fill: #ffffff;
}
.cli-modal-content h4 {
	color: #ffffff;
	font-size: 30px !important;
	line-height: 35px !important;
	font-weight: 500 !important;
	font-family: Arial, sans-serif;
}
.cli-modal-content .cli-privacy-content-text {
	color: #ffffff;
	font-family: Arial, sans-serif;
}
.cli-modal-content .cli-privacy-readmore {
	color: #ffffff;
	font-family: Arial, sans-serif;
	text-decoration: none;
	position: relative;
}
.cli-modal-content .cli-privacy-readmore:after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.cli-modal-content .cli-privacy-readmore:hover:after {
	width: 0%;
}
#wt-cli-privacy-save-btn {
	width: 100%;
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px;
	border-right: 0 !important;
	border-bottom: 1px;
	border-left: 0 !important;
	border-style: solid;
	border-color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background-color: transparent !important;
	font-size: 18px;
	line-height: 25px;
	font-weight: 500;
	cursor: pointer;
	text-transform: lowercase;
}
#wt-cli-privacy-save-btn:first-letter {
	text-transform: uppercase !important;
}
#wt-cli-privacy-save-btn:hover {
	background-color: #ffffff !important;
	color: #341263 !important;
	padding: 20px 20px;
	opacity: 1 !important;
}
.cli-switch input:checked + .cli-slider {
	background-color: #0096e6;
}
.cli-tab-content {
	background-color: transparent;
}
.cli-tab-content p, .cli-tab-content a {
	color: #ffffff;
}
@media only screen and (max-width: 768px) {
	.noImage.section.fullwidthSection.contactSection .contactBlockContentContainer {
		min-height: 260px;
	}
}
.noImage.section.fullwidthSection.contactSection .contactBlockContentContainer .contactBlockContentImage .contactBlockRegularInfo {
	height: 100%;
	align-items: flex-end;
}
.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentText {
	width: calc(50% - 10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentText
h2 {
	font-size: 30px !important;
	line-height: 36px !important;
	color: #ffffff;
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentText
.contactBlockRegularInfo
p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: #ffffff;
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentImage {
	width: calc(50% - 10px);
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentImage
img {
	margin-bottom: 40px;
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentImage
.contactBlockRegularInfo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section.fullwidthSection.contactSection
.contactBlockContentContainer
.contactBlockContentImage
.contactBlockRegularInfo
p {
	color: #ffffff;
	width: 50%;
}

.halfColumn.rightGroupImages.threeImages {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row;
	flex-flow: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: auto;
}

.halfColumn.rightGroupImages.threeImages img {
	margin-right: 0px !important;
}

.halfColumn.rightGroupImages.threeImages img.thirdImage {
	width: 100% !important;
	margin-top: 2%;
}

.halfColumn.rightGroupImages.fourImages {
	margin-left: auto;
}

.section.infoSection.contactSection .rightContent.halfColumn form {
	margin-top: 55px;
}

.section.infoSection.contactSection .rightContent.halfColumn form br {
	display: none;
}

.section.infoSection.contactSection .rightContent.halfColumn form input,
.section.infoSection.contactSection .rightContent.halfColumn form textarea {
	font-family: Arial, sans-serif;
	color: #ffffff !important;
	background-color: transparent;
	border: 0 !important;
	border-radius: 0 !important;
	width: 100%;
	padding-bottom: 15px !important;
	padding-top: 15px !important;
	padding-left: 10px !important;
	margin-bottom: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background-color: #341263;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
input::-webkit-input-placeholder,
.section.infoSection.contactSection
.rightContent.halfColumn
form
textarea::-webkit-input-placeholder {
	color: #ffffff !important;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
input:-ms-input-placeholder,
.section.infoSection.contactSection
.rightContent.halfColumn
form
textarea:-ms-input-placeholder {
	color: #ffffff !important;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
input::-ms-input-placeholder,
.section.infoSection.contactSection
.rightContent.halfColumn
form
textarea::-ms-input-placeholder {
	color: #ffffff !important;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
input::placeholder,
.section.infoSection.contactSection
.rightContent.halfColumn
form
textarea::placeholder {
	color: #ffffff !important;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
.wpcf7-not-valid {
	border-bottom: 1px solid #e02020 !important;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
.wpcf7-not-valid-tip {
	color: #e02020 !important;
	display: none;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
.realSendBttn {
	display: none;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
.wpcf7-response-output {
	margin: 0;
	border-left: 0;
	border-right: 0;
	color: #ffffff;
	font-size: 16px;
	font-family: Arial;
	border-color: #e02020;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form
.wpcf7-response-output::before {
	content: "\f06a";
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 700;
	color: #e02020 !important;
	font-size: 21px;
	margin-right: 10px;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form.sent
.wpcf7-response-output {
	border-color: #6dd400;
}

.section.infoSection.contactSection
.rightContent.halfColumn
form.sent
.wpcf7-response-output::before {
	color: #6dd400 !important;
}

.section.infoSection.contactSection .rightContent.halfColumn .buttonsContainer {
	margin-top: 20px;
}

.section.contactLocationsSection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#contactSlider .sliderOverlay {
	display: flex;
	justify-content: space-between;
}

.section.contactLocationsSection .locationItem {
	width: calc(50% - 10px);
	display: flex;
	flex-flow: column;
}
.section.locationTitleSection {
	margin-bottom: 15px;
}
.section.contactLocationsSection .locationItem p.locationTitle {
	color: #ffffff;
	margin-bottom: 35px;
	font-size: 22px !important;
}

.section.contactLocationsSection .locationItem img {
	height: 600px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 40px;
}

.section.contactLocationsSection .locationItem .locationDetails {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section.contactLocationsSection .locationItem .locationDetails .adresGegevens {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	width: calc(50% - 10px);
}

.section.contactLocationsSection
.locationItem
.locationDetails
.adresGegevens
p {
	color: #ffffff;
}

.section.contactLocationsSection
.locationItem
.locationDetails
.adresGegevens
p:nth-child(2) {
	margin-bottom: 35px;
}

.section.contactLocationsSection
.locationItem
.locationDetails
.contactGegevens {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
}

.section.contactLocationsSection
.locationItem
.locationDetails
.contactGegevens
a {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.section.contactLocationsSection
.locationItem
.locationDetails
.contactGegevens
a:nth-child(2) {
	margin-bottom: 35px;
}

.section.infoSection.firstContentSection {
	margin-bottom: 0;
}

.overlappingImage {
	position: relative;
	z-index: -1;
	width: 100%;
	margin-top: calc(-70px - 257px);
	height: 800px;
	margin-bottom: 20px;
}

.overlappingImage .imageBlackOverlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.overlappingImage img {
	width: 100%;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
}

.overlappingImage video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.beforeRelatedStories {
	flex-flow: column;
	margin-bottom: 20px;
}
.section.fullwidthSection.verhalenOverzichtSection {
	width: 100%;
	margin: 0 auto 70px auto;
}

.section.fullwidthSection.verhalenOverzichtSection .verhalenContainer {
	width: 86%;
	margin: 0 13% 70px 1%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem {
	width: calc(50% - 10px);
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem:after {
	display: none;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
img {
	width: 100%;
	height: 600px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 20px;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
.naamEnFunctieText {
	margin-bottom: 10px;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
.excerpt {
	margin-bottom: 20px;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
.fakeLink {
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
.fakeLink:after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem
.fakeLink:hover:after {
	width: 0%;
}

.section.fullwidthSection.verhalenOverzichtSection
.verhalenContainer
.verhaalItem:not(:nth-last-child(-n + 2)) {
	margin-bottom: 60px;
}

.fullwidthQuote {
	position: relative;
	width: 80%;
	margin: 0 auto 70px;
	font-size: 60px !important;
	line-height: 65px !important;
	font-style: italic;
	color: #ffffff;
}
/*
.fullwidthQuote:before {
content: "“";
position: absolute;
left: -25px;
top: 0;
font-size: 60px !important;
line-height: 65px !important;
}
*/
.verhalenContainer.verhalenSlider {
	width: 100% !important;
	margin: 0 !important;
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
	overflow: hidden;
}

.verhalenContainer.verhalenSlider .sliderOverlay {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 86%;
	margin-left: 1%;
}

.verhalenContainer.verhalenSlider .sliderOverlay .verhaalItem {
	width: calc(50% - 10px) !important;
	margin-right: 20px !important;
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer !important;
}

.verhalenContainer.verhalenSlider .sliderOverlay .verhaalItem:hover {
	cursor: -webkit-grab;
	cursor: grab;
}

.verhalenContainer.verhalenSlider .sliderOverlay .verhaalItem img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

.verhalenContainer.verhalenSlider .sliderOverlay .verhaalItem p {
	color: white;
}

.rightContent.halfColumn.alignRight {
	text-align: right;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.post-type-archive-verhaal img,
.post-type-archive-vacature img {
	width: 100%;
	height: auto;
}

/* Groeipad */
.groeipadSectie {
	padding: 100px 0;
	background-color: #341263;
	width: 100%;
	margin: 0 0 70px 0;
	flex-wrap: wrap;
}
.groeipadSectie .containerInFullwidth {
	width: 86%;
	margin: 0 13% 70px 1%;
	display: flex;
	justify-content: space-between;
}
.groeipadSectie .containerInFullwidth .rightContent h2 {
	color: #ffffff;
}
.section .fullwidthGroeipad {
	min-width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.section .fullwidthGroeipad .groeipadItem.currentStage .groeipadIcon {
	background-color: #ffffff;
}
.section .fullwidthGroeipad .groeipadItem .groeipadIcon {
	width: 20px;
	height: 20px;
	background-color: #341263;
	border-radius: 100%;
	margin: 0 auto 10px;
	opacity: 0;
	transition: 300ms;
	border: 1px solid #ffffff;
	z-index: 1;
	position: relative;
}
.section .fullwidthGroeipad .groeipadItem .groeipadText {
	opacity: 0;
	transition: 300ms;
}
.section .fullwidthGroeipad .groeipadItem.animation .groeipadIcon, .section .fullwidthGroeipad .groeipadItem.animation .groeipadText {
	opacity: 1;
}
.section .fullwidthGroeipad .groeipadItem {
	position: relative;
	width: 100%;
	flex-basis: 0;
	flex-grow: 1;
	text-align: center;
	color: #ffffff;
	font-size: 18px;
}
.section .fullwidthGroeipad .groeipadItem:first-child:before {
	display: none;
}
.section .fullwidthGroeipad .groeipadItem:first-child:after {
	transition-delay: unset !important;
	transition-timing-function: ease-in;
}
.section .fullwidthGroeipad .groeipadItem:last-child:after {
	display: none;
}
.section .fullwidthGroeipad .groeipadItem:last-child:before {
	transition-timing-function: ease-out;
}
.section .fullwidthGroeipad .groeipadItem:before {
	left: 0;
	right: 50%;
}
.section .fullwidthGroeipad .groeipadItem:after {
	left: 50%;
	right: 0;
}
.section .fullwidthGroeipad .groeipadItem.animation:before {
	width: 50%;
}
.section .fullwidthGroeipad .groeipadItem.animation:after {
	width: 50%;
	transition-delay: 200ms !important;
}
.section .fullwidthGroeipad .groeipadItem:before, .section .fullwidthGroeipad .groeipadItem:after {
	content: "";
	position: absolute;
	height: 1px;
	width: 0%;
	background-color: #ffffff;
	top: 10px;
	transition: 300ms;
	transition-timing-function: linear;
}
.section .fullwidthGroeipad .groeipadLine {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
}
.section .fullwidthGroeipad::-webkit-scrollbar-track {
	background: #ffffff;
}
.section .fullwidthGroeipad::-webkit-scrollbar-thumb {
	background: #4a1a8d;
}
.autop p, .autop ul {
	margin-bottom: 3rem !important;	
	margin-top: 0px !important;
}
.autop p:last-child, .autop ul:last-child {
	margin-bottom: 0px !important;
}
/* @media only screen and (max-width: 1650px) {
.section .fullwidthGroeipad .groeipadItem {
flex: 0 0 25%;
}
}
@media only screen and (max-width: 1279px) {
.section .fullwidthGroeipad .groeipadItem {
flex: 0 0 30%;
}
} */
@media only screen and (max-width: 980px) {
	.section .fullwidthGroeipad {
		overflow-x: scroll;
		overflow-y: hidden;
		flex-wrap: nowrap;
	}
	.section .fullwidthGroeipad .groeipadItem {
		flex: 0 0 40%;
	}
}
@media only screen and (max-width: 768px) {
	.desktopOnly {
		display: none;
	}
	.mobileOnly {
		display: block;
	}
	.section.infoSection.groeipadSectie {
		width: 100%;
	}
	.groeipadSectie .leftSpacing {
		display: none !important;
	}
	.groeipadSectie .rightContent {
		margin-left: 2.5%;
	}
	.section .fullwidthGroeipad .groeipadItem {
		flex: 0 0 50%;
	}
}
@media only screen and (max-width: 700px) {
	.section .fullwidthGroeipad .groeipadItem {
		flex: 0 0 50%;
	}
}
@media only screen and (max-width: 500px) {
	.section .fullwidthGroeipad .groeipadItem {
		flex: 0 0 65%;
	}
}
@media only screen and (max-width: 400px) {
	.section .fullwidthGroeipad .groeipadItem {
		flex: 0 0 75%;
	}
}
.desktopNav {
	display: block;
}

.mobileNav {
	display: none;
}

@media only screen and (max-width: 1440px) {
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer
	.verhaalItem
	img {
		height: 500px;
	}
	.section.imageSection .halfColumn {
		height: 420px;
	}
	.section.contactLocationsSection .locationItem img {
		height: 500px;
	}
}
@media only screen and (max-width: 1250px) {
	#masthead .container nav ul li:not(:last-child) {
		margin-right: 30px;
	}
}
@media only screen and (max-width: 1169px) {
	#masthead .container nav ul li:not(:last-child) {
		margin-right: 20px;
	}
}
@media only screen and (max-width: 1087px) {
	.desktopNav {
		display: none;
	}
	.mobileNav {
		display: flex;
		width: 98%;
	}
}
@media only screen and (max-width: 1080px) {
	#masthead .container nav ul li a {
		font-size: 16px;
	}
	.footerMenu .container .leftFooter ul li a,
	.footerMenu .container .rightFooter ul li a {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1024px) {
	.footerMenu .container {
		width: 95% !important;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.footerMenu .container .leftFooter {
		margin-bottom: 40px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.footerMenu .container .leftFooter .copyright {
		margin-bottom: 10px;
	}
	.footerMenu .container .leftFooter ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.footerMenu .container .leftFooter ul li:not(:last-child) {
		margin-bottom: 10px;
	}
	.footerMenu .container .rightFooter {
		width: 100%;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.footerMenu .container .rightFooter a {
		margin-right: 0 !important;
	}
}

@media only screen and (max-width: 980px) {
	#masthead .container nav ul li a {
		font-size: 14px;
	}
}

@media only screen and (max-width: 900px) {
	#masthead .container nav ul li a {
		font-size: 11px;
	}
}

@media only screen and (max-width: 768px) {
	.evenementItem h2 {
		margin-bottom: 10px !important;
	}
	h1 {
		font-size: 30px !important;
		line-height: 33px !important;
	}
	h2 {
		font-size: 20px !important;
		line-height: 25px !important;
	}
	h3 {
		font-size: 20px !important;
		line-height: 25px !important;
	}
	p {
		font-size: 14px !important;
		line-height: 22px !important;
	}
	#content a {
		font-size: 14px !important;
		line-height: 22px !important;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		text-align: left;
	}
	.navLinkBttn a {
		border: 1px solid #ffffff;
		padding: 10px 22px;
	}
	.navLinkBttn:hover {
		background-color: transparent;
	}
	.navLinkBttn a:after {
		display: none;
	}
	.footerMenu {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.footerMenu .container .leftFooter ul li a,
	.footerMenu .container .rightFooter ul li a {
		font-size: 14px;
	}
	.main-fluid {
		margin-top: 45px !important;
	}
	.section.fullwidthSection.contactSection .contactBlockContentContainer {
		width: calc(95% - 40px);
		margin: 0 auto;
		padding: 20px;
	}
	.section.fullwidthSection.contactSection
	.contactBlockContentContainer
	.contactBlockContentText {
		padding-left: 0;
	}
	.section.fullwidthSection.contactSection
	.contactBlockContentContainer
	.contactBlockContentText
	h2 {
		font-size: 15px !important;
		line-height: 22px !important;
	}
	.section.fullwidthSection.contactSection
	.contactBlockContentContainer
	.contactBlockContentImage
	.contactBlockRegularInfo {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.section.fullwidthSection.contactSection
	.contactBlockContentContainer
	.contactBlockContentImage
	.contactBlockRegularInfo
	p {
		width: 100%;
	}
	.section.fullwidthSection.contactSection
	.contactBlockContentContainer
	.contactBlockContentImage
	.contactBlockRegularInfo
	p:not(:last-child) {
		margin-bottom: 20px;
	}
	a.primaryBttn {
		width: 100% !important;
	}
	.section.headerSection {
		width: 95%;
		margin: 20px auto 80px;
	}
	.section.infoSection {
		width: 95%;
		margin: 0 auto 40px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.section.infoSection .halfColumn {
		width: 100%;
	}
	.section.imageSection {
		width: 95%;
		margin: 0 auto 40px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.section.imageSection .halfColumn {
		width: 100%;
	}
	.section.imageSection .halfColumn:not(:last-child) {
		margin-bottom: 20px;
	}
	.section.imageSection .rightGroupImages img {
		height: calc(50% - 10px);
	}
	.section.fullwidthSection {
		margin: 0 auto 40px;
	}
	.section.fullwidthSection.onzeVacaturesSection .vacaturesContainer {
		width: 95%;
		margin: 0 auto 40px;
	}
	.section.fullwidthSection.onzeVacaturesSection
	.vacaturesContainer
	.itemsContainer
	.vacatureItem {
		padding: 20px 20px 20px 20px;
		width: 100% !important;
		margin-top: 0 !important;
	}
	.section.fullwidthSection.onzeVacaturesSection
	.vacaturesContainer
	.itemsContainer
	.vacatureItem:not(:last-child) {
		margin-bottom: 20px;
	}
	.section.fullwidthSection.onzeVacaturesSection
	.vacaturesContainer
	.meerVacaturesContainer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.section.fullwidthSection.onzeVacaturesSection
	.vacaturesContainer
	.meerVacaturesContainer
	.halfColumn {
		width: 100%;
	}
	.section.fullwidthSection.verhalenOverzichtSection {
		margin: 0 auto 40px;
	}
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer.verhalenSlider
	.sliderOverlay {
		width: 95%;
		margin-left: 2.5%;
	}
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer.verhalenSlider
	.sliderOverlay
	.verhaalItem {
		width: calc(90% - 20px) !important;
		margin-bottom: 0 !important;
	}
	.section.fullwidthSection.onzeVacaturesSection {
		padding: 20px 0 0 0;
		background-size: 100%;
		background-position: 0 0;
	}
	.section.fullwidthSection.verhalenOverzichtSection .verhalenContainer {
		width: 95%;
		margin: 0 auto;
	}
	.section.fullwidthSection.verhalenOverzichtSection .verhalenContainer img {
		height: 280px !important;
		margin-bottom: 5px !important;
	}
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer
	.naamEnFunctieText {
		margin-top: 0;
	}
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer
	.verhaalItem {
		margin-bottom: 40px !important;
	}
	.section.infoSection .halfColumn h1 {
		margin-bottom: 10px;
	}
	.section.videoSection {
		width: 95%;
		margin: 0 auto 40px;
	}
	.section.videoSection .wp-video .mejs-overlay-button {
		width: 50px;
		height: 50px;
	}
	.section.videoSection .videoText {
		width: 100%;
		margin: 10px auto 0;
	}
	.section.fullwidthSection.vacatureOverzichtSection .vacaturesContainer {
		width: 95%;
		margin: 0 auto;
	}
	.section.fullwidthSection.vacatureOverzichtSection
	.vacaturesContainer
	.itemsContainer
	.vacatureItem {
		padding: 20px 20px 20px 20px;
		width: 100% !important;
		margin-top: 0 !important;
	}
	.section.fullwidthSection.vacatureOverzichtSection
	.vacaturesContainer
	.itemsContainer
	.vacatureItem:not(:last-child) {
		margin-bottom: 20px !important;
	}
	.section.fullwidthSection.vacatureOverzichtSection
	.vacaturesContainer
	.itemsContainer
	.vacatureItem.openSollicitatie
	h3 {
		margin-bottom: 90px;
	}
	.fullwidthQuote {
		font-size: 20px !important;
		line-height: 22px !important;
	}
	.fullwidthQuote span {
		display: none;
	}
	a.primaryBttn {
		padding: 10px 0;
	}
	a.primaryBttn:hover {
		padding: 10px 10px;
	}
	.section.fullwidthSection.onzeVacaturesSection .backgroundOverlay {
		display: none;
	}
	.section.infoSection .halfColumn h2 {
		margin-bottom: 10px;
	}
	.section.infoSection .halfColumn h2:not(:first-child) {
		margin-top: 50px;
	}
	.section.contactLocationsSection {
		width: 95%;
		margin: 0 auto;
		overflow: hidden;
	}
	.section.contactLocationsSection .sliderOverlay {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}
	.section.contactLocationsSection .sliderOverlay .locationItem {
		width: calc(90% - 10px);
		margin-right: 10px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.section.contactLocationsSection .sliderOverlay .locationItem img {
		height: 280px;
	}
	.section.infoSection .halfColumn h1.quote:before {
		position: relative;
		display: inline-block;
		/* 		font-size: 60px; */
		height: 15px;
		top: unset;
		left: unset;
	}
	.section.infoSection .halfColumn h1.quote span {
		display: inline-block !important;
	}
	/* 	.section.infoSection .halfColumn h1.quote:before {
	display: none;
} */
	.fullwidthQuote:before {
		position: relative;
		display: block;
		font-size: 60px !important;
		font-style: normal;
		height: 15px;
		top: unset;
		left: unset;
		line-height: unset !important;
	}
	.section.beforeRelatedStories {
		margin-bottom: 10px;
	}
	.halfColumn.rightGroupImages.threeImages,
	.halfColumn.rightGroupImages.fourImages {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		-ms-grid-rows: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-auto-columns: 1fr;
		gap: 20px 20px;
		grid-template-areas: ". ." ". .";
	}
	.halfColumn.rightGroupImages.threeImages img,
	.halfColumn.rightGroupImages.fourImages img {
		width: 100% !important;
		height: 100%;
		min-height: 0;
		margin-top: 0 !important;
	}
	.halfColumn.rightGroupImages.threeImages img.thirdImage,
	.halfColumn.rightGroupImages.fourImages img.thirdImage {
		grid-column: span 2;
	}
	.overlappingImage {
		height: 500px;
	}
	.views-template-vacature .section.infoSection .halfColumn h1 {
		margin-bottom: 0;
	}
	.views-template-vacature .section.infoSection .halfColumn p {
		margin-bottom: 20px;
	}
	.section.infoSection .halfColumn ul li {
		font-size: 14px;
		line-height: 22px;
	}
	.section.infoSection.contactSection .rightContent.halfColumn form input {
		font-size: 14px;
		line-height: 22px;
	}
	.section.infoSection.contactSection
	.rightContent.halfColumn
	form
	input[name="onderwerp"] {
		margin-bottom: 15px;
	}
	.section.infoSection.contactSection .rightContent.halfColumn form textarea {
		font-size: 14px;
		line-height: 22px;
	}
}

@media only screen and (max-width: 480px) {
	.section.fullwidthSection.verhalenOverzichtSection
	.verhalenContainer.verhalenSlider
	.sliderOverlay
	.verhaalItem
	img {
		height: 280px;
	}
	.section.imageSection .halfColumn {
		height: 260px;
	}
	.section.bannerSection img {
		height: 150px;
	}
}
/*# sourceMappingURL=style.css.map */

html body .grecaptcha-badge {
	display: none !important;
}
