:root {
	/* Colors */
	--primary: #889a84;
	--primary-bg: #889a84;
	--primary-dark: #515d4e;
	--primary-light: #b8d4b2;

	--secondary: #f4f5f5;
	--secondary-bg: #f4f5f5;
	--secondary-dark: #aaadad;
	--secondary-light: #ffffff;

	--tertiary: #283618;
	--tertiary-bg: #283618;
	--tertiary-dark: #151d0d;
	--tertiary-light: #597835;

	/* Fonts */
	--font-family-heading: 'Domine', serif, 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: 'Open Sans', sans-serif, "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: 2px;
	--dropdown-border: 1px;
	--input-border: 2px;
	--panel-border: 1px;

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

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

	--navigation-height: 6rem;
}

/* Smooth naar anchor points scrollen. */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
	html {
		scroll-behavior: unset;
	}
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
	font-weight: 600;
}


h1, .h1 {
	font-size: 2rem;
	line-height: 2rem;
	margin: 0 0 1rem 0;
}

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

h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-size: 1.75rem;
	line-height: 1.75rem;
}

h1.title,
h2.title,
h3.title {
	position: relative;
	font-size: 2rem;
	line-height: 2rem;
	margin: 0 0 1rem 0;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	h1, .h1 {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
	h2, .h2 {
		font-size: 2rem;
		line-height: 2rem;
	}
	h3, .h3,
	h4, .h4,
	h5, .h5,
	h6, .h6 {
		font-size: 1.75rem;
		line-height: 1.75rem;
	}
	h1.title,
	h2.title,
	h3.title {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
}


b,
.b {
}

b, strong {
	font-weight: 700;
}

p,
.p {
}

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

small,
.small {
}

/* Navigatie balk mee laten scrollen. */
.nav-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: white;
}
@media screen and (min-width: 992px) {
	#adminbar + * .nav-header {
		top: 3.55rem;
	}
}

/* Buttons */
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none !important;
}

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

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

.btn.btn-tertiary:not(.btn-admin) {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primarys);
}
.btn.btn-link:not(.btn-admin) {
	color: var(--white);
	background: var(--tertiary);
	border-color: var(--tertiary);
	margin-bottom: 1rem;
}

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

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

header.nav-header .cta i {
	color: var(--primary);
	margin: 0 0.25rem 0 0;
}

header.nav-header a:hover,
header.nav-header a:focus {
	text-decoration: none;
	color: var(--black);
}

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

header.nav-header a:hover:before,
header.nav-header a:focus:before {
	width: 100%;
}

/* [MENU] */
.nav-header {
	background: var(--primary);
	overflow: hidden;
}

.nav-header .h3 {
	color: #fff;
	font-size: 1.5rem;
}

.navbar {
	flex-flow: row wrap;

}

.navbar-collapse {
	justify-content: space-evenly;
}

.navbar-nav li.nav-item:first-child {
	margin: 0;
}

.navbar-light .navbar-nav .nav-link {
	padding: 1rem 1.5rem;
}

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

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link {
	color: #fff !important;
}

.home {
	position: relative;
	background: var(--secondary);
	z-index: 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
header.nav-header .navbar-nav a.nav-link.active:hover,
header.nav-header .navbar-nav a.nav-link.active:focus {
	color: #fff;
}

header.nav-header .navbar-toggler {
	background-color: var(--primary-light);
}

/* Nav toggle mobile */
.navbar-toggler {
	border: none;
}

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

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

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

/* [CONTENT] */
.tarieven {
	background-color: var(--tertiary);
}

.tarieven-text ul li {
	padding: 1rem 0;
}


.btn-link {
	color: #000;
}

html {
	scroll-behavior: smooth;
}



section.fullscreen .gradient {
	padding: 5rem 0;
	display: block;
	width: 100%;
	background: rgb(136, 154, 132);
	background: linear-gradient(
		90deg,
		rgba(136, 154, 132, 0.8) 23%,
		rgba(244, 245, 245, 0.8) 200%
	);
}

section.fullscreen ul {
	list-style: none;
	padding-inline-start: 10px;
}

section.fullscreen ul li p {
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 500 !important;
	margin: 1rem 0;
	flex-direction: row;
}

section.fullscreen ul li p:not(strong) {
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

section.fullscreen ul li strong {
	font-size: 1.3rem;
	font-weight: 600;
}

section.fullscreen ul li:before,
.dienstcontent ul li:before {
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font);
	content: "\f058";
	margin: 0 10px 0 -5px;
	display: inline;
}

section.fullscreen .h1,
section.fullscreen ul {
	margin-bottom: 4rem;
}

section.fullscreen .h1,
section.fullscreen p,
section.fullscreen ul li {
	text-shadow: 2px 2px 10px rgb(0 0 0);
	color: #fff;
	font-weight: 600;
	margin: 1rem 0;
}

section.fullscreen {
	overflow: hidden;
}

section.page {
	padding: 3rem 0;
	position: relative;
	z-index: 2;
}

.bg-tertiary h2 {
	color: #fff;
}

.home .container-fluid {
	padding: 0;
	overflow: hidden;
}

.home .videowrap {
	position: relative;
	display: block;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.videowrap video {
	position: absolute;
	left: 50%;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}


.contentimg {
	position: absolute;
    overflow: hidden;
    top: 20%;
	z-index: -1;
}

.contentimg img {
	opacity: 0.15;
	z-index: -1;
	width: 50%;
	height: 50%;
}

.flex-basis-3 {
	flex-basis: 100%;
}

@media only screen and (min-width: 768px) {
	.contentimg {
		position: absolute;
		overflow: hidden;
		width: 500px;
		top: auto;
		bottom: 10%;
		height: 500px;
	}

	.contentimg img {
		opacity: 0.15;
		z-index: -1;
	}

	.home .videowrap {
		position: relative;
		display: block;
		width: 100%;
		height: 850px;
		overflow: hidden;
	}

	.flex-basis-3 {
		flex-basis: 25%;
	}

	section.fullscreen ul li p:not(strong) {
		display: flex;
		flex-direction: column;
		margin: 1rem 0;
	}

	section.fullscreen ul li strong {
		font-size: 1.5rem;
		font-weight: 600;
	}
}

.footerimg img {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0.15;
	z-index: -1;
}

.home .table-responsive .table-bordered td {
	border: none;
	font-weight: 600;
}

.home .table-responsive {
	overflow-x: hidden;
}

.video-content {
	border: 1.5rem solid var(--tertiary);
}

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

.modal-header .close {
	color: white;
}

.modal-body .custommodal form.form-mailto button {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
}

.modal-body .custommodal form.form-mailto button:hover,
.modal-body .custommodal form.form-mailto button:focus {
	box-shadow: none;
}

.modal-content .modal-title,
.modal-content .fa-times,
.modal-content .fa-xmark {
	color: var(--tertiary);
}

.modal-content .btn-primary.disabled,
.btn-primary:disabled {
	background-color: var(--tertiary);
}

/* [FORMULIER] */
.nav-footer .form-group label,
.modal-form .form-group label {
	display: none;
}

form.form-mailto input,
form.form-mailto textarea,
form.form-mailto select {
	background-color: #ebebeb;
	border-color: #ebebeb;
	font-weight: 400;
	color: #000;
	outline: none;
	padding: 0.5rem;
}

form.form-mailto input:hover,
form.form-mailto input:focus,
form.form-mailto textarea:hover,
form.form-mailto textarea:focus,
form.form-mailto select:hover,
form.form-mailto select:focus {
	background-color: #ebebeb;
	border-color: var(--tertiary);
	box-shadow: none;
}



.carousel .carousel-empty {
	position: relative;
	width: 100%;
	min-height: 450px;
	background-color: var(--secondary);
	background-size: cover;
}

footer.nav-footer .top{
	position: relative;
	background-color: var(--primary);
	color: #ffffff;
	padding: 3rem 0;
	z-index: 1;
}

footer.nav-footer .logo {
	padding: 15px 0px;
}

footer.nav-footer a {
	color: #ffffff;
}

	footer.nav-footer .nav-link {
		padding-left: 0px;
	}

@media (max-width: 768px) {
	.nav-header .h3 {
		padding-left: 1rem;
	}



	.carousel .carousel-empty {
		min-height: 250px;
	}

	.bg-tertiary .img-fluid {
		max-height: 210px !important;
	}
}

/* [FOOTER] */
.address {
	margin: 2rem 0 0;
}

.contactlist .fa-solid {
	margin: 2rem 0;
}

.address,
.contactlist {
	font-size: 1.5rem;
}

.contact-map {
	margin-bottom: 1rem;
	overflow: hidden;
}

.nav-footer .bottom {
	background: var(--tertiary);
}

.contact-address-content {
	display: flex;
	align-items: baseline;
}

/* [FOTO ALBUM] */
.bg-tertiary .img-fluid {
	position: relative;
	transition: 0.4s ease-in-out;
	max-height: 466px;
	object-fit: cover;
}

.bg-tertiary .img-fluid:hover {
	transform: scale(1.1);
	z-index: 10;
}

/* [VIDEO] */
div.video {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.privacy .w-100 {
	height: 50rem;
}

/* [ADMIN] */
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 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 5%;
}

/* [BLOG] */
.blog-template-default.blog-collection {
	padding: 3rem 0;
}

.blog-template-default.blog-item {
	padding: 3rem 0;
}

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

/* Preview */
.blog-item-preview {
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	margin-bottom: 1.5rem;
}

.blog-item-preview .blog-item-link {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
}

.blog-item-preview .image {
	position: relative;
}

.blog-item-preview a.blog-item-link:hover .image,
.blog-item-preveiw a.blog-item-link:focus .image {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.blog-item-preview .image:after {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--tertiary);
	opacity: 0;
	-webkit-transition: all 0.45s;
	-moz-transition: all 0.45s;
	-ms-transition: all 0.45s;
	-o-transition: all 0.45s;
	transition: all 0.45s;
}

.blog-item-preview a.blog-item-link:hover .image:after,
.blog-item-preview a.blog-item-link:focus .image:after {
	opacity: 0.4;
}

.blog-item-preview .content {
	background-color: var(--secondary);
	padding: 1.5rem;
}

.blog-item-preview .content .title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: var(--tertiary);
	font-size: 1.9rem;
	line-height: 2rem;
	margin: 1rem 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.blog-item-preview .content .title {
	justify-content: flex-start;
	text-align: left;
}

.blog-item-preview .image .categorie h3.title {
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 700;
	color: white;
	margin: 0;
}

.blog-item-preview a.blog-item-link:hover .image .categorie h3.blogtitle,
.blog-item-preview a.blog-item-link:focus .image .categorie h3.blogtitle {
	color: white;
}

.blog-item-preview .content .intro {
	color: var(--tertiary);
	font-size: 1rem;
}

.blog-item-preview .content .readmore {
	display: flex;
	justify-content: flex-end;
	color: var(--tertiary);
	font-weight: 400;
}

.blog-item-preview .content .readmore .readmore-btn i {
	margin-left: 1rem;
}

/* Item */
section.blog-filler {
	padding: 2rem 0;
}

section.blog-album .slider-control-prev {
	font-size: 3rem;
	color: white;
	margin-left: 1rem;
	margin-top: -5rem;
}

section.blog-album .slider-control-next {
	font-size: 3rem;
	color: white;
	margin-right: 1rem;
	margin-top: -5rem;
}

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

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

/* [TABLES] */
table.mce-item-table {
	width: 100%;
	font-size: 1.1rem;
}

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

table.mce-item-table tr {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

table.mce-item-table tr:last-child {
	border-bottom: 0;
}

table.mce-item-table tr th {
	display: none;
	flex-direction: row;
	padding: 0.5rem 0;
	width: 100%;
	color: var(--secondary);
}

table.mce-item-table tr td {
	display: flex;
	flex-direction: row;
	padding: 0.5rem 1rem 0.5rem 0;
	width: 100%;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	table.mce-item-table tr {
		flex-direction: row;
	}
	table.mce-item-table tr th {
		display: flex;
	}
	table.mce-item-table tr td {
		width: 100%;
	}
}

/* [STATICBAR] */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	color: var(--black);
	background: var(--white);
	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);
	--static-bar-width: 34.75%;
	--static-bar-spacing: 0.4rem;
}

.navbar-static-bar .navlist-nav {
	display: flex;
	flex-wrap: nowrap;
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

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

.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, 0, 0, 0.3);
	opacity: 0.5;
}

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

.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-family: var(--font-family-heading);
	font-size: 0.85rem;
	line-height: 0.85rem;
	font-weight: 500;
	text-align: center;
	color: var(--black);
	hyphens: auto;
}

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

@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: 34.75%;
		--static-bar-spacing: 0.4rem;
	}
}

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

.navbar-static-bar-offset {
	height: 4.625rem;
}