:root {
	/* Colors */
	--primary: #ab7364;
	/* --primary-bg: #e3f4ff;
	--primary-dark: #1269ec;
	--primary-light: #008fff; */

	--secondary: #d9a9a0;
	/* --secondary-bg: #e4f1f7;
	--secondary-dark: #0f3c62;
	--secondary-light: #3c8cd2; */

	--tertiary: #f3d5cf;
	/* --tertiary-bg: #ecedef;
	--tertiary-dark: #607285;
	--tertiary-light: #8f9ba9; */

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

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

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

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

	--navigation-height: 6rem;
}

/* Responsive breakpoints, mobile first. Graag bij gerelateerde component gebruiken, niet één per style sheet. */
@media only screen and (min-width: 576px) {
	/* Small (sm) */
}
@media only screen and (min-width: 768px) {
	/* Medium (md) */
}
@media only screen and (min-width: 992px) {
	/* Large (lg) */
}
@media only screen and (min-width: 1200px) {
	/* Extra large (xl) */
}

/* 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 {
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

h1,
.h1 {
	font-size: 1.7rem;
}
h2,
.h2 {
	font-size: 1.5rem;
}

b,
.b {
}

p,
.p {
}

p,
.p,
legend,
.legend {
	color: var(--primary);
	font-weight: 300;
	line-height: 1.3;
	font-size: 18px;
	margin-bottom: 1rem;
}

.text-black p,
.text-black .p,
.text-black h1,
.text-black .h1,
.text-black h2,
.text-black .h2 {
	color: #000000 !important;
}

body:not([data-editor-mode="content"]) .text-white p,
body:not([data-editor-mode="content"]) .text-white h1,
body:not([data-editor-mode="content"]) .text-white h2 {
	color: #ffffff;
}
small,
.small {
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	h1,
	.h1,
	h2,
	.h2 {
		font-size: 2rem;
	}
}

/* Navigatie balk mee laten scrollen. */
.nav-header {
	position: static;
	top: 0;
	z-index: 100;
	background: rgb(243, 213, 207);
	background: linear-gradient(
		90deg,
		rgba(243, 213, 207, 1) 0%,
		rgba(171, 115, 100, 1) 100%
	);
}

.nav-header nav.navbar .mobile-logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-header nav.navbar .mobile-logo a {
	width: 250px;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.nav-header {
		position: sticky;
	}
}

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

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

nav.navbar ul li.nav-item a.nav-link span.nav-title {
	color: #000000;
	font-weight: 300;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

nav.navbar ul li.nav-item a.nav-link {
	padding: 0.5rem 1.5rem;
}

nav.navbar ul li.nav-item a.active span.nav-title {
	color: #000000;
	font-weight: 500;
	text-transform: uppercase;
}

nav.navbar ul li.nav-item:hover a.nav-link span.nav-title {
	color: #000000;
	font-weight: 500;
}

/* Mobile extra */
.navbar-mobile-extra {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--secondary);
	-webkit-box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
}

.navbar-mobile-extra ul.navlist-nav {
	list-style-type: none;
	padding: 0;
	margin: 0;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.navbar-mobile-extra ul.navlist-nav::-webkit-scrollbar {
	display: none;
}

.navbar-mobile-extra ul.navlist-nav li {
	position: relative;
	min-width: 22.5%;
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}

.navbar-mobile-extra ul.navlist-nav li:after {
	position: absolute;
	display: block;
	content: "";
	top: 20%;
	bottom: 20%;
	right: 0;
	width: 1px;
	height: 60%;
	background-color: var(--white);
}

.navbar-mobile-extra ul.navlist-nav li:last-child:after {
	display: none;
}

.navbar-mobile-extra ul.navlist-nav li a.nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	height: 100%;
}

.navbar-mobile-extra ul.navlist-nav li a:hover,
.navbar-mobile-extra ul.navlist-nav li a:focus {
	text-decoration: none;
	color: black;
	background-color: var(--white);
}

.navbar-mobile-extra ul.navlist-nav li a.nav-link .nav-icon {
	font-size: 1.25rem;
	color: black;
	margin-bottom: 0.5rem;
}

.navbar-mobile-extra ul.navlist-nav li a.nav-link .nav-indentation {
	display: none;
}

.navbar-mobile-extra ul.navlist-nav li a.nav-link .nav-title {
	font-size: 0.75rem;
	line-height: 0.75rem;
	font-weight: 300;
	color: black;
	text-align: center;
}

/* .navbar-mobile-extra ul.navlist-nav li a.nav-link:hover .nav-title,
.navbar-mobile-extra ul.navlist-nav li a.nav-link:focus .nav-title {
	color: white;
} */

html[data-logged="true"] .navbar-mobile-extra {
	display: none;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile-extra {
		display: none;
	}
}

/* [page] */
.page {
	position: relative;
	padding: 3rem 0;
}
.home-page {
	position: relative;
	padding: 0rem 0 3rem;
}

.page-top {
	padding: 3rem 0;
}

.bg-gradients {
	background: rgb(243, 213, 207);
	background: linear-gradient(
		90deg,
		rgba(243, 213, 207, 1) 0%,
		rgba(171, 115, 100, 1) 100%
	);
}

.page-min {
	padding: 5rem 0;
	margin: -7rem 0 0 0;
}

.bg-primary-05 {
	background-color: rgba(171, 115, 100, 0.9);
}

.margin-min7 {
	margin-bottom: 0rem;
}

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

	.page-top {
		padding: 10rem 0;
	}

	section.page-top {
		padding: 10rem 0;
	}

	.home-page {
		padding: 5rem 0 0;
	}

	.margin-min7 {
		margin-bottom: -7rem;
	}
}

/* [home] */

.border-after::after {
	position: absolute;
	border: solid 2px black;
	bottom: 0;
	left: 2rem;
}

.border-after {
	display: inline-block;
	position: relative;
}

.border-after ::before {
	position: absolute;
	bottom: -5%;
	left: -10%;
	width: 100%;
	height: 100%;
	border: 2px solid #000000;
	content: "";
}

.page .vink-marker ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-count: 1;
	column-gap: 0;
}

.page .vink-marker ul li {
	color: var(--primary);
	font-weight: 300;
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	hyphens: auto;
	margin: 0 2rem 2rem 0rem;
}

.page .vink-marker ul li::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f058";
	padding-right: 1.5rem;
}

.page .xmark-marker ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-count: 1;
	column-gap: 0;
}

.page .xmark-marker ul li {
	color: var(--primary);
	font-weight: 300;
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	hyphens: auto;
	margin: 0 2rem 2rem 0rem;
}

.page .xmark-marker ul li::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f057";
	padding-right: 1.5rem;
}

/* [content] */

/* [foto-links] */
section.filler {
	padding: 1rem 0;
}

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

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

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

.greybg {
	background-color: var(--greybg);
}

.whitebg {
	background-color: white;
}

.primarybg.pl-5,
.greybg.pl-5,
.whitebg.pl-5,
.flex-middle.pl-5 {
	padding-left: 0 !important;
}

.primarybg.pr-5,
.greybg.pr-5,
.whitebg.pr-5,
.flex-middle.pr-5 {
	padding-right: 0 !important;
}

.halfimg {
	position: relative;
	display: block;
	width: 100%;
	height: 300px;
	top: unset;
	overflow: hidden;
	z-index: 1;
}

/* body[data-editor-mode="content"] .halfimg {
	position: relative;
	top: unset;
	left: unset;
	right: unset;
} */

.fullscreenimg {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
}

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

	.primarybg.pl-5,
	.greybg.pl-5,
	.whitebg.pl-5,
	.flex-middle.pl-5 {
		padding-left: 3rem !important;
	}
	.primarybg.pr-5,
	.greybg.pr-5,
	.whitebg.pr-5,
	.flex-middle.pr-5 {
		padding-right: 3rem !important;
	}

	.halfimg {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
		z-index: 0;
	}
	.half-left .halfimg {
		right: 0;
	}
	.half-right .halfimg {
		left: 0;
	}
}

@media only screen and (min-width: 992px) {
	/* large (l) */
}

@media only screen and (min-width: 1200px) {
	/* Extra large (xl) */
}

/* [blog] */
.section-split .img-fluid {
	max-height: 400px;
	object-fit: cover;
}

.blogslider .slider-control-next-icon::after,
.blogslider .slider-control-prev-icon::after {
	color: var(--primary);
}

/* Preview */
.blog-item-preview {
	position: relative;
	margin-bottom: 3rem;
}

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

.blog-item-preview a.blog-item-link:after {
	position: absolute;
	display: block;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	bottom: 0rem;
	right: 1rem;
	font-weight: 300;
	font-size: 2rem;
	content: "\e093";
	color: white;
}

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

.blog-item-preview a.blog-item-link .image {
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
}

.blog-item-preview a.blog-item-link .image .img-fluid {
	max-height: 500px;
	object-fit: cover;
}

.blog-item-preview a.blog-item-link .image:after {
	position: absolute;
	top: 0;
	left: 0;
	display: table;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(0, 42, 78, 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 a.blog-item-link:hover .image:after,
.blog-item-preview a.blog-item-link:focus .image:after {
	background-color: rgba(0, 42, 78, 0.5);
}

.blog-item-preview a.blog-item-link .content {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 1rem 1rem 3rem 1rem;
}

.blog-item-preview a.blog-item-link .content h3 {
	color: white;
	font-size: 2rem;
	line-height: 2rem;
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.blog-item-preview a.blog-item-link:hover .content h3,
.blog-item-preview a.blog-item-link:focus .content h3 {
	color: var(--secondary);
}

.blog-related-feed .blog-item-preview a.blog-item-link .content h3 {
	font-size: 1.5rem;
	line-height: 1.5rem;
}

.blog-page h2,
.blog-page .h2 {
	font-size: 1.3rem;
}

.question-marker ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-count: 1;
	column-gap: 0;
}

.question-marker ul li {
	color: var(--primary);
	font-weight: 300;
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	hyphens: auto;
	margin: 0 2rem 2rem 0rem;
}

.question-marker ul li::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f111";
	font-size: 1rem;
	padding-right: 1.5rem;
}

.page .icons-3-marker ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-count: 1;
	column-gap: 0;
}

.page .icons-3-marker ul li {
	color: var(--primary);
	font-weight: 300;
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	hyphens: auto;
	margin: 0 2rem 2rem 0rem;
}

.page .icons-3-marker ul li::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f118";
	font-size: 1.2rem;
	padding-right: 1.5rem;
}

.page .icons-3-marker ul li:nth-child(1)::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\e21b";
	font-size: 1.2rem;
	padding-right: 1.5rem;
}

.page .icons-3-marker ul li:nth-child(2)::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f133";
	font-size: 1.2rem;
	padding-right: 1.5rem;
}

.page .icons-3-marker ul li:nth-child(3)::before {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-light);
	content: "\f118";
	font-size: 1.2rem;
	padding-right: 1.5rem;
}

.border-div::after {
	display: inline-block;
	position: relative;
}
.border-div::before {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 100%;
	height: 50%;
	border: 2px solid #000000;
	content: "";
}

.border-image::after {
	position: absolute;
	border: solid 2px black;
	bottom: 0;
	left: 2rem;
}

.border-image {
	display: inline-block;
	position: relative;
}

.border-image ::before {
	position: absolute;
	bottom: -5%;
	left: -5%;
	width: 100%;
	height: 100%;
	border: 2px solid #000000;
	content: "";
}

.logo-left {
	position: absolute;
	top: 5%;
	left: 0%;
	width: 250px;
	height: 250px;
	opacity: 0.25;
	overflow: hidden;
}

.logo-right {
	position: absolute;
	bottom: 5%;
	right: 0%;
	width: 250px;
	height: 250px;
	opacity: 0.25;
	overflow: hidden;
}

.logo-right-b {
	position: absolute;
	bottom: -25%;
	right: 0%;
	width: 250px;
	height: 250px;
	opacity: 0.25;
	overflow: hidden;
}

.arrow {
	position: absolute;
	bottom: 30%;
	right: 20%;
	opacity: 1;
	overflow: hidden;
}

.arrow-180 {
	position: absolute;
	bottom: 30%;
	left: 40%;
	opacity: 1;
	overflow: hidden;
	transform: scaleX(-1);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.logo-left {
		opacity: 1;
		left: -15%;
		width: 400px;
		height: 400px;
	}

	.logo-right {
		opacity: 1;
		width: 400px;
		height: 400px;
	}

	.logo-right-b {
		opacity: 1;
		width: 400px;
		height: 400px;
	}

	.arrow {
		right: 50%;
	}

	.arrow-180 {
		right: 45%;

	}

}

/* [blog-select] */
.blogslider .flex-slider {
	padding-left: 1rem;
	margin-left: -1rem;
	margin-top: -1rem;
}

.blogslider .flex-auto-responsive > * {
	min-width: 100%;
}

.blogslider .blog-item-preview {
	margin: 2rem 2rem 2rem 0;
}

.blogslider .blog-item-preview:last-child {
	margin: 2rem 0 2rem 0;
}

.blogslider button.slider-control-prev {
	font-size: 2rem;
	color: white;
	margin-right: 2rem;
	margin-top: 1rem;
	opacity: 1;
}

.blogslider .slider-control-prev-icon::after {
	content: "\f060";
	font-weight: 300;
}

.blogslider button.slider-control-next {
	font-size: 2rem;
	color: white;
	margin-top: 1rem;
	opacity: 1;
}

.blogslider .slider-control-next-icon::after {
	content: "\f061";
	font-weight: 300;
}

.blogslider ol.slider-indicators li {
	font-size: 1.25rem;
}

.blogslider .blog-item-preview a.blog-item-link .content h3 {
	font-family: var(--font-title-regular);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	section.blog-item ul.field-list {
		flex-direction: row;
	}
	section.blog-item ul.field-list li {
		margin-right: 3rem;
		margin-bottom: 0;
	}
	section.blog-item ul.field-list li:last-child {
		margin-right: 0;
	}
	.blogslider .flex-auto-responsive > * {
		min-width: 360px !important;
	}
	.blogslider button.slider-control-prev {
		margin-top: 1rem;
	}
	.blogslider button.slider-control-next {
		margin-top: 1rem;
	}
	.blog-related-feed .blog-item-preview a.blog-item-link .content h3 {
		font-size: 2rem;
		line-height: 2rem;
	}
}
/* [contact] */
.contact .subtitle {
	font-family: var(--font);
	font-size: 1.25rem;
	font-weight: 700;
	color: black;
	margin: 0;
}

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

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

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

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

ul.contact li a {
	position: relative;
	text-decoration: none;
	color: black;
	font-size: 0.9rem;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

ul.contact li a:hover,
ul.contact li a:focus {
	color: #000000;
	font-weight: 700;
}




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* [form] */
.formbox {
	padding: 1rem;
	border-radius: 1rem;
}

.formbox .label,
.formbox label {
	color: #000000;
	font-weight: 500;
	line-height: 1.5;
	font-size: 1.1rem;
}

.formbox .form-control {
	border: none;
}

/* [footer] */
footer.nav-footer {
	background: rgb(243, 213, 207);
	background: linear-gradient(
		90deg,
		rgba(243, 213, 207, 1) 0%,
		rgba(171, 115, 100, 1) 100%
	);
}

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

footer a,
footer i,
footer ul.contact i {
	color: #000000;
}

footer .title {
	font-size: 1.9rem;
	font-weight: 500;
	color: #000000;
}

footer .footer-menu a:hover {
	color: #000000;
	font-weight: 700;
}

footer .bottom a:hover {
	color: #000000;
	font-weight: 700;
}

/* Buttons */
/* [BUTTONS] */
.btn:not(.btn-admin) {
	text-transform: uppercase;
}

.btn.btn-primary:not(.btn-admin) {
	background-color: var(--tertiary);
	border-color: var(--tertiary);
	color: var(--primary);
	border-width: 1px;
	font-weight: 700;
	font-size: 0.7em;
	border-radius: 25px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
	box-shadow: none;
}
/*
.btn.btn-primary:not(.btn-admin)::after {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: var(--white);
	margin-left: 1rem;
	font-size: 2rem;
	font: var(--fa-font-solid);
	content: "\f0a9";
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;

} */

.btn.btn-white:not(.btn-admin) {
	background-color: var(--white);
	border-color: var(--white);
	color: black;
	font-weight: 500;
	font-size: 0.9em;
	border-radius: 25px;

	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
	box-shadow: none;
}

.btn.btn-secondary:not(.btn-admin) {
	background-color: transparent;
	border-color: var(--white);
	color: white;
	border-width: 1px;
	font-weight: 500;
	font-size: 0.8em;

	border-radius: 25px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
	box-shadow: none;
}

.btn.btn-tertiary:not(.btn-admin) {
	background-color: transparent;
	border-color: var(--black);
	color: black;
	border-width: 1px;
	font-weight: 500;
	font-size: 0.8em;
	border-radius: 25px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
	box-shadow: none;
}

.btn.btn-link:not(.btn-admin) {
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
	text-transform: none;
	outline: none;
    box-shadow: none;
    border: none;
}

.btn.btn-primary:not(.btn-admin):active,
.btn.btn-primary:not(.btn-admin):focus,
.btn.btn-primary:not(.btn-admin):hover,
.btn.btn-primary-2:not(.btn-admin):active,
.btn.btn-primary-2:not(.btn-admin):focus,
.btn.btn-primary-2:not(.btn-admin):hover,
.btn.btn-primary:not(.btn-admin):hover::after {
	background-color: transparent;
	color: var(--primary);
}
.btn.btn-secondary:not(.btn-admin):active,
.btn.btn-secondary:not(.btn-admin):focus,
.btn.btn-secondary:not(.btn-admin):hover {
	border-color: var(--secondary);
	background-color: #ffffff;
	color: #000000;
}
.btn.btn-tertiary:not(.btn-admin):active,
.btn.btn-tertiary:not(.btn-admin):focus,
.btn.btn-tertiary:not(.btn-admin):hover {
	background-color: black;
	color: var(--tertiary);
}

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

.btn.btn-primary:not(.btn-admin):active,
.btn.btn-primary:not(.btn-admin):focus,
.btn.btn-primary:not(.btn-admin):hover {
}

.btn.btn-secondary:not(.btn-admin):active,
.btn.btn-secondary:not(.btn-admin):focus,
.btn.btn-secondary:not(.btn-admin):hover {
}


.btn.btn-link:not(.btn-admin):active,
.btn.btn-link:not(.btn-admin):focus,
.btn.btn-link:not(.btn-admin):hover {
	outline: none;
	box-shadow: none;
	border: none;
	color: #000000;
}



/* [view-image-to-background-text-block] */
body:not([data-editor-mode="content"]) .image-to-background {
	position: absolute;
	/* Zorg dat het element de gehele grootte in beslag neemt.  */
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	/* Zorg dat de afbeelding achter komt te liggen. */
	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%;
	/* Zorg dat de afbeelding het hele element vult. */
	object-fit: cover;
	object-position: 50%;
}

.vlak {
	position: absolute;
	height: 100%;
	width: 70%;
	top: 0;
	right: 0;
	opacity: 0.9;
	background-color: var(--primary);
}


/* Modal styling */

.modal-header{
	background: rgb(243, 213, 207);
	background: linear-gradient(
		90deg,
		rgba(243, 213, 207, 1) 0%,
		rgba(171, 115, 100, 1) 100%);
}

.modal-title{
	color: #000;
}