:root {
	/* Colors */
	--primary: #54AD99;
	--primary-bg: #54AD99;
	--primary-dark: #54AD99;
	--primary-light: #54AD99;

	--secondary: #387A8E;
	--secondary-bg: #387A8E;
	--secondary-dark: #387A8E;
	--secondary-light: #387A8E;

	--tertiary: #54AD99;
	--tertiary-bg: #54AD99;
	--tertiary-dark: #54AD99;
	--tertiary-light: #54AD99;

	--quaternary: #808080;
	--quaternary-bg: #808080;
	--quaternary-dark: #808080;
	--quaternary-light: #808080;

	/* Fonts */
	--font-family-heading: "Quicksand", -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: "Quicksand", -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: 2px;
	--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;
}

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(--secondary);
	margin-bottom: 0.9em;
	hyphens: auto;
}

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

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

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

h4,
.h4 {
	font-size: 1.2rem;
	line-height: 1.7rem;
}

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 {
	position: relative;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
}

.big-title {
	font-size: 2.25rem;
	line-height: 2.75rem;
}

.subtitle {
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1rem;
}

.home-title h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
}

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

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

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	h1,
	.h1 {
		font-size: 2.25rem;
		line-height: 2.75rem;
	}

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

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

	h4,
	.h4 {
		font-size: 1.2rem;
		line-height: 1.7rem;
	}

	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 {
		position: relative;
		font-size: 2.25rem;
		line-height: 2.75rem;
	}

	.big-title {
		font-size: 2.25rem;
		line-height: 2.75rem;
	}
}

.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(--primary);
	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;
}

.zdex-1 {
	position: relative;
	z-index: 1;
}

.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"] .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%;
}

/* [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;
	}

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

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

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

header.nav-header.scroll {
	position: fixed;
}

header.nav-header .navbar-light {
	position: relative;
	width: 100%;
	-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;
}

header.nav-header .navbar-light.vo-scholen {
	background: rgb(229, 0, 261);
	background: -moz-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
}

header.nav-header.scroll .navbar-light.vo-scholen {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

header.nav-header .logo-wrap {
	position: relative;
	padding: 2rem 1rem;
}

header.nav-header .logo-wrap .logo-scroll {
	display: none;
}

header.nav-header .logo-wrap.scroll {
	position: fixed;
	top: 0;
	left: 15px;
	/* max-width: 256px; */
	max-width: 183px;
}

header.nav-header .logo-wrap.scroll .logo {
	display: none;
}

header.nav-header .logo-wrap.scroll .logo-scroll {
	display: flex;
}

header.nav-header .vo-scholen .logo-wrap {
	padding: 2rem 0;
}

header.nav-header .logo-wrap a {
	width: 100%;
	height: 100%;
}

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

header.nav-header .logo-wrap img {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

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

header.nav-header .vo-scholen .logo-wrap {
	position: relative;
	display: flex;
	padding: 1rem 1.5rem;
	background: rgba(255, 121, 0, 1);
	background: -moz-linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	background: linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff7900", endColorstr="#e50551", GradientType=1);
	-webkit-border-bottom-right-radius: 1.25rem;
	border-bottom-right-radius: 1.25rem;
	-webkit-border-bottom-left-radius: 1.25rem;
	border-bottom-left-radius: 1.25rem;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

header.nav-header.scroll .vo-scholen .logo-wrap {
	background: rgba(255, 121, 0, 0);
}

header.nav-header .wrap {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

header.nav-header .wrap .wrapborder {
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	border-top: 15px solid rgba(255, 255, 255, 1);
	border-bottom: 15px solid rgba(255, 255, 255, 1);
	border-left: 15px solid rgba(255, 255, 255, 1);
	-webkit-border-bottom-left-radius: 1.56rem;
	border-bottom-left-radius: 1.56rem;
}

header.nav-header .wrap .wrapborder::before {
	position: absolute;
	top: -0.5px;
	left: -44.5px;
	display: block;
	content: "";
	background-color: var(--white);
	width: 30px;
	height: 30px;
	aspect-ratio: 1.5;
	background: radial-gradient(circle 30px at bottom left, transparent 99%, white 100%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

header.nav-header .wrap .wrapborder::after {
	position: absolute;
	bottom: -44.5px;
	right: -0.5px;
	display: block;
	content: "";
	background-color: var(--white);
	width: 30px;
	height: 30px;
	aspect-ratio: 1.5;
	background: radial-gradient(circle 30px at bottom left, transparent 99%, white 100%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

header.nav-header .buttonborder {
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	border-top: 15px solid rgba(255, 255, 255, 1);
	border-bottom: 15px solid rgba(255, 255, 255, 1);
	border-left: 15px solid rgba(255, 255, 255, 1);
	-webkit-border-bottom-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
}

header.nav-header .buttonborder:before {
	position: absolute;
	top: -1px;
	left: -44px;
	display: block;
	content: "";
	background-color: var(--white);
	width: 30px;
	height: 30px;
	aspect-ratio: 1.5;
	background: radial-gradient(circle 30px at bottom left, transparent 99%, white 100%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

header.nav-header .buttonborder:after {
	position: absolute;
	bottom: -44px;
	right: -1px;
	display: block;
	content: "";
	background-color: var(--white);
	width: 30px;
	height: 30px;
	aspect-ratio: 1.5;
	background: radial-gradient(circle 30px at bottom left, transparent 99%, white 100%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

header.nav-header a.btn-primary {
	display: block;
	color: var(--white);
	font-weight: 700;
	padding: 0.4rem 0.7rem !important;
	border: 0;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(260deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

header.nav-header li a.btn-primary span {
	display: none;
}

header.nav-header a.btn-primary:hover,
header.nav-header a.btn-primary:focus {
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(90deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

header.nav-header a.btn-primary:before {
	display: none;
}

header.nav-header a.btn-primary i {
	margin-right: 0.5rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	header.nav-header .vo-scholen .logo-wrap {
		padding: 2rem 3rem;
	}

	header.nav-header .logo-wrap.scroll {
		min-width: 183px;
		max-width: 283px;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	#adminbar+* .nav-header,
	#adminbar+* header.nav-header .logo-wrap.scroll {
		top: 3.5rem;
	}
}

/* [MENU] */
/*
# Menu
# Menu (VO-Scholen)
# Staticbar
# Hamburger
# Mobilemenu
*/

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

ul.navbar.scroll {
	position: fixed;
	top: 15px;
	right: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

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(--white);
	text-decoration: none;
	padding: 0.5rem 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

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

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

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

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

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

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

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

ul.navbar li.dropdown .dropdown-menu {
	display: none;
	top: 140%;
	left: -15px;
	padding: 1rem;
	border: 0;
	background: rgb(229, 0, 261);
	background: -moz-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
	-webkit-border-radius: 0.75rem;
	border-radius: 0.75rem;
	-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);
}

ul.navbar li.dropdown .dropdown-menu.show {
	display: flex;
	flex-direction: column;
}

ul.navbar li.dropdown .dropdown-menu .dropdown-item {
	margin-bottom: 1rem;
}

ul.navbar li.dropdown .dropdown-menu .dropdown-item:last-child {
	margin-bottom: 0;
}

ul.navbar li.dropdown .dropdown-menu .dropdown-item.active {
	background-color: transparent;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	ul.navbar {
		background: #54AD99;
		background: linear-gradient(90deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
		-webkit-border-radius: 0.75rem;
		border-radius: 0.75rem;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	#adminbar+* ul.navbar.scroll {
		top: 4.5rem;
	}
}

/* Menu (VO-Scholen) */
.vo-scholen ul.navbar {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: rgba(229, 0, 261, 0);
	-webkit-border-radius: 0;
	border-radius: 0;

}

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

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

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

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

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

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

.vo-scholen ul.navbar li a.active {
	color: var(--white);
}

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

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

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

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

ul.navbar li a.btn {
	font-weight: 700;
	padding: 0.4rem 0.7rem !important;
	background-color: rgba(255, 121, 0, 0);
	border: 1px solid rgba(255, 121, 0, 0.9);
	-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 li a.btn span {
	display: none;
}

ul.navbar li a.btn:hover,
ul.navbar li a.btn:focus {
	background-color: rgba(255, 121, 0, 0.75);
	border: 1px solid rgba(255, 121, 0, 1);
	-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);
}

ul.navbar li a.btn:before {
	display: none;
}

ul.navbar li a.btn i {
	margin-right: 0.5rem;
}

/* 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% - 30px);
	height: 75px;
	color: var(--white);
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(90deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-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: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}

.navbar-static-bar.vo-scholen {
	width: 100%;
	--static-bar-width: 30%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

/* 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: var(--white);
	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(--white);
}

.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(--white);
	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(--white);
	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(--tertiary);
}

@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; */
	height: 6.625rem;
}

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

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

.navbar-toggler-icon i {
	display: block;
	position: absolute;
	height: 0.1em;
	width: 100%;
	left: 0;
	background-color: var(--white);
	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(--tertiary);
}

.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);
}

/* Mobilemenu */
ul.navbar-mobile {
	display: none;
	position: fixed;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1039;
	top: 15px;
	right: 15px;
	bottom: 90px;
	left: 15px;
	width: calc(100% - 30px);
	list-style-type: none;
	padding: 0;
	color: var(--white);
	overflow: hidden;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(90deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	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(--white);
	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(--white);
}

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: 15px;
}

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

section.header .panel {
	overflow: hidden;
	-webkit-border-radius: 1.56rem;
	border-radius: 1.56rem;
}

section.header .overlay {
	position: relative;
	bottom: unset;
	left: unset;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 3rem 0 0 0;
}

section.header .overlay h1.title {
	hyphens: none;
	margin-bottom: 0;
	color: var(--primary);
}

section.header .overlay .btn:hover,
section.header .overlay .btn:focus {
	border-color: var(--white);
	color: var(--white);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.header .overlay {
		position: absolute;
		justify-content: center;
		bottom: 0;
		left: 0;
		padding: 0 0 1rem 0;
	}

	section.header .overlay h1.title {
		color: var(--white);
	}
}

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

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

.video:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	content: "";

	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(190deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.75) 100%);
	background: -webkit-linear-gradient(190deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.75) 100%);
	background: linear-gradient(190deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

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

.video .video-text {
	position: absolute;
	z-index: 1;
	left: 2rem;
	bottom: 2rem;
}

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

section.content-template-home {
	padding: 1rem 0 3rem 0;
	-webkit-border-bottom-right-radius: 1.25rem;
	border-bottom-right-radius: 1.25rem;
	-webkit-border-bottom-left-radius: 1.25rem;
	border-bottom-left-radius: 1.25rem;
}

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

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

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

.quaternarybg {
	background-color: var(--quaternary-bg);
}

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

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

.aimz-gradient {
	background: rgb(229, 0, 261);
	background: -moz-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
}

.aimz-gradient-reverse {
	background: rgb(255, 121, 0);
	background: -moz-linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	background: linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(229, 0, 126, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff7900", endColorstr="#e50551", GradientType=1);
}

.bigtxt {
	font-size: 1.5rem;
}

.bigtxt h1,
.bigtxt h2 {
	font-size: 2.25rem;
	line-height: 2.75rem;
	font-weight: 400;
	hyphens: none !important;
}

.mediumtxt h1,
.mediumtxt h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
}

.normaltxt {
	font-size: 1.5rem;
}

.small-text {
	position: relative;
	font-size: 0.75em;
	line-height: 1.5em;
	color: var(--white);
	padding-left: 0.75rem;
}

.small-text:before {
	position: absolute;
	display: flex;
	content: "";
	left: 0;
	width: 2px;
	height: 100%;
	background-color: var(--white);
}

.small-text p {
	margin: 0;
}

.aimz-box {
	position: relative;
	transition: all .2s ease-in-out;
}

.aimz-box:hover {
	transform: scale(1.1);
}

.box {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 2rem;
	border-radius: 1.25rem;
}

.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%;
}

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);
}

.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);
	content: "\f00c";
	font-size: 1.5rem;
	color: var(--tertiary);
}

section.iconic-usps .iconlist ul li:before {
	color: var(--white);
}

.twocols ul {
	-webkit-columns: 1;
	columns: 1;
}

div[data-partial="text"] ul {
	padding-left: 1rem;
}

div[data-partial="partial-list"] div[data-partial="image"] img,
.roundimg 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);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.twocols ul {
		-webkit-columns: 2;
		columns: 2;
	}

	.bigtxt h1,
	.bigtxt h2 {
		font-size: 3.75rem;
		line-height: 4.25rem;
	}

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

	.mediumtxt.bottom-nomarg h1,
	.mediumtxt.bottom-nomarg h2 {
		margin-bottom: 0;
	}
}

/* [USP FOUR CARDS ONE IMG] */
.usp-4-cards-1-img {
	padding: 0;
}

.usp-4-cards-1-img .bg-wrapper {
	position: relative;
	padding: 1rem;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(5deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	border-radius: 1.25rem;
}

@media only screen and (min-width: 992px) {
	.usp-4-cards-1-img {
		padding: 5rem 0;
	}

	.usp-4-cards-1-img .bg-wrapper {
		padding: 3rem;
	}
}


.usp-4-cards-1-img .card {
	color: var(--white);
	padding: 2rem;
	border-radius: var(--panel-radius);
	border: 1px solid var(--white) !important;
	height: 100%;
	border: none;
	background-color: transparent;
}

.usp-card-wrapper {
	margin-top: 3rem;
}

body:not([data-editor-mode="content"]) .usp-card-wrapper .image * {
	height: 100%;
}

.usp-card-wrapper .border-rad {
	overflow: hidden;
	border-radius: var(--panel-radius);
}

.usp-card-wrapper .image .img-fluid {
	object-fit: cover;
	border-radius: var(--panel-radius);
	margin-top: 1.5rem;
}

.usp-4-cards-1-img .icon {
	font-size: 2rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	text-align: left;
}

@media screen and (min-width: 1200px) {
	.usp-card-wrapper .image img {
		margin-top: 0;
	}
}

/* [THREE IMG ROW] */
.three-img-row .three-img-box {
	overflow: hidden;
	-webkit-border-radius: 1.56rem;
	border-radius: 1.56rem;
}

/* [FAQ] */
.faq {
	position: relative;
}

.faq .title {
	font-size: 1.35rem;
	line-height: 1.35rem;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--tertiary);
}

.faq .collapsible-text {
	margin-bottom: 0.5rem;
}

.faq .collapsible-text .collapsible-text-title {
	position: relative;
	border-radius: 0;
	border: 0;
	font-size: 1.15rem;
	line-height: 1.15rem;
	color: var(--black);
	font-weight: 400;
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
	outline: none;
	box-shadow: none;
	text-align: left;
	margin-bottom: 0.5rem;
	border-radius: 0.75rem;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(260deg, rgba(84, 173, 153, 0.26) 0%, rgba(56, 122, 142, 0.25) 100%);
}

.faq .collapsible-text .collapsible-text-title[aria-expanded="true"] {
	color: var(--secondary);
}

.faq .collapsible-text .collapsible-text-title:before {
	display: none;
}

.faq .collapsible-text .collapsible-text-content {
	border-color: transparent;
	border-radius: 0rem;
	border-style: solid;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-width: 0;
	border-top-width: 0;
	color: var(--black);
	font-weight: 400;
	padding: 0 0.5rem;
}

.faq .collapsible-text .collapsible-text-content .pt-2,
.faq .collapsible-text .collapsible-text-content .px-3 {
	padding: 0 !important;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */

}

/* [STAPPENPLAN] */
.steps-panel {
	margin: 15px 0;
}

body[data-editor-mode="layout"] .steps.row {
	display: block;
}

.steps-image {
	overflow: hidden;
	border-radius: var(--panel-radius);
}

.steps-text {
	position: relative;
	display: block;
	border-radius: var(--panel-radius);
	padding: 2.5rem 2.5rem 5.5rem;
	background-color: var(--white);
	border: 1px solid var(--secondary);
	color: inherit;
}

.steps-text.colorbg {
	padding: 2.5rem;
	color: var(--white);
	background: rgb(229, 5, 81);
	background: -moz-linear-gradient(300deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 30%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(300deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 30%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(300deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 30%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
	-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);
}

.steps-text h2 {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.steps-text.colorbg h2,
.steps-text.colorbg h3,
.steps-text.colorbg h4,
.steps-text.colorbg h5,
.steps-text.colorbg h6 {
	hyphens: none;
	color: var(--white);
}

.step-count-number {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: flex;
	font-family: var(--font-family-heading);
	font-size: 4rem;
	line-height: 4rem;
	color: var(--secondary);
}

.steps .steps-image * {
	height: 100%;
	object-fit: cover;
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	.steps-text {
		padding: 2.5rem 2.5rem 5rem 10rem;
	}

	.steps-text.colorbg {
		padding: 2.5rem 5rem;
	}

	.steps-text h2 {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

/* [FLOATING IMAGES] */
section.fotopad {
	padding: 3rem 0;
}

.fotowrap {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.fotowrap.left {
	top: unset;
	left: unset;
}

.fotowrap.left .img.left {
	margin-left: -30px;
	margin-right: 30px;
}

.fotowrap.left .img {
	position: relative;
	display: flex;
	width: 50%;
	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);
}

.fotowrap.right {
	top: unset;
	right: unset;
}

.fotowrap.right .img.left {
	width: 60%;
}

.fotowrap.right .img.right {
	width: 40%;
	margin-right: -30px;
	margin-left: 30px;
}

.fotowrap.right .img {
	position: relative;
	display: flex;
	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);
}

.fotowrap div[data-partial="image"] {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.fotowrap {
		position: absolute;
		width: 50%;
		height: 100%;
	}

	.fotowrap.left {
		top: 0;
		left: 0;
	}

	.fotowrap.right {
		top: 0;
		right: 0;
	}
}

/* [CONTACTBALK] */
section.contactbar {
	position: relative;
	padding: 2rem 0;
}

section.contactbar .persoon {
	position: relative;
	right: unset;
	bottom: 0;
	max-width: 100%;
	text-align: center;
}

section.contactbar .persoon img {
	max-width: 300px;
}

section.contactbar .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 2.5rem 2.5rem 0 2.5rem;
	background: #54AD99;
	background: linear-gradient(170deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-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);
}

section.contactbar .wrap .content .titel {
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: var(--white);
}

section.contactbar .wrap .content {
	font-size: 1rem;
	font-weight: 400;
	color: var(--white);
}

section.contactbar .wrap .content .btn-primary,
section.contactbar .wrap .content .btn-secondary,
section.contactbar .wrap .content .btn-tertiary {
	color: var(--white);
	border-color: var(--white);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.contactbar {
		padding: 7rem 0 5rem 0;
	}

	section.contactbar .persoon {
		position: absolute;
		right: 1.5rem;
		bottom: 0;
		max-width: 300px;
	}

	section.contactbar .wrap {
		padding: 2.5rem 2.5rem;
		overflow: visible;
	}

	section.contactbar .wrap .content .titel {
		font-size: 2rem;
		line-height: 2.5rem;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	section.contactbar .wrap {
		padding: 2.5rem 10rem;
		overflow: visible;
	}

	section.contactbar .persoon {
		position: absolute;
		right: 5rem;
		bottom: -1px;
		max-width: 400px;
	}
}

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

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

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;
}

/* [LOGO SLIDER] */
section.logo-carousel a:not(.btn):before {
	display: none;
}

section.logo-carousel div[data-partial="partial-list"] div[data-partial="image"] img {
	border: 0;
	box-shadow: none;
}

section.logo-carousel .flex-auto-responsive>*,
section.logo-carousel .flex-auto-responsive>picture>img,
section.logo-carousel .flex-auto-responsive>a>picture>img {
	min-width: 280px;
}

.image-album-slider-animated .flex-slider {
	animation-duration: 70000ms;
}

.image-album-slider-animated>* img {
	padding-left: 1rem;
	padding-right: 1rem;
}

.image-album-slider-animated>*::before {
	background: linear-gradient(270deg, transparent 0%, white 100%);
}

.image-album-slider-animated>*::after {
	background: linear-gradient(90deg, transparent 0%, white 100%);
}

.image-album-slider-animated .flex-slider a.text-decoration-none img {
	width: 210px;
	aspect-ratio: 4/3;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.image-album-slider-animated .flex-slider a.text-decoration-none:hover img,
.image-album-slider-animated .flex-slider a.text-decoration-none:focus img {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

/* [VAKKEN] */
.vakken {
	position: relative;
	background-color: transparent;
	border: 0;
	padding: 0;
	border-radius: 1.25rem;
	overflow: hidden;
	-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);
}

.vakken .image {
	position: relative;
	overflow: hidden;
	padding: 1rem;
	-webkit-border-top-left-radius: 1.25rem;
	border-top-left-radius: 1.25rem;
	-webkit-border-top-right-radius: 1.25rem;
	border-top-right-radius: 1.25rem;
	background: rgb(229, 0, 261);
	background: -moz-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(90deg, rgba(229, 0, 126, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
}

.vakken .image h3.title {
	margin: 0;
	color: var(--white);
}

.vakken .content {
	position: relative;
	padding: 2rem 2rem 3rem 2rem;
	text-align: left;
	background-color: rgba(229, 5, 81, 0);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.vakken:hover .content,
.vakken:focus .content {
	background-color: rgba(229, 5, 81, 0.15);
}

.vakken .content:after {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	font: var(--fa-font);
	font-size: 1.5rem;
	content: "\2b";
	color: var(--black);
}

.vakken:hover .content:after,
.vakken:focus .content:after {
	color: var(--tertiary);
}

.vakken .content h3.title {
	margin-bottom: 0.5em;
}

.vlakken-modal .modal-body {
	padding: 1rem !important;
}

.vlakken-modal .close {
	position: absolute;
	display: block;
	z-index: 2;
	top: 0rem;
	right: 1rem;
	font-size: 4rem;
	font-weight: 400;
	opacity: 1;
	color: var(--black) !important;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.vlakken-modal .close:hover,
.vlakken-modal .close:focus {
	color: var(--primary) !important;
}

.vlakken-modal .image {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}

.vlakken-modal .title {
	font-size: 2.25rem;
	line-height: 2.75rem;
	font-weight: 400;
	color: var(--primary);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.vlakken-modal .modal-body {
		padding: 4rem !important;
	}
}

/* [TESTIMONALS] */
.testimonials {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 2rem;
	border-radius: 1rem;
	background-color: rgba(229, 5, 81, 0);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-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);
}

.testimonials:hover,
.testimonials:focus {
	background-color: rgba(229, 5, 81, 0.15);
}

.testimonials .carousel-control-prev {
	position: absolute;
	z-index: 9;
	left: -5rem;
	top: 0;
}

.testimonials .carousel-control-prev:after {
	color: var(--tertiary);
	font: var(--fa-font);
	font-size: 2rem;
	content: "\f053";
}

.testimonials .carousel-control-prev .carousel-control-prev-icon,
.testimonials .carousel-control-next .carousel-control-next-icon {
	display: none;
}

.testimonials .carousel-control-next {
	position: absolute;
	z-index: 9;
	right: -5rem;
	top: 0;
	color: var(--tertiary);
}

.testimonials .carousel-control-next:after {
	color: var(--tertiary);
	font: var(--fa-font);
	font-size: 2rem;
	content: "\f054";
}

.testimonials .carousel-control-prev:before,
.testimonials .carousel-control-next:before {
	display: none;
}

.testimonials .carousel-indicators {
	bottom: -3.5rem;
}

.testimonials .carousel-indicators li {
	background-color: var(--tertiary);
	width: 16px;
	height: 16px;
	border-radius: 100%;
}

.testimonials .carousel-item h2 {
	font-size: 1.75rem;
	line-height: 2.25rem;
	margin-bottom: 1rem;
}

.testimonials .carousel-item h3 {
	font-size: 1.5rem;
	line-height: 2rem;
	margin-bottom: 1rem;
}

.testimonials .carousel-item h4,
.testimonials .carousel-item h5,
.testimonials .carousel-item h6 {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.testimonials {
		padding: 4rem;
	}

	.testimonials .carousel-control-prev {
		left: -9rem;
	}

	.testimonials .carousel-control-next {
		right: -9rem;
	}

	.testimonials .carousel-item h2 {
		font-size: 2.5rem;
		line-height: 3rem;
	}

	.testimonials .carousel-item h3 {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.testimonials .carousel-item h4,
	.testimonials .carousel-item h5,
	.testimonials .carousel-item h6 {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	.testimonials .carousel-control-prev {
		left: -11rem;
	}

	.testimonials .carousel-control-next {
		right: -11rem;
	}
}

/* CTA BALK*/
section.ctabar .content .titel {
	position: relative;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: var(--secondary);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.ctabar .content .titel {
		font-size: 2.5rem;
		line-height: 3rem;
	}
}

/* [USP BAR] */
section.iconic-usps {
	padding: 2rem 0;
}

section.iconic-usps .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 2rem;
	color: var(--white);
	background: #54AD99;
	background: linear-gradient(15deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-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);
}

section.iconic-usps .wrap.nobg {
	overflow: visible;
	color: var(--black);
	padding: 0;
	background: none;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

section.iconic-usps .wrap .first,
section.iconic-usps .wrap .second,
section.iconic-usps .wrap .third {
	position: relative;
}

section.iconic-usps .wrap .title,
section.iconic-usps .wrap h2,
section.iconic-usps .wrap h3,
section.iconic-usps .wrap h4,
section.iconic-usps .wrap h5,
section.iconic-usps .wrap h6 {
	position: relative;
	color: var(--white);
}

section.iconic-usps .wrap.nobg .title,
section.iconic-usps .wrap.nobg h2,
section.iconic-usps .wrap.nobg h3,
section.iconic-usps .wrap.nobg h4,
section.iconic-usps .wrap.nobg h5,
section.iconic-usps .wrap.nobg h6 {
	position: relative;
	color: var(--secondary);
}

section.iconic-usps .wrap .subtitle {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: var(--white);
}

section.iconic-usps .wrap div[data-partial="download"] a i {
	color: var(--white) !important;
}

section.iconic-usps .wrap div[data-partial="download"] a:hover,
section.iconic-usps .wrap div[data-partial="download"] a:focus {
	color: var(--white);
}

section.iconic-usps .wrap div[data-partial="download"] a:hover:before,
section.iconic-usps .wrap div[data-partial="download"] a:focus:before {
	background-color: var(--white);
}

section.iconic-usps .wrap a {
	color: var(--white);
}

section.iconic-usps .wrap a:before {
	background-color: var(--white);
}

section.iconic-usps .wrap.nobg .subtitle {
	font-size: 1.25rem;
	line-height: 1.5rem;
	color: var(--secondary);
	margin-bottom: 1rem;
}

section.iconic-usps .wrap .second h3.subtitle:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.iconic-usps .wrap {
		padding: 4rem;
	}

	section.iconic-usps .wrap.lesspad {
		padding: 3rem;
	}

}

/* [CONTENT SELECT] */
.content-item-preview {
	position: relative;
}

.content-item-preview a.content-item-link {
	position: relative;
	display: block;
	overflow: hidden;
}

.content-item-preview a.content-item-link:before {
	display: none;
}

.content-item-preview a.content-item-link .content-item-preview-image {
	position: relative;
	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);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.content-item-preview a.content-item-link:hover .content-item-preview-image,
.content-item-preview a.content-item-link:focus .content-item-preview-image {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
}

.content-item-preview a.content-item-link .content-item-preview-image .img-fluid:before {
	position: absolute;
	display: flex;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
	opacity: 0.25;
	-webkit-transition: opacity 0.75s;
	transition: opacity 0.75s;
}

.content-item-preview a.content-item-link:hover .content-item-preview-image .img-fluid:before,
.content-item-preview a.content-item-link:focus .content-item-preview-image .img-fluid:before {
	opacity: 0.75;
}

.content-item-preview a.content-item-link .content-item-preview-image img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	z-index: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.content-item-preview a.content-item-link:hover .content-item-preview-image img,
.content-item-preview a.content-item-link:focus .content-item-preview-image img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.content-item-preview a.content-item-link .content-item-preview-content {
	position: absolute;
	z-index: 1;
	top: calc(100% - 190px);
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3rem 1rem;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.content-item-preview a.content-item-link:hover .content-item-preview-content,
.content-item-preview a.content-item-link:focus .content-item-preview-content {
	top: 0;
}

.content-item-preview a.content-item-link .content-item-preview-title {
	font-size: 1.75rem;
	line-height: 2.25rem;
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	margin-bottom: 1rem;
}

.content-item-preview a.content-item-link .content-item-preview-intro {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.content-item-preview a.content-item-link:hover .content-item-preview-intro,
.content-item-preview a.content-item-link:focus .content-item-preview-intro {
	opacity: 1;
}

.content-item-preview a.content-item-link .content-item-preview-intro .content-item-preview-text {
	color: var(--white);
}

.content-item-preview a.content-item-link .content-item-preview-intro .readmore {
	position: relative;
	font-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 700;
	display: inline-block;
	width: auto;
	padding: 0.5rem 1rem !important;
	text-decoration: none;
	text-align: center;
	border: 1px solid var(--secondary);
	border-radius: 0.5rem;
	color: var(--white);
	background: #54AD99;
	background: linear-gradient(280deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.content-item-preview a.content-item-link .content-item-preview-title {
		font-size: 2rem;
		line-height: 2.5rem;
	}
}

/* [BLOG] */
/*
- Collection
- Item
- Preview
*/

/* Collection */
.content-template-blog {
	padding: 2rem 0 2rem 0 !important;
}

.blog-collection-items .row .col-12:last-child .blog-item-preview {
	margin-bottom: 0;
}

.blog-filter-label {
	margin-bottom: 0.5rem;
	margin-right: 0;
}

input.blog-filter-input[checked="checked"]+.blog-filter-label {
	color: var(--white);
	background: rgb(229, 5, 81);
	background: -moz-linear-gradient(90deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	background: linear-gradient(90deg, rgba(229, 5, 81, 1) 0%, rgba(227, 0, 58, 1) 50%, rgba(255, 121, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
}

input.blog-filter-input[checked="checked"]+.blog-filter-label:hover,
input.blog-filter-input[checked="checked"]+.blog-filter-label:focus {
	color: var(--secondary);
	background: rgb(229, 5, 81);
	background: -moz-linear-gradient(90deg, rgba(229, 5, 81, 0) 0%, rgba(227, 0, 58, 0) 50%, rgba(255, 121, 0, 0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(229, 5, 81, 0) 0%, rgba(227, 0, 58, 0) 50%, rgba(255, 121, 0, 0) 100%);
	background: linear-gradient(90deg, rgba(229, 5, 81, 0) 0%, rgba(227, 0, 58, 0) 50%, rgba(255, 121, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e50551", endColorstr="#ff7900", GradientType=1);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	/* .content-template-blog {
		padding: 2.5rem 0 5rem 0 !important;
	} */

	.blog-filter-label {
		margin-bottom: 0.5rem !important;
		margin-right: 1rem;
	}
}

/* Item */
ul.projecten-fields {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.fieldsbox .fields {
	position: relative;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(260deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
	-webkit-border-radius: 0.75rem;
	border-radius: 0.75rem;
}

.fieldsbox .fields>span {
	width: 100%;
}

.fieldsbox .fields>span {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.fieldsbox .fields>span>span {
	width: 60%;
}

.fieldsbox .fields>span>span:first-child {
	width: 40%;
}

.fieldsbox .fields>span:last-child {
	margin-bottom: 0;
}

.fieldsbox .fields .fields-block-title {
	color: var(--white);
	font-weight: 700;
}

.fieldsbox .fields .fields-block-value {
	color: var(--white);
	font-weight: 400;
}

.blog-logo div[data-partial="image"] img {
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Preview */
.blog-item-preview {
	margin-bottom: 2rem;
}

.blog-item-preview a.blog-item-preview-link {
	position: relative;
	display: block;
}

.blog-item-preview a.blog-item-preview-link:before {
	display: none;
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-image {
	position: relative;
	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);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.blog-item-preview a.blog-item-preview-link:hover .blog-item-preview-image,
.blog-item-preview a.blog-item-preview-link:hover .blog-item-preview-image {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-image .img-fluid:before {
	position: absolute;
	display: flex;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-image img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	z-index: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.blog-item-preview a.blog-item-preview-link:hover .blog-item-preview-image img,
.blog-item-preview a.blog-item-preview-link:focus .blog-item-preview-image img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-content {
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	z-index: 2;
	bottom: 0;
	left: 0;
	padding: 1rem 3rem 1rem 1rem;
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-title {
	position: relative;
	font-size: 1.75rem;
	line-height: 2.25rem;
	color: var(--white);
	hyphens: none;
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.blog-item-preview a.blog-item-preview-link .blog-item-preview-title:after {
	position: absolute;
	display: block;
	bottom: 0;
	right: -2rem;
	font: var(--fa-font);
	font-size: 1.5rem;
	content: "\f178";
	color: var(--white);
	-webkit-transition: all 0.75s;
	transition: all 0.75s;
}

.blog-item-preview a.blog-item-preview-link:hover .blog-item-preview-title:after,
.blog-item-preview a.blog-item-preview-link:focus .blog-item-preview-title:after {
	color: var(--secondary);
	right: -3rem;
}

.blog-item-preview a.blog-item-preview-link .blog-part .blog-item-preview-title {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

@media only screen and (min-width: 576px) {

	/* Small (sm) */
	.blog-item-preview a.blog-item-preview-link .blog-item-preview-content {
		padding: 3rem 6rem 3rem 3rem;
	}

	.blog-item-preview a.blog-item-preview-link .blog-item-preview-title:after {
		font-size: 2rem;
	}
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.blog-item-preview a.blog-item-preview-link .blog-item-preview-content {
		padding: 3rem 12rem 3rem 3rem;
	}

	.blog-item-preview a.blog-item-preview-link .blog-item-preview-content.blog-part {
		padding: 2rem 8rem 2rem 2rem;
	}

	.blog-item-preview a.blog-item-preview-link .blog-item-preview-title {
		font-size: 1.75rem;
		line-height: 2.25rem;
	}

	.blog-item-preview a.blog-item-preview-link .blog-item-preview-title:after {
		right: -3rem;
	}

	.blog-item-preview a.blog-item-preview-link:hover .blog-item-preview-title:after,
	.blog-item-preview a.blog-item-preview-link:focus .blog-item-preview-title:after {
		right: -6rem;
	}
}

/* [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-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 0.5rem 1rem !important;
	text-decoration: none;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

.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 {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:not(.btn-admin):hover,
.btn-primary:not(.btn-admin):focus {
	border-color: var(--primary);
	color: var(--white);
	background: #54AD99;
	background: linear-gradient(260deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

.btn-secondary:not(.btn-admin) {
	border-color: var(--primary);
	color: var(--white);
	background: #54AD99;
	background: linear-gradient(260deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

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

.btn-tertiary:not(.btn-admin) {
	border-color: var(--primary);
	color: var(--white);
	background: #54AD99;
	background: linear-gradient(90deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

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

.btn-link:not(.btn-admin) {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--black);
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
}

.btn-link:not(.btn-admin):hover,
.btn-link:not(.btn-admin):focus {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--black);
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.75);
	box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.75);
}

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

.btn-back:not(.btn-admin)::before {
	display: inline-block;
	font: var(--fa-font);
	font-size: 1rem;
	content: "\f137";
	margin-right: 1rem;
	color: var(--secondary);
}

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

.btn-back:not(.btn-admin):hover::after,
.btn-back:not(.btn-admin):focus::after {
	width: 100%;
}

.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(--black);
}

.btn-forward:not(.btn-admin) {
	position: relative;
	font-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	text-align: left;
	padding: 0 !important;
	color: var(--black);
	background-color: transparent;
	border-color: transparent;
	text-decoration: none;
}

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

.btn-forward:not(.btn-admin):hover::before,
.btn-forward:not(.btn-admin):focus::before {
	width: 100%;
}

.btn-forward:not(.btn-admin)::after {
	display: inline-block;
	font: var(--fa-font);
	font-size: 1rem;
	content: "\f138";
	margin-left: 1rem;
	color: var(--secondary);
}

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

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


.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,
.btn-forward:not(.btn-admin):focus {
	box-shadow: none;
}

.admin-btn-overlay {
	background-color: var(--secondary-dark);
	opacity: 0.75;
}

@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),
	.btn-forward: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),
	.btn-back:not(.btn-admin),
	.btn-forward:not(.btn-admin) {
		display: inline-block;
		width: auto;
		margin-bottom: 0.5rem;
	}
}

@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),
	.btn-forward:not(.btn-admin) {
		display: inline-block;
		width: auto;
		margin-bottom: 0;
	}
}

/* [ADRES] */
.contact-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 2rem;
	border-radius: 1.25rem;
	background: rgb(248, 227, 238);
	background: -moz-linear-gradient(30deg, rgba(248, 227, 238, 1) 0%, rgba(252, 237, 228, 1) 100%);
	background: -webkit-linear-gradient(30deg, rgba(248, 227, 238, 1) 0%, rgba(252, 237, 228, 1) 100%);
	background: linear-gradient(30deg, rgba(248, 227, 238, 1) 0%, rgba(252, 237, 228, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8e3ee", endColorstr="#fcede4", GradientType=1);
}

.contact-box .top {
	display: flex;
	flex-direction: column;
}

.contact-box .top div[data-partial="text"]:first-child {
	font-size: 1.25rem;
}

.contact-box .bottom {
	display: flex;
	flex-direction: column;
}

.contact-box .bottom.contactpersoon .col-8 {
	padding-left: 0 !important;
}

.contact-box .bottom.contactpersoon .image {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
}

.contact-box .bottom.contactpersoon .details {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 0.5rem;
	background-color: var(--white);
	padding: 1rem;
}

.contact-box .bottom.contactpersoon .details .naam {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
}

.contact-box .bottom.contactpersoon .details .functie {
	font-size: 1rem;
}

.contact-box .bottom.contactpersoon .details ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

.contact-box .bottom.contactpersoon .details ul li {
	font-size: 1rem;
	margin-right: 0;
	margin-bottom: 0.5rem;
}

.contact-box .bottom.contactpersoon .details ul li i {
	color: var(--primary);
}

.contact-box .bottom.contactpersoon .details ul li:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

.contact-box .bottom.contactpersoon .details ul li a {
	color: var(--black);
}

.contact-box .bottom.contactpersoon .details ul li a:before {
	width: 0%;
}

.contact-box .bottom.contactpersoon .details ul li a:hover:before,
.contact-box .bottom.contactpersoon .details ul li a:focus:before {
	width: 100%;
}

.contact-box h2 {
	margin-bottom: 0.5rem;
}

.contact {
	font-size: 1rem;
}

.details .subtitle {
	font-family: var(--font-family-sans-serif);
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0;
}

.details .contact-address-title {
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

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

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

.vo-scholen ul.contact li {
	margin: 0 0 0.25rem 0;
}

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

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

.vo-scholen ul.contact li i {
	display: none;
}

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

.vo-scholen ul.contact li a {
	color: var(--white);
}

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

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

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

.vo-scholen ul.contact li a::before {
	background: var(--white);
}

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: 0 !important;
	line-height: 1.7rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.contact-box {
		padding: 4rem;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	.contact-box .bottom.contactpersoon .details ul {
		flex-direction: row;
	}

	.contact-box .bottom.contactpersoon .details ul li {
		margin-right: 1rem;
		margin-bottom: 0;
	}
}

/* [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: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* [FORM] */
.formbox {
	position: relative;
	padding: 2rem;
	border-radius: 1.25rem;
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(350deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

.formbox .formtitle {
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 700;
	color: var(--white);
}

.formbox .font-weight-bold {
	font-size: 1.5rem;
	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;
}

.formbox form .form-control:focus {
	padding: 1.25rem !important;
	background-color: transparent !important;
	border-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
}

div[data-partial="form"] form label,
div[data-partial="form"] form legend,
.formbox form label,
.formbox form legend {
	display: none;
}

div[data-partial="form"] form .form-group small,
.formbox form .form-group small {
	display: none;
}

div[data-partial="form"] form input,
div[data-partial="form"] form textarea,
.formbox form input,
.formbox form textarea {
	background-color: rgba(255, 255, 255, 0);
	border-color: rgba(255, 255, 255, 0.75);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0 !important;
	color: var(--white) !important;
	outline: none;
	padding: 1.25rem 0 !important;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
}

.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.25rem 1.25rem !important;
	font-size: 1rem;
}

.formbox form select {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	display: block;
	width: 100%;
	font-size: 1rem;
	padding: 0.5rem;
}

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: transparent;
	padding: 1.25rem !important;
	border-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
}

div[data-partial="form"] form input[data-autocompleted],
div[data-partial="form"] form textarea[data-autocompleted] {
	background-color: transparent !important;
}

div[data-partial="form"] form input:-webkit-autofill,
div[data-partial="form"] form input:-webkit-autofill:focus {
	transition: background-color 0.3s 0.3s, color 0.3s 0.3s;
	transition-delay: calc(60 * 1s);
}

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: #ff0018 !important;
}

.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-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 0.5rem 1rem !important;
	text-decoration: none;
	text-align: center;
	margin: 2rem 0 0 0;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--black);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
}

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 {
	box-shadow: none;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--black);
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.75);
	box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.75);
}

.formbox form ::placeholder {
	color: var(--white);
	font-size: 1rem;
}

.formbox form:-ms-input-placeholder {
	color: var(--white);
	font-size: 1rem;
}

.formbox form ::-ms-input-placeholder {
	color: var(--white);
	font-size: 1rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.formbox {
		padding: 4rem;
	}
}

/* [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(--black);
	border: 1px solid rgba(255, 255, 255, 0.5) !important;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

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(--secondary);
	outline: none;
	box-shadow: none;
	border-color: var(--primary);
	color: var(--white);
	background: rgba(84, 173, 153, 5.1);
	background: linear-gradient(260deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

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(--white) !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);
}

/* [LANDINGS FOOTER] */
section.landing-footer {
	position: relative;
	font-size: 1rem;
	color: var(--primary);
	background-color: var(--white);
	padding: 2rem 0;
}

section.landing-footer .footertxt {
	font-size: 2rem;
	line-height: 2.5rem;
}

section.landing-footer .footertxt p {
	margin: 0;
}

section.landing-footer .logo-footer a:before {
	display: none;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.landing-footer {
		padding: 2rem 0 4rem 0;
	}

	section.landing-footer .footertxt {
		font-size: 2.75rem;
		line-height: 3.25rem;
	}

	section.landing-footer .logo-footer {
		display: block;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	section.landing-footer .title {
		font-size: 1.75rem;
		line-height: 2.75rem;
	}
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

[id="page"]:not(:has([class^="blog-template"])):not(:has([class^="content-template"]))+footer.nav-footer::after {
	display: none;
}

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

footer.nav-footer .top {
	position: relative;
	font-size: 1rem;
	color: var(--black);
	background-color: var(--white);
	overflow: hidden;
}

footer.nav-footer .wrap {
	padding: 2rem 0;
}

footer.nav-footer .top .subtitle {
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 700;
	color: var(--primary);
}

footer.nav-footer .top .title {
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: var(--secondary);
}

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

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

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

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

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

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

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

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

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

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

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

footer.nav-footer .top ul.socials li a {
	border-radius: 100%;
	padding: 0.5rem;
	background: #54AD99;
	background: linear-gradient(180deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

footer.nav-footer .top ul.socials li a i {
	color: var(--white);
}

footer.nav-footer .top ul.socials li a:hover i,
footer.nav-footer .top ul.socials li a:focus i {
	color: var(--tertiary);
}

footer.nav-footer .top .logo-footer {
	position: absolute;
	bottom: -0.25rem;
	right: -26rem;
	opacity: 0.1;
	pointer-events: none;
	min-width: 768px;
}

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

footer.nav-footer .bottom {
	font-size: 1rem;
	padding: 0;
	background: #54AD99;
	background: linear-gradient(360deg, rgba(84, 173, 153, 1) 0%, rgba(56, 122, 142, 1) 100%);
}

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(--white);
	text-decoration: none;
}

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

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 {
	background-color: var(--white);
	color: var(--primary);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	footer.nav-footer {
		margin-bottom: 0;
	}

	footer.nav-footer .wrap {
		padding: 4rem 0;
	}

	footer.nav-footer .top .logo-footer {
		display: block;
	}

	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(--white);
	}

	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(--white);
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */

}

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