:root {
	/* Colors */
	--primary: #2b5015;
	--primary-bg: #ECF1EA;
	--primary-dark: #112406;
	--primary-light: #5d9a3a;

	--secondary: #9bcc65;
	--secondary-bg: #e4f1f7;
	--secondary-dark: #638f33;
	--secondary-light: #cdff97;

	--tertiary: #778696;
	--tertiary-bg: #ecedef;
	--tertiary-dark: #607285;
	--tertiary-light: #8f9ba9;

	/* Fonts */
	--font-family-heading: "DM Sans", -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: "DM Sans", -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: 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;
}

/* 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,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	/* hyphens: auto; */
	font-weight: 700;
	color: var(--primary);
}

b,
strong,
.strong {}

p,
.p {
	text-wrap: pretty;
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: var(--primary-dark);
}

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

input {
	accent-color: var(--primary-dark);
}

.small-text {
	font-size: 1.06rem;
	text-transform: uppercase;
	position: relative;
	z-index: 5;
}

.small-text p {
	margin-bottom: 0;
	color: var(--secondary) !important;
	font-weight: 700;
}

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

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

h3,
.h3 {
	font-size: 1.375rem;
	line-height: 1.875rem;
}

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

}

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

	/* Medium (md) */
	h1,
	.h1 {
		font-size: 2.2rem;
		line-height: 2.375rem;
		margin-bottom: 2rem;
	}

	h2,
	.h2 {
		font-size: 2rem;
		line-height: 2.375rem;
		margin-bottom: 1.25rem;
	}

	h3,
	.h3 {
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

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

/* Navigatie balk mee laten scrollen. */

/* .nav-header {
	background-color: var(--primary-bg);
	position: fixed;
} */

.nav-header {
	width: 100%;
	top: 0;
	z-index: 100;
	background-color: transparent;
	position: fixed;
}

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

/* Navigatie toggler met open en sluit animatie. */
.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);
}

/* [HEADER] */

body:has(#adminbar) main#content {
	margin-top: 10rem;
}

header .navbar-brand img {
	width: 160px;
	border-radius: 10px;
}

header .nav-background {
	background-color: var(--primary);
	border-radius: 8px;
	padding: 0.5rem;
}

header .mobile-menu {
	width: 100%;
	background-color: var(--primary-bg);
}

header .mobile-menu .show,
header .mobile-menu .collapsing {
	border: 2px var(--primary) solid;
	border-radius: 6px;
}

header .nav-background span,
header .nav-background i:not(.navbar-toggler-icon i) {
	color: white;
	position: relative;
	font-weight: 900;
}

header ul {
	gap: 1rem;
}

header ul.navbar-nav li a .nav-title:after {
	display: block;
	position: absolute;
	z-index: 999;
	left: 0px;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: #FFF;
	content: "";
	transition: width 0.3s;
}

header ul.navbar-nav li a:hover .nav-title:after,
header ul.navbar-nav li a:focus .nav-title:after,
header ul.navbar-nav li a:active .nav-title:after {
	width: 100%;
}

header ul.navbar-nav li a.active .nav-title:after {
	width: 100%;
}

header ul.navbar-nav li a.active:hover .nav-title:after,
header ul.navbar-nav li a.active:focus .nav-title:after,
header ul.navbar-nav li a.active:active .nav-title:after {
	width: 0%;
}

/* Buttons */

.btn.btn-primary:not(.btn-admin),
.btn.btn-secondary:not(.btn-admin),
.btn.btn-tertiary:not(.btn-admin),
.btn.btn-link:not(.btn-admin),
.btn.btn-success:not(.btn-admin) {
	border-radius: 9999px !important;
	transition: 0.3s ease-out;
	font-weight: 700;
	width: fit-content;
}

p a:not(p a.btn) {
	text-decoration: underline;
	transition: 0.3s ease-out;
}

p a:hover,
p a:focus,
p a:active {
	color: var(--secondary);
}

p:has(.btn) .btn {
	margin-top: 2rem;
}

/* BOGEN */

.boog-boven {
	position: relative;
}

.boog-boven::before {
	background-image: url(assets/boog.svg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	/* top: -20rem; */
	content: "";
	pointer-events: none;
	/* max-height: 25rem; */
	z-index: -1;
	top: -18rem;
	max-height: 19rem;
}

.boog-boven-dark {
	position: relative;
}

.boog-boven-dark::before {
	background-image: url(assets/boog-dark.svg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: -20rem;
	content: "";
	pointer-events: none;
	max-height: 25rem;
}

.boog-mirror {
	position: relative;
}

.boog-mirror::before {
	background-image: url(assets/boog-mirror.svg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	/* top: -20rem; */
	content: "";
	pointer-events: none;
	/* max-height: 25rem; */
	z-index: -1;
	top: -18rem;
	max-height: 19rem;
}

.boog-onder {
	position: relative;
}

.boog-onder::before {
	background-image: url(assets/boog-invert.svg);
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 15rem;
	content: "";
	pointer-events: none;
}

/* PRIMARY BUTTON */

.btn.btn-primary:not(.btn-admin) {
	color: var(--white);
	padding: 6px 45px 6px 12px;
	background-color: var(--primary-light);
	position: relative;
	display: flex;
	align-items: center;
}

/* SECONDARY BUTTON */

.btn.btn-secondary:not(.btn-admin) {
	color: var(--white);
	padding: 6px 45px 6px 12px;
	background-color: rgba(155, 204, 101, 0.5);
	border-color: var(--secondary);
	position: relative;
	display: flex;
	align-items: center;
}

/* TERTIARY BUTTON */

.btn.btn-tertiary:not(.btn-admin) {
	color: var(--white);
	padding: 6px 45px 6px 12px;
	background-color: var(--tertiary-light);
	border-color: var(--tertiary);
	position: relative;
	display: flex;
	align-items: center;
}

/* LINK BUTTON */

.btn.btn-link:not(.btn-admin) {
	color: var(--primary-dark);
	border-color: var(--primary-light);
	background-color: transparent;
	padding: 6px 45px 6px 12px;
	position: relative;
	display: flex;
	align-items: center;
}

/* BUTTON AFTER */

.btn.btn-primary:not(.btn-admin)::after,
.btn.btn-secondary:not(.btn-admin)::after,
.btn.btn-tertiary:not(.btn-admin)::after,
.btn.btn-link:not(.btn-admin)::after {
	content: url(assets/button.svg);
	font: var(--fa-font);
	font-size: 0px;
	position: absolute;
	right: calc(0% + 5px);
	transition: 0.3s ease-out;
}

.btn.btn-primary:not(.btn-admin):hover::after,
.btn.btn-primary:not(.btn-admin):focus::after,
.btn.btn-primary:not(.btn-admin):active::after,
.btn.btn-secondary:not(.btn-admin):hover::after,
.btn.btn-secondary:not(.btn-admin):focus::after,
.btn.btn-secondary:not(.btn-admin):active::after,
.btn.btn-tertiary:not(.btn-admin):hover::after,
.btn.btn-tertiary:not(.btn-admin):focus::after,
.btn.btn-tertiary:not(.btn-admin):active::after,
.btn.btn-link:not(.btn-admin):hover::after,
.btn.btn-link:not(.btn-admin):focus::after,
.btn.btn-link:not(.btn-admin):active::after {
	right: calc(100% - 35px);
	transform: rotate(-45deg);
}

/* BUTTON HOVER */

.btn.btn-primary:not(.btn-admin):hover,
.btn.btn-primary:not(.btn-admin):focus,
.btn.btn-primary:not(.btn-admin):active,
.btn.btn-secondary:not(.btn-admin):hover,
.btn.btn-secondary:not(.btn-admin):focus,
.btn.btn-secondary:not(.btn-admin):active,
.btn.btn-tertiary:not(.btn-admin):hover,
.btn.btn-tertiary:not(.btn-admin):focus,
.btn.btn-tertiary:not(.btn-admin):active,
.btn.btn-link:not(.btn-admin):hover,
.btn.btn-link:not(.btn-admin):focus,
.btn.btn-link:not(.btn-admin):active {
	padding: 6px 12px 6px 45px;
}

/* [HEADER FOTO] */

.content-subtemplate-home .header img {
	min-height: 250px;
	object-fit: cover;
}

/* [HEADER SPLIT SECTION] */

.header-split-section h1 {
	width: 100%;
	position: relative;
}

.header-split-section::before {
	top: -18rem;
	max-height: 19rem;
	z-index: 0;
}

.header-split-section .content-item-content {
	margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
	.content-subtemplate-home .header-split-section h1 {
		width: 50%;
	}

	.header-split-section .header-tekst .content-item-content {
		column-count: 2;
	}

	.content-subtemplate-home .header-split-section h1::after {
		content: "";
		background-image: url(assets/boom.svg);
		position: absolute;
		background-repeat: no-repeat;
		background-size: contain;
		width: 8rem;
		height: 10rem;
		top: -7rem;
	}
}

@media only screen and (min-width: 992px) {
	.header-split-section h1::after {
		right: -8rem;
	}
}

@media only screen and (min-width: 1200px) {
	.header-split-section h1::after {
		right: unset;
	}
}

/* [TEKST BLOKKEN SECTIE] */

.vier-tekst-blokken .tekst-blok {
	background-color: var(--primary-bg);
	border-radius: 10px;
	padding: 2rem;
	min-height: 375px;
}

.vier-tekst-blokken .tekst-blok p {
	font-size: 1rem;
}

.vier-tekst-blokken .tekst-blok::after {
	content: "";
	background-image: url(assets/boom.svg);
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	width: 4rem;
	height: 5rem;
	bottom: 0;
	right: 2rem;
}

.vier-tekst-blokken .tekst-blok-dark {
	background-color: var(--primary);
}

.vier-tekst-blokken .tekst-blok-dark p,
.vier-tekst-blokken .tekst-blok-dark h3 {
	color: white;
}

.vier-tekst-blokken .bottom-tekst {
	margin-top: 2rem;
	position: relative;
}

.vier-tekst-blokken .bottom-tekst::after {
	content: "";
	background-image: url(assets/arrow.svg);
	background-repeat: no-repeat;
	height: 2rem;
	width: 2rem;
	position: absolute;
	left: 2rem;
	bottom: 1rem;
}

.vier-tekst-blokken .bottom-tekst p {
	max-width: 11rem;
	margin-bottom: 0;
}

.vier-tekst-blokken .bottom-tekst p:first-of-type {
	max-width: none;
}

.vier-tekst-blokken .bottom-tekst a {
	margin-top: 1rem;
	color: black !important;
	right: -3rem;
}

.vier-tekst-blokken .tekst-blok-dark::after {
	display: none;
}

@media only screen and (min-width: 768px) {
	.vier-tekst-blokken .tekst-blok {
		min-height: 300px;
	}
}

@media only screen and (min-width: 992px) {
	.vier-tekst-blokken .bottom-tekst {
		justify-items: end;
		margin-top: 2rem;
		position: relative;
	}

	.vier-tekst-blokken .bottom-tekst::after {
		right: 9rem;
		bottom: 1rem;
		left: auto;
	}

	.vier-tekst-blokken .bottom-tekst p:first-of-type {
		max-width: 11rem;
	}

}

/* [IMAGE BACKGROUND] */

.image-background {
	position: relative;
}

.image-background::before {
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	position: absolute;
	z-index: -1;
	background-color: rgba(43, 80, 21, 0.95);
}

.image-background::after {
	content: "";
	z-index: -2;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	display: flex;
	pointer-events: none;
	/* background-image: url('assets/image_background.jpg');
	background-size: cover;
	background-repeat: no-repeat; */
}

/* [FOTO SLIDER] */

.marquee-wrapper {
	max-width: 100%;
	overflow-x: clip;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.content-subtemplate-home .marquee-wrapper {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 1) 45%);
}

.marquee-wrapper>* {
	transform: rotate(2deg);
	width: 150%;
	left: -3rem;
	position: relative;
}

.marquee-wrapper .flex-marquee {
	gap: 15px;
	animation-duration: 40000ms;
}

.marquee-wrapper .flex-marquee:first-of-type {
	margin-bottom: 15px;
}

.marquee-wrapper img,
.marquee-wrapper picture {
	height: 150px;
	min-width: 250px !important;
	object-fit: cover;
	border-radius: 10px;
}

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

	.marquee-wrapper img,
	.marquee-wrapper picture {
		height: 220px;
		min-width: 350px !important;
	}
}

/* [BLOG] */

section.blog p,
section.blog h2,
section.blog h3 {
	color: white;
}

section.blog .top-tekst p:not(.small-text p) {
	margin: 0 0 3rem 0;
}

section.blog .bottom-tekst {
	justify-items: center;
}

section.blog a.btn {
	color: white !important;
	margin-top: 0.25rem;
}

.blog-item-preview .blog-item-link:focus,
.blog-item-preview .blog-item-link:hover {
	color: inherit;
}

.blog-item-preview {
	margin-bottom: 30px;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.blog-item-preview .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

@media only screen and (min-width: 768px) {
	section.blog .bottom-tekst {
		justify-items: end;
	}

	section.blog .top-tekst {
		max-width: 80%;
	}

	section.blog .top-tekst p:not(.small-text p) {
		margin: 2rem 0;
	}
}

.blog-item-preview .content {
	padding: 2rem;
	padding-right: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* height: auto !important; */
}

.fields .field .form-group {
	margin-bottom: 0;
}

.fields .field-icon {
	padding: var(--button-padding);
	border-radius: 50%;
	margin-right: 1rem;
	margin-top: 1rem;
	text-align: center;
	flex-shrink: 0;
	line-height: 1.25;
	width: 54px;
	transform: scale(0.75);
}

.fields .field-icon::after {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;

	font: var(--fa-font);

	font-size: 1.25em;
	text-align: center;
	content: "\e001";

	width: 18.75px;
}

.fields .field-plaats .field-icon::after {
	content: "\f3c5";
}

.fields .field-categorie .field-icon::after {
	content: "\f85e";
}

@media screen and (min-width: 992px) {
	.blog-item-preview-large .fields {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		max-width: calc(100% - 3.75em);
	}

	.blog-item-preview-large .fields>* {
		margin-right: 1rem;
	}
}

/* Change read more text into a button with an icon */
.blog-item-preview .readmore {
	display: table;
	position: absolute;
	bottom: calc(var(--panel-padding) / 1.5);
	right: var(--panel-padding);
}

.blog-item-preview .readmore {
	visibility: hidden;
}

.blog-item-preview .readmore::after {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;

	font: var(--fa-font);

	content: "\e093";

	visibility: visible;
	padding: var(--button-padding);
	border-radius: 50%;
	font-size: 1.25em;
	width: 2.6em;
	height: 2.6em;
	text-align: center;
	line-height: 1.2;
}

.blog-item-preview .readmore::after {
	background: var(--secondary);
	color: var(--white);
	transition: 0.3s ease-out;
}

.blog-item-preview {
	background-color: var(--white);
	border-radius: 10px;
}

.fields .field-icon {
	background-color: var(--secondary);
	color: var(--white);
}

.blog-item-preview .blog-item-link {
	color: var(--black);
	border-radius: 8px;
}

.blog-item-preview .blog-item-link>.image {
	height: 250px !important;
	position: relative;
}

.blog-item-preview .blog-item-link>.image::after {
	content: "";
	position: absolute;
	display: flex;
	height: 100%;
	width: 100%;
	top: 0;
	z-index: 1;
	transition: 0.3s ease-out;
}

.blog-item-preview .title {
	color: var(--primary);
}

.blog-item-preview .intro {
	color: var(--primary-dark);
}

.blog-item-preview .blog-item-link:hover .readmore::after,
.blog-item-preview .blog-item-link:focus .readmore::after,
.blog-item-preview .blog-item-link:active .readmore::after {
	transform: rotate(-90deg);
}

.blog-item-preview .blog-item-link:hover .image::after,
.blog-item-preview .blog-item-link:focus .image::after,
.blog-item-preview .blog-item-link:active .image::after {
	background-color: rgba(43, 80, 21, 0.5);
}

.blog-template-switch-sides.blog-item a.btn-back {
	margin-bottom: 2rem;
	border-width: 1px;
}

.blog-template-switch-sides.blog-item .blog-related-feed {
	margin-bottom: 2rem;
}

.blog-template-switch-sides.blog-item .clamp-left-unclamp-right img {
	border-radius: 10px 0 0 10px;
}

.blog-template-switch-sides.blog-item {
	padding-top: 5rem;
}

.blog-template-switch-sides.blog-collection {
	padding-top: 5rem;
}

.blog-template-switch-sides.blog-collection h1 {
	margin-bottom: 1rem;
}

.blog-template-switch-sides.blog-collection .btn-light {
	border-radius: 9999px;
	color: var(--primary);
	background-color: var(--secondary);
	transition: 0.3s ease-out;
}

.blog-template-switch-sides.blog-collection .btn-light:hover,
.blog-template-switch-sides.blog-collection .btn-light:focus,
.blog-template-switch-sides.blog-collection .btn-light:active {
	border-color: var(--secondary);
	background-color: transparent;
}

.blog-template-switch-sides.blog-item .image-album-item img {
	border-radius: 10px;
}

@media only screen and (min-width: 768px) {
	.blog-template-switch-sides.blog-collection {
		padding-top: 10rem;
	}

	.blog-template-switch-sides.blog-item {
		padding-top: 10rem;
	}
}

/* [IMAGE TEKST RECHTS SECITE] */

.image-tekst-rechts p,
.image-tekst-rechts h2,
.image-tekst-rechts h3 {
	color: white;
}

.image-tekst-rechts a.btn {
	color: white !important;
}

.image-tekst-rechts .tekst {
	padding-bottom: 2rem;
	padding-top: 5rem;
}

.image-tekst-rechts img {
	height: 260px;
	object-fit: cover;
	border-radius: 10px;
}

.image-tekst-rechts [data-partial="image"] {
	/* padding: 0 1rem; */
	z-index: 2;
}

@media only screen and (min-width: 768px) {
	.image-tekst-rechts .tekst {
		padding: 3rem 0 7rem 5rem;
	}

	.image-tekst-rechts img {
		height: auto;
	}
}

/* [ERVARINGEN SECTIE] */

.ervaringen {
	padding: 4rem 0 10rem 0;
}

.ervaringen .arrow {
	position: relative;
	margin-top: 2rem;
}

.ervaringen .arrow p:first-of-type a {
	margin-top: 1rem;
	position: absolute !important;
	right: 0;
}

.ervaringen .arrow::after {
	background-image: url(assets/arrow.svg);
	background-repeat: no-repeat;
	width: 2rem;
	height: 2rem;
	position: absolute;
	right: 16rem;
	top: 3rem;
	content: "";
	transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
	.ervaringen .arrow::after {
		left: 7rem;
		top: 2rem;
	}

	.ervaringen .arrow p:first-of-type {
		display: flex;
		align-items: center;
		gap: 2rem;
	}

	.ervaringen .arrow p:first-of-type a {
		margin-top: 0;
		position: relative !important;
	}

	.ervaringen {
		padding: 4rem 0 5rem 0;
	}
}

/* TUINDIENSTEN */

body:has(.content-subtemplate-tuindiensten) {
	background-color: var(--primary-bg);
}

.content-subtemplate-tuindiensten .header {
	background-color: var(--primary-bg);
	margin-bottom: 1rem;
	padding-top: 8rem;
}

.content-subtemplate-tuindiensten .header .tekst-pad {
	padding: 0rem 2rem 2rem 2rem;
}

.content-subtemplate-tuindiensten .header .row {
	flex-direction: column-reverse;
}

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

	.content-subtemplate-tuindiensten .header .tekst-pad {
		padding: 4rem 4rem 5rem 6rem;
	}
}

@media only screen and (min-width: 992px) {
	.content-subtemplate-tuindiensten .header .row {
		flex-direction: row;
	}
}

/* item blocks */

.item-blocks {
	padding: 3rem 0;
	padding-top: 0;
	z-index: 2;
	background-color: white;
}

.blocks {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	margin-bottom: 1rem;
}

.blocks>* {
	flex: 0 0 100%;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media screen and (min-width: 768px) {
	.blocks>* {
		flex: 0 0 50%;
		width: 50%;
	}

	.item-blocks {
		padding: 3rem 0;
	}
}

@media screen and (min-width: 992px) {
	.blocks>* {
		flex: 0 0 25%;
		width: 25%;
	}
}

.blocks>.block-text-full>* {
	padding: 2rem 1rem 0rem 2rem !important;
}

.blocks>.block-image,
.blocks>.block-text,
.blocks>.block-text-full,
.blocks>.block-text-on-image,
.blocks>.block-text-full-on-image {
	margin: 5px 0;
	border-radius: 10px;
}

.blocks>.block-image>*,
.blocks>.block-text>*,
.blocks>.block-text-full>*,
.blocks>.block-text-on-image>*,
.blocks>.block-text-full-on-image>* {
	border-radius: var(--panel-border);
	min-height: 255px;
}

.blocks>.block-text>*,
.blocks>.block-image img,
.blocks>.block-text-full>*,
.blocks>.block-text-on-image>* .position-overlay,
.blocks>.block-text-full-on-image>* .position-overlay {
	border-radius: 10px;
}

.blocks>.block-text>[data-partial="element"],
.blocks>.block-text-on-image>* [data-partial="element"] {
	font-size: 1.5em;
	line-height: 1.25;
	color: var(--white);
	height: 100%;
}

.blocks>.block-text>[data-partial="text"],
.blocks>.block-text-on-image>* [data-partial="text"] {
	color: var(--white);
	height: 100%;
}

.blocks>.block-text-on-image>* p.position-overlay,
.blocks>.block-text-full-on-image>* p.position-overlay,
.blocks>.block-text-on-image>* .position-overlay p,
.blocks>.block-text-full-on-image>* .position-overlay p {
	text-shadow: 0 0 4px #0008;
}

.blocks>.block-text-full p {
	font-size: 23px !important;
}

.blocks>*:nth-child(7n + 1)>* {
	background-color: var(--primary);
}

.blocks>*:nth-child(7n + 1)>* p:not(p .btn) {
	color: var(--white);
}

.blocks>*:nth-child(4n + 2)>*,
.blocks>*:nth-child(9n)>* {
	background-color: var(--secondary);
}

.blocks>*:nth-child(7n + 4)>* {
	background-color: var(--primary-bg);
}

.blocks>.block-text .btn:not(.btn-admin),
.blocks>.block-text-full .btn:not(.btn-admin),
.blocks>.block-text-on-image .btn:not(.btn-admin),
.blocks>.block-text-full-on-image .btn:not(.btn-admin) {
	color: inherit;
	background-color: transparent;
}

.blocks>*:nth-child(4n + 2) .btn,
.blocks>*:nth-child(7n + 4) .btn,
.blocks>*:nth-child(9n) .btn {
	background-color: var(--primary) !important;
	color: white !important;
}

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

	.blocks>.block-text>[data-partial="element"],
	.blocks>.block-text-on-image>* [data-partial="element"] {
		font-size: 1.625em;
	}

	.blocks>.block-image,
	.blocks>.block-text,
	.blocks>.block-text-full,
	.blocks>.block-text-on-image,
	.blocks>.block-text-full-on-image {
		margin: 10px 0;
	}
}

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

	.blocks>.block-text>[data-partial="element"],
	.blocks>.block-text-on-image>* [data-partial="element"] {
		font-size: 1.75em;
	}
}

[data-editor-mode="content"] .blocks>.block-text-full-on-image>* .position-overlay,
[data-editor-mode="content"] .blocks>.block-text-on-image>* .position-overlay {
	position: relative;
	padding: 0;
}

.blocks>*:nth-child(4) {
	position: relative;
}

.blocks>*:nth-child(4)::after {
	content: "";
	background-image: url(assets/boom.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 4rem;
	height: 5rem;
	position: absolute;
	top: -4rem;
	right: 3rem;
}

@media screen and (max-width: 767px) {
	.blocks [data-partial="text"] p:last-of-type {
		position: relative;
		bottom: -50px;
	}
}

/* contact sectie */

.content-subtemplate-tuindiensten .contact {
	padding-bottom: 5rem;
	background-color: white;
}

.content-subtemplate-tuindiensten .contact .btn {
	color: var(--primary) !important;
}

@media screen and (min-width: 768px) {
	.content-subtemplate-tuindiensten .contact {
		padding-bottom: 10rem;
	}

}

/* foto slider */

.content-subtemplate-tuindiensten .foto-slider {
	background-color: var(--primary-bg);
}

.content-subtemplate-tuindiensten .marquee-wrapper>* {
	transform: rotate(0) !important;
}

.content-subtemplate-tuindiensten .marquee-wrapper {
	padding-top: 1rem;
	padding-bottom: 2rem;
}

/* [DIENSTEN PAGINAS] */

.image-tekst-links .tekst {
	padding-right: 2rem;
}

.content-subtemplate-diensten .header-split-section {
	background-color: var(--primary-bg);
	padding-top: 8rem;
	padding-bottom: 3rem
}

.content-subtemplate-diensten .image-tekst-links {
	padding: 2rem 0;
	top: 5rem;
	z-index: 5;
	position: relative;
}

.content-subtemplate-diensten .omhoog-sectie .image-tekst-links>div {
	position: relative;
	top: -5rem;
}

.content-subtemplate-diensten .image-tekst-links .tekst {
	padding: 5rem 2rem 5rem 1rem;
}

.content-subtemplate-diensten .image-tekst-links img {
	border-radius: 10px;
}

.content-subtemplate-diensten .split-section {
	position: relative;
	top: -5rem;
	z-index: 3;
}

.content-subtemplate-diensten .dark-background {
	background-color: var(--primary);
}

@media screen and (min-width: 768px) {
	.content-subtemplate-diensten .omhoog-sectie .image-tekst-links>div {
		top: -10rem;
	}

	.content-subtemplate-diensten .header-split-section {
		padding-bottom: 10rem
	}
}

/* TEKST REChTS SECTIE */

.content-subtemplate-diensten .image-tekst-rechts>.row {
	align-items: center;
}

.content-subtemplate-diensten .image-tekst-rechts .tekst {
	padding: 1rem 0 1rem 0 !important;
}

/* TEKST LINKS KLEIN */

.content-subtemplate-diensten .image-tekst-links-klein {
	padding-top: 0;
}

.content-subtemplate-diensten .image-tekst-links-klein .row {
	align-items: center;
}

.content-subtemplate-diensten .image-tekst-links-klein p,
.content-subtemplate-diensten .image-tekst-links-klein h2,
.content-subtemplate-diensten .image-tekst-links-klein h3 {
	color: white;
}

.content-subtemplate-diensten .image-tekst-links-klein .tekst {
	padding: 1rem 0 1rem 0 !important;
}

.content-subtemplate-diensten .image-tekst-links-klein img {
	border-radius: 10px;
	height: auto;
}

@media screen and (min-width: 768px) {
	.content-subtemplate-diensten .image-tekst-links-klein {
		padding-top: 5rem;
	}
}

/* FOTO SLIDEr */

.content-subtemplate-diensten .marquee-wrapper {
	z-index: 2;
	position: relative;
}

.content-subtemplate-diensten .marquee-wrapper>* {
	transform: rotate(0) !important;
}

/* recensies */

.content-subtemplate-diensten .image-tekst-links.boog-boven::before {
	top: -20rem;
}

.content-subtemplate-diensten .boog-boven::before {
	z-index: 0;
	top: -17rem;
}

/* DIENSTEN KLEIN */

body:has(.diensten-klein) {
	background-color: var(--primary-bg);
}

.diensten-klein .header-split-section {
	padding-bottom: 0;
	padding-top: 2rem !important;
}

.diensten-klein .split-section {
	top: 0;
	background-color: white;
}

.diensten-klein .foto-slider {
	background-color: white;
}

.diensten-klein.content-subtemplate-diensten .image-tekst-links .tekst {
	padding-bottom: 6rem;
	padding-top: 3rem;
}

.diensten-klein .ervaringen {
	background-color: var(--primary-bg);
}

.diensten-klein .omhoog-sectie {
	padding-top: 1rem;
}

@media screen and (min-width: 768px) {
	.diensten-klein .header-split-section {
		padding-top: 5rem !important;
	}


	.diensten-klein .split-section .column2 {
		column-count: 2;
		column-gap: 2rem;
	}

	.diensten-klein .split-section:has(.column2) h2 {
		max-width: 50%;
	}

	.diensten-klein.content-subtemplate-diensten .image-tekst-links .tekst {
		padding-bottom: 10rem;
		padding-top: 5rem;
	}

	.diensten-klein .header-split-section {
		padding-bottom: 3rem;
	}
}

/* [GROEN PAGINA] */

.content-subtemplate-groen .header-split-section {
	background-color: var(--primary-bg);
	padding-top: 8rem;
	padding-bottom: 10rem;
}

.content-subtemplate-groen .image-tekst-links,
.content-subtemplate-groen .split-section {
	position: relative;
	top: -8rem;
}

.content-subtemplate-groen .image-tekst-links .tekst {
	padding-bottom: 0;
	padding-top: 3rem;
}

.content-subtemplate-groen .boog-boven::before {
	z-index: 0;
}

.content-subtemplate-groen .image-tekst-links img {
	border-radius: 10px;
}

.content-subtemplate-groen .split-section li {
	font-size: 1.1rem;
}

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

	.content-subtemplate-groen .image-tekst-links .tekst {
		padding-bottom: 5rem;
		padding-top: 5rem;
	}
}

/* split sectie */

@media screen and (min-width: 768px) {
	.content-subtemplate-groen .split-section {
		padding-top: 3rem;
	}
}

/* tekst rechts sectie */

/* .content-subtemplate-groen .image-tekst-rechts p {
	color: black;
} */

.content-subtemplate-groen .dark-background {
	background-color: var(--primary);
}

.content-subtemplate-groen .image-tekst-rechts .tekst {
	padding-bottom: 2rem;
	padding-top: 3rem;
}

@media only screen and (min-width: 768px) {
	.content-subtemplate-groen .image-tekst-rechts .tekst {
		padding: 2rem 0rem 7rem 1rem;
	}
}

/* tekst links sectie */

.content-subtemplate-groen .image-tekst-links-klein {
	padding-bottom: 10rem;
}

.content-subtemplate-groen .image-tekst-links-klein p,
.content-subtemplate-groen .image-tekst-links-klein h3,
.content-subtemplate-groen .image-tekst-links-klein li {
	color: white;
}

.content-subtemplate-groen .image-tekst-links-klein h3 {
	/*margin-top: 2rem;*/
}

.content-subtemplate-groen .image-tekst-links-klein .row {
	align-items: center;
}

.content-subtemplate-groen .image-tekst-links-klein img {
	border-radius: 10px;
}

@media screen and (min-width: 768px) {
	.content-subtemplate-groen .image-tekst-links-klein {
		padding-bottom: 13rem;
	}
}

/* [OVER ONS] */

.content-subtemplate-over-ons .header-split-section {
	background-color: var(--primary-bg);
	padding-top: 8rem;
	padding-bottom: 10rem;
}

.content-subtemplate-over-ons .image-tekst-links,
.content-subtemplate-over-ons .split-section {
	position: relative;
	top: -8rem;
}

.content-subtemplate-over-ons .image-tekst-links .tekst {
	padding-bottom: 0;
	padding-top: 2rem;
}

.content-subtemplate-over-ons .boog-boven::before {
	z-index: 0;
}

.content-subtemplate-over-ons .image-tekst-links img {
	border-radius: 10px;
}

.content-subtemplate-over-ons .ervaringen {
	background-color: var(--primary-bg);
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.content-subtemplate-over-ons .marquee-wrapper {
	position: relative;
	top: -4rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

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

	.content-subtemplate-over-ons .image-tekst-links .tekst {
		padding-bottom: 5rem;
		padding-top: 5rem;
	}

	.content-subtemplate-over-ons .split-section {
		padding-top: 3rem;
	}

	.content-subtemplate-over-ons .ervaringen::before {
		top: -21rem;
		z-index: -1;
	}

	.content-subtemplate-over-ons .ervaringen>.container {
		position: relative;
		top: -2rem;
	}
}

/* [CONTACT PAGINS] */

.content-template-default.content-subtemplate-contact {
	padding-top: 8rem;
	background-color: var(--primary-bg);
}

.content-subtemplate-contact .form {
	background-color: white;
}

.content-subtemplate-contact .form::before {
	z-index: 0;
}

.content-subtemplate-contact .vier-tekst-blokken {
	background-color: white;
}

.content-subtemplate-contact>.container {
	padding-bottom: 6rem;
}

.content-subtemplate-contact>.container h2,
.content-subtemplate-contact>.container h3,
.content-subtemplate-contact>.container .h2,
.content-subtemplate-contact>.container .h3 {
	margin-top: 2rem;
	margin-bottom: 0.25rem !important;
}

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

	.content-subtemplate-contact>.container h2,
	.content-subtemplate-contact>.container h3,
	.content-subtemplate-contact>.container .h2,
	.content-subtemplate-contact>.container .h3 {
		margin-top: 0;
		margin-bottom: 0.25rem !important;
	}
}

/* [FOOTER] */

footer {
	background-color: var(--secondary);
	border-radius: 6px;
	margin: 0 0.5rem 1rem;
	position: relative;
	border: 4px var(--primary) solid;
}

footer::after {
	content: "";
	background-image: url(assets/boom.svg);
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	width: 5rem;
	height: 6rem;
	top: -5rem;
	right: 8%;
}

footer .top {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

footer .top i {
	color: var(--secondary);
}

footer .top address {
	margin-bottom: 0;
}

footer .top .location {
	gap: 5%;
}

footer .top a:not(.text-decoration-none) {
	color: inherit;
}

footer .top .nav-link:hover {
	color: black;
}

footer .top .diensten-tekst {
	font-size: 1.17rem;
}

/* footer .top .nav-item+.nav-item {
	height: 30px;
} */

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

footer .top .navlist-nav {
	margin-bottom: 0;
}

footer .top .nav-link::after {
	content: "\f061";
	font: var(--fa-font);
	margin-left: 0.5rem;
	font-size: 1em;
	transition: margin-left 200ms ease-out;
}

footer .top .nav-link:hover::after {
	margin-left: 1.5rem;
}

footer .footer-contact {
	margin-top: 1.5rem;
	color: white;
	background-color: var(--primary);
	border-radius: 6px;
	padding: 3rem 0 3rem 1rem;
}

footer .footer-contact .btn.btn-link:not(.btn-admin) {
	line-height: 1.25;
	text-align: left;
}

footer .footer-contact .btn.btn-link:not(.btn-admin):active,
footer .footer-contact .btn.btn-link:not(.btn-admin):focus,
footer .footer-contact .btn.btn-link:not(.btn-admin):hover {
	text-decoration: underline;
	color: inherit;
}

footer .footer-socials a {
	margin-right: 1rem;
	font-size: 1.5em;
}

footer .footer-socials i {
	color: var(--primary);
	transition: 0.3s ease-out;
}

footer .footer-socials i:hover,
footer .footer-socials i:focus,
footer .footer-socials i:active {
	color: var(--primary-light);
}

footer .recensies {
	justify-items: end;
	gap: 2rem;
}

footer .recensies p {
	font-size: 1rem;
}

footer .recensies a {
	margin-right: 0;
	font-size: 0.6rem;
}

footer .recensies a.btn {
	font-size: 1rem !important;
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	margin-top: 0;
}

footer .recensies i::before {
	font-weight: 300;
	color: white;
}

footer .recensies [data-partial="text"] {
	color: var(--primary);
	position: relative;
}

footer .recensies [data-partial="text"]::after {
	content: "";
	background-image: url(assets/arrow.svg);
	background-repeat: no-repeat;
	height: 2rem;
	width: 2rem;
	position: absolute;
	top: -2.5rem;
	right: -1rem;
	transform: rotate(20deg) scaleY(-1);
}

footer .bottom .container {
	border-top: solid 1px var(--primary);
}

@media only screen and (min-width: 768px) {
	footer {
		margin: 0 1.5rem 2rem;
	}

	footer .footer-contact {
		padding: 3rem 0 3rem 3rem;
	}

	footer::after {
		width: 7rem;
		height: 8rem;
		top: -6.7rem;
	}
}

/* mobile bar */

/* Place on the bottom of the screen. */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--primary);
	color: white;

	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);

	--static-bar-width: 50%;
	--static-bar-spacing: 0.2rem;
}

.navbar-static-bar:has(.navlist-nav .nav-item:nth-child(3)) {
	--static-bar-width: 33%;
}

.navbar-static-bar:has(.navlist-nav .nav-item:nth-child(4)) {
	--static-bar-width: 25%;
}

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

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

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

/* 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(--secondary-dark);
}

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

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

.navbar-static-bar .nav-title {
	font-size: 0.75rem;
	line-height: 0.75rem;
	font-weight: 300;
	text-align: center;
}

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

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

/* Format the toggler if displayed inside the static bar. */
.navbar-static-bar button.navbar-toggler {
	color: inherit;
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

/* Style Whappie link. */
.navbar-static-bar .nav-link[href="$whappie_open"] .nav-icon {
	background-color: var(--whatsapp);
	color: white;
	/* color: var(--whatsapp); */
	border-radius: 999px;
	aspect-ratio: 1/1;
	text-align: center;
}

/* Hide Whappie button. */
#whappe-button {
		bottom: 4rem;
	}

@media screen and (max-width: 767px) {
	#whappe-button {
		bottom: 5.5rem;
	}
}

/*
 _____
| ____|   _  ___   ___  ___  ___   _   _  ___  _   _
|  _|| | | |/ _ \ / __|/ _ \/ _ \ | | | |/ _ \| | | |
| |__| |_| |  __/ \__ \  __/  __/ | |_| | (_) | |_| |
|_____\__, |\___| |___/\___|\___|  \__, |\___/ \__,_|
      |___/                        |___/

                  ...:::::::::...
               .::::::::::::::::::::.
            .:::::::.............:::--:.
          .:-::::.......::---::....::::--.
         .---:-......-=-----------...::::-.
       .----:::....-=---------------..::::-:.
      .--=-::.....===----%@@@*:.:----..:::---.
      :---:::....-==----@@@@@#--*-----..:::--:
     .---:::.....+==----@@@@@#+-%----=..:::--=.
     :=--:::.....++=----=@@@%*+@=----=..:::--=-
     -=---:::....=+==-----+#%#+-----==..:::--==.
     -=---:::.....+++==--:-----:--===:.::::-===
     -==--::::.....+++====-------==+:..:::---=-.
     :===--::::.....-+++=+++==++++-..::::---==-
     .+==---::::.......=+++++++=....::::---===.
      -++==---:::::...............:::::---==+-.
      .++===----:::::::.......::::::----===+=.
       .=++===-----:::::::::::::::----====+=.
         -+++====------------------====+++-.
          .+*+++=======--------=====+++++.
            .=**+++++===+=======+++++*+.
              .:+***+**+++++++++++*+:
                  .:-++*+*****+-:.
*/
