/*  */
/*  GENERAL STYLEs */
/*  */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

:root {
	--primary-1: #d5dcd5;
	--primary-2: #abb8ab;
	--primary-3: #809580;
	--primary-4: #567156;
	--primary-5: #2c4e2c;
	--primary-6: #233e23;
	--primary-7: #1a2f1a;
	--primary-8: #121f12;
	--primary-9: #091009;

	--accent-1: #e5d199;
	--accent-2: #ecba2f;
	--accent-3: #be8c00;
	--accent-4: #725400;
	--accent-5: #4b3702;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto-sans", sans-serif;
	scroll-behavior: smooth;

}

::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: white;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: var(--primary-5);
	border-radius: 5px;
	
}
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: var(--accent-3);
  }

/*  */
/* ALGEMENE STYLES */
/*   */

:root {
	--transition: all 0.3s linear;
	--spacing: 0.25rem;
	--radius: 0.5rem;
}

html {
	scroll-behavior: smooth;
	scrollbar-color: var(--primary-6) white;

	/* scrollbar-: 5px; */
}

body {
	line-height: 1.5;
	font-size: 0.875rem;
}

.main-body{
	min-height: calc(100vh - 180px);
	margin-top: 90px;
}

.bedankt{
	display:grid;
	place-items: center;
	text-align: center;
	background: white;
}

.bedankt .over-wel-heading{
	background: white;

}
a {
	color: var(--primary-6);
	font-weight: bold;
}

img {
	width: 100%;
	display: block;
}

h1,
h2,
h3
{
	letter-spacing: var(--spacing);
	text-transform: capitalize;
	margin-bottom: 0.75rem;
	line-height: 1.25;
}

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1rem;
	letter-spacing:0.1rem;
}

p {
	margin-bottom: 1.25rem;
}

@media screen and (min-width: 800px) {
	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.5rem;
	}

	h3 {
		font-size: 2rem;
	}

	h4 {
		font-size: 1rem;
	}

	body {
		font-size: 1rem;
	}

	h1,
	h2,
	h3,
	h4,
	h5 {
		line-height: 1;
	}
}
/* 
============================
More global CSS 
============================
*/

.btn {
	text-transform: uppercase;
	background: var(--clr-primary);
	color: white;
	padding: 0.5rem .875rem;
	letter-spacing: var(--spacing);
	display: inline-block;
	font-weight: 700;
	transition: var(--transition);
	font-size: 0.875rem;
	border: none;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover {
	color: var(--clr-primary);
	background: transparent;
	
	border: unset;
	border-radius: none;
}

.clearfix::after,
.clearfix::before {
	content: '';
	clear: both;
	display: table;
}

.btn {
	text-transform: uppercase;
	background: var(--primary-7);
	color: var(--primary-1);
	padding: 0.5rem .875rem;
	letter-spacing: var(--spacing);
	display: inline-block;
	font-weight: 700;
	transition: var(--transition);
	font-size: 0.875rem;
	border: none;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover {
	color: var(--primary-1);
	background: var(--clr-primary-light);
	transform: scale(1.4);
}

/*  */
/*  NAVBAR */
/*  */

.nav-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: var(--primary-6);
	z-index: 2000;
}



span {
	font-size: 2rem;
	font-weight: bold;
}

.logo {
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: var(--primary-1);
	letter-spacing: 2px;
	font-size: 1rem;
	padding: 3rem 3rem;
}

.logo p {
	padding: 0;
	margin: 0;
	font-weight: bold;
	font-size: 1.3rem;
	min-width: 180px;
}

.logo p:last-of-type {
	color: var(--accent-3);
}

.logo-klein {
	opacity: 0%;
	position: absolute;
}

.nav-links {
	display: flex;
	width: 40%;
	justify-content: space-evenly;
	list-style: none;
}

.nav-links a {
	color: var(--primary-1);
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;
	padding: auto;
	transition: 0.5s ease-in-out;
	padding-bottom: 5px;
}

.nav-links a:hover {
	color: var(--accent-3);
	border-bottom: 4px solid;
	transform: scale(1.2);
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background: var(--primary-1);
	margin: 5px 5px;
	transition: all 0.5s ease;
}

@media screen and (max-width: 1200px) {
	.nav-links {
		width: 100%;
	}
}

@media screen and (max-width: 820px) {
	body {
		overflow-x: hidden;
	}
	.nav-links {
		position: absolute;
		width: 100vw;
		height: 100vh;
		top: 90px;
		background-color: inherit;
		justify-content: center;
		gap: 7.5vh;
		padding-bottom: 100px;
		display: flex;
		flex-direction: column;
		align-items: center;
		transform: translateX(-110%);
		transition: transform 0.5s ease-in;
		z-index: 12;
	
	}
	.nav-links li {
		opacity: 0;
	}
	.burger {
		display: block;
		margin-right: 2rem;
	}

	.banner h2 {
		font-size: 2rem;
	}

	.banner a {
		font-size: 1rem;
	}

	.banner a:hover {
		transform: scale(1.2);
	}
}

.nav-active {
	transform: translateX(0%);
}

@keyframes navLinkFade {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}

.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
	opacity: 0;
}
.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}

/*  */
/* INTO FOTO */
/*  */

.header {
	height: calc(100vh - 90px);
	width: 100%;
	background: linear-gradient(rgba(7, 7, 7, 0.1), rgba(7, 7, 7, 0.6)), url('images/foto-skyline.jpeg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}

.text-hoofdpagina {
	place-self: center;
	color: var(--primary-1);
	font-size: 2rem;
	padding: 3rem;
}

.banner {
	width: 100%;
	position: absolute;
	top: 60%;
	text-align: center;
	color: white;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 2px 2px 2px black;
}

.banner-btn {
	outline: 0.125rem solid var(--clr-primary);
	outline-offset: 0.25rem;
	font-size: 1.5rem;
	padding: 0.5rem 2rem;
	max-width: 85vw;
	background: var(--accent-3);
	color: white;
	border: 1px solid black;
	border-radius: 5rem;
	text-decoration: none;
}

/* Iets kleinere letters voor mobile */
@media screen and (max-width: 768px){
	.banner h1 {
		font-size: 3rem;
	}
	
		.banner-btn {
		outline: 0.125rem solid var(--clr-primary);
		outline-offset: 0.25rem;
		font-size: 1.5rem;
		padding: 0.5rem 2rem;
		background: var(--accent-3);
		color: white;
		border: 1px solid black;
		border-radius: 5rem;
		text-decoration: none;

	}
}


/*   */
/* OVER WEL  */
/*   */

article.over-wel {
	color: var(--primary-8);
	background: var(--primary-1);
}

.over-wel * {
	padding: 0.5rem;
	max-width: 1050px;
	width: 85vw;
	margin: auto;
}

.over-wel h2{
	margin-bottom: 1.5rem;
}

.over-wel h4{
	margin-top: 1.5rem;
}

.over-wel-heading {
	margin-bottom: 2rem;
	padding: 3rem 2rem;
	background: white;
}

.over-wel a{
	padding: 0;
}

/*  */
/*  DAAROM WEL */
/*   */

.daarom-wel * {
	color: var(--primary-8);
}

.daarom-wel-p {
	padding-top: 0.25rem;
	padding-bottom: 1rem;
	font-size: 1rem;
}

.daarom-wel * {
	max-width: 1250px;
	margin: auto;
}

.daarom-wel-heading {
	background: white;
	margin: 1rem;
}

p.daarom-wel-into{
	padding: 1rem;

}


.daarom-wel-title {
	padding: 2rem 0 1rem 0;
}

.outer-container-daarom-wel{
	padding: 0;
	padding-top: 0rem;

}

.daarom-wel-feature-img{
	height: 250px;
	background: url(/images/code_active.jpg);
	background-size: cover;	
}


.daarom-wel-card, .vacature-button {
	position: relative;
	width: 95%;
	max-width: 600px;
	margin: auto;
	border: 2px solid var(--primary-7);
	margin: 1rem auto;
	border-radius: 15px;
	box-shadow: 5px 5px 2px var(--primary-7);
	transition: all 0.5s ease-in-out;
	overflow: hidden;	
}

.daarom-wel-card:hover {
	box-shadow: 10px 10px 4px var(--primary-7);
}

.benefit{
	display: grid;	
	grid-auto-flow: column;
	grid-template-columns: 50px auto;
}

.benefit-vinkje i{
	display: grid;
	place-items: center;
	background: var(--primary-1);
	height: 30px;
	width: 30px;
	border-radius: 50px;
	border: 1px solid var(--primary-6);
}

.benefit-opsomming{
	padding: 0.5rem;
}

.groene-achtergrond {
	background: var(--primary-7);
	color: var(--primary-1);
	border-radius: 5px;
}

.daarom-wel-card * {
	width: 100%;
}
.daarom-wel-card img {
	position: relative;
	padding: 1;
	margin: 0;
	height: 150px;
	object-fit: cover;
	background: var(--primary-1);
	border-bottom: 3px solid var(--primary-7);
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
}

.daarom-wel-card::before{
	content: " ";
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 250px;
	background: rgba(35, 62, 35, 0.2);
	z-index: 234;

}

/* Iets grotere foto bij groter scherm */
@media screen and (min-width: 1200px){
	.daarom-wel-card img{
		height: 250px;
	}
}


img.coach-bb{
	object-position: center 70%;
}


.daarom-wel-card p {
	text-align: left;
	font-size: 1rem;
}

.daarom-wel-card h3 {
	border-bottom: 3px solid var(--primary-7);
	text-align: center;
	height: 95px;
	display: grid;
	place-items: center;
	padding: 0 1rem;
}

.button-flexbox {
	margin: 1.5rem 0rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	width: 100%;
	text-decoration: none;

}

.daarom-wel-card button, button.daarom-wel-card, .bedankt-container button {
	display: block;
	margin-inline: auto;
	width: 85%;
	max-width: 400px;
	background: var(--primary-2);
	color: var(--primary-8);
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	transition: all 0.5s ease-in-out;
	padding: 1rem 0 0.75rem 0;
	/* margin-bottom: 1rem; */
	border-radius: 25px;
	border: 1px solid var(--primary-6);
	box-shadow: 3px 3px 2px var(--primary-7);
}

.daarom-wel-card button:hover,button.daarom-wel-card:hover, .bedankt-container button:hover {
	background-color: var(--accent-3);
	color: white;
	box-shadow: 5px 5px 2px var(--accent-5);
}

.daarom-wel-voordelen {
	border-top: 3px solid;
	padding-top: 1rem;
	border-image: linear-gradient(to right, var(--primary-6), var(--accent-3)) 1;
}

/*   */
/* FLEXBOX AND MEDIA QUERY */
/*  */

@media screen and (min-width: 800px) {
	.outer-container-daarom-wel {
		margin-top: 2rem;
		margin: auto;	
		padding-left: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.daarom-wel-card {
		flex: 1 1 350px;
		max-width: 450px;
		margin: 0.5rem;
		display: flex;
		flex-direction: column;
	}

	.daarom-wel-card p {
		flex-grow: 1;
	}
}

.uitgelichte-vacatures{
	text-align: center;
	margin: 2rem auto;
}

a .overige-vacatures{
	margin-top: 2.5rem;
	text-align:center;
}


.opdracht h3{
	background: var(--primary-7);
	color: var(--primary-1);
	margin-bottom: 2rem;
}

.daarom-wel-card h3{
	background: var(--primary-7);
	color: var(--primary-1);
}

@media screen and (min-width: 882px) {
	.opdracht h3,
	.daarom-wel-card h3 {
		height: 140px;
	}
}

@media screen and (min-width: 1308px) {
	.opdracht h3,
	.daarom-wel-card h3 {
		height: 95px;
	}
}

@media screen and (min-width: 1600px) {
	.outer-container-daarom-wel {
		max-width: 1450px;
	}

	.daarom-wel-card {
		flex: 1 0 250px;
		margin: 0.5rem;
	}
}

.callcenter {
	object-position: 40% 20%;
}
.salaris,
.ervaring,
.standplaats,
.uren, 
.periode{
	background-color: var(--primary-1);
	color: var(var(--primary-9));
	font-weight: bold;
	border-bottom: 2px solid var(--primary-5);
	text-align: center;
	width: 100%;
}

.ervaring {
	padding-top: 0.25rem;
	margin-top: -2rem;
}
.uren {
	margin-bottom: 0.5em;
}

/*  Dropdown voor vacature formulier  */

.accordion-item-header{
	background: var(--accent-1);
	padding: 1rem 1rem;
	text-align: center;
	position: relative;
	display: grid;
	place-items: center;
     border-bottom: 1px solid var(--primary-6); 
	 font-weight: bold;
}



/* Accordion  */
.accordion-item-header::after{
	font-size: 2rem;
	content: "\002B";
	position: absolute;
	right: 1rem; 
	/* transform:translateY(-25%); */
	transition: all 0.45s;
}

.accordion-item-header.active::after{
	/* content: "\2212"; */
	transform: rotate(135deg);
}

.volledige-vacaturetekst-header{
	background: var(--primary-1);
	text-align: center;
}

@media screen and (max-width: 400px){
	.volledige-vacaturetekst-header{
		padding-right: 3rem;
	}
}


.volledige-vacaturetekst-info {
	max-height: 450px;
	overflow-y: scroll;
	padding: 0;
	/* padding-bottom: 1rem; */
}

.volledige-vacaturetekst-info p{
	padding: 1;
}


.volledige-vacaturetekst-info *:not("<b>"){
	padding: 0rem 1rem;

}

.volledige-vacaturetekst-info li{
	margin-left: 1rem;
}
.accordion-item-body{
	transition: max-height 0.2s linear;
	max-height: 0;
	overflow:hidden;
}

.accordion-item-body-content{
	background: var(--primary-1);
	padding: 1.5rem 2rem;
}

.accordion-item-body-content input, .accordion-item-body-content textarea{
	border: 0;
	border-radius: 10px;
	padding: 1rem;
	font-size: 16px;
}

.accordion-item-body-content input{
	border-radius: 5px;
	height: 1.5rem;
}

.vacature-card p {
	padding: 1rem;
}

@media screen and (min-width: 795px){
	.vacature-card{
		align-self: flex-start;
		min-height: 720px;
	}
}

.form-vacature input, .form-vacature textarea{
	background: white;
	margin-bottom: 1rem;
}

.form-vacature button{
	margin: auto;
}

.form-vacature{
	padding: 0 1rem 1rem 1rem;
}

/*  */
/* CONTACT  */
/*  */
.contact {
	background: var(--primary-1);
	margin: auto;
	padding: 2rem;
	color: var(--primary-8);
}

/* .contact h2,
.contact p {
	width: 600px;
	max-width: 85vw;
	margin: 0.5rem auto;
} */

.contactinfo-div{
	padding: 2rem;
}


.contact-formulier-div{
	background: white;
	max-width: 600px;
	border-radius: 2rem;
	margin: auto;
	border: 1px solid var(--primary-6);

}

.contact-formulier-div h2, .contact-formulier-div h3 {
	text-align: center;
	padding: 2rem;

}

form {
	width: 600px;
	max-width: 85vw;
	margin: 1rem auto;
	border-radius: 2rem;
	padding: 2rem;
	padding-top: 0rem;
}

form li {
	list-style: none;
}
form input {
	display: block;
	max-width: 100%;
	width: 100%;
	margin: 0rem auto;
	margin-bottom: 0.75rem;
	border-radius: 5px;
	height: 2rem;
	background: #d5dcd57d;
	border: 0;
}

textarea {
	width: 100%;
	background: #d5dcd57d;
	border: 0;
	
}

/* FLEXBOX voor grotere schermen  */

@media screen and (min-width: 1200px){
	.contactpagina-div{
		margin: auto;
		display: grid;
		grid-auto-flow: column;
		grid-template-columns: 1fr 1fr;
		column-gap: 2rem;
			
		width: 90vw;
		max-width: 1200px;
	}

	form {
		width: 100%;
		max-width: 600px;
	}
}

.submit {
	width: 100%;
	color: var(--primary-1);
	background: var(--primary-6);
	font-size: 1rem;
	font-weight: bold;
	font-style: inherit;
	margin: 1rem auto;
	padding: 0.5rem;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}

.submit:hover {
	color: black;
	background: var(--accent-3);
}

.foto-brug {
	width: 300px;
	height: 300px;
	margin: 2rem 2rem;
	display: none;
}

.foto-brug img {
	width: 100%;
	height: 100%;
	margin: 2rem 0rem;
	padding: 1rem;
	border-radius: 50%;
}

.foto-brug h3 {
	text-align: center;
}

@media screen and (min-width: 1000px) {
	.foto-brug {
		display: block;
		margin-left: -2rem;
	}

	.fotos-flex {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.contact-flex {
		display: flex;
		justify-content: space-evenly;
	}
}

@media screen and (min-width: 1500px) {
	.foto-brug {
		margin: 0rem 5rem;
		padding: 0;
	}
	.contact-flex {
		justify-content: center;
	}
}

/*  */
/* PROCESSEN */
/*  */

.section-title{
	text-align:center;
	width: 80%;
	max-width: 1170px;
	margin: auto;
}


/* section */
.section {
    padding: 3rem 0;
}

.section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
}

@media screen and (min-width: 992px) {
    .section-center {
        width: 95vw;
    }
}

.timeline .underline{
    margin-bottom: 2rem;
}

.timeline-center{
    width:80%;
    max-width: 40rem;
}

.timeline-item{
    border-top: 2px dashed var(--primary-6);
    margin: 0;
    padding: 3rem 2.5rem;
    position: relative;
}

.timeline h4{
    color: var(--primary-4);
	margin: 0.5rem 0;
}

.timeline p{
    margin-bottom: 0;    
}

 .timeline-item:nth-child(even){
    border-left: 2px dashed var(--primary-6);
    border-top-left-radius: 2rem; 
    border-bottom-left-radius: 2rem;
    margin-right: 2rem;
    padding-right: 0;
}


.timeline-item:nth-child(odd){
    border-right: 2px dashed var(--primary-6);
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    margin-left: 2rem;
    padding-left: 0;
}

.timeline-item:nth-child(5){
    border-bottom-right-radius: 0rem;    
}

.number{
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary-2);
    transform:translate(-50%, -50%);
    font-weight: 400;
    display: grid;
    place-items: center;
	font-size: 1rem;
}

.timeline-item:nth-child(odd) .number{
 left: 100%;
}

#naam-deel-1{
    color: black;
}

#naam-deel-2{
    color: var(--dark_blue);
}


/*  */
/*  FOOTER   */
/*  */

.nav-footer {
	background: var(--primary-6);
	color: var(--primary-1);
	text-align: center;
	height: 90px;
	display: grid;
	place-items: center;
	color: white;
	padding: .5rem;

}

.nav-footer nav a{
	color: white;
	font-size: 1.5rem;
	padding: 0 1rem;
}

.footer-text span{
	font-size: 1rem;
}

.footer-text.toetsenbordheld{
	font-size: 13px;
}

#toetsenbordheld-link{
	color: white;
	font-style: italic;

}

/*  */
/* Bedankt pagina */
/*  */

.bedankt-container{
	padding: 0;
}

.bedankt-container button{
	padding: 1rem 0;
	width: 50vw;
	margin: 1rem 2rem 1rem 2rem;
	border: 2px solid var(--primary-6);
	font-size: 1rem
}


