:root {
	/* Colors */
	--primary: #002E69;
	--primary-bg: #EDF5FF;
	--primary-dark: #1B549D;
	--primary-light: #1B549D;

	--secondary: #19A349;
	--secondary-bg: #19A349;
	--secondary-dark: #19A349;
	--secondary-light: #19A349;

	--tertiary: #FFFFFF;
	--tertiary-bg: #FFFFFF;
	--tertiary-dark: #FFFFFF;
	--tertiary-light: #FFFFFF;

	/* Fonts */
	--font-family-heading: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-sans-serif: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--line-height: 1.5;

	/* Borders */
	--button-border: 1px;
	--dropdown-border: 1px;
	--input-border: 1px;
	--panel-border: 1px;

	/* Radii */
	--button-radius: 0.5rem;
	--dropdown-radius: 0.25rem;
	--input-radius: 0.25rem;
	--panel-radius: 1.56rem;

	/* Padding */
	--button-padding: 1rem;
	--dropdown-padding: 1rem;
	--input-padding: 1rem;
	--panel-padding: 1rem;

	--navigation-height: 6rem;
}

/* Scroll smooth naar anchors op de pagina. */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
	html {
		scroll-behavior: unset;
	}
}

/* Zorg dat er niet buiten de pagina gescrolt kan worden. */
body {
	overscroll-behavior-y: none;
	color: var(--primary) !important;
}

main#content {
	overflow: hidden;
}

hr {
	background-color: currentColor;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-family-heading);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5em;
	hyphens: auto;
}

.green-titles h2,
.green-titles h3,
.green-titles h4,
.green-titles h5,
.green-titles h6 {
	color: var(--secondary);
}

h1,
.h1 {
	font-size: 2.25rem;
	line-height: 2.75rem;
}

h2,
.h2 {
	font-size: 2rem;
	line-height: 2.5rem;
}

h3,
.h3 {
	font-size: 1.75rem;
	line-height: 2.25rem;
}

h4,
.h4 {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

h5,
.h5 {
	font-size: 1.15rem;
	line-height: 1.65rem;
}

h6,
.h6 {
	font-size: 1.1rem;
	line-height: 1.6rem;
}

h1.title,
h2.title,
h3.title {
	font-size: 2.25rem;
	line-height: 2.75rem;
}

.fw-normal {
	font-weight: 400 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	h1, h2, h3, h4, h5, h6,
	.h1, .h2, .h3, .h4, .h5, .h6 {
		hyphens: none;
	}

	h1,
	.h1 {
		font-size: 2.75rem;
		line-height: 3.25rem;
	}

	h2,
	.h2 {
		font-size: 2.25rem;
		line-height: 2.75rem;
	}

	h3,
	.h3 {
		font-size: 1.75rem;
		line-height: 2.25rem;
	}

	h4,
	.h4 {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	h5,
	.h5 {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	h6,
	.h6 {
		font-size: 1.1rem;
		line-height: 1.6rem;
	}

	h1.title,
	h2.title,
	h3.title {
		font-size: 2.75rem;
		line-height: 3.25rem;
	}
}

.whitetxt,
.whitetxt h1,
.whitetxt h2,
.whitetxt h3,
.whitetxt h4,
.whitetxt h5,
.whitetxt h6 {
	color: white !important;
}

.primarytxt,
.primarytxt h1,
.primarytxt h2,
.primarytxt h3,
.primarytxt h4,
.primarytxt h5,
.primarytxt h6 {
	color: var(--primary) !important;
}

.secondarytxt,
.secondarytxt h1,
.secondarytxt h2,
.secondarytxt h3,
.secondarytxt h4,
.secondarytxt h5,
.secondarytxt h6 {
	color: var(--secondary) !important;
}

.tertiarytxt,
.tertiarytxt h1,
.tertiarytxt h2,
.tertiarytxt h3,
.tertiarytxt h4,
.tertiarytxt h5,
.tertiarytxt h6 {
	color: var(--tertiary) !important;
}

b,
.b {}

p,
.p,
label,
.label,
legend,
.legend {}

blockquote {
	font-weight: 600;
	border-left: 4px solid var(--primary);
	padding-left: 1rem;
}

small,
.small {}

strong,
.strong {
	font-weight: 700;
}

hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.25);
}

a {
	color: var(--secondary);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
	color: var(--secondary);
	text-decoration: none;
}

a:not(.btn) {
	position: relative;
}

a:not(.btn)::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

a:not(.btn):hover::before,
a:not(.btn):focus::before {
	width: 0%;
}

#adminbar a::before {
	display: none;
}

.nopad {
	padding: 0 !important;
}

.top-nopad {
	padding-top: 0 !important;
}

.bot-nopad {
	padding-bottom: 0 !important;
}

.width-100 {
	width: 100%;
}

.height-100 {
	height: 100%;
}

.overflow-hidden {
	overflow: hidden;
}

.flex-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
}

.flex-middle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.flex-middle p:last-child {
	margin-bottom: 0;
}

.flex-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.is-empty,
.content-item-content.is-empty {
	display: none;
}

body[data-editor-mode="content"] .is-empty,
body[data-editor-mode="content"] .content-item-content.is-empty {
	display: block;
}

/* [IMAGE BACKGROUND] */
body:not([data-editor-mode="content"]) .image-to-background {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

body:not([data-editor-mode="content"]) .image-to-background div {
	height: 100%;
}

body:not([data-editor-mode="content"]) .image-to-background img {
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}

.admin-btn-overlay {
	background-color: rgba(0, 46, 105, 0.5);
}

/* [ADMINBAR] */
html[data-logged="true"] header.nav-header {
	top: 0;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}

	.text-right {
		text-align: right !important;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}

/* [HEADER] */
header.nav-header {
	position: sticky;
	display: block;
	width: 100%;
	z-index: 1040;
	padding: 0;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

html[data-home="true"] header.nav-header {
	position: absolute;
}

body[data-editor-mode="content"] header.nav-header {
	position: relative;
	top: unset !important;
}

header.nav-header.scroll,
html[data-home="true"] header.nav-header.scroll {
	position: sticky;
}

header.nav-header nav.navbar {
	padding: 0;
}

header.nav-header .container-fluid {
	display: unset;
	padding-right: 10px !important;
	padding-left: 10px !important;
}

header.nav-header .wrap {
	position: relative;
	width: 100%;
	background-color: rgba(237, 245, 255, 1);
	padding: 1.5rem 0.5rem 1.5rem 0;
	margin-top: 0.5rem;
	-webkit-border-radius: 0.75rem;
			border-radius: 0.75rem;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

html[data-home="true"] header.nav-header .wrap {
	background-color: rgba(237, 245, 255, 0);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

html[data-home="true"] header.nav-header.scroll .wrap {
	background-color: rgba(237, 245, 255, 1);
}

header.nav-header.scroll .wrap {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}

header.nav-header .flex-middle {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 100%;
}

header.nav-header .logo,
footer.nav-footer .logo {
	position: relative;
	display: flex;
	width: 100%;
}

header.nav-header .logo:before {
	position: relative;
	display: none;
	width: 100%;
	height: 16px;
	max-width: 10%;
	content: "";
	margin-top: 20px;
	margin-right: -18px;
	background-image: url('assets/logo-lines.png');
	background-repeat: repeat-x;
	background-size: contain;
	background-position: center right;
	pointer-events: none;
}

header.nav-header .logo:after {
	position: relative;
	display: none;
	width: 100%;
	height: 16px;
	content: "";
	margin-top: 20px;
	margin-left: 5px;
	background-image: url('assets/logo-lines.png');
	background-repeat: repeat-x;
	background-size: contain;
	background-position: center left;
	pointer-events: none;
	animation: widthBackground 1.5s linear 1;
}

@keyframes widthBackground {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
  }

header.nav-header .logo a,
footer.nav-footer .logo a {
	width: 100%;
	height: 100%;
	max-width: 284px;
}

header.nav-header .logo a:before,
footer.nav-footer .logo a:before {
	display: none;
}

header.nav-header .logo img,
footer.nav-footer .logo img {
	max-width: 284px;
	-webkit-filter: grayscale(0%);
			filter: grayscale(0%);
	-webkit-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}

header.nav-header .logo:hover img,
header.nav-header .logo:focus img,
footer.nav-footer .logo:hover img,
footer.nav-footer .logo:focus img {
	-webkit-filter: grayscale(100%);
			filter: grayscale(100%);
}

html[data-home="true"] header.nav-header .logo img {
	filter: brightness(0) invert(1);
	-webkit-transition: filter 0.3s ease;
			transition: filter 0.3s ease;
}

html[data-home="true"] header.nav-header.scroll .logo img {
	filter: brightness(1) invert(0);
}

html[data-home="true"] header.nav-header .logo:before {
	background-image: url('assets/logo-lines-white.png');
}

html[data-home="true"] header.nav-header .logo:after {
	background-image: url('assets/logo-lines-white.png');
}

html[data-home="true"] header.nav-header.scroll .logo:before {
	background-image: url('assets/logo-lines.png');
}

html[data-home="true"] header.nav-header.scroll .logo:after {
	background-image: url('assets/logo-lines.png');
}

header.nav-header .top {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: auto;
	justify-content: flex-end;
}

header.nav-header .bottom {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: auto;
	justify-content: flex-end;
	margin-top: 0.5rem;
}

header.nav-header .top .btn-group {
	margin-right: 0;
}

header.nav-header .top .btn-group a.btn {
	padding: 0 1rem !important;
}

html[data-home="true"] header.nav-header .top .btn-group a.btn {
	color: var(--white);
}

html[data-home="true"] header.nav-header.scroll .top .btn-group a.btn {
	color: var(--primary);
}

html[data-home="true"] header.nav-header .top .btn-group a.btn:hover,
html[data-home="true"] header.nav-header .top .btn-group a.btn:focus {
	color: var(--secondary);
}

header.nav-header .top .btn-group a.btn:hover,
header.nav-header .top .btn-group a.btn:focus {
	box-shadow: none;
	color: var(--secondary);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	header.nav-header .container-fluid {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}

	header.nav-header .wrap {
		padding: 1.5rem 1.5rem 1.5rem 0;
		margin-top: 1rem;
	}

	header.nav-header .top .btn-group a.btn {
		padding: 0.5rem 0.25rem !important;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	#adminbar+* .nav-header {
		top: 3.5rem;
	}

	header.nav-header .logo:before,
	header.nav-header .logo:after {
		display: flex;
		margin-top: 14px;
	}

	header.nav-header .logo:before {
		margin-right: -12px;
	}

	header.nav-header .top .btn-group {
		margin-right: 1rem;
	}
}

@media only screen and (min-width: 1200px) {
	/* Large (xl) */
	header.nav-header .logo:before,
	header.nav-header .logo:after {
		margin-top: 20px;
	}

	header.nav-header .logo:before {
		margin-right: -18px;
	}
}

/* [MENU] */
/*
# Toplist
# Menu
# Meer menu
# Staticbar
# Hamburger
# Mobilemenu
*/

/* Toplist */
ul.toplist {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: auto;
}

ul.toplist li {
	margin-right: 1rem;
}

ul.toplist li:last-child {
	margin-right: 0;
}

/* Menu */
ul.navbar {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.navbar li {
	font-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 400;
	margin-right: 2rem;
}

ul.navbar li:last-child {
	margin-right: 0;
}

ul.navbar li a {
	position: relative;
	color: var(--primary);
	text-decoration: none;
	padding: 0.5rem 0;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

html[data-home="true"] ul.navbar li a {
	color: var(--white);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a {
	color: var(--primary);
}

ul.navbar li a:hover,
ul.navbar li a:focus {
	color: var(--secondary);
	background-color: transparent;
}

html[data-home="true"] ul.navbar li a:hover,
html[data-home="true"] ul.navbar li a:focus {
	color: var(--white);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a:hover,
html[data-home="true"] header.nav-header.scroll ul.navbar li a:focus {
	color: var(--secondary);
}

ul.navbar li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

html[data-home="true"] ul.navbar li a::before {
	background: var(--white);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a::before {
	background: var(--secondary);
}

ul.navbar li a:hover::before {
	width: 100%;
}

ul.navbar li a.active {
	color: var(--secondary);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a.active {
	color: var(--secondary);
}

ul.navbar li a.active:hover,
ul.navbar li a.active:focus {
	color: var(--primary);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a.active:hover,
html[data-home="true"] header.nav-header.scroll ul.navbar li a.active:focus {
	color: var(--primary);
}

ul.navbar li a.active::before {
	width: 100%;
	background: var(--secondary);
}

html[data-home="true"] ul.navbar li a.active::before {
	background: var(--white);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li a.active::before {
	background: var(--secondary);
}

ul.navbar li a.active:hover::before,
ul.navbar li a.active:focus::before {
	width: 0%;
}

ul.navbar li button.menu-toggler {
	position: relative;
	padding: 0.5rem 0 !important;
	border: 0;
	background: transparent !important;
	color: var(--primary) !important;
}

html[data-home="true"] ul.navbar li button.menu-toggler {
	color: var(--white) !important;
}

html[data-home="true"] header.nav-header.scroll ul.navbar li button.menu-toggler {
	color: var(--primary) !important;
}

ul.navbar li button.menu-toggler:hover,
ul.navbar li button.menu-toggler:focus {
	color: var(--secondary) !important;
}

html[data-home="true"] header.nav-header.scroll ul.navbar li button.menu-toggler:hover,
html[data-home="true"] header.nav-header.scroll ul.navbar li button.menu-toggler:focus {
	color: var(--secondary) !important;
}

ul.navbar li button.menu-toggler::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

html[data-home="true"] ul.navbar li button.menu-toggler::before {
	background: var(--white);
}

html[data-home="true"] header.nav-header.scroll ul.navbar li button.menu-toggler::before {
	background: var(--secondary);
}

ul.navbar li button.menu-toggler:hover::before {
	width: 100%;
}

ul.navbar li.dropdown .dropdown-menu {
	display: none;
}

/* Meer menu */
ul.navbar-meer {
	position: absolute;
	top: 140px;
	left: 0;
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: calc(100% - 30px);
	background-color: rgba(237, 245, 255, 1);
	padding: 1.5rem;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 1.25rem;
	-webkit-border-radius: 0.75rem;
			border-radius: 0.75rem;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

ul.navbar-meer li {
	margin-right: 2rem;
}

ul.navbar-meer li a {
	position: relative;
	color: var(--primary);
	text-decoration: none;
	padding: 0.5rem 0;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

ul.navbar-meer li a:hover,
ul.navbar-meer li a:focus {
	color: var(--secondary);
	background-color: transparent;
}

ul.navbar-meer li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

ul.navbar-meer li a:hover::before {
	width: 100%;
}

ul.navbar-meer li a.active {
	color: var(--secondary);
}

ul.navbar-meer li a.active:hover,
ul.navbar-meer li a.active:focus {
	color: var(--primary);
}

ul.navbar-meer li a.active::before {
	width: 100%;
	background: var(--secondary);
}

ul.navbar-meer li a.active:hover::before,
ul.navbar-meer li a.active:focus::before {
	width: 0%;
}

ul.navbar-meer li.dropdown .dropdown-menu {
	display: none;
}

/* Staticbar */
/* Place on the bottom of the screen. */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: calc(100% - 20px);
	height: 75px;
	color: var(--primary);
	background: var(--primary-bg);
	-webkit-border-radius: 0.75rem;
			border-radius: 0.75rem;
	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);
	--static-bar-width: 27%;
	--static-bar-spacing: 0.4rem;

    margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}

/* Make it a horizontally scrollable list. */
.navbar-static-bar .navlist-nav {
	display: flex;
	flex-wrap: nowrap;
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

/* Hide scrollbar. */
.navbar-static-bar .navlist-nav::-webkit-scrollbar {
	display: block;
}

.navbar-static-bar .nav-item {
	position: relative;
	display: inline-block;
	width: calc(var(--static-bar-width) - calc(3 * var(--static-bar-spacing)));
	margin-left: var(--static-bar-spacing);
	margin-right: var(--static-bar-spacing);
	vertical-align: middle;
	flex-shrink: 0;
}

/* Place a line in between each item. */
.navbar-static-bar .nav-item::after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	top: 20%;
	bottom: 20%;
	left: calc(100% + var(--static-bar-spacing) + 1px);
	background-color: rgba(0, 46, 105, 0.3);
	opacity: 0.5;
}

.navbar-static-bar .nav-item:last-child::after {
	display: none;
}

/* Place icon and text vertical. */
.navbar-static-bar .nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	color: inherit;
}

.navbar-static-bar .nav-icon {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--primary);
	min-height: 30px;
}

.navbar-static-bar .nav-link:before {
	display: none;
}

.navbar-static-bar .nav-indentation {
	display: none;
}

.navbar-static-bar .nav-title {
	font-size: 0.65rem;
	line-height: 0.65rem;
	font-weight: 400;
	text-align: center;
	color: var(--primary);
	hyphens: auto;
}

/* Highlight when selected. */
.navbar-static-bar .nav-link:active .nav-title,
.navbar-static-bar .nav-link:hover .nav-title,
.navbar-static-bar .nav-link:focus .nav-title {
	text-decoration: none;
	color: var(--primary);
	background-color: transparent;
}

.navbar-static-bar .nav-link:active .nav-icon,
.navbar-static-bar .nav-link:hover .nav-icon,
.navbar-static-bar .nav-link:focus .nav-icon {
	color: var(--secondary);
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.navbar-static-bar .nav-title {
		font-size: 0.75rem;
		line-height: 0.75rem;
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.navbar-static-bar {
		--static-bar-width: 20%;
		--static-bar-spacing: 0.4rem;
	}
}

/* Move asside for the admin bar. */
@media screen and (max-width: 991px) {
	[data-logged="true"] .navbar-static-bar {
		margin-bottom: 3.125rem;
	}
}

/* Offset height below the footer for the navigation bar. */
.navbar-static-bar-offset {
	height: 4.625rem;
}

/* Hamburger */
.navbar-toggler {
	border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
	width: 100%;
	font-size: 1rem;
}

.navbar-toggler-icon {
	position: relative;
	background-image: none !important;
	margin-bottom: 0.5rem;
	min-height: 30px;
}

.navbar-toggler-icon i {
	display: block;
	position: absolute;
	height: 0.1em;
	width: 100%;
	left: 0;
	background-color: var(--primary);
	transition-property: left, top, transform, width;
	transition-duration: 250ms;
}

.navbar-toggler:hover .navbar-toggler-icon i,
.navbar-toggler:focus .navbar-toggler-icon i {
	background-color: var(--secondary);
}

.navbar-toggler-icon i:nth-child(1) {
	top: calc(20% - 0.05em);
}

.navbar-toggler-icon i:nth-child(2) {
	top: calc(50% - 0.05em);
}

.navbar-toggler-icon i:nth-child(3) {
	top: calc(80% - 0.05em);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(1) {
	top: calc(50% - 0.1em);
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(2) {
	width: 0;
	left: 50%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(3) {
	top: calc(50% - 0.1em);
	transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        display: flex;
    }
}

/* Mobilemenu */
ul.navbar-mobile {
	display: none;
	position: fixed;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	z-index: 1039;
	top: 10px;
	right: 10px;
	bottom: 80px;
	left: 10px;
	width: calc(100% - 20px);
	list-style-type: none;
	padding: 0;
	color: var(--primary);
	overflow: hidden;
	background: var(--primary-bg);
	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);
	pointer-events: none;
	-webkit-border-radius: 0.75rem;
   		 	border-radius: 0.75rem;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

ul.navbar-mobile.show {
	display: flex;
	pointer-events: all;
}

ul.navbar-mobile li {
	text-align: center;
	width: 95%;
	margin-bottom: 1rem;
}

ul.navbar-mobile li:last-child {
	margin-bottom: 0;
}

ul.navbar-mobile li a {
	display: inline-block;
	font-size: 1.15rem;
	line-height: 1.15rem;
	font-weight: 400;
	color: var(--primary);
	text-align: center;
}

ul.navbar-mobile li.dropdown.show a.dropdown-toggle {
	margin-bottom: 0.5rem;
}

ul.navbar-mobile li a:before {
	width: 0%;
	background-color: var(--primary);
}

ul.navbar-mobile li a:hover:before,
ul.navbar-mobile li a:focus:before {
	width: 100%;
}

ul.navbar-mobile li a.active:before {
	width: 100%;
}

ul.navbar-mobile li a.active:hover:before,
ul.navbar-mobile li a.active:hover:before {
	width: 0%;
}

ul.navbar-mobile li .dropdown-menu {
	display: none;
}

ul.navbar-mobile li .dropdown-menu.show {
	position: relative !important;
	display: flex;
	flex-direction: column;
	top: unset !important;
	left: unset !important;
	background-color: transparent !important;
	color: var(--white) !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	float: unset !important;
	text-align: center !important;
	transform: none !important;
}

ul.navbar-mobile li .dropdown-menu a.dropdown-item {
	padding: 0 !important;
	margin-bottom: 1rem;
	display: inline;
	width: auto !important;
}

ul.navbar-mobile li .dropdown-menu a.dropdown-item:last-child {
	margin-bottom: 0;
}
ul.navbar-mobile li .dropdown-menu a.dropdown-item:hover,
ul.navbar-mobile li .dropdown-menu a.dropdown-item:focus,
ul.navbar-mobile li .dropdown-menu a.dropdown-item.active {
	background-color: transparent;
	color: var(--white);
}

@media (max-width: 768px) and (orientation: landscape) {
	ul.navbar-mobile li {
		display: none;
	}

	ul.navbar-mobile:after {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
        align-items: center;
		padding: 2rem;
		width: 100%;
		height: 100%;
		content: "Helaas is deze inhoud niet beschikbaar in landscape-oriëntatie. Gelieve de oriëntatie van uw apparaat aan te passen of de inhoud in portretmodus te bekijken voor een optimale ervaring.";
	}
}

/* [HEADER] */
section.header {
	position: relative;
	padding-top: 15px;
	padding-bottom: 0;
}

section.header .carousel-caption {
	display: none
}

/* [VIDEO] */
.video {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 1.25rem;
}

.video video {
	width: 100%;
	height: auto;
	transition: all .3s ease-in-out;
}

.video video:hover {
	transform: scale(1.15);
}

/* [CONTENT] */
section.content-template-default {
	position: relative;
	padding: 2rem 0;
}

section.content-template-curved {
	position: relative;
	padding: 4rem 0;
	margin-left: 15px;
	margin-right: 15px;
	-webkit-border-radius: 1.56rem;
			border-radius: 1.56rem;
}

.primarybg {
	background-color: var(--primary);
}

.secondarybg {
	background-color: var(--secondary);
}

.tertiarybg {
	background-color: var(--tertiary);
}

.blackbg {
	background-color: var(--black);
}

.whitebg {
	background-color: var(--white);
}

.primarybg a,
.secondarybg a,
.tertiarybg a,
.blackbg a {
	color: var(--white);
}

.curved-box {
	position: relative;
	padding: 4rem 2rem 0 2rem;
	-webkit-border-radius: 1.56rem;
			border-radius: 1.56rem;
}

.curved-box .curved-img {
	position: relative;
	display: block;
	float: right;
	bottom: 0;
	right: -2rem;
	max-width: 75%;
}

.border-radius {
	overflow: hidden;
    border-radius: 1.25rem;
}

div[data-partial="partial-list"]
div[data-partial="youtube"] {
	overflow: hidden;
	-webkit-border-radius: 1.56rem;
   			border-radius: 1.56rem;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    		box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

div[data-partial="partial-list"] div[data-partial="image"] img {
	overflow: hidden;
	-webkit-border-radius: 1.56rem;
			border-radius: 1.56rem;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.googlemap {
	position: relative;
	margin: 0;
	padding: 0;
}

.iconlist ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.iconlist ul li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 2rem;
	font-size: 1.25rem;
}

.iconlist ul li:last-child {
	margin-bottom: 0;
}

.iconlist ul li:before {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	content: "\f00c";
	font-size: 1.5rem;
	color: var(--tertiary);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	section.content-template-default {
		padding: 3rem 0;
	}

	.curved-box {
		padding: 2rem 0;
	}

	.curved-box .curved-img {
		position: absolute;
		float: unset;
		bottom: 0;
		right: 0;
		max-width: 250px;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	.curved-box {
		padding: 4rem 0;
	}
}

/* [ELEMENTS] */
.blue-element-one:before {
	position: absolute;
	top: -50px;
	left: -15px;
	display: block;
	z-index: 1;
	content: "";
	width: 45px;
	height: 116px;
	background-image: url('assets/blue-element-one.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.blue-element-two:after {
	position: absolute;
	bottom: -50px;
	right: -15px;
	display: block;
	z-index: 1;
	content: "";
	width: 100px;
	height: 159px;
	background-image: url('assets/blue-element-two.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.blue-element-three:after {
	position: absolute;
	top: -60px;
	right: 0;
	display: block;
	z-index: -1;
	content: "";
	width: 125px;
	height: 199px;
	background-image: url('assets/blue-element-three.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.blue-element-four:before {
	position: absolute;
	top: -30px;
	left: -15px;
	display: block;
	z-index: 1;
	content: "";
	width: 40px;
	height: 104px;
	background-image: url('assets/blue-element-four.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.blue-element-five:after {
	position: absolute;
	bottom: -50px;
	right: -15px;
	display: block;
	z-index: 1;
	content: "";
	width: 100px;
	height: 159px;
	background-image: url('assets/blue-element-five.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.blue-element-six:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	z-index: 1;
	content: "";
	width: 125px;
	height: 198px;
	background-image: url('assets/blue-element-six.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.green-element-one:before {
	position: absolute;
	bottom: 0;
	left: -75px;
	display: none;
	z-index: 1;
	content: "";
	width: 430px;
	height: 100%;
	background-image: url('assets/green-element-one.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.green-element-two:before {
	position: absolute;
	left: calc(100% - 150px);
	bottom: -32px;
	display: block;
	z-index: -1;
	content: "";
	width: 250px;
	height: 283px;
	background-image: url('assets/green-element-two.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.green-element-three:after {
	position: absolute;
	bottom: -30px;
	right: -15px;
	display: block;
	z-index: 1;
	content: "";
	width: 75px;
	height: 125px;
	background-image: url('assets/green-element-three.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.green-element-four:after {
	position: absolute;
	bottom: 0;
	right: 75px;
	display: block;
	z-index: 1;
	content: "";
	width: 350px;
	height: 175px;
	background-image: url('assets/green-element-four.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.green-element-five:after {
	position: absolute;
	top: -75px;
	right: 0;
	display: block;
	z-index: 1;
	content: "";
	width: 75px;
	height: 125px;
	background-image: url('assets/green-element-three.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.blue-element-one:before {
		top: -50px;
		left: -15px;
		width: 75px;
		height: 193px;
	}

	.blue-element-two:after {
		bottom: -100px;
		right: -15px;
		width: 175px;
		height: 278px;
	}

	.blue-element-three:after {
		top: -60px;
		right: 0;
		width: 175px;
		height: 278px;
	}

	.blue-element-four:before {
		top: 30px;
		left: -15px;
		width: 65px;
		height: 169px;
	}

	.blue-element-five:after {
		bottom: -100px;
		right: -15px;
		width: 150px;
		height: 251px;
	}

	.blue-element-six:before {
		bottom: -0;
		left: 0;
		width: 100px;
		height: 158px;
	}

	.green-element-one:before {
		bottom: 0;
		left: -75px;
		display: block;
		width: 330px;
		height: 545px;
	}

	.green-element-two:before {
		left: calc(50% - 300px);
		bottom: -64px;
		width: 350px;
		height: 396px;
	}

	.green-element-three:after {
		bottom: 30px;
		right: -15px;
		width: 250px;
		height: 418px;
	}

	.green-element-four:after {
		bottom: 0;
		right: 125px;
		width: 350px;
		height: 175px;
	}

	.green-element-five:after {
		top: -60px;
		right: 0;
		width: 150px;
		height: 251px;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	.green-element-one:before {
		bottom: 0;
		left: -75px;
		display: block;
		width: 430px;
		height: 100%;
	}

	.green-element-two:before {
		left: calc(50% - 300px);
		bottom: -32px;
		width: 350px;
		height: 396px;
	}

	.blue-element-six:before {
		bottom: -0;
		left: 0;
		width: 200px;
		height: 317px;
	}
}

/* [MASK] */
.mask-img {
	position: relative;
	top: -4rem;
	left: unset;
	display: block;
	z-index: 1;
	width: 100%;
	height: 300px;
	/* -webkit-mask: url("assets/image-mask.svg") no-repeat center right;
			mask: url("assets/image-mask.svg") no-repeat center right; */
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.mask-img {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 30%;
		height: 100%;
	}
}

/* [USP BAR - Victory] */
section.uspbar {
	position: relative;
	padding: 2rem 0;
}

.usp {
	position: relative;
	display: flex;
	flex-direction: row;
    justify-content: center;
}

.usp .icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 1rem;
}

.usp .icon-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.usp .icon-content .icon-title {
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 700;
	color: var(--primary)
}

.usp .icon-content .icon-desc {
	font-size: 0.85rem;
	line-height: 1.15rem;
	color: var(--secondary);
}

.usp .icon-content .icon-desc p {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	section.uspbar {
		position: relative;
		padding: 3rem 0;
	}

	.usp {
		justify-content: flex-start;
	}
}

/* [FOTOALBUM SLIDER] */
section.blog-album .slider-control-prev {
	font-size: 2rem;
	color: var(--primary);
	opacity: 1;
	margin-left: 1rem;
}

section.blog-album .slider-control-prev-icon::after {
    content: "\f177";
}

section.blog-album .slider-control-prev:hover,
section.blog-album .slider-control-prev:focus {
	color: var(--secondary);
}

section.blog-album .slider-control-next {
	font-size: 2rem;
	color: var(--primary);
	opacity: 1;
	margin-right: 1rem;
}

section.blog-album .slider-control-next-icon::after {
    content: "\f178";
}

section.blog-album .slider-control-next:hover,
section.blog-album .slider-control-next:focus {
	color: var(--secondary);
}

section.blog-album .slider-indicators {
	opacity: 0;
	pointer-events: none;
}

section.blog-album .flex-slider .img-fluid {
	width: auto !important;
	max-width: unset !important;
	height: 200px;
	-webkit-border-radius: 1.56rem;
	border-radius: 1.56rem;
}

section.blog-album .flex-slider a.lightbox-able {
	padding: 0 0.5rem;
}

section.blog-album .flex-slider a.lightbox-able:before {
	display: none;
}

section.blog-album .flex-auto-responsive>*,
section.blog-album .flex-auto-responsive>picture>img,
section.blog-album .flex-auto-responsive>a>picture>img {
	min-width: auto !important;
}

/* [TABLES] */
.table-responsive {
	position: relative;
	background-color: rgba(255, 255, 255, 0.25);
	padding: 1rem;
	border-radius: 0.75rem;
}

table.mce-item-table {
	width: 100%;
	font-size: 0.9rem;
	margin: 0;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
	border: 0 !important;
}

table.mce-item-table tr {
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid var(--white) !important;
}

table.mce-item-table tr:first-child {
	border-radius: 0.75rem;
	background-color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.5rem;
}

table.mce-item-table tr:first-child,
table.mce-item-table tr:last-child {
	border-bottom: 0 !important;
}

table.mce-item-table tr td {
	padding: 1rem;
	width: 100%;
	border-right: 1px solid var(--white) !important;
	-webkit-transition: all 0.2s;
			transition: all 0.2s;
}

table.mce-item-table tr td table.mce-item-table tr td:hover {
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--primary);
	font-weight: 700;
}

table.mce-item-table tr:first-child td,
table.mce-item-table tr td:last-child {
	border-right: 0 !important;
}

table.mce-item-table tr:first-child td:hover {
	background-color: rgba(255, 255, 255, 0);
}

table.mce-item-table tr th,
table.mce-item-table tr:first-child td {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--primary);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	table.mce-item-table {
		font-size: 1.5rem;
	}

	table.mce-item-table tr {
		flex-direction: row;
	}

	table.mce-item-table tr th {
		display: flex;
	}

	table.mce-item-table tr th,
	table.mce-item-table tr:first-child td {
		font-size: 1.25rem;
	}

	table.mce-item-table tr td {
		width: 100%;
		border-right: 1px solid var(--white) !important;
	}
}

/* [BUTTONS] */
.btn-primary:not(.btn-admin),
.btn-secondary:not(.btn-admin),
.btn-tertiary:not(.btn-admin),
.btn-link:not(.btn-admin) {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	text-decoration: none;
	border-radius: 2rem;
	padding: 0.5rem 3rem 0.5rem 1.5rem !important;
	letter-spacing: 0.5px;
	text-align: center;
	-webkit-transition: all 0.15s;
			transition: all 0.15s;
}

.btn-primary:not(.btn-admin):hover,
.btn-primary:not(.btn-admin):focus,
.btn-secondary:not(.btn-admin):hover,
.btn-secondary:not(.btn-admin):focus,
.btn-tertiary:not(.btn-admin):hover,
.btn-tertiary:not(.btn-admin):focus,
.btn-link:not(.btn-admin):hover,
.btn-link:not(.btn-admin):focus {
	padding: 0.5rem 1.5rem 0.5rem 3rem !important;
}

.btn-primary:not(.btn-admin):after,
.btn-secondary:not(.btn-admin):after,
.btn-tertiary:not(.btn-admin):after,
.btn-link:not(.btn-admin):after {
	position: absolute;
	top: 2px;
	left: calc(100% - 38px);
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 1rem;
	content: "\f178";
    padding: 0.4rem 0.3rem;
	border-radius: 100%;
	min-width: 36px;
	min-height: 36px;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.btn-primary:not(.btn-admin):hover:after,
.btn-primary:not(.btn-admin):focus:after,
.btn-secondary:not(.btn-admin):hover:after,
.btn-secondary:not(.btn-admin):focus:after,
.btn-tertiary:not(.btn-admin):hover:after,
.btn-tertiary:not(.btn-admin):focus:after,
.btn-link:not(.btn-admin):hover:after,
.btn-link:not(.btn-admin):focus:after {
	left: calc(0% - -2px);
}

.btn-primary:not(.btn-admin) {
	border-color: var(--primary);
	background-color: var(--primary);
	color: var(--white);
}

.btn-primary:not(.btn-admin):after {
	color: var(--primary);
	background-color: var(--secondary);
}

.btn-primary:not(.btn-admin):hover,
.btn-primary:not(.btn-admin):focus {
	border-color: var(--primary);
	background-color: var(--primary);
	color: var(--white);
}

.btn-secondary:not(.btn-admin) {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--white);
}

.btn-secondary:not(.btn-admin):after {
	color: var(--secondary);
	background-color: var(--primary);
}

.btn-secondary:not(.btn-admin):hover,
.btn-secondary:not(.btn-admin):focus {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--white);
}

.btn-tertiary:not(.btn-admin) {
	border-color: var(--secondary);
	background-color: transparent;
	color: var(--primary);
}

.btn-tertiary:not(.btn-admin):after {
	color: var(--primary);
	background-color: var(--secondary);
}

.btn-tertiary:not(.btn-admin):hover,
.btn-tertiary:not(.btn-admin):focus {
	border-color: var(--secondary);
	background-color: transparent;
	color: var(--primary);
}

.whitetxt .btn-tertiary:not(.btn-admin),
.whitetxt .btn-tertiary:not(.btn-admin):hover,
.whitetxt .btn-tertiary:not(.btn-admin):focus {
	color: var(--white);
}

.btn-link:not(.btn-admin) {
	border-color: var(--primary);
	background-color: transparent;
	color: var(--primary);
}

.btn-link:not(.btn-admin):after {
	color: var(--secondary);
	background-color: var(--primary);
}

.btn-link:not(.btn-admin):hover,
.btn-link:not(.btn-admin):focus {
	border-color: var(--primary);
	background-color: transparent;
	color: var(--primary);
}

.whitetxt .btn-link:not(.btn-admin),
.whitetxt .btn-link:not(.btn-admin):hover,
.whitetxt .btn-link:not(.btn-admin):focus {
	color: var(--white);
}

.btn-back:not(.btn-admin) {
	position: relative;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	display: block;
	width: 100%;
	text-align: left;
	padding: 0 !important;
	color: var(--primary);
	border-radius: 0;
	background-color: transparent;
	border-color: transparent;
	text-decoration: none;
}

.btn-back:not(.btn-admin):before {
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 1rem;
	content: "\f177";
	margin-right: 1rem;
	color: var(--secondary);
}

.btn-back:not(.btn-admin):hover,
.btn-back:not(.btn-admin):focus {
	background-color: transparent;
	color: var(--secondary);
}

.btn-back:not(.btn-admin):hover:before,
.btn-back:not(.btn-admin):focus:before {
	color: var(--primary);
}

.btn-primary:not(.btn-admin):focus,
.btn-secondary:not(.btn-admin):focus,
.btn-tertiary:not(.btn-admin):focus,
.btn-link:not(.btn-admin):focus,
.btn-back:not(.btn-admin):focus {
	box-shadow: none;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin),
	.btn-back:not(.btn-admin) {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin) {
		display: inline-block;
		width: auto;
		margin-bottom: 1rem;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin),
	.btn-back:not(.btn-admin) {
		display: inline-block;
		width: auto;
		margin-bottom: 0;
	}
}

/* [CONTACT] */
.details {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.details .detail-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 2rem;
}

.details .detail-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.details .detail-content .top {
	display: flex;
	flex-direction: column;
	color: var(--secondary);
	margin-bottom: 0.5rem;
}

.details .detail-content .top .title {
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: var(--white);
}

.details .detail-content .bottom {
	display: flex;
	flex-direction: column;
	color: var(--secondary);
	font-size: 0.875em;
}

ul.contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.contact li {
	margin: 0 0 1rem 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	color: var(--white);
}

ul.contact li:last-child {
	margin: 0;
}

ul.contact li i {
	margin: 0 1rem 0 0;
	min-width: 16px;
	font-size: 1rem;
	color: var(--secondary);
}

ul.contact li a {
	position: relative;
	text-decoration: none;
	color: var(--white);
}

ul.contact li a:hover,
ul.contact li a:focus {
	color: var(--secondary);
}

ul.contact li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

ul.contact li a:hover::before,
ul.contact li a:focus::before {
	width: 100%;
}

ul.contact li address,
ul.contact li a address {
	margin-bottom: 1rem !important;
	margin-right: 0rem;
	line-height: 1.1rem;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.details {
		align-items: center;
	}

	.details .detail-content .top {
		display: flex;
		flex-direction: row;
	}

	.details .detail-content .bottom {
		display: flex;
		flex-direction: row;
	}

	ul.contact {
		flex-direction: row;
	}

	ul.contact li {
		margin: 0 2rem 0 0;
	}

	ul.contact li address,
	ul.contact li a address {
		margin-bottom: 0 !important;
		margin-right: 2rem;
		line-height: 1.1rem;
	}
}

/* [SOCIALS] */
ul.socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.25rem;
}

ul.socials li {
	margin: 0 0.25rem 0 0;
	font-size: 1.5rem;
}

ul.socials li:last-child {
	margin: 0;
}

ul.socials li a {
	opacity: 1;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

ul.socials li a:hover,
ul.socials li a:focus {
	opacity: 1;
}

ul.socials li a::before {
	display: none;
}

ul.socials li a.facebook {
	color: #1877f2;
}

ul.socials li a.facebook:hover,
ul.socials li a.facebook:focus {
	color: var(--primary);
}

ul.socials li a.instagram {
	color: #c32aa3;
}

ul.socials li a.instagram:hover,
ul.socials li a.instagram:focus {
	color: var(--primary);
}

ul.socials li a.tiktok {
	color: #ff0050;
	/* color: #00f2ea; */
}

ul.socials li a.tiktok:hover,
ul.socials li a.tiktok:focus {
	color: var(--primary);
}

ul.socials li a.linkedin {
	color: #0a66c2;
}

ul.socials li a.linkedin:hover,
ul.socials li a.linkedin:focus {
	color: var(--primary);
}

ul.socials li a.twitter {
	color: #1da1f2;
}

ul.socials li a.twitter:hover,
ul.socials li a.twitter:focus {
	color: var(--primary);
}

ul.socials li a.x-twitter {
	color: #1da1f2;
}

ul.socials li a.x-twitter:hover,
ul.socials li a.x-twitter:focus {
	color: var(--primary);
}

ul.socials li a.pinterest {
	color: #bd081c;
}

ul.socials li a.pinterest:hover,
ul.socials li a.pinterest:focus {
	color: var(--primary);
}

ul.socials li a.youtube {
	color: #ff0000;
}

ul.socials li a.youtube:hover,
ul.socials li a.youtube:focus {
	color: var(--primary);
}

ul.socials li a.google {
	color: #ff0000;
}

ul.socials li a.google:hover,
ul.socials li a.google:focus {
	color: var(--primary);
}

/* [FORM] */
.formbox {
	position: relative;
}

.formbox p.font-weight-bold {
	font-family: var(--font-family-heading);
	color: var(--primary);
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.formbox form .form-group {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 0.5rem;
}

div[data-partial="form"] form label,
div[data-partial="form"] form legend,
.formbox form label,
.formbox form legend {
	display: flex;
	height: 100%;
	width: 100%;
	color: var(--primary);
	margin: 0;
	padding: 0.5rem 0;
	text-align: left;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 700;
}

div[data-partial="form"] form fieldset,
.formbox form fieldset {
	width: 100%;
}

div[data-partial="form"] form .form-group small,
.formbox form .form-group small {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--danger);
}

.formbox form .input-wrapper label {
	display: inline-block;
	width: auto;
	color: var(--primary);
	margin: 0 0 0 0.5rem;
	font-size: 1rem;
}

.formbox form .input-wrapper label small {
	font-size: 0.75rem;
	margin: 0 0 0 0.25rem;
	color: var(--primary);
}

.formbox form .input-wrapper .form-radio {
	transform: scale(1);
}

div[data-partial="form"] form input,
div[data-partial="form"] form textarea,
.formbox form input,
.formbox form textarea {
	background-color: var(--white);
	border-color: var(--primary);
	font-size: 1.15rem;
	font-weight: 400;
	color: black;
	outline: none;
	box-shadow: none !important;
	padding: 0.75rem 1.25rem !important;
}

.formbox div[data-purpose="output"],
.formbox form input[type="file"] {
	flex-direction: row;
	align-items: center;
	background-color: white;
	font-size: 0.875em;
	font-weight: 400;
	color: var(--primary);
	outline: none;
	padding: 0.25rem 1.25rem !important;
}

.formbox form button[data-purpose="reset"] {
	font-size: 2rem;
	color: var(--danger);
}

.formbox form input[type="checkbox"] {
	padding: 0 !important;
	font-size: 0.5rem;
	width: auto !important;
}

.formbox form input[type="date"] {
	padding: 0.75rem 1.25rem !important;
	font-size: 1rem;
}

.formbox form select {
	background-color: var(--white);
	border-color: var(--primary);
	display: block;
	width: 100%;
	font-size: 1rem;
	padding: 0.75rem 1.25rem !important;
}

div[data-partial="form"] form input:hover,
div[data-partial="form"] form input:focus,
.formbox form input:hover,
.formbox form input:focus,
div[data-partial="form"] form textarea:hover,
.formbox form textarea:hover,
div[data-partial="form"] form select:hover,
div[data-partial="form"] form select:focus-visible,
.formbox form select:hover,
.formbox form select:focus-visible {
	background-color: var(--white);
	border-color: var(--secondary);
	box-shadow: none;
}

div[data-partial="form"] form input:user-invalid,
div[data-partial="form"] form textarea:user-invalid,
.formbox form input:user-invalid,
.formbox form textarea:user-invalid {
	border-color: var(--danger);
}

.formbox form .align-right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: 100%;
}

div[data-partial="form"] form button[type="submit"],
.formbox form button[type="submit"] {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	text-decoration: none;
	border-radius: 2rem;
	padding: 0.5rem 3rem 0.5rem 1.5rem !important;
	letter-spacing: 0.5px;
	text-align: center;
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	margin-top: 1rem;
	-webkit-transition: all 0.15s;
			transition: all 0.15s;
}

div[data-partial="form"] form button[type="submit"]:hover,
div[data-partial="form"] form button[type="submit"]:focus,
.formbox form button[type="submit"]:hover,
.formbox form button[type="submit"]:focus {
	padding: 0.5rem 1.5rem 0.5rem 3rem !important;
	border-color: var(--primary);
	background-color: var(--primary);
	color: var(--white);
	box-shadow: none;
}

div[data-partial="form"] form button[type="submit"]:after,
.formbox form button[type="submit"]:after {
	position: absolute;
	top: 2px;
	left: calc(100% - 38px);
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 1rem;
	content: "\f178";
    padding: 0.4rem 0.3rem;
	border-radius: 100%;
	min-width: 36px;
	min-height: 36px;
	background-color: var(--secondary);
	color: var(--white);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

div[data-partial="form"] form button[type="submit"]:hover:after,
div[data-partial="form"] form button[type="submit"]:focus:after,
.formbox form button[type="submit"]:hover:after,
.formbox form button[type="submit"]:focus:after {
	left: calc(0% - -2px);
}

.formbox form ::placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

.formbox form:-ms-input-placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

.formbox form ::-ms-input-placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.formbox p.font-weight-bold {
		font-size: 2.25rem;
		line-height: 2.75rem;
	}

	div[data-partial="form"] form button[type="submit"],
	.formbox form button[type="submit"] {
		display: inline-block;
		width: auto;
		margin-top: 0;
	}
}

/* [DOWNLOADS] */
div[data-partial="download"] {
	position: relative;
	margin-bottom: 2rem;
}

div[data-partial="download"]>div {
	display: flex;
	flex-direction: column;
	width: auto;
}

div[data-partial="download"] a {
	position: relative;
	display: inline;
	width: fit-content;
	margin-bottom: 0.25rem;
	text-align: left;
	padding: 0 !important;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.5rem 1rem !important;
	text-decoration: none;
	text-align: center;
	color: var(--white);
	border: 1px solid var(--secondary) !important;
    background-color: var(--primary);
	-webkit-transition: all 0.5s;
			transition: all 0.5s;
}

.whitetxt div[data-partial="download"] a {
	color: var(--white);
}

div[data-partial="download"] a::before {
	display: none;
}

div[data-partial="download"] a:hover,
div[data-partial="download"] a:focus {
	text-decoration: none;
	color: var(--primary);
	outline: none;
	box-shadow: none;
	border-color: var(--secondary);
	color: var(--white);
	background-color: var(--secondary);
}

div[data-partial="download"] a i {
	margin-right: 0.5rem;
	color: var(--secondary) !important;
	font-size: 1.15rem !important;
}

div[data-partial="download"] a:hover i,
div[data-partial="download"] a:focus i {
	color: var(--primary) !important;
}

/* [MODAL] */
.modal-header {
	background-color: var(--primary) !important;
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
}

.modal-header .close {
	color: var(--white);
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
	display: block;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	margin-bottom: 0.5rem;
}

footer.nav-footer:before {
	position: absolute;
	display: block;
	width: 40px;
	height: 113px;
	content: "";
	z-index: 2;
	top: 15px;
	left: -15px;
	background-image: url('assets/footer-element-one.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
}

footer.nav-footer:after {
	position: absolute;
	display: block;
	width: 70px;
	height: 154px;
	content: "";
	z-index: 2;
	bottom: 15px;
	right: -15px;
	background-image: url('assets/footer-element-two.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
}

html[data-logged="true"] footer.nav-footer {
	margin-bottom: 0;
}

footer.nav-footer .top {
	position: relative;
	width: 100%;
	padding: 3rem 1rem;
	background-color: var(--primary-bg);
	-webkit-border-top-left-radius: 0.75rem;
			border-top-left-radius: 0.75rem;
	-webkit-border-top-right-radius: 0.75rem;
			border-top-right-radius: 0.75rem;
}

footer.nav-footer .title {
	font-family: var(--font-family-heading);
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: var(--primary);
}

footer.nav-footer .top .text-right {
	text-align: left !important;
}

footer.nav-footer ul.navlist-nav li {
	margin-bottom: 1rem;
}

footer.nav-footer ul.navlist-nav li a {
	padding: 0;
	display: inline;
	color: var(--primary);
}

footer.nav-footer ul.navlist-nav li a:hover,
footer.nav-footer ul.navlist-nav li a:focus {
	color: var(--secondary);
}

footer.nav-footer ul.navlist-nav li a:before {
	bottom: -4px;
	width: 0%;
}

footer.nav-footer ul.navlist-nav li a:hover:before,
footer.nav-footer ul.navlist-nav li a:focus:before {
	width: 100%;
}

footer.nav-footer ul.contact {
	flex-direction: column;
}

footer.nav-footer ul.contact li {
    margin: 0 0 1rem 0;
}

footer.nav-footer ul.contact li i {
	min-width: 23px;
	font-size: 1.25rem;
}

footer.nav-footer ul.contact li a {
	color: var(--primary);
}

footer.nav-footer ul.contact li a:hover,
footer.nav-footer ul.contact li a:focus {
	color: var(--secondary);
}

footer.nav-footer ul.contact li a:before {
	width: 0%;
	background-color: var(--secondary);
}

footer.nav-footer ul.contact li a:hover:before,
footer.nav-footer ul.contact li a:focus:before {
	width: 100%;
}

footer.nav-footer ul.contact li address,
footer.nav-footer ul.contact li a address {
	margin-right: 0;
	line-height: 1.7rem;
}

footer.nav-footer .btn-group a.btn {
	padding: 0 !important;
	margin-right: 1rem;
}

footer.nav-footer .btn-group a.btn:hover,
footer.nav-footer .btn-group a.btn:focus {
	box-shadow: none;
	color: var(--secondary);
}

footer.nav-footer ul.socials li a:before {
	display: none;
}

footer.nav-footer .bottom {
	font-size: 1rem;
	padding: 0;
	background-color: var(--primary-bg);
	-webkit-border-bottom-left-radius: 0.75rem;
			border-bottom-left-radius: 0.75rem;
	-webkit-border-bottom-right-radius: 0.75rem;
			border-bottom-right-radius: 0.75rem;
}

footer.nav-footer .bottom .flex-row {
	flex-direction: column !important;
}

footer.nav-footer .bottom .nclogo {
	font-size: 0.75rem;
}

footer.nav-footer .bottom a,
footer.nav-footer .bottom button {
	position: relative;
	color: var(--primary);
	text-decoration: none;
}

footer.nav-footer .bottom a.logo-nc_websites {
	font-size: 1rem;
	color: var(--primary);
}

footer.nav-footer .bottom a::before,
footer.nav-footer .bottom button::before {
	display: none;
}

footer.nav-footer .bottom a:hover,
footer.nav-footer .bottom a:focus,
footer.nav-footer .bottom button:hover,
footer.nav-footer .bottom button:focus {
	color: var(--secondary);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	footer.nav-footer {
		margin-right: 1rem;
		margin-left: 1rem;
		margin-bottom: 1rem;
	}

	footer.nav-footer:before {
		width: 75px;
		height: 283px;
	}

	footer.nav-footer:after {
		width: 85px;
		height: 187px;
	}

	footer.nav-footer .top {
		padding: 5rem 5rem 2.5rem 5rem;
	}

	footer.nav-footer .top .text-right {
		text-align: right !important;
	}

	footer.nav-footer .title {
		font-size: 2rem;
		line-height: 2rem;
	}

	footer.nav-footer .bottom .flex-row {
		flex-direction: row !important;
	}

	footer.nav-footer .bottom .d-flex a:first-child small::after {
		position: absolute;
		display: inline-block;
		content: "";
		width: 1px;
		height: 15px;
		top: 14px;
		right: 0px;
		background: var(--primary);
	}

	footer.nav-footer .bottom a.logo-nc_websites::after {
		position: absolute;
		display: inline-block;
		content: "";
		width: 1px;
		height: 15px;
		top: 14px;
		right: 0px;
		background: var(--primary);
	}
}

/*
	Stevie's SUPER gestructureerde CSS
	           .=.,
              ;c =\
            __|  _/
          .'-'-._/-'-._
         /..   ____    \
        /'[Super Stevie]) \
       (  /  \--\_>/-/ '._ )
        \-;_/\__;__/ _/ _/
         '._}|==o==\{_\/
          /  /-._.--\  \_
         // /   /|   \ \ \
        / | |   | \;  |  \ \
       / /  | :/   \: \   \_\
      /  |  /.'|   /: |    \ \
      |  |  |--| . |--|     \_\
      / _/   \ | : | /___--._) \
     |_(---'-| >-'-| |       '-'
            /_/     \_\
*/