/* 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: 125%;

	/*wordt gebruikt bij p, ul etc. in content*/
	--standaard-margin-bottom: 2.5rem;

	--text-color: var(--color-zwart);
	--link-color: var(--color-zwart);
	--link-hover-color: var(--color-zwart);
}

html {
	height: 100%;
	font-size: 62.5%;
}

body { 
    font-family: "aktiv-grotesk", sans-serif;
	font-weight: 300;
}

/* TEKST */
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 100%;
}
h1, .h1 {
	font-size: clamp(3.5rem, 5vw, 6rem);
	margin-bottom: 1.5rem;
}
h2, .h2 {
	font-size: clamp(3.5rem, 5vw, 7rem);
	margin-bottom: 1rem;
}
h3, .h3 {
	font-size: clamp(2.5rem, 4vw, 5.2rem);
	margin-bottom: 1rem;
}
h4, .h4 {
	font-size: clamp(2rem, 4vw, 2.4rem);
	margin-bottom: 1rem;
	line-height: 115%;
}
p.tekst_groter {
    font-size: 125%;
    line-height: 115%;
}
p + p > .button {
    margin-top: 2rem;
}

.button,
.button:hover,
.button:focus,
.mce-content-body a.button[data-mce-selected],
.gform_button {
	display: inline-block;
	color: var(--color-wit);
	background-color: var(--color-blauw);
    font-weight: 400;
    padding: 15px 18px 15px 18px;
	text-align: center;
	outline: none;
	text-decoration: none;
	cursor: pointer;
}
.button::after,
.gform_button::after {
    display: inline-block;
    margin-left: 1.2rem;
    content: "\f061";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.button-groen {
    border: 1px solid var(--color-groen);
}
.button-groen:hover {
    border: 1px solid #fff;
}
.button:hover,
.button:focus,
.gform_button:hover,
.gform_button:focus {
	background-color: var(--color-groen);
    color: var(--color-blauw);
    -webkit-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.button:hover::after,
.button:focus::after,
.gform_button:hover::after,
.gform_button:focus::after {
    margin-left: 1.7rem;
}
a.button-blauw-groen {
    padding: 0px 0px 0px 20px;
}
a.button-blauw-groen:hover {
    padding: 0px 0px 0px 20px;
}
a.button-blauw-groen::after {
    background-color: var(--color-groen);
    color: var(--color-blauw);
    padding: 15px;
}

ul.checklist {
    padding: 0 !important;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}
ul.checklist li {
	position: relative;
    padding-left: 2.5rem;
}
ul.checklist li:before {
	content: "\f00c";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 400;
    -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;


    position: absolute;
    left: 0;
    top: 0.2rem;
}

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.button-wit {
    border: 1px solid var(--color-blauw);
}
a.link_met_pijl {
    text-decoration: none;
}
a.link_met_pijl::before {
    content: "\f054";
    font-size: 80%;
    position: relative;
    font-family: "Font Awesome 6 Sharp";
    font-weight: 400;
    margin-right: 0.8rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a.link_met_pijl,
a.link_met_pijl:hover,
a.link_met_pijl:focus {
    position: relative;
}
a.link_met_pijl:hover:before {
    margin-right: 1.2rem;
}
a.button-werkenbij::after {
    transform: rotate(-45deg);
}
a.button-werkenbij:hover::after {
    transform: rotate(0deg);
}


/***********************************************
TABLET
***********************************************/
@media (min-width: 768px) {
	/* VARIABELEN */
    :root {
        --contentblok-margin-top: 10rem;	
	    
    }
    /* Standaard WP classes */
    .alignleft {
        float: left;
        margin: 0 2rem 2rem 0;
    }
    .alignright {
        float: right;
        margin: 0 0 2rem 2rem;
    }
    .alignnone {
        display: block;
    }
	h1, .h1 {
		margin-bottom: 2.5rem;
	}
    h2, .h2 {
        margin-bottom: 5rem;
    }
    
}

@media (min-width: 992px) {
	/* VARIABELEN */
    :root {
        --standaard-font-size: 1.8rem;
        --standaard-margin-bottom: 3.5rem;
    }
    p + p > .button {
        margin-top: 2rem;
    }
}


/***********************************************
DESKTOP
***********************************************/
@media (min-width: 1200px) {
    :root {
        --container: 1120px;
    }
    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        max-width: var(--container);
    }
}

@media (min-width: 1400px) {
    :root {	
        --container: 1320px;
        --standaard-font-size: 2.0rem;
        --standaard-margin-bottom: 3.5rem;
    }
    p + p > .button {
        margin-top: 2rem;
    }
    p.tekst_groter {
        --standaard-margin-bottom: 6rem;
    }
    .button,
    .button:hover,
    .button:focus,
    .mce-content-body a.button[data-mce-selected] {
        font-size: 2.2rem;
    }
    h2, .h2 {
        margin-bottom: 9.5rem;
    }
    ul.checklist li:before {
        top: 0.4rem;
    }
}

@media (min-width: 1920px) {
    :root {
        --container: 1620px;
    }
    
}

@media (min-width: 2560px) {
    :root {	
        --container: 2260px;
    }
}