/**
 * Stylesheet for custom styling.
 */

:root {
	--primary: #184b7f;
	--primary-dark: #14406D;
	--secondary: #e5007d;
}

::selection {
    color: #fff;
    background-color: var(--secondary);
}

p {
	margin-block-start: 0;
	margin-block-end: 1.4rem;
}

.elementor-button {
	position: relative;
	margin-right: 54px;
	padding: 18px 28px;
	border-radius: unset;
	background-color: var(--primary);
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
}

/* .elementor-button::before {
	content: '';
	position: absolute;
	top: -1px;
	right: 0;
	width: 12px;
	height: 100%;
	height: calc(100% + 2px);
	background-color: #fff;
	clip-path: polygon(90% 0, 100% 0, 100% 100%, 0% 100%);
}

.elementor-button::after {
	content: url( '../media/arrow-pink.svg' );
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -53px;
	top: 0;
	width: 54px;
	height: 54px;
	background-color: #fff;
	line-height: 1px;
} */

/*
 * Menu
 */
#header {
	height: 76px;
	background-color: #fff;
	overflow: hidden;
	position: static;
	z-index: 9;
}

.header-wrapper {
	display: flex;
	gap: 24px;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
}

.header-logo {
	width: 20%;
}

.header-logo .custom-logo-link {
	display: block;
}

.header-logo .custom-logo-link img {
	display: block;
	max-width: 215px;
	position: relative;
	top: -3px;
}

.header-nav {
	display: flex;
	justify-content: center;
	width: 60%;
}

.header-nav .menu {
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header-nav .menu .menu-item a {
	font-size: 18px;
	font-family: 'Noto Sans', sans-serif;
	color: var(--primary);
}

.header-nav .menu > .menu-item > a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-nav .menu > .current-menu-item > a {
	font-weight: 700;
}

.header-nav .menu > .current-menu-item > a::before {
	content: '';
	width: 8px;
	height: 24px;
	background-color: #B7C1D1;
	clip-path: polygon(3px 0, 6px 0%, 3px 100%, 0% 100%);
	line-height: 1px;
}

.header-nav .menu > .menu-item-has-children > a::after {
	content: url('../media/arrow-blue.svg');
	line-height: 1px;
	opacity: .4;
	transition: opacity .4s ease-in-out;
}

.header-nav .menu > .menu-item-has-children:hover > a::after {
	opacity: 1;
}

.header-nav .sub-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header-nav .menu .sub-menu-depth-0 {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background-color: var(--primary-dark);
	z-index: -1;
	transition: all .6s ease-in-out;
	opacity: 0;
	transform: translateY(-100%);
	visibility: hidden;
}

.header-nav .menu > .menu-item:hover > .sub-menu-depth-0 {
	opacity: 1;
	transform: translateY(0%);
	visibility: visible;
}

.header-nav .menu .sub-menu-depth-0 > .sub-menu {
	display: -webkit-box;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
	padding: 60px 10px;
}

.header-nav .menu .sub-menu-depth-0 > .sub-menu > .menu-item > a {
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #B7C1D1;
	text-transform: uppercase;
}

.header-nav .menu .sub-menu-depth-1 {
	padding-top: 24px;
}

.header-nav .menu .sub-menu-depth-1 > .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.header-nav .menu .sub-menu-depth-1 > .sub-menu > .menu-item > a {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
}

.header-nav .menu .sub-menu-depth-1 > .sub-menu > .menu-item > a::before {
	content: url('../media/arrow-right-grey.svg');
	line-height: 1px;
}

#menu-item-4754 > a {
	visibility: hidden;
}


#menu-item-3861 > a,
#menu-item-4740 > a {
	display: none;
}

#menu-item-3861 > .sub-menu-wrapper,
#menu-item-4740 > .sub-menu-wrapper {
	padding-top: 0;
}

/* SUBMENU UITZONDERING */
@media ( min-width: 991px ) {
	#menu-item-4740,
	#menu-item-3861 {
    	grid-column: 1 / 5;
		align-items: center;
		justify-items: center;
	}

	#menu-item-3861 > .sub-menu-wrapper,
	#menu-item-4740 > .sub-menu-wrapper {
		width: fit-content;
		margin: auto;
	}

}

/*
 * Menu: Search
 */
.header-search {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	width: 20%;
	height: 100%;
}

#header .header-search::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f9f9;
    -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, calc(100% - 15px) 100%);
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, calc(100% - 15px) 100%);
}

.header-search::after {
	content: '';
	position: absolute;
    left: calc(100% - 50px);
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: #f7f9f9;
}

.header-search .header-search-toggle {
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.header-search .header-search-toggle img {
	display: block;
}

.header-search .search-form {
	position: absolute;
	left: calc(100% - 50px);

	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 20px;

	width: 400%;
	height: 76px;

	padding-left: 20px;

	background-color: #f7f9f9;
	
	transition: all .4s ease-in-out;
}

.header-search .search-form::before {
	content: '';
    position: absolute;
    left: -19px;
    top: 0;
    width: 20px;
    height: 100%;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    background-color: #f7f9f9;
}

.header-search.active .search-form {
	left: -300%;
}

#header .search-form label {
	width: 100%;
}

#header .search-form .search-field {
	width: 100%;
	max-width: unset;
	padding: 0;
	border: 0;
	background-color: transparent;
	outline: unset !important;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	color: rgba(24, 75, 127);
}

#header .search-form .search-field::placeholder {
	color: rgba(24, 75, 127, .5);
}

#header .search-form .search-submit {
	display: block;
	padding: 0;
	border: 0;
	background-color: transparent;
	outline: unset !important;
	cursor: pointer;
	opacity: .2;
}

#header .search-form .search-submit img {
	display: block;
}

.header-search .header-nav-toggle {
	display: none;
	/* width: 24px; */
	/* height: 24px; */
	/* background-color: blue; */
	z-index: 1;
}

.header-search .header-nav-toggle::before {
	content: '';
	display: block;
	top: 0;
	position: relative;
	width: 28px;
	height: 4px;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
}

.header-search .header-nav-toggle::after {
	content: '';
	display: block;
	bottom: 0;
	position: relative;
	width: 28px;
	height: 4px;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
}

.header-search .header-nav-hamburger {
	display: block;
	width: 28px;
	height: 4px;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
}

.header-search .header-nav-toggle.active::before {
	top: 10px;
	transform: rotate(-45deg);
}

.header-search .header-nav-toggle.active::after {
	bottom: 10px;
	transform: rotate(45deg);
}

.header-search .header-nav-toggle.active .header-nav-hamburger {
	opacity: 0;
}

@media ( max-width: 991px ) {
	.header-wrapper {
		justify-content: space-between;
	}

	.header-nav {
		position: absolute;
		left: 0;
		top: 76px;
		justify-content: flex-start;
		width: 100%;
		padding: 20px 10px;
		background-color: var(--primary-dark);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .4s ease-in-out;
		z-index: -1;
	}

	.header-nav.active {
		opacity: 1;
		transform: translateY(0%);
	}

	.header-nav > div {
		width: 100%;
	} 

	.header-nav .menu {
		gap: 0;
		flex-direction: column;
	}

	.header-nav .menu > .menu-item {
		margin-bottom: 8px;
	}

	.header-nav .menu > .menu-item:last-child {
		margin: 0;
	}

	.header-nav .menu > .menu-item > a {
		margin-bottom: 8px;
		color: #fff;
	}

	.header-nav .menu > .menu-item:last-child > a {
		margin: 0;
	}

	.header-nav .menu > .menu-item-has-children > a::after {
		content: url('../media/arrow-right-grey.svg');
		opacity: 1;
		transform: rotate(90deg);
	}

	.header-nav .menu .sub-menu-depth-0 {
		display: none;
		position: unset;
		width: 100%;
		/* margin-top: 16px; */
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
		background-color: #fff;
		transition: unset;
	}

	.header-nav .menu .sub-menu-depth-0 > .sub-menu {
		gap: 8px;
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.header-nav .menu .sub-menu-depth-0 > .sub-menu > .menu-item > a {
		color: var(--primary-dark);
	}

	.header-nav .menu .sub-menu-depth-1 {
		padding-top: 8px;
		margin-bottom: 8px;
	}

	.header-nav .menu .sub-menu-depth-1 > .sub-menu {
		gap: 8px;
	}

	.header-nav .menu .sub-menu-depth-1 > .sub-menu > .menu-item > a {
		color: var(--primary);
		font-size: 16px;
	}

	.header-nav .menu .sub-menu-depth-1 > .sub-menu > .menu-item > a::before {
		content: url('../media/arrow-blue.svg');
		transform: rotate(-90deg);
	}

	#header .header-search::before {
		right: 86px;
	}

	.header-search::after {
		left: calc(100% - 86px);
	}

	.header-search .search-form {
		width: 300%;
	}
	
	.header-search.active .search-form {
		left: -200%;
	}

	.header-search .header-nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	#menu-item-4754 > a {
		display: none;
	}

	#menu-item-4754 .sub-menu-wrapper {
		margin-top: -10px;
		padding-top: 0;
	}
}

@media ( max-width: 767px ) {
	.header-search .search-form {
		width: 500%;
	}
	
	.header-search.active .search-form {
		left: -400%;
	}
}

/*
 * Brandbox
 */
.brandbox-shape {
	position: relative;
}

.brandbox-shape::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	height: 100%;
	background-color: #133C66;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.brandbox-slope {
	position: relative;
}

.brandbox-slope::before {
	content: '';
	position: absolute;
	left: -99px;
	top: 0;
	width: 100px;
	height: 100%;
	background-color: var(--primary);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media ( max-width: 767px ) {
	.brandbox-slope::before {
		top: -49px;
		left: 0;
		width: 100%;
		height: 50px;
	}
}

.content-bg::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: calc( ( 1420px * .65 ) + ( ( 100vw - 1420px ) / 2 ) - 8px );
	height: 100%;
	background-color: #fff;
}

@media ( max-width: 1140px ) {
	.content-bg::before {
		width: calc( ( 100vw * .65 ) - 8px );
	}
}

@media ( max-width: 767px ) {
	.content-bg::before {
		width: 100%;
	}
}

/*
 * Button
 */
.streefkerk-button {
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.streefkerk-button.blue {
	border: 2px solid var(--primary);
}

.streefkerk-button.white {
	border: 2px solid #fff;
}

.streefkerk-button .streefkerk-button-text {
	position: relative;
	padding: 14px 28px;
	padding-right: 32px;
	background-color: var(--primary);
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 11px) 101%, 0% 101%);
	z-index: 2;
}

.streefkerk-button.white .streefkerk-button-text {
	background-color: #fff;
	color: var(--primary);
}

.streefkerk-button.ghost .streefkerk-button-text {
	padding-left: 0;
	padding-right: 12px;
	background-color: transparent;
}

.cta .streefkerk-button.ghost .streefkerk-button-text {
	padding-right: 12px;
	color: #184b7f;
}

.streefkerk-button.ghost-blue .streefkerk-button-text {
	padding-left: 0;
	padding-right: 12px;
	color: #184b7f;
	background-color: transparent;
}

.streefkerk-button .streefkerk-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 50px;
	height: 100%;
	z-index: 2;
}

.streefkerk-button.ghost .streefkerk-button-icon,
.streefkerk-button.ghost-blue .streefkerk-button-icon {
	width: 13px;
	transition: all .4s ease-in-out;
}

.streefkerk-button.white .streefkerk-button-icon path,
.streefkerk-button.ghost .streefkerk-button-icon path {
	fill: #fff;
}

.streefkerk-button.ghost-blue .streefkerk-button-icon path {
	fill: #184b7f;
}

/* Blue hover */
.streefkerk-button.blue::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 61px);
	height: 100%;
	clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 11px) 101%, 0% 101%);
	background-color: var(--primary);
	transition: all .4s ease-in-out;
}

.streefkerk-button.blue:hover::before {
	width: calc(100% + 11px);
}

.streefkerk-button.blue .streefkerk-button-icon path {
	transition: all .4s ease-in-out;
}

.streefkerk-button.blue:hover .streefkerk-button-icon path {
	fill: #fff;
}

/* White hover */
.streefkerk-button.white::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 61px);
	height: 100%;
	clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 11px) 101%, 0% 101%);
	background-color: #fff;
	transition: all .4s ease-in-out;
}

.streefkerk-button.white:hover::before {
	width: calc(100% + 11px);
}

.streefkerk-button.white .streefkerk-button-icon path {
	transition: all .4s ease-in-out;
}

.streefkerk-button.white:hover .streefkerk-button-icon path {
	fill: var(--primary);
}

@media ( max-width: 767px ) {
	.streefkerk-button .streefkerk-button-text {
		font-size: 16px;
	}
}

/* Ghost */
.streefkerk-button.ghost:hover .streefkerk-button-icon,
.streefkerk-button.ghost-blue:hover .streefkerk-button-icon {
	width: 40px;
}

/*
 * PDF Viewer
 */
.wp-block-file a {
	display: block;
	margin-bottom: 16px;
	font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.wp-block-file a.wp-element-button {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 14px 28px;
	padding-right: 83px;
	border-radius: 0;
    background-color: var(--primary);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.wp-block-file a.wp-element-button::before {
	content: '';
	position: absolute;
	border-top: 2px solid var(--primary);
	border-bottom: 2px solid var(--primary);
	right: 55px;
	top: 0;
	width: 12px;
	height: 100%;
	background-color: #fff;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.wp-block-file a.wp-element-button::after {
	content: url('../media/arrow-blue-right.svg');
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 55px;
	border: 2px solid var(--primary);
	border-left: 0;
	background-color: #fff;
	line-height: 1;
}

/*
 * Vacatures
 */
.vacatures {
	margin-bottom: 24px;
}

.vacature-vakgebied {
	display: block;
	margin-bottom: 16px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.33px;
	color: var(--primary);
}

.vacature-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px;
	border: 1px solid #e1e7e7;
	transition: all .4s ease-in-out;
}

.vacature-item:hover {
	border-color: #133C66;
	background-color: #133C66;
}

.vacature-item h3 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 24px;
}

.vacature-item span {
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.33px;
	color: #B7C1D1;
}

.vacature-item:hover h3,
.vacature-item:hover span,
.vacature-item:hover path {
	color: #fff;
	fill: #fff;
}

@media ( max-width: 767px ) {
	.vacature-item {
		padding: 24px;
	}

	.vacature-item h3 {
		font-size: 20px;
	}
}

/*
 * CTA
 */
.cta {
	display: flex;
}

.cta-right {
	flex-direction: row-reverse;
}

.cta-media {
	width: 50%;
	width: calc(50% + 50px);
}

.cta-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-content {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(50% - 50px);
}

.cta-right .cta-content {
	justify-content: flex-end;
}

.cta-content::before {
	content: '';
	position: absolute;
	left: -99px;
	top: 0;
	width: 100px;
	height: 100%;
	background-color: #fff;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.cta-right .cta-content::before {
	left: unset;
	right: -99px;
	clip-path: polygon(0 100%, 0 0, 100% 0);
}

.cta-content-container {
	width: 100%;
	max-width: 660px;
	padding: 48px;
	padding-right: 10px;
}

.cta-right .cta-content-container {
	padding-left: 10px;
	padding-right: 48px;
}

.cta-content-container h2 {
	margin-top: 0;
	margin-bottom: 24px;
}

.cta-content-container .streefkerk-button {
	/* margin-top: 24px; */
}

.cta-content-btns {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin-top: 24px;
}

@media ( max-width: 767px ) {
	.cta {
		flex-direction: column;
	}
	
	.cta-media { 
		width: 100%;
	}

	.cta-content {
		width: 100%;
		padding: 32px 16px;
	}

	.cta-right .cta-content::before,
	.cta-content::before {
		width: 100%;
		height: 40px;
		top: unset;
		left: 0;
		bottom: 100%;
		bottom: calc(100% - 1px);
	}

	.cta-right .cta-content::before {
		clip-path: polygon(0 100%, 100% 100%, 100% 0);
	}

	.cta-right .cta-content-container,
	.cta-content-container {
		max-width: 100%;
		padding: 0;
	}
}

/*
 * Author Loop
 */
.author-loop-item {}

.author-loop-item a {}

.author-loop-media {
	position: relative;
	margin-bottom: 24px;
}

.author-loop-media img {
	display: block;
	width: 100%;
	height: 450px;
	object-fit: cover;
	object-position: center;
}

.author-loop-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	position: absolute;
	bottom: 0;
	padding: 24px;
}

.author-loop-ex {
	display: block;
	padding: 1px 12px;
	border-radius: 50px;
	background-color: var(--primary);
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 12px;
/* 	text-transform: uppercase; */
	color: #fff;
}

.author-loop-role {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #B7C1D1;
}

.author-loop-role::before {
	content: '';
	width: 6px;
	height: 14px;
	background-color: #B7C1D1;
	clip-path: polygon(3px 0, 6px 0%, 3px 100%, 0% 100%);
	line-height: 1px;
}

.author-loop-item h3 {
	margin-bottom: 0;
	font-size: 28px;
	color: #fff;
}

@media ( max-width: 767px ) {
	.author-loop-item h3 {
		font-size: 24px;
	}

	.author-loop-media img {
		height: 500px;
	}

	.author-loop-expertise {
		flex-wrap: nowrap;
		overflow: scroll;
	}

	.author-loop-ex {
		flex: 0 0 auto;
	}
}

/*
 * Breadcrumbs
 */
#breadcrumbs span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	cursor: pointer;
	color: #fff;
}	

#breadcrumbs .separator {
	display: inline-block;
	line-height: 1px;
}

#breadcrumbs .separator::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 14px;
	background-color: #E1E7E7;
	clip-path: polygon(3px 0, 6px 0%, 3px 100%, 0% 100%);
	line-height: 1px;
	opacity: .4;
}

#breadcrumbs a {
	color: #fff;
}

#breadcrumbs .breadcrumb_last {
	font-weight: 700;
}
  
/*
 * Authors
 */
.streefkerk-authors {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
	background-color: #fff;
}

.streefkerk-authors h5 {
	margin-top: 0;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 18px;
}

.streefkerk-author {
	display: flex;
	align-items: center;
	gap: 24px;
}

.streefkerk-authors .streefkerk-author img {
	display: block;
	width: 120px;
	height: 160px;
	min-width: 120px;
	object-fit: cover;
	object-position: center;
}

.streefkerk-authors .streefkerk-author h4 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-size: 1.125rem;
}

.streefkerk-authors .streefkerk-author span {
	display: block;
	color: #b7c1d1;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
}

@media ( max-width: 991px ) {
	.streefkerk-authors .streefkerk-author img {
		width: 100px;
		height: 140px;
		min-width: 100px;
	}
}

/*
 * Author info
 */
.streefker-author-info {
	padding: 36px;
	background-color: #14406c;
}

.streefker-author-info span {
	display: block;
	margin-bottom: 24px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #B7C1D1;
	text-transform: uppercase;
}

.streefker-author-info ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.streefker-author-info ul li {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
}

.streefker-author-info ul li a {
	display: flex;
	align-items: center;
	gap: 24px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	color: #fff;
}

.streefker-author-info ul li a::before {
	content: '';
	display: inline-block;
	line-height: 1px;
}

.streefker-author-info ul li.author-phone a::before {
	content: url('../media/phone-blue.svg');
}

.streefker-author-info ul li.author-mail a::before {
	content: url('../media/mail-blue.svg');
}

.streefker-author-info ul li.author-linkedin a::before {
	content: url('../media/linkedin-blue.svg');
}

@media ( max-width: 767px ) {
	.streefker-author-info {
		padding: 24px;
	}

	.streefker-author-info ul li a {
		gap: 16px;
		font-size: 16px;
	}
}

/*
 * Post labels
 */
.post-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.post-label {
	display: block;
	padding: 4px 10px;
	border-radius: 50px;
	background-color: var(--secondary);
	color: #fff;
	font-family: 'Noto Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.6;
}

/*
 * Vacature content
 */
.vacature-content .wp-block-heading {
	position: relative;
	margin-top: 1rem;
	padding-bottom: 6px;
}

.vacature-content .wp-block-heading strong {
	font-weight: 700;
}

.vacature-content .wp-block-list {
	margin-bottom: 1.4rem;
}

.vacature-content h2.wp-block-heading::after,
.vacature-content h3.wp-block-heading::after {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 72px;
    height: 5px;
    background-color: #EFE7DE;
}

/*
 * Bericht loop
 */
/* .bericht-loop-info {
	letter-spacing: .9px;
} */

.bericht-loop-info .elementor-icon-list-item:not(:last-child):after {
	content: '';
	display: inline-block;
	width: 4px !important;
	height: 16px !important;
	border: 0 !important;
	background-color: #b7c1d1;
	clip-path: polygon(2px 0, 4px 0%, 2px 100%, 0% 100%);
	line-height: 1px;
}

.bericht-loop-info .elementor-post-info__terms-list,
.bericht-loop-info .elementor-post-info__terms-list a {
	color: #b7c1d1;
}

/*
 * Event button
 */
.event-button .elementor-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 51px;
	height: 51px;
	padding: 6px;
	border-radius: 50%;
	margin-right: 0;
}

.event-button .elementor-button-icon {
	position: relative;
	top: 1px;
	line-height: 1px;
}

/*
 * Expertise button
 */
 .expertise-button .elementor-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 51px;
	height: 51px;
	min-width: 51px;
	padding: 6px;
	border-radius: 50%;
	margin-right: 0;
}

.expertise-button .elementor-button-icon {
	position: relative;
	top: 1px;
	line-height: 1px;
}

.expertise-button .elementor-button-icon path {
	fill: #fff;
}

/*
 * Thema's
 */
.themas-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.themas-wrapper .thema-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px;
	padding-right: 32px;
	border-radius: 100px;
	background-color: #e1e7e7;
	color: var(--primary);
}

.themas-wrapper .thema-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 16px;
	border-radius: 50%;
	background-color: var(--primary);
	color: #fff;
}

.themas-wrapper .thema-item-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	font-family: 'Noto Sans', sans-serif;
	color: var(--primary);
}

@media ( max-width: 767px ) {
	.themas-wrapper .thema-item-icon {
		width: 40px;
		height: 40px;
	}
}

/*
 * Thema accordeon 
 */

.themas-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px 24px;
}
 
.thema-accordion-item {
	padding: 16px;
	border: 1px solid #E1E7E780;
}

.thema-accordion-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.thema-accordion-head div {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: 100px;
}

.thema-accordion-head img {
	width: 100%;
	max-width: 160px;
}

.thema-accordion-head h3 {
	margin: 0;
	font-size: 21px;
} 

.thema-accordion-body {
	max-height: 0px;
	overflow: hidden;
	transition: max-height .4s ease-in-out;
	background-color: white;
}

.thema-accordion-body::before {
	content: '';
	margin-top: 16px;
	display: block;
	height: 1px;
	width: 100%;
	background-color: #E1E7E780;
}

.thema-accordion-body p {
	margin: 0;
	font-size: 18px;
}

.thema-accordion-body p:first-child {
	margin-top: 12px;
}

@media ( max-width: 767px ) {
	.themas-wrapper {
		grid-template-columns: 1fr;
	}

	.thema-accordion-head div {
		gap: 16px;
		min-height: 0;
	}

	.thema-accordion-head img {
		width: 100%;
		max-width: 80px;
	}

	.thema-accordion-head h3 {
		font-size: 18px;
	}
}

/*
 * Team carousel
 */
.team-carousel .elementor-swiper-button {
	top: -70px !important;
}

.team-carousel .elementor-swiper-button.elementor-swiper-button-prev {
	left: unset !important;
	right: 60px !important;
}

.team-carousel .elementor-swiper-button::before {
	line-height: 1px;
}

.team-carousel .elementor-swiper-button.elementor-swiper-button-prev::before {
	content: url('../media/arrow-left-white.svg');
}

.team-carousel .elementor-swiper-button.elementor-swiper-button-next::before {
	content: url('../media/arrow-right-white.svg');
}

.team-carousel .elementor-swiper-button svg {
	display: none;
}

@media ( max-width: 767px ) {
	.team-carousel .elementor-swiper-button {
		display: none !important;
	}
}

/*
 * Berichten carousel
 */
.bericht-carousel .elementor-swiper-button {
	top: -70px !important;
}

.bericht-carousel .elementor-swiper-button.elementor-swiper-button-prev {
	left: unset !important;
	right: 60px !important;
}

.bericht-carousel .elementor-swiper-button::before {
	line-height: 1px;
}

.bericht-carousel .elementor-swiper-button.elementor-swiper-button-prev::before {
	content: url('../media/arrow-left-white.svg');
}

.bericht-carousel .elementor-swiper-button.elementor-swiper-button-next::before {
	content: url('../media/arrow-right-white.svg');
}

.bericht-carousel .elementor-swiper-button svg {
	display: none;
}

@media ( max-width: 767px ) {
	.bericht-carousel .elementor-swiper-button {
		display: none !important;
	}
}

/*
 * FacetWP
 */
.facet-wrap > span {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	font-family: 'Noto Sans', sans-serif;
	color: #fff;
}

.facet-wrap .facetwp-facet {
	margin: 0;
}

.fs-wrap {
	font-family: 'Noto Sans', sans-serif;
}

.fs-wrap .fs-label-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	padding: 10px 20px;
	border: 1px solid #e1e7e7;
	background-color: #fff;
}

.fs-wrap .fs-label-wrap .fs-label {
	padding: 4px 0;	
	color: #979797;
}

.fs-wrap .fs-label-wrap .fs-arrow {
	position: unset;
	width: auto;
	height: auto;
	margin: 0;
	border: 0;
}

.fs-wrap .fs-label-wrap .fs-arrow::before {
	content: url( '../media/arrow-blue.svg' );
	display: block;
	line-height: 1px;
}

.fs-wrap .fs-dropdown {
	width: fit-content;
}

.fs-wrap .fs-search {
	padding: 10px 20px;
}

.fs-wrap.multiple .fs-option {
	padding: 10px 20px;
	padding-left: 42px !important;
}

.fs-dropdown .fs-options {
	padding: 6px 0;
}

.fs-wrap.multiple .fs-option .fs-option-label {
	font-size: 16px;
}

.fs-wrap.multiple .fs-checkbox {
	margin-left: 12px;
}

.fs-wrap .fs-no-results {
	padding: 10px 20px;
}

@media ( max-width: 767px ) {
	.fs-wrap {
		width: 100% !important;
	}	

	.fs-wrap .fs-dropdown {
		width: 100%;
	}
}

/*
 * FacetWP 'Events'
 */
.facetwp-facet-events {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.facetwp-facet-events .facetwp-radio {
	padding-left: 0;
	background: unset !important;
}

.facetwp-facet-events .facetwp-radio:not(:last-child)::after {
	content: '/';
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #B7C1D1;
	text-transform: uppercase;
}

.facetwp-facet-events .facetwp-display-value {
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #B7C1D1;
	text-transform: uppercase;
}

.facetwp-facet-events .checked .facetwp-display-value {
	color: var(--primary)
}

.facetwp-facet-events .facetwp-counter {
	display: none;
}

/*
 * Expertsie arrow link
 */

/* selector a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .2s ease-in-out;
    overflow: hidden;
}

selector a::before {
    content: url( 'http://45.152.249.3/~streefkerk/wp-content/themes/hello-streefkerk/assets/media/arrow-right-light-blue.svg' );
    display: inline-block;
    margin-left: -28px;
    opacity: 0;
    transition: all .2s ease-in-out;
}

selector a:hover {
    color: #B7C1D1;
}

selector a:hover::before {
    opacity: 1;
    margin-left: 0;
} */

/*
 * Conditional CSS
 */
.no-team-posts:not(.elementor-editor-active) .team-posts {
	display: none;
}

.no-event-posts:not(.elementor-editor-active) .upcoming-events {
	display: none;
}

/*
 * Event info
 */
.event-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;

	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #B7C1D1;
	text-transform: uppercase;
}

.event-date {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--primary);
}

.event-date::after {
	content: '/';
	display: block;
	color: #B7C1D1;
}

.event-label {
	text-transform: none;
}

/*
 * Brandbox Slider
 */ 
.brandbox-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.brandbox-slider::before {
	content: '';
	position: absolute;
	top: 0;
	right: -1px;
	width: 80px;
	height: 100%;
	background-color: var(--primary);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: 9;
}

.brandbox-slider .swiper {
	height: 100%;
	padding-bottom: 0 !important;
}

.brandbox-slider .swiper .swiper-slide-inner {
	width: 100%;
	height: 100%;
}

.brandbox-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brandbox-slider .swiper-pagination {
	position: absolute;
	bottom: 0;
	padding-right: 16px;
	padding-bottom: 6px;
	text-align: right;
}

.brandbox-slider .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.brandbox-slider .swiper-pagination .swiper-pagination-bullet {
	background-color: #fff;
}

@media ( max-width: 767px ) {
	.brandbox-slider::before {
		width: 100%;
		height: 50px;
		top: unset;
		bottom: -1px;
	}	

	.brandbox-slider .swiper-pagination {
		bottom: -10px;
		padding-bottom: 0;
	}
}
