.teamBlokken{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.teamBlokken .teamBlok{
	width: calc(33% - 30px);
	position: relative;
	margin: 30px 15px 120px;
	padding-bottom: 80px;
	background-color: var(--themeGreen-light);
}
.teamBlokken .teamBlok:nth-of-type(even){
	background-color: var(--themeGreen-light2);
}
@media screen and (max-width:1200px){

	.teamBlokken .teamBlok{
		width: calc(50% - 30px);
	}

}
@media screen and (max-width:800px){
	.teamBlokken .teamBlok{
		width: calc(100%);
		margin: 30px 0 120px;
	}
}

.teamBlokken .teamBlok .teamContent{
	padding: 50px 40px 30px 40px;
	color: var(--themeText);
	margin-bottom: 5px;
}
.teamBlokken .teamBlok .teamContent h2{
	text-transform: uppercase;
	text-align: center;
	color: var(--themeBlue);
}
.teamBlokken .teamBlok .teamContent p{
	color: var(--themeText);
	font-size: 16px;
	/*text-align: justify;*/
}
.teamBlokken .teamBlok .iconHolder{
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    transform: translateY(50%) translateX(-50%);
    background-position: top center;
    background-size: 100%;
}