/* VARIABELEN */
:root {
    /*De kleuren worden ingeladen binnen header.php, de kleuren zijn in te stellen binnen Thema opties*/
	--standaard-font-size: 1.5rem;
	--standaard-line-height: 170%;

	/*wordt gebruikt bij p, ul etc. in content*/
	--standaard-margin-bottom: 3rem;

	--text-color: var(--color-wit);
	--link-color: var(--color-wit);
	--link-hover-color: var(--color-wit);
}

html {
	height: 100%;
	font-size: 62.5%;
}

body { 
	/* font-family: "Source Sans 3", sans-serif; */
	
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
}

/* TEKST */
h1, .h1, h2, .h2, h3, .h3 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
    font-weight: 700;
}
h1, .h1 {
	font-size: clamp(3.5rem, 4vw, 7.6rem);
    font-weight: 100;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}
h2, .h2 {
	position: relative;
	font-size: clamp(3rem, 4vw, 4.2rem);
    font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
h2.lijn_onder::after,
.h2.lijn_onder::after {
	content: "";
	width: 8.5rem;
	height: 0.1rem;
	background-color: var(--color-grijs);
	display: block;
	margin: 3.5rem auto 0;
}
h3, .h3 {
	font-size: clamp(2.5rem, 4vw, 4.4rem);
    font-weight: 100;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
h4, .h4 {
	font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 1rem;
} 

.button,
.button:hover,
.button:focus,
.mce-content-body a.button[data-mce-selected] {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-wit);
    font-weight: 700;
	background-color: var(--color-oranje); 
    padding: 13px 30px 13px;
	letter-spacing: 1px;
	border-radius: 25px;
	text-align: center;
	outline: none;
	border: none;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.button::before {
	content: "";
	position: absolute;
	background-color: inherit;
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: 0 25px 25px 0;
	-webkit-transition: width 0.2s ease-in-out;
	transition: width 0.2s ease-in-out;
}
.button.button-groen::before {
	background-color: var(--color-oranje);
}
.button.button-oranje::before {
	background-color: var(--color-groen);
}
.button:hover,
.button:focus {
	color: var(--color-wit) !important;
}
.button::after {
	content: "\f054";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
	font-family: "Font Awesome 6 Sharp";
	font-weight: 700;
	margin-left: 1.2rem;
	-webkit-transition: margin 0.2s ease-in-out;
	transition: margin 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}
.button .button_content {
	position: relative;
	z-index: 1;
}
.button:hover::before {
	width: 100%;
}
.button:has( + br + a) {
	margin-bottom: 1.6rem;
}
ul li > ul.checklist {
	margin-top: 0;
}
ul.checklist {
    padding: 0 !important;
    list-style: none;
}
ul.checklist li {
	position: relative;
    padding-left: 1.8rem;
}
ul.checklist li:before {
	content: "✓";
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.5rem;
}

blockquote {
	padding: 6rem 3rem;
	background-color: var(--color-zwart);
	margin-top: var(--contentblok-margin-y);
	margin-bottom: var(--contentblok-margin-y);
}
blockquote p {
	margin: 0;
	color: var(--color-black);
	font-size: 1.6rem;
	font-style: italic;
	letter-spacing: normal;
	line-height: 2.4rem;
}
blockquote p + p {
	margin-top: var(--standaard-margin-bottom);
}

a.link_met_pijl,
a.link_met_pijl:hover,
a.link_met_pijl:focus {
    position: relative;
}
a.link_met_pijl:after {
    content: "";
}


@media (min-width: 768px) {
	.button:has( + br + a) {
		margin-bottom: 0;
		margin-right: 1.2rem;
	}
	.button:has( + br + a) + br {
		display: none;
	}
}
@media (min-width: 992px) {
	h2.lijn_onder::after,
	.h2.lijn_onder::after {
		margin: 3.5rem auto 0;
	}
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
	
}

@media (min-width: 1920px) {
	
}

@media (min-width: 2560px) {
	
}