:root {
	/* Colors */
	--primary: #2c3492;
	--primary-bg: #e3f4ff;
	--primary-dark: #206f64;
	--primary-light: #008fff;

	--secondary: #3d3d3d;
	--secondary-bg: #e4f1f7;
	--secondary-dark: #0f3c62;
	--secondary-light: #3c8cd2;

	--tertiary: #206f64;
	--tertiary-bg: #ecedef;
	--tertiary-dark: #0073CC;
	--tertiary-light: #3fd9c5;

	/* Fonts */
	--font-family-heading: 'Nunito', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-sans-serif: 'Nunito', sans-serif, -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.6;

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

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

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

/* 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) {
	padding: 1rem;
	border-radius: 0.25rem;
	border-width: 1px;
}

.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-tertiary:not(.btn-admin):active,
.btn.btn-tertiary:not(.btn-admin):focus,
.btn.btn-tertiary: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 {
	background-color: transparent;
	color: #000000;
}

.btn.btn-white:not(.btn-admin) {
	padding: 1rem;
	border-radius: 0.25rem;
	background-color: white;
	color: #000000 !important;
	border-color: white;
	border-width: 1px;
}

.btn.btn-white:not(.btn-admin):active,
.btn.btn-white:not(.btn-admin):focus,
.btn.btn-white:not(.btn-admin):hover {
	color: #ffffff !important;
	background-color: transparent;
	border-color: white;
	border-width: 1px;
}

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

a,
.a {
	color: var(--tertiary-dark);
}

.bg-gradients .a,
.bg-gradients a {
	color: var(--tertiary-light);
}

p,
.p,
legend,
.legend {
	color: var(--black);
	font-weight: 300;
	line-height: 1.3;
	font-size: 1.2rem;
	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;
}

.navbar .d-flex.w-100.align-items-center.justify-content-end .btn-link:last-child {
	margin-right: -1.5rem;
}

@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-header  ul li.nav-item a.nav-link span.nav-title {
	color: #000000;
	font-weight: 300;
	font-size: 1.2rem;
	-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-header  ul li.nav-item a.nav-link {
	padding: 0.5rem 1.5rem;
}

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

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




/* [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,
		rgb(44, 52, 146, 1) 0%,
		rgb(53, 66, 199) 100%
	);
	color: white !important;
}

.bg-gradients p,
.bg-gradients h1,
.bg-gradients h2,
.bg-gradients h3,
.bg-gradients .title,
.bg-gradients ul li,
.bg-gradients .btn {
	color: white !important;
}





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



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

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

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

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


.vink-marker ul li {
	padding: 1rem 0;
}



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

ul.contact li a {
	position: relative;
	color: black;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}


/* [SOCIALS] */
ul.socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: start;
	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: #ffffff;
	font-weight: 500;
	line-height: 1.5;
	font-size: 1.1rem;
}

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

/* [footer] */
footer.nav-footer .bottom {
	background: rgb(243, 213, 207);
	background: linear-gradient(
		90deg,
		rgb(44, 52, 146, 0.7) 0%,
		rgb(73, 89, 254, 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 !important;
}



/* [view-image-to-background-text-block] */
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%;
}

.vlak-mobile {
	background-color: var(--primary);
	opacity: 0.9;
}

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


/* [menbers] */
section.team .personeel button.nostyling,
section.team .personeel button.nostyling:focus-within {
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
}

section.team .personeel .persoon {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	/* border-radius: 100%; */
	overflow: hidden;
	color: black;
}

section.team .personeel .row .col-12:nth-child(even) .persoon {
	border: solid 2px var(--primary);
}

section.team .personeel .persoon .content {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(44, 52, 146, 0.75);
	opacity: 0;
	font-size: 1.5rem;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

section.team .personeel .persoon:hover .content {
	opacity: 1;
}

body[data-editor-mode="content"] section.team .personeel .persoon .content {
	position: relative;
}

section.team .personeel .persoon .content .name {
}

section.team .personeel .persoon .content ul.persoon-list {
}

section.team .personeel .persoon .content ul.persoon-list li {
	list-style: none;
	display: flex;
	align-items: center;
	font-size: 1.2rem;
}

section.team .personeel .persoon .content ul.persoon-list li i {
	margin-right: 0.5rem;
}

section.team .modal-content .content {
	display: flex;
	flex-direction: column;
}

section.team .modal-content .content .persoons-informatie {
	display: flex;
}

section.team .modal-content {
	position: relative;
	background-color: transparent;
	width: 1800px;

	padding: 9rem 0;
	margin-top: 13rem;
}

section.team .modal-content .persoon-modal {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 25px;
	/* width: 50rem; */
	min-height: 10rem;
}

section.team .modal-content .img {
	position: absolute;
	right: 0;
	top: -12rem;
	width: 22rem;
	border-radius: 100%;
	overflow: hidden;
	color: black;
}

section.team .modal-content .close {
	position: absolute;
	top: -8rem;
	right: 0;
	color: var(--primary);
	background-color: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 1000;
	opacity: 1;
	font-size: 2rem;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

section.team .modal-content .close:hover {
	opacity: 0.8;
}

section.team .modal-content .text-element {
	width: 100%;
}

section.team .modal-content .text-element .name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}

section.team .modal-content .functie {
	display: flex;
	align-items: center;
	padding: 0.3rem 0;
}

section.team .modal-content .functie i {
	margin-right: 1rem;
	color: var(--primary);
}

.modal-dialog-centered {
	justify-content: center;
}

section.team .modal-content ul.persoon-list {
	display: flex;
	/* min-height: 15rem; */
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;

	padding: 0;
}

section.team .modal-content ul.persoon-list li {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

section.team .modal-content ul.persoon-list li i {
	margin-right: 1rem;
	color: var(--primary);
}

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

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

@media only screen and (min-width: 576px) {
	/* Small (sm) */
}
@media only screen and (min-width: 768px) {
	section.team .modal-content ul.persoon-list {
		min-height: 15rem;

	}
	section.team .modal-content {
		padding: 5rem 0;

	}

	section.team .modal-content .persoon-modal {
		width: 50rem;
	}
	section.team .modal-content .content {
		flex-direction: row;
	}
	section.team .modal-content .text-element {
		width: 55%;
	}
	footer .logo-footer img{
		height: 300px;
		width: 350px;
	}
}
@media only screen and (min-width: 992px) {
	/* Large (lg) */
}
@media only screen and (min-width: 1200px) {
	/* Extra large (xl) */
}


/* [BLOG] */

.blog-template-classic {
	padding: 5rem 0;
}

.blog-collection-items .blog-item-preview, .blog-related-feed .blog-item-preview {
	box-shadow: 0 0 8px -4px rgba(0,0,0,0.5);
 	padding: 1rem;
	margin-bottom:2rem;
}

.blog-collection-items .image, .blog-related-feed .image{
	margin:0 -1rem;
}

.blog-collection-items .fields, .blog-related-feed .fields{
	padding-top:0.5rem;
}

.blog-collection-items .fields ul li, .blog-related-feed .fields ul li, .blog-content .fields ul li{
	color:#000;
	display: inline;
	margin:1rem 1rem 0 0;
}

.blog-collection-items .intro, .blog-related-feed .intro{
	color:#000;
}

.blog-collection-items .readmore, .blog-related-feed .readmore{
	display: table;
	background-color: var(--primary);
	color: var(--white);
	padding: 1rem;
	border-radius: 0.25rem;
	margin-top: 1rem;
	border-width: 1px;
	border-color: var(--black);
	-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-collection-items .blog-item-preview:hover .readmore, .blog-related-feed .blog-item-preview:hover .readmore{
	display: table;
	background-color: transparent;
	color: var(--black);
	padding: 1rem;
	border-radius: 0.25rem;
	margin-top: 1rem;
	border-width: 1px;
	border-color: var(--black);
}

.blog-collection-items .h3, .blog-related-feed .h3{
	color: #000;
}

.blog-content .btn-link{
	display: table;
	background-color: var(--primary);
	color: var(--white);
	padding: 1rem;
	border-radius: 0.25rem;
	margin-bottom: 1rem;
}

.blog-related{
	padding:5rem 0;
}

.blog-related .h2{
	margin-bottom:1rem;
}


/* [blog-home] */
.bg-gradients .blog-collection-items .blog-item-preview, .blog-related-feed .blog-item-preview {
	box-shadow: 0 0 8px -4px rgba(0,0,0,0.5);
 	padding: 1rem;
	margin-bottom:2rem;

	background-color: white;
}

.bg-gradients .blog-collection-items .blog-item-preview, .blog-related-feed .blog-item-preview p,
.bg-gradients .blog-collection-items .blog-item-preview, .blog-related-feed .blog-item-preview .h3
 {
	color: #000000 !important;
}



/* .fields ul li:nth-child(1):before { */
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	/* display: inline-block; */
	/* text-rendering: auto; */
	/* -webkit-font-smoothing: antialiased; */

	/* Zet Font Awesome als lettertype. */
	/* font: var(--fa-font-solid); */
	/*
	  Andere opties zijn:
	  font: var(--fa-font-brands);
	  font: var(--fa-font-duotone);
	  font: var(--fa-font-light);
	  font: var(--fa-font-regular);
	  font: var(--fa-font-thin);
	*/

	/* Zet icoon code als content. Zie de Font Awesome Gallery voor alle icoon codes. */
	/* content: "\f276"; */
	/* margin-right:1rem; */
	/* font-size:1.5rem; */
  /* } */

 /* .fields ul li:nth-child(1):before { */
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	/* display: inline-block; */
	/* text-rendering: auto; */
	/* -webkit-font-smoothing: antialiased; */

	/* Zet Font Awesome als lettertype. */
	/* font: var(--fa-font-regular); */
	/*
	  Andere opties zijn:
	  font: var(--fa-font-brands);
	  font: var(--fa-font-duotone);
	  font: var(--fa-font-light);
	  font: var(--fa-font-solid);
	  font: var(--fa-font-thin);
	*/

	/* Zet icoon code als content. Zie de Font Awesome Gallery voor alle icoon codes. */
	/* content: "\e001"; */
	/* margin-right:1rem; */
	/* font-size:1.5rem; */
  /* } */



  div[data-partial="text"] ul li {
	font-size: 1.1rem;
	font-weight: 300;
  }