/*!
Theme Name: PADDAP
Theme URI: http://underscores.me/
Author: PADDAP
Author URI: https://paddap.nl
Description: This is the boilerplate theme of PADDAP Digital Agency
Version: 1.0.0
Tested up to: 6.0.2
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: paddap
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

PADDAP is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-display: 'Funnel Display', sans-serif;
	--font-body: 'Quicksand', sans-serif;

	--container: 1350px;

	/* colors */
	--color-white: #FFFFFF;
	--color-green: #62D671;
	--color-green-2: #50C65F;
	--color-pink: #FF0064;
	--color-blue: #214E55;

	/* radius */
	--rounded-sm: 20px;
	--rounded-md: 60px;
	--rounded-lg: 300px;
	--rounded-full: 999px;

	/* font sizes */
	--text-sm: 0.75rem;   /* 12px */
	--text-base: 0.875rem;  /* 14px */
	--text-lg: 1.125rem;  /* 18px */
	--text-h3: 1.5rem;    /* 24px */
	--text-h2: 2.5rem;    /* 40px */
	--text-h1: 3.75rem;   /* 60px */
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-blue) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-blue);
  opacity: 0.8;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}
body {
	background: #F6F6F6;
}
body, #page {
	position: relative;
	overflow-x: clip;
}

p:empty {
	display: none;
}

body,
p,
button {
	font-family: var(--font-body);
	color: var(--color-blue);
	font-weight: 600;
	font-size: var(--text-base);
	line-height: 1.2;
}

a {
	text-decoration: none;
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6, a, cite,
.h1, .h2, .h3 {
	font-family: var(--font-display);
}

h1, .h1 { font-size: var(--text-h1) }
h2, .h2 { font-size: var(--text-h2) }
h3, .h3  { font-size: var(--text-h3) }
h4, .h4, cite { font-size: var(--text-lg) }

h1, .h1, 
h2, .h2 {
	font-weight: 800;
}

.header-wrapper,
.container {
	width: 100%;
	padding-inline: 40px;
	position: relative;
}

.header-wrapper {
	width: 100%;
	height: fit-content;
}

.container > div:first-child {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.bttn {
	padding-inline: 18px;
	border-radius: var(--rounded-full);
	width: fit-content;
	height: 40px;
	display: grid;
	place-items: center;
	color: var(--color-white);
	background: var(--color-green);
	text-wrap: nowrap;
	font-weight: 600;
	border: none;
	outline: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bttn:hover {
	color: var(--color-white);
}

.bttn.green {
	background: var(--color-green);
}

.bttn.green:hover {
	background: var(--color-blue);
}

.bttn.pink {
	background: var(--color-pink);
}

.bttn.pink:hover {
	background: var(--color-blue);
	color: white;
}

.bttn.blue {
	background: var(--color-blue);
}

.bttn.blue:hover {
	background: var(--color-green);
	color: white;
}

.bttn.white {
	background: var(--color-white);
	color: black;
}

.bttn.white:hover {
	background: var(--color-blue);
	color: var(--color-);
}

#page {
	position: relative;
}

#masthead {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	padding-inline: 40px;
}

#masthead .site-header__content {
	display: flex;
	flex-direction: row;
	gap: 30px;
	height: 80px;
	margin: 0 auto;
	width: 100%;
	max-width: var(--container);
	align-items: center;
	justify-content: space-between;
	z-index: 999;
}

.site-header__content {
	height: 80px;
	gap: 0;
	background: var(--color-white);
	padding: 10px;
	padding-right: 20px;
	border-radius: var(--rounded-sm);
}

#masthead .site-header__content > * {
	background: var(--color-white);
	border-radius: var(--rounded-full);
	display: flex;
	height: 60px;
	align-items: center;
	justify-content: center;
}

#masthead .site-header__content .actions a .heart {
	padding-bottom: 0;
}

#masthead .main-navigation .menu,
#masthead .main-navigation {
	display: flex;
	align-items: center;
	gap: 50px;
}

#masthead .main-navigation a {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: var(--text-lg);
	color: var(--color-blue);
	transition: all 0.3s ease;
	position: relative;
}

#masthead .main-navigation li.current-menu-item a {
	color: var(--color-green);
}

#masthead .main-navigation a:hover {
	color: var(--color-green);
}

#masthead .site-branding {
	height: 60px;
	width: auto;
	padding: 10px 35px;
}

#masthead .site-branding img {
	height: 100%;
	width: auto;
}

#masthead .actions .heart path {
	stroke: var(--color-blue);
}

svg-icon {
	height: fit-content;
	display: flex;
}

.heart {
	display: flex;
	padding-bottom: 4px;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.heart:hover {
	transform: scale(1.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

body.page-id-143 #masthead .actions .heart path {
	stroke: var(--color-green);
	fill: var(--color-green);
}

#masthead .actions {
	display: flex;
	flex-direction: row;
	gap: 25px;
	width: fit-content;
}

.site-logo-white { display: none; }

/* links hover */
.site-footer a {
	position: relative;
}

.site-footer__bottom a:after,
#masthead .main-navigation a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 2px;
	background-color: var(--color-green);
	transition: width 0.2s ease;
}

.site-footer__bottom a:hover:after,
#masthead .main-navigation a:hover:after {
	left: 0;
	width: 100%;
}

#masthead .site-header__content .mobile-menu {
	display: none;
}

/* nav dropdown */
.main-navigation .menu-item-has-children {
	position: relative;
	padding-bottom: 12px;
	margin-bottom: -12px;
}

.main-navigation .menu-item-has-children .sub-menu-wrapper {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 1000;
	width: max-content;
}

.main-navigation .menu-item-has-children .sub-menu-wrapper {
	padding-top: 22px;
}

.main-navigation .menu-item-has-children:hover .sub-menu-wrapper {
	opacity: 1;
	pointer-events: all;
}

.main-navigation .menu-item-has-children .sub-menu {
	background: white;
	border-radius: var(--rounded-sm);
	padding: 10px;
	display: flex !important;
	flex-direction: column;
	gap: 5px;
	min-width: 160px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.main-navigation .menu-item-has-children .sub-menu a {
	padding: 8px 12px;
	border-radius: 8px;
	display: block;
	font-size: var(--text-base);
	color: var(--color-blue);
}

#masthead .main-navigation li.current-menu-item .sub-menu a {
	color: var(--color-blue);
}

#masthead .main-navigation li.current-menu-item .sub-menu a:hover {
	color: var(--color-green);
}

.main-navigation .menu-item-has-children .sub-menu a::after {
	display: none;
}

.main-navigation .menu-item-has-children .sub-menu a:hover {
	color: var(--color-green);
}

.main-navigation .menu-item-has-children > a .chevron {
	display: inline-flex;
	margin-left: 5px;
	vertical-align: middle;
	transition: transform 0.2s ease;
	pointer-events: none;
}

.main-navigation .menu-item-has-children > a .chevron::after {
	display: none;
}

.main-navigation .menu-item-has-children:hover > a .chevron {
	transform: rotate(180deg);
}

/*  */

#masthead .site-branding {
	padding: 0;
	height: 100%;
	width: fit-content;
	border-radius: 12px;
	overflow: hidden;
	min-width: fit-content;
}

#masthead .site-branding img {
	height: 100%;
	width: auto;
}

/*  */
section:first-child {
	background: var(--color-green);
}

.hero-1 {
	height: 700px;
	position: relative;
}

.hero-1 > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-top: 180px;
	height: 100%;
}

.page-id-8 .hero-1 h1 {
	text-align: center;
	font-size: 90px;
	color: var(--color-white);
	max-width: 800px;
}

.page-id-8 .hero-1__cta-buttons {
	display: flex;
	flex-direction: row;
	margin-top: 30px;
	gap: 30px;
	width: fit-content;
}

.page-id-8 .hero-1__cta-buttons > a {
	min-width: 100px;
}

.job-alert-section .bttn:hover,
.gerelateerde-vacatures-section .bttn:hover,
.hero-3-section a:hover,
.hero-2-section a:hover,
.hero-1 a:hover {
	background: white !important;
	color: var(--color-blue) !important;
}

.page-id-8 .hero-1__vacatures {
	position: absolute;
	top: 88%;
	display: flex;
	flex-direction: row;
	gap: 30px;
	z-index: 10;
	width: 100%;
}

.page-id-8 .hero-1__decoration {
	position: absolute;
	width: 80%;
	bottom: 0;
	left: 0;
	height: 200px;
	padding-top: 0; 
	border-top-right-radius: var(--rounded-lg);
	border-width: 90px 90px 0 0;
	border-style: solid;
	border-color: var(--color-green-2);
	background: transparent;
}

.job-card {
	background: var(--color-white);
	border: 1px solid var(--color-green);
	padding: 15px;
	position: relative;
	transition: all 0.3s ease;
}

.job-card__description,
.job-card__title {
	transition: all 0.3s ease;
}

.job-card:hover {
	box-shadow: 0 4px 20px rgba(106, 135, 235, 0.3);
}

/* .job-card:hover .job-card__description, */
.job-card:hover .job-card__details {
	transform: translatey(-10px);
}

.job-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 8px; /* adjust thickness */
	background: var(--color-blue);
	transition: width 0.3s ease;
}

.job-card:hover::after {
	width: 100%;
}

.job-card:hover .bttn {
	background: var(--color-blue);
	color: white;
}

.job-card .bttn:hover {
	background: var(--color-blue) !important;
	color: var(--color-white) !important;
	filter: brightness(1.5);
}

.job-card__description {
	margin-top: 50px;
	max-width: 70%;
}

.job-card__details {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: end;
	transition: all 0.3s ease;
}

.job-card__details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 10px;
}

.job-card__details-grid > span {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.job-card__details .bttn {
	margin-left: auto;
}

.job-card .heart {
	position: absolute;
	top: 15px;
	right: 15px; 
	padding: 0;
}
.job-card .heart.liked {
	fill: var(--color-green);
}

.job-card .heart svg {
	height: 20px;
	width: auto;
}

.job-card .heart path {
	stroke: var(--color-green);
}

/* text scroller */

.text-scroller {
	overflow: hidden;
	padding-top: 300px;
}

/* usp 1 section */

.usp-section {
	margin-top: 120px;
}

.usp-section__title {
	margin-bottom: 40px;
}

.usp-section__grid {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.usp-section__item {
	border: 1px solid var(--color-green);
	display: flex;
	flex-direction: column;
	padding: 25px;
	flex: 1;
}

.usp-section__item h3 {
	color: var(--color-green);
	margin-bottom: 15px;
	margin-top: 50px;
}

.usp-section__icon {
	width: 55px;
	height: 55px;
	padding: 14px;
	background: var(--color-green);
	border-radius: var(--rounded-full);
	display: flex;
	align-items: center;
	justify-content: center;
}

.usp-section__icon svg {
	width: 100%;
	height: auto;
}

.usp-section__text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Image + text */

.img-text-section {
	margin-top: 200px;
	position: relative;
	overflow-x: hidden;
}

.img-text-section__inner {
	display: flex;
	flex-direction: row;
	align-items: end;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.img-text-section__image {
	width: 40%;
	flex-shrink: 0;
	position: relative;
}

.img-text-section__image img {
	display: block;
	width: 100%;
	height: auto;
}

.img-text-section__content {
	width: 50%;
	height: fit-content;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 130px;
}

.img-text-section__content p {
	width: 75%;
}

.img-text-section__content h2 {
	margin: 0;
}

.img-text-section .bttn {
	margin-top: 10px;
}

/* hide iframe everywhere by default */
.img-text-section__image .map-iframe {
	display: none;
}

/* on page-id-40: hide image, show iframe */
body.page-id-40 .img-text-section__image img {
	display: none;
}

body.page-id-40 .img-text-section__image .map-iframe {
	display: block;
	height: 400px !important;
}

.container .img-text-section__tagline-bottom {
	background: var(--color-green-2);
	padding-top: 10px;
	display: flex;
	width: 200vw;
	height: 105px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translatex(-30px);
	z-index: 10;
}

.img-text-section__tagline-bottom span {
	color: var(--color-white);
	font-size: var(--text-h1);
	font-family: var(--font-display);
	transform: translatex(10%);
	font-weight: 800;
}

.img-text-section__tagline-bottom-extension {
	height: 105px;
	width: 100vw;
	background: var(--color-green-2);
	position: absolute;
	bottom: 0;
	left: 50%;
}

.img-text-section__tagline-curve {
	border-radius: var(--rounded-full) 0 0 var(--rounded-full);
	height: 100%;
	width: 60%;
	border-top: 110px solid var(--color-green-2);
	border-left: 110px solid var(--color-green-2);
	border-bottom: 110px solid var(--color-green-2);
	position: absolute;
	transform: translatex(-20px);
}

.img-text-section__tagline-curve-circle {
	border-radius: 999px;
	height: 110px;
	width: 110px;
	background: var(--color-green-2);
	position: absolute;
	top: -110px;
	right: -55px;
}

.img-text-section__overlay-image {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

.img-text-section__image.inverted {
	width: 50%;
}

/* over ons image + text section */

.page-id-36 .img-text-section {
	margin-block: 100px;
}

/* opdrachtgevers image text section */
body:not(.page-id-8) .img-text-section {
	margin-block: 70px;
}

.page-id-34 .img-text-section__tagline-bottom-extension {
	display: none;
}

/* reviews section */

.reviews-section {
	overflow-x: hidden;
}

.what-we-do-section,
.reviews-section {
	background: var(--color-blue);
	margin-top: 100px;
	padding-bottom: 100px;
}
.what-we-do-section__top,
.reviews-section__top {
	padding-top: 80px;
	padding-bottom: 40px;
	border-bottom: 1px solid white;
}
.what-we-do-section__top--inner,
.reviews-section__top--inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}
.what-we-do-section.container > div:first-child,
.reviews-section.container > div:first-child {
	width: 100%;
	max-width: none;
	margin: 0;
}
.what-we-do-section.container > div:last-child,
.reviews-section.container > div:last-child {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}
.what-we-do-section *,
.reviews-section *,
.wp-gr.rpi .wp-google-name a {
	color: white !important;
}

.grw-review svg {
	display: none;
}

.grw-review .rpi-stars {
	--star-size: 12px;
}

.wp-gr.rpi .wp-google-name {
	font-size: 16px !important;
}

.grw-reviews {
	gap: 25px !important;
}

.grw-row .grw-review {
	--col: 3;
	width: 530px !important;
	flex-shrink: 0 !important;
	border: 1px solid var(--color-green);
}

.grw-review > .rpi-flx {
	gap: 50px !important;
}

.grw-review .wp-google-text {
	font-size: var(--text-base) !important;
	line-height: 1.2 !important;
	padding-right: 100px;
	display: block;
}

.wp-gr.wp-dark .wp-google-text {
	color: white !important;
}

.grw-reviews-viewport {
	position: relative;
	width: 100%;
	cursor: grab;
	overflow: visible;
}

.grw-reviews-viewport.grabbing {
	cursor: grabbing;
}

.reviews-section__bottom h2 {
	padding-top: 80px;
	padding-bottom: 40px;
}

.wp-gr .grw-img-wrap::before {
	box-shadow: none !important;
}

/* Logo Slider */
.logo-slider-section {
	padding-bottom: 150px;
}

.logo-slider-container {
	overflow: hidden;
}
.page-id-34 .logo-slider-section {
	padding-top: 150px;
}

.logo-track {
	display: flex;
	gap: 150px;
	width: max-content;
	will-change: transform; /* GPU hint for smooth animation */
}

.logo-track img {
	height: 40px;
	width: auto;
	flex-shrink: 0;
}

/* Footer */

.site-footer {
	display: flex;
	flex-direction: column;
}

.site-footer * {
	color: white;
}

.site-footer > div {
	width: 100%;
	min-height: 200px;
}

.site-footer__top {
	background: var(--color-green);	
	position: relative;
}


.page-id-42 .site-footer__top {
	display: none;
}

.site-footer__top-inner {
	display: flex;
	flex-direction: row;
	overflow: hidden;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.site-footer__top-content {
	display: flex;
	flex-direction: column;
	gap: 90px;
	padding: 50px 50px 50px 40px;
	width: 60%;
	height: fit-content;
}

/* favorite jobs */
.page-id-143 .site-footer__top {
	background: white;
}
.page-id-143 .site-footer__top h2,
.page-id-143 .site-footer__top .site-footer__top-cta-text > p {
	color: var(--color-blue);
}

.site-footer__top-cta {
	display: flex;
	flex-direction: row;
	align-items: end;
	justify-content: space-between;
}

.page-id-143 .site-footer__top-cta .bttn {
	color: white;
	background: var(--color-green);
}

.page-id-143 .site-footer__top-cta .bttn:hover {
	background: var(--color-blue);
}

.site-footer__top-cta-text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.site-footer__bottom {
	background: var(--color-blue);
	padding: 90px 40px 60px 40px;
}

.site-footer__top-image {
	display: block;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 60%;
	right: 0;
}

.site-footer__top-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-footer__bottom-inner {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 160px;
}

.site-footer__bottom-top {
	display: flex;
	flex-direction: row;
	gap: 150px;
}

.site-footer__bottom-top > div {
	min-width: 100px;
}

.site-footer__contact-group {
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	height: fit-content;
}

.site-footer__contact-item {
	height: fit-content;
}

.site-footer__contact-item,
.site-footer__nav-list,
.site-footer__nav-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.site-footer__contact-value {
	width: fit-content;
}

.site-footer__contact-value,
.site-footer__nav-title {
	color: var(--color-green);
}

.site-footer__bottom-bar,
.site-footer__logo {
	display: flex;
	flex-direction: row;
}

.site-footer__logo {
	align-items: center;
	gap: 20px;
}

.site-footer__google-reviews {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__bottom-bar {
	justify-content: space-between;
	align-items: end;
}

.site-footer__logo > img {
	height: 110px;
	width: auto;
}

.site-footer__google-reviews > img {
	height: 20px;
	width: fit-content;
	object-fit: contain;
}

.site-footer__google-reviews-stars {
	display: flex;
	gap: 8px;
}

/* Vacature overzicht */

.vacature-overzicht__hero {
	background: var(--color-green);
	padding: 200px 0 420px 0;
	position: relative;
}

.vacature-overzicht__hero h1 {
	text-align: center;
	color: white;
}

.vacature-overzicht__content {
	margin-top: -370px;
	position: relative;
}

.vacature-overzicht__jobs-content-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-bottom: 130px;
	align-items: stretch;
}

.vacature-overzicht__jobs-grid {
	width: 74%;;
}

.page-id-143 .vacature-overzicht__jobs-grid {
	width: 100%;	
}

.page-id-143 .vacature-overzicht__jobs-grid,
body:not(.page-id-143) .vacature-overzicht__jobs-grid > div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	width: 100%;
}

.vacature-overzicht-content__hero-decoration,
.vacature-overzicht__hero-decoration-1,
.vacature-overzicht__hero-decoration-2 {
	position: absolute;
	border-style: solid;
	border-color: var(--color-green-2);
	background: transparent;
}

.vacature-overzicht-content__hero-decoration {
    width: 25%;
    bottom: 0;
    left: 0;
    height: 270px;
    border-top-right-radius: var(--rounded-lg);
    border-width: 150px 150px 0 0;
	z-index: -10;
}

.vacature-overzicht__hero-decoration-1 {
	width: 30%;
	top: 0;
	left: 0;
	height: 300px;
	border-bottom-right-radius: var(--rounded-lg);
	border-width: 0 130px 130px 0;
}

.vacature-overzicht__hero-decoration-2 {
	width: 32%;
	bottom: 0;
	right: 0;
	height: 560px;
	border-top-left-radius: var(--rounded-lg);
	border-width: 130px 0 0 130px;
}

.vacature-overzicht__layout-toggle-wrapper {
	display: flex;
	justify-content: end;
	gap: 15px;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto !important;
	margin-bottom: 35px !important;
}

.vacature-overzicht__layout-toggle-wrapper > button {
	padding: 8px 13px;
	border-radius: 5px;
	background: transparent;
	border: 0;
	font-weight: 700;
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
	transition: all 0.1s ease;
}
.vacature-overzicht__layout-toggle-wrapper > button.active {
	background: white;
}

.vacature-overzicht__jobs-filters {
	width: 100%;
	height: 400px;
	position: sticky;
	top: 100px;
}

.vacature-overzicht__jobs-filters-wrapper {
	width: 20%;
	min-height: 100%;
	position: relative;
	align-self: stretch;
}

.vacature-overzicht__jobs-filters > span {
	color: var(--color-blue);
	font-weight: 700;
}

.vacature-overzicht__jobs-filters-inner {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 30px;
}

.vacature-overzicht__jobs-filters-inner > div {
	background: white;
	border-radius: var(--rounded-sm);
	height: 50px;
	width: 100%;
	padding-left: 10px;
	padding-right: 35px;
	align-items: center;
	display: flex;
	color: var(--color-blue);
	font-weight: 700;
	cursor: pointer;
	justify-content: space-between;
}

.articles-section__bekijk-vacatures-row,
.vacature-overzicht__open-sollicitatie-row {
	display: flex !important;
	justify-content: space-between;
	grid-column: span 2 !important;
	background: var(--color-blue);
	padding: 25px;
	align-items: center;
	gap: 50px;
}

.articles-section__bekijk-vacatures-row {
	grid-column: span 3 !important;
}

.vacature-overzicht__open-sollicitatie-row .bttn:hover {
	background: white;
	color: var(--color-blue);
}

.articles-section__bekijk-vacatures-row *,
.vacature-overzicht__open-sollicitatie-row * {
	color: white;	
}

.articles-section__bekijk-vacatures-row-content p,
.vacature-overzicht__open-sollicitatie-row-content p {
	margin-top: 15px;
	max-width: 600px;
}

.vacature-overzicht__jobs-grid > div.list-view {
	grid-template-columns: 1fr;
}

.vacature-overzicht__jobs-grid > div.list-view .vacature-overzicht__open-sollicitatie-row {
	grid-column: span 1;
}

.vacature-overzicht__jobs-grid > div.list-view .job-card__description {
	margin-top: 15px;
}

.vacature-overzicht__jobs-grid > div.list-view .job-card__details {
	margin-top: 0;	
}

.vacature-overzicht__jobs-filters .locatie-value {
	color: var(--color-green);
	margin-right: 10px;
	margin-left: auto;
}

/* Vacature Detail */

.vacature-detail__hero {
	background: var(--color-green);
	padding: 220px 0 80px;
	position: relative;
	overflow: hidden;
}

.vacature-detail__hero-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.vacature-detail__title {
	color: white;
	margin-bottom: 70px;
}

.vacature-detail__title-dot {
	color: var(--color-blue);
}

.vacature-detail__hero-bar {
	display: flex;
	gap: 15px;
}

.vacature-detail__hero-content {
	position: relative;
	z-index: 10;
}

.vacature-detail__hero-meta {
	background: white;
	border-radius: var(--rounded-full);
	padding: 10px 10px 10px 30px;
	display: flex;
	align-items: center;
	gap: 30px;
	width: 100%;
}

.vacature-detail__hero-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--color-blue);
	font-weight: 600;
}

.vacature-detail__icon-btn {
	background: white;
	border: none;
	border-radius: var(--rounded-full);
	min-width: 40px;
	min-height: 40px;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.vacature-detail__icon-btn.delen svg {
	transform: translatex(-1px);
}

.vacature-detail__icon-btn.delen {
	position: relative;
}

.vacature-detail__icon-btn.delen:hover .delen-dropdown__wrapper {
	top: 90%;
	opacity: 1;
	pointer-events: all;
}

.delen-dropdown__wrapper {
	position: absolute;
	top: 0;
	transition: all 0.3s ease;
	opacity: 0;
	width: fit-content;
	pointer-events: none;
}

.share-icon {
	max-height: 20px;
}

.vacature-detail__icon-btn.delen .delen-dropdown {
	background: white;
	display: flex;
	flex-direction: row;
	gap: 15px;
	border-radius: 999px;
	padding: 15px 20px;
	margin-top: 15px;
}

.vacature-detail__icon-btn.delen .delen-dropdown > button {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	outline: none;
	cursor: pointer;
}

.copy-link-icon {
	position: relative;
}

.copy-toast {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	color: var(--color-white);
	background: var(--color-blue);
	opacity: 0.8;
	border-radius: 999px;
	font-size: 14px;
	white-space: nowrap;
	padding: 4px 8px;
	border-radius: 4px;
	pointer-events: none;
}

.artikel-hero-section__decoration,
.vacature-detail__hero-decoration {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45%;
	height: 65%;
	border-top-left-radius: var(--rounded-lg);
	border-width: 140px 0 0 140px;
	border-style: solid;
	border-color: var(--color-green-2);
	background: transparent;
}

/* Content section */

.vacature-detail__content {
	padding: 80px 0;
}

.vacature-detail__content-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 100px;
	align-items: flex-start;
}

.vacature-detail__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.vacature-detail__description {
	color: var(--color-blue);
	line-height: 1.7;
}

/* Accordion */
.accordion {
	display: flex;
	flex-direction: column;
}
.accordion-item {
	border-bottom: 1px solid #00000080;
}
.accordion-item__trigger {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-display);
	font-size: var(--text-h3);
	color: var(--color-blue);
	font-weight: 700;
	cursor: pointer;
	text-align: left;
	gap: 20px;
}
.accordion-item__icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.accordion-item.active .accordion-item__icon {
	transform: rotate(180deg);
}
.accordion-item__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
	color: var(--color-blue);
	line-height: 1.7;
}
.accordion-item__body-inner {
	overflow: hidden;
	padding-bottom: 0;
	transition: padding-bottom 0.3s ease;
}
.accordion-item.active .accordion-item__body {
	grid-template-rows: 1fr;
}
.accordion-item.active .accordion-item__body-inner {
	padding-bottom: 20px;
}

/* Sidebar */

.vacature-detail__sidebar {
	width: 40%;
	flex-shrink: 0;
	position: sticky;
	top: 100px;
}

.vacature-detail__recruiter-card {
	background: white;
	border-radius: var(--rounded-sm);
	padding: 15px;
	padding-right: 40px;
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.vacature-detail__recruiter-top {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}

.vacature-detail__recruiter-image {
	width: 120px;
	height: 130px;
	border-radius: var(--rounded-sm);
	background: #ddd;
	flex-shrink: 0;
	overflow: hidden;
}

.vacature-detail__recruiter-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.vacature-detail__recruiter-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.vacature-detail__recruiter-right strong,
.vacature-detail__recruiter-info strong {
	color: var(--color-blue);
	font-size: var(--text-lg);
	font-family: var(--font-display);
}

.vacature-detail__recruiter-info span {
	font-size: var(--text-sm);
	color: var(--color-blue);
}

.vacature-detail__recruiter-right {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: space-between;
	width: 100%;
}

.vacature-detail__recruiter-share > strong {
	color: var(--color-green);
	font-weight: 800;
}

.vacature-detail__delen-buttons {
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.vacature-detail__recruiter-info-right {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vacature-detail__recruiter-info-right > span {
	color: var(--color-green);
	font-size: var(--text-lg);
	font-family: var(--font-display);
}

.vacature-detail__delen-buttons > a {
	border: none;
	outline: none;
	background: none;
}

.vacature-detail__recruiter-socials {
	display: flex;
	gap: 15px;
}

.vacature-detail__recruiter-socials svg path {
	stroke: var(--color-blue);
}

.vacature-detail__recruiter-contact {
	display: flex;
	gap: 8px;
	align-items: center;
}

.vacature-detail__recruiter-contact > span {
	font-weight: 700;
}

.vacature-detail__recruiter-contact .green {
	color: var(--color-green);
}

/* Apply + FAQ */

.vacature-detail__apply-section {
	background: transparent;
	padding: 100px 0;
}

.vacature-detail__apply-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 100px;
	align-items: flex-start;
}

.vacature-detail__apply-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vacature-detail__apply-form h2 {
	margin-bottom: 25px;
}

.vacature-detail__apply-form p {
	margin-bottom: 50px;
}

.vacature-detail__faq {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* CF7 Form */

.wpcf7 p {
	margin: 0;
}

.wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-form__input,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	border: none;
	outline: none;
	border-radius: var(--rounded-sm);
	padding: 14px 18px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--text-base);
	color: var(--color-blue);
	background: white;
	transition: border-color 0.2s ease;
}

.contact-form__input:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
	border-color: var(--color-green);
}

.contact-form__input::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #aaa;
}

.wpcf7 textarea {
	resize: none;
	height: 160px;
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

/* File upload */

.wpcf7 input[type="file"] {
	display: none;
}

.wpcf7-form-control-wrap:has(input[type="file"]) {
	display: flex;
	align-items: center;
	gap: 15px;
	background: white;
	border: none;
	border-radius: var(--rounded-sm);
	padding: 10px 18px;
}

.sollicitatie-form__file-btn {
	border: none;
	outline: none;
	border-radius: 5px;
	color: black;
	font-weight: 500;
	height: 30px;
	cursor: pointer;
}

.sollicitatie-form__file-btn:hover {
	color: black;

}

/* Acceptance / checkbox */

.sollicitatie-form__acceptance {
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}

.sollicitatie-form__acceptance .wpcf7-form-control-wrap {
	margin-right: 10px;
}

.sollicitatie-form__acceptance .wpcf7-list-item {
	margin-left: 0;
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.sollicitatie-form__acceptance .wpcf7-list-item::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: #DDDFDA;
	transition: background 0.2s ease;
}

.sollicitatie-form__acceptance .wpcf7-list-item:has(input:checked)::before {
	background: var(--color-green);
}

.sollicitatie-form__acceptance .wpcf7-list-item::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 7px;
	width: 5px;
	height: 9px;
	border: 2px solid white;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.sollicitatie-form__acceptance .wpcf7-list-item:has(input:checked)::after {
	opacity: 1;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
	display: none;
}

.sollicitatie-form__acceptance a {
	margin-left: 5px;
}

/* Submit */

.wpcf7 input[type="submit"] {
	background: var(--color-green);
	color: white;
	border: none;
	border-radius: var(--rounded-full);
	padding: 12px 28px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--text-base);
	cursor: pointer;
	width: fit-content;
	transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
	background: var(--color-blue);
}

/* Steps */

.vacature-detail__steps {
	background: var(--color-green);
	padding: 100px 0 130px 0;
	position: relative;
	overflow: hidden;
}

.vacature-detail__steps-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.vacature-detail__steps-inner-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	width: 80%;
	height: 100%;
	margin-left: auto;
}

.vacature-detail__steps-decoration {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	height: 85%;
	border-bottom-left-radius: var(--rounded-lg);
	border-width: 0 0 160px 160px;
	border-style: solid;
	border-color: var(--color-green-2);
	background: transparent;
	z-index: 0;
}

.vacature-detail__steps-content,
.vacature-detail__steps-grid {
	position: relative;
	z-index: 1;
}

.vacature-detail__steps-content h2,
.vacature-detail__steps-content p {
	color: white;
}

.vacature-detail__steps-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 500px;
}

.vacature-detail__steps-grid {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.vacature-detail__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.vacature-detail__step p {
	color: white;
	text-align: center;
}

.vacature-detail__step-number {
	width: 140px;
	height: 140px;
	background: white;
	border-radius: var(--rounded-full);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: var(--text-h2);
	font-weight: 800;
	color: var(--color-blue);
}

/* job alert section */

.job-alert-section {
	padding: 150px;
}

.job-alert-section * {
	color: white;
}

.job-alert-section__inner {
	margin: 0 auto;
	background: var(--color-blue);
	padding: 45px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
}

.job-alert-section__inner-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Recent bekeken vacatures sectio */

.recent-bekeken-vacatures-section {
	padding: 80px 0 70px 0;
}

.recent-bekeken-vacatures-section__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.recent-bekeken-vacatures-section__inner h2 {
	text-align: center;
	color: var(--color-blue);
}

.recent-bekeken-vacatures-section__job-cards-wrapper {
	background: rgba(0,0,0,0.05);
	width: 100%;
	height: 240px;
}

/* hero 2 section */
section.hero-2-section {
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: end;
	min-height: 100vh;
	padding: 250px 40px 100px 40px;
}

section.hero-2-section .hero-2-section__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

section.hero-2-section .hero-2-section__inner-content {
	width: 50%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

section.hero-2-section * {
	color: white;
}

/* usp 2 section */

section.usp-2-section {
	padding-top: 140px;
	padding-bottom: 70px;
}

.usp-2-section__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.usp-2-section__bottom,
.usp-2-section__top {
	width: 100%;
}

.usp-2-section__top {
	display: flex;
	gap: 125px;
}

.usp-2-section__top-left {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 30%;
}

.usp-2-section__top-left h2 {
	font-size: var(--text-h1);
	color: var(--color-green);
}

.usp-2-section__top-right {
	width: 100%;
	padding: 50px 80px 80px 50px;
	background: var(--color-blue);
	display: flex;
	flex-direction: column;
	gap: 65px;
}

.usp-2-section__bottom {
	background: var(--color-green);
	padding: 50px 70px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 70px;
}

.usp-2-section__bottom > div {
	width: 100%;
	border-top: 1px solid white;
	display: flex;
	flex-direction: row;
	gap: 50px;
	align-items: center;
}

.usp-2-section__bottom > h3 {
	text-wrap: nowrap;
	color: white;
}

.usp-2-section__top-right-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 50px;
}

.usp-2-section__top-right-item * {
	color: white;
}

.usp-2-section__top-right-item p {
	margin-left: auto;
}

.usp-2-section__top-right-item .icon {
	width: 55px;
	height: 55px;
	padding: 14px;
	background: var(--color-green);
	border-radius: var(--rounded-full);
	display: flex;
	align-items: center;
	justify-content: center;
}

.usp-2-section__top-right-item p {
	transform: translatey(10px);
}

/* quote section */

.quote-section {
	padding-block: 70px;
}

.quote-section__inner {
	padding: 90px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--color-green);
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	position: relative;
}

.quote-section .bttn:hover {
	background: white;
	color: var(--color-blue);
}

.quote-section__inner *:not(div) {
	position: relative;
	z-index: 10;
}

.quote-section__inner cite {
	font-style: normal;
	font-weight: 800;
	color: white;
}

.quote-section__inner .h2 {
	text-align: center;
	font-weight: 800;
	color: white;
	width: 67%;
	margin: 25px auto 40px;
}

.quote-section__inner .h2 strong {
	color: var(--color-blue);
}

.quote-section__decorations > div {
	position: absolute;
	border-style: solid;
	border-color: var(--color-green-2);
	background: transparent;
}

.quote-section__decorations > div:first-child {
	left: 0;
	top: 0;
	width: 28%;
	height: 85%;
	border-bottom-right-radius: var(--rounded-lg);
	border-width: 0 140px 140px 0;
}

.quote-section__decorations > div:last-child {
	bottom: 0;
	right: 0;
	width: 40%;
	height: 50%;
	border-top-left-radius: var(--rounded-lg);
	border-width: 140px 0 0 140px;
}

/* Vragen link */

.vragen {
	color: var(--color-blue);
	font-weight: 700;
	width: fit-content;
	transition: all 0.3s ease;
}

.vragen:hover {
	color: var(--color-green);
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-form.submitting .wpcf7-spinner {
	display: inline-block;
}

/* what we do section */
.what-we-do-section__bottom {
	display: flex;
	flex-direction: row;
	margin-top: 80px !important;
	align-items: center;
}
.what-we-do-section__bottom-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 450px;
}
.what-we-do-section.container > div:last-child,
.what-we-do-section__bottom,
.what-we-do-section__top--inner {
	max-width: 1200px;
}
.what-we-do-section__bottom-right {
	width: 25%;
	margin-left: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: conic-gradient(
		var(--color-green)  0% 50%,    /* 50% */
		#183E44 50% 75%,   /* 25% */
		var(--color-green) 75% 88%,   /* 13% */
		white 88% 100%   /* 12% */
	);
}

/* contact 1 section */

.contact-1-section {
	padding-top: 70px;
}

.contact-1-section__inner {
	background: var(--color-blue);
	display: flex;
}

.contact-1-section__inner-left {
	width: 60%;
	padding: 50px;
}

.contact-1-section__inner-left * {
	color: white;
}

.contact-1-section__inner-left h2 {
	margin-bottom: 15px;
}

.contact-1-section__inner-right {
	width: 40%;
}

.contact-1-section__inner-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-1-section__contact-form {
	margin-top: 50px;
}

.video-section {
	padding-block: 150px;
}

section.video-section > .video-section__inner {
	max-width: 850px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.video-section__inner video {
	width: 100%;
	height: auto;
}

.video-section__inner p {
	width: 100%;
	max-width: 540px;
	text-align: center;
}

/* PADDAP Module - Gerelateerde vacatures */

.gerelateerde-vacatures-section {
	background: var(--color-blue);
	padding-block: 80px;
}

.gerelateerde-vacatures-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.gerelateerde-vacatures-section__inner h2,
.gerelateerde-vacatures-section__inner a {
	color: white;
}

.gerelateerde-vacatures-section__list-items {
	display: flex;
	flex-direction: row;
	gap: 25px;
}

.gerelateerde-vacatures-section .job-card {
	min-width: 550px;
}

.gerelateerde-vacatures-viewport {
	position: relative;
	width: 100%;
	cursor: grab;
	overflow: visible;
}

.gerelateerde-vacatures-viewport.grabbing {
	cursor: grabbing;
}

/* FAQ with accordion section */

.faq-section {
	padding-block: 90px;
}

.faq-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	gap: 90px;
}

/* over ons section */

.over-ons-section__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding-block: 70px;
}

.over-ons-section__header {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.over-ons-section h2 {
	max-width: 500px;
}

.over-ons-section__controls {
	display: flex;
	gap: 25px;
}

.over-ons-section__controls > button {
	border-radius: 999px;
	background: var(--color-green);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	cursor: pointer;
	border: none;
	outline: none;
}

.over-ons-section__controls-right {
	transform: rotate(180deg);
}

.over-ons-section__list-items {
	display: flex;
	gap: 25px;
}
.over-ons-section__card {
	min-width: 350px;
	max-width: 350px;
	width: 100%;
	background: white;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.over-ons-section__viewport {
	position: relative;
	width: 100%;
	cursor: grab;
	overflow: visible;
}

.over-ons-section__viewport.grabbing {
	cursor: grabbing;
}

.over-ons-section__image {
	margin-bottom: 15px;
	height: 300px;
	width: 100%;
	background: rgba(0,0,0,.1);
	overflow: hidden;
	pointer-events: none;
}

.over-ons-section__image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.over-ons-section__card h4 {
	margin-bottom: 10px;
}

.over-ons-section__position {
	margin-bottom: 15px;
}

.over-ons-section__description {
	margin-bottom: 30px;
}

.over-ons-section__links {
	display: flex;
	gap: 14px;
}

.over-ons-section__links > a {
	border-radius: 100%;
	background: var(--color-blue);
	height: 45px;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* spotify and instagram section */

.instagram-section {
	padding-top: 70px;
}

.instagram-section,
.spotify-section {
	margin-block: 70px; 
}

.instagram-section__inner,
.spotify-section__inner {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
}

.instagram-section__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.instagram-section__header {
	display: flex;
	justify-content: space-between;
}

.instagram-section__header h2 {
	max-width: 350px;
}

.instagram-section__content {
	width: 100%;
	height: 300px;
	background: rgba(0,0,0,.1);

}

/* hero 3 section */

.hero-3-section {
	background: var(--color-green);
	padding-top: 180px;
	padding-bottom: 160px;
}

.hero-3-section h1 {
	color: white;
	text-align: center;
}

.page-id-44 .hero-3-section h1 {
	max-width: 800px;
}

.hero-3-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-3-section__buttons {
	margin-top: 55px;
	display: flex;
	gap: 30px;
}

.hero-3-section__buttons br {
	display: none;
}

.hero-3-section > p {
	margin-top: 15px;
	text-align: center;
	color: white;
}

/* contact section image + text */

body.page-id-40 .img-text-section {
	margin-bottom: 140px;
}

body.page-id-40 .img-text-section__inner {
	flex-direction: row-reverse;
}

body.page-id-40 .img-text-section__content {
	width: 40%;
	margin-left: auto;
}

body.page-id-40 .img-text-section__content p {
	width: 100%;
}

/* hero 3 section */

.hero-3-section + section {
	padding: 120px 0 70px 0;
	background: #F6F6F6;
	margin-top: -50px;
	border-radius: var(--rounded-md) var(--rounded-md) 0 0;
}

/* contact section */

.contact-2-section__inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 70px;
	align-items: center;
}

.container > .solliciteren-section__inner,
.contact-2-section .wpcf7 {
	width: 100% !important;
	max-width: 500px !important;
}

.contact-2-section .wpcf7 input[type="text"], 
.contact-2-section .wpcf7 input[type="email"], 
.contact-2-section .wpcf7 input[type="tel"], 
.contact-2-section .wpcf7 textarea {
	border-radius: 5px;
}

.contact-2-section input.wpcf7-form-control {
	margin: 0 auto;
}

.contact-2-section .contact-2-section__details a {
	color: #183E44;
	font-weight: 700;
}

.contact-2-section .contact-2-section__details a:hover {
	text-decoration: underline;
}

.form-row {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.form-row .wpcf7-form-control-wrap {
	flex: 1;
}

.form-row input {
	width: 100%;
}

.contact-2-section__details { 
	display: flex;
	flex-direction: row;
	gap: 50px;
	width: fit-content;
	align-items: center;
}

.contact-2-section__details > div {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center;
}

.contact-2-section__inner > p {
	display: none;
}

/* faq page */

.page-id-44 .faq-section {
	padding-bottom: 150px;
}

/* article section */

.articles-section {
	padding-bottom: 150px !important;
}

.articles-section__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.article-card__title {
	color: var(--color-blue);
	transition: all 0.3s ease;
}

.article-card__image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.articles-section__meer-laden {
	margin: 60px auto 0;
	cursor: pointer;
}

.article-card__image img {
	height: 100%;
	width: 100%;
	object-fit: cover;	
	transition: all 0.3s ease;
}

.article-card {
	border: 1px solid var(--color-green);
	padding: 25px;
	cursor: pointer;
	transition: all 0.4s ease;
}

.article-card:hover img {
	transform: scale(1.05);
}

.article-card:hover .article-card__title {
	color: var(--color-green);
}

.article-card,
.article-card__info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* error 404 page */

body.error404 .error-404 {
	background: var(--color-blue);
	display: grid;
	place-items: center;
	min-height: 100vh;
	position: relative;
}

body.error404 .error-404 * {
	color: white;
	text-align: center;
}

body.error404 .error-404 .page-content {
	width: 100%;
	max-width: 350px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.error-404__decoration-1, 
.error-404__decoration-2 {
	position: absolute;
	border-style: solid;
	border-color: #50C65F;
	background: transparent;
	height: 50%;
	width: 35%;
}

.error-404__decoration-1 {
	top: 0;
	left: 0;
	border-bottom-right-radius: var(--rounded-lg);
	border-width: 0 130px 130px 0;
}

.error-404__decoration-2 {
	bottom: 0;
	right: 0;
	border-top-left-radius: var(--rounded-lg);
	border-width: 130px 0 0 130px;
}
.no-favourite-jobs-found {
	display: flex;
	flex-flow: column;
	align-items: center;
}
.no-favourite-jobs-found p {
	color: #ffffff;
	margin-bottom: 1rem;
}

/* Apply + FAQ */

/* CF7 Form */

.sollicitatie-form__row {
	display: flex;
	gap: 25px;
}

.sollicitatie-form__row label {
	flex: 1;
}

.sollicitatie-form__row .wpcf7-form-control-wrap,
.sollicitatie-form__row input {
	width: 100%;
}

.custom-select {
	position: relative;
	width: 100%;
}

.custom-select__trigger {
	background: white;
	border-radius: var(--rounded-sm);
	height: 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-blue);
	font-weight: 700;
	cursor: pointer;
	user-select: none;
}

.custom-select__trigger svg-icon {
	display: flex;
	align-items: center;
	transition: transform 0.25s ease;
}

.custom-select.open .custom-select__trigger svg-icon {
	transform: rotate(180deg);
}

.custom-select__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 100%;
	background: white;
	border-radius: var(--rounded-sm);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	z-index: 100;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-10px);
	transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.custom-select.open .custom-select__dropdown {
	max-height: 300px;
	opacity: 1;
	transform: translateY(0);
}

.custom-select__option {
	padding: 12px 15px;
	cursor: pointer;
	color: var(--color-blue);
	font-weight: 600;
	transition: background 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover {
	background: #F6F6F6;
	color: var(--color-green);
}

.custom-select__option.selected {
	color: var(--color-green);
	background: #F6F6F6;
}

.vacature-overzicht__jobs-filters-inner input[type="text"].form-control {
	background: white;
	border-radius: var(--rounded-sm);
	height: 50px;
	padding-left: 10px;
	padding-right: 15px;
	border: none;
	outline: none;
	color: var(--color-blue);
	font-weight: 700;
	font-family: var(--font-body);
	font-size: var(--text-base);
	width: 100%;
}

.vacature-overzicht__jobs-filters-inner input[type="text"].form-control::placeholder {
	color: var(--color-blue);
	opacity: 0.6;
}

/* artikel / article detail page */

.artikel-hero-section {
	position: relative;
}

.artikel-hero-section .hero-3-section__inner {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	align-items: start;
}

.artikel-hero-section .hero-3-section__inner h1 {
	max-width: 50%;
	text-align: left;
}

.entry-footer {
	display: none;
}

.artikel-content-section {
	padding-bottom: 150px !important;
}

.artikel-content-section h2 {
	text-align: left;
	width: 100%;
}

.artikel-content-section__inner {
	display: flex;
	flex-direction: column;	
	max-width: 800px !important;
}

.artikel-content-section p + h2 {
	margin-top: 60px;
}

.artikel-content-section h2 + p {
	margin-top: 20px;
}

.artikel-content-section img {
	margin-block: 60px;
	width: 100%;
	height: auto;
}

/* job alert */

.pjaOpenAlert.bttn.green {
	background: var(--color-green) !important;
}

.pjaPopup form {
	background: #F6F6F6;
	padding-inline: 0;
}

.pjaPopup * {
	color: var(--color-blue) !important;
}

.pja-close-btn {
	position: absolute;
	top: 30px;
	right: 40px;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
	padding: 4px;
	transition: opacity 0.2s ease;
}

.pja-close-btn:hover {
	opacity: 0.6;
}

.pjaPopup form .fieldsWrapper {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;	
}

.contact-form__name-row {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.catCheckboxContainer {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.cat-checkbox-group h4 {
	margin-bottom: 15px;
	font-weight: 600 !important;
}

.contact-form__checkbox-label input[type="checkbox"],
.contact-form__checkbox-label {
	cursor: pointer;
}

.pja-submit-wrapper {
	grid-column: span 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pja-submit-wrapper .pjaBttnSubmit {
	color: white !important;
	margin: 0 auto;
	min-width: 300px;
}

.pja-submit-wrapper .pjaBttnSubmit:hover {
	background: var(--color-blue) !important;
	color: white !important;
}

/* responsiveness */

.hamburger-menu {
	display: none;
	outline: none;
	background: none;
	border: none;
}

@media (max-width: 1380px) {
	.img-text-section__tagline-bottom-extension,
	.container .img-text-section__tagline-bottom {
		height: clamp(0px, 7.5vw, 1000px);
	}
}

@media (max-width: 1180px) {
	.img-text-section__tagline-bottom span {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	:root {
		/* radius */
		--rounded-sm: 20px;
		--rounded-md: 40px;
		--rounded-lg: 200px;
		--rounded-full: 999px;

		/* font sizes */
		--text-sm:   0.6875rem;  /* 11px */
		--text-base: 0.8125rem;  /* 13px */
		--text-lg:   1rem;       /* 16px */
		--text-h3:   1.25rem;    /* 20px */
		--text-h2:   1.75rem;    /* 28px */
		--text-h1:   2.25rem;    /* 36px */
	}
	.page-id-8 .hero-1 {
		margin-bottom: 600px;
	}
	#masthead,
	.container {
		padding-inline: 20px;
	}
	.hamburger-menu {
		display: flex;
	}
	#masthead .site-header__content .mobile-menu {
		position: absolute;
		top: 30px;
		left: 30px;
		padding-inline: 0;
		right: 30px;
		background: white;
		border-radius: var(--rounded-md) var(--rounded-md) var(--rounded-sm) var(--rounded-sm);
		transform: translatey(-20px);
		height: 0;
		align-items: start;
		justify-content: start;
		transition: all 0.3s ease;
		overflow: hidden;
		opacity: 0;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
		display: flex;
	}
	#masthead .site-header__content .mobile-menu__nav .contact-bttn {
		opacity: 0;
		width: 100%;
		transition: 0.5s ease;
	}
	#masthead .site-header__content.open .mobile-menu__nav .contact-bttn {
		margin-top: 40px;
		color: white;
		font-weight: 400;
		opacity: 1;
		font-size: 16px;
	}
	#masthead .site-header__content.open .mobile-menu {
		padding-top: 80px;
		padding-bottom: 30px;
		padding-inline: 30px;
		left: 0;
		right: 0;
		top: 0;
		height: 500px;
		opacity: 1;
		border-radius: 0 0 var(--rounded-sm) var(--rounded-sm);
	}
	.site-header__content.open .actions .bttn {
		opacity: 0;
		pointer-events: none;
		font-family: var(--font-display);
	}
	.mobile-menu__nav {
		position: absolute;
		top: 50px;
		left: 30px;
		right: 30px;
		opacity: 0;
		transition: top 0.2s ease, opacity 0.5s ease;
	}
	#masthead .site-header__content.open  .mobile-menu__nav {
		top: 130px;
		opacity: 1;
	}

	.site-header__content > *:not(.mobile-menu) {
		z-index: 20;
	}
	#masthead .site-header__content .mobile-menu a {
		font-family: var(--font-display);
		font-weight: 800;
		font-size: var(--text-lg);
		color: var(--color-blue);
		transition: all 0.3s ease;
	}
	.menu-menu-1-container .sub-menu,
	.menu-menu-1-container .menu-item,
	.menu-menu-1-container .menu {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.menu-menu-1-container .sub-menu {
		padding-left: 15px;
	}
	#masthead .site-header__content .mobile-menu .sub-menu a {
		font-weight: 500;
	}
	.page-id-8 .hero-1 h1 {
		font-size: 40px;
	}
	#masthead .site-header__content {
		height: 70px;
	}
	.hero-1 {
		height: 600px;
	}
	.page-id-8 .hero-1__vacatures {
		display: flex;
		flex-direction: column;
	}
	.usp-section__item h3 {
		margin-top: 30px;
	}
	.job-card__details .bttn {
		margin-left: 0;
	}
	.job-card__description {
		margin-top: 20px;
	}
	.job-card__title {
		max-width: 90%;
	}
	.usp-section {
		margin-top: 80px;
	}
	.img-text-section {
		margin-top: 80px;
	}
	.img-text-section__content {
		width: 100%;
		transform: none !important;
	}
	.contact-1-section__inner-right,
	.contact-1-section__inner-left,
	.img-text-section__image {
		height: 100% !important;
		width: 100% !important;
	}
	.instagram-section__header {
		gap: 0 !important;
	}
	.grw-row .grw-review {
		min-width: 300px;
	}
	.site-footer__top-content,
	.logo-track {
		gap: 20px;
	}
	.vacature-overzicht__hero-decoration-1 {
		width: 60%;
		top: 0;
		left: 0;
		height: 180px;
		border-bottom-right-radius: var(--rounded-lg);
		border-width: 0 90px 90px 0;
	}
	.vacature-overzicht__hero-decoration-2 {
		width: 60%;
		bottom: 0;
		right: 0;
		height: 400px;
		border-top-left-radius: var(--rounded-lg);
		border-width: 90px 0 0 90px;
	}
	.site-footer__top-image,
	.site-footer__top-content {
		width: 100%;
		padding: 0;
	}
	.site-footer__top-content h2 br {
		display: none;
	}
	.site-footer__bottom,
	.site-footer__top {
		padding: 40px 20px;
	}
	.site-footer__bottom-inner,
	.site-footer__bottom-top {
		gap: 40px !important;
	}
	.site-footer__top-image {
		position: static;
	}
	.vacature-overzicht__jobs-content-wrapper,
	.vacature-overzicht__jobs-grid > div {
		display: flex !important;
		flex-direction: column !important;
	}
	.vacature-overzicht__jobs-filters-inner .bttn {
		width: 100%;
	}
	.vacature-overzicht__jobs-filters-inner .bttn:hover {
		background: white;
		color: var(--color-blue);
	}
	section.hero-2-section {
		align-items: start;
		background-position: left;
		background-size: cover;
		position: relative;
	}
	.hero-2-section__inner-content {
		position: relative;
		z-index: 50;
	}
	section.hero-2-section::before {
		content: '';
		position: absolute;
		inset: 0;
		background: black;
		opacity: 0.6;
		z-index: 0;
	}
	section.hero-2-section .hero-2-section__inner-content {
		width: 100%;
	}
	.hero-2-section .bttn {
		background: var(--color-green);
	}
	.gerelateerde-vacatures-section__list-items {
		flex-direction: column;
	}
	.faq-section__inner {
		gap: 20px;
	}
	.text-scroller {
		padding-top: 200px;
	}
	.usp-2-section {
		padding-top: 70px !important;
	}
	.usp-2-section__top-right {
		padding: 20px;
	}
	.usp-2-section__top-right-item p {
		transform: none;
		margin-left: 0;
	}
	.usp-2-section__top-right {
		gap: 40px;
	}
	.contact-1-section > div,
	.usp-2-section__bottom {
		display: flex;
		flex-direction: column-reverse;
		gap: 20px;
	}
	.usp-2-section__bottom > div {
		display: none;
	}
	.img-text-section__image.inverted {
		order: -1;
	}
	.contact-1-section__inner-left {
		padding: 20px;
		padding-bottom: 40px;
	}
	.logo-slider-section {
		padding-block: 100px !important;
	}
	.video-section {
		padding-top: 50px;
		padding-bottom: 100px;
	}
	.over-ons-section__list-items {
		gap: 40px !important;
	}
	.over-ons-section__card {
		min-width: 100%;
		max-width: 100%;
		width: 100%;
		background: white;
		padding: 0;
	}
	.quote-section__decorations > div:first-child {
		left: 0;
		top: 0;
		width: 60%;
		height: 30%;
		border-bottom-right-radius: var(--rounded-lg);
		border-width: 0 100px 100px 0;
	}
	.quote-section__decorations > div:last-child {
		bottom: 0;
		right: 0;
		width: 60%;
		height: 30%;
		border-top-left-radius: var(--rounded-lg);
		border-width: 100px 0 0 100px;
	}
	.instagram-section,
	.spotify-section {
		margin: 0;
	}
	.instagram-section {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.contact-2-section__inner {
		display: flex;
		flex-direction: column;
		align-items: start;
	}
	.contact-2-section {
		padding-top: 80px !important;
		padding-bottom: 0 !important;
	}
	.solliciteren-section,
	.contact-2-section__inner {
		padding-inline: 40px !important;
	}
	.img-text-section {
		margin-bottom: 80px !important;
	}
	.solliciteren-section {
		padding-top: 80px !important;
	}
	.artikel-hero-section__decoration, .vacature-detail__hero-decoration {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 45%;
		height: 50%;
		border-top-left-radius: var(--rounded-lg);
		border-width: 80px 0 0 80px;
		border-style: solid;
		border-color: var(--color-green-2);
		background: transparent;
	}
	.vacature-detail__hero-meta {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		border-radius: var(--rounded-sm);
		gap: 10px;
		padding: 20px;
	}
	.vacature-detail__hero-bar {
		display: flex;
		flex-wrap: wrap;
	}
	.vacature-detail__recruiter-card {
		position: static;
		padding: 20px;
	}
	.vacature-detail__step-number,
	.vacature-detail__recruiter-image {
		width: 100%;
		height: 100%;
		aspect-ratio: 1/1;
	}
	.vacature-detail__apply-section {
		padding: 0;
	}

	.what-we-do-section__bottom-right {
		margin: 0 auto;
		width: 80%;
	}
	.what-we-do-section__bottom {
		gap: 40px !important;
	}
	.vacature-detail__steps-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.vacature-detail__step-number {
		width: 100%;
	}
	.vacature-detail__steps-decoration {
		position: absolute;
		top: 0;
		right: 0;
		width: 90%;
		height: 75%;
		border-bottom-left-radius: var(--rounded-lg);
		border-width: 0 0 100px 100px;
		border-style: solid;
		border-color: var(--color-green-2);
		background: transparent;
		z-index: 0;
	}
	.job-alert-section__inner br {
		display: none;
	}
	.faq-section,
	.artikel-content-section,
	.job-alert-section {
		padding-block: 80px !important;
	}
	.vacature-overzicht__jobs-content-wrapper {
		padding-bottom: 80px;
	}
	.instagram-section {
		padding-top: 80px;
		padding-bottom: 0;
	}
	.page-id-36 .instagram-section {
		padding-block: 80px;
	}
	.faq-section + .faq-section {
		padding-top: 0 !important;
	}
	.container .img-text-section__tagline-bottom {
		transform: none;
		padding-right: 20px;
		padding-top: 0;
		height: clamp(20px, 16vw ,130px);
		width: 60%;
		left: auto;
		background: transparent;
		right: 0;
	}
	.img-text-section__tagline-curve {
		transform: translatex(-60px);
	}
	.img-text-section__tagline-bottom span {
		font-size: clamp(10px, 5.5vw, 40px);
		transform: none;
		text-align: right;
	}
	.img-text-section__tagline-curve {
		border-top: 100px solid var(--color-green-2);
		border-left: 100px solid var(--color-green-2);
		border-bottom: 100px solid var(--color-green-2);
	}
	.img-text-section__tagline-curve-circle {
		right: -50px;
		top: -100px;
		height: 100px;
		width: 100px;
	}
	.img-text-section .img-text-section__inner {
		gap: 40px;
	}

	/* 	full width */
	.img-text-section__content,
	.vacature-detail__step,
	.vacature-detail__steps-inner-content,
	.what-we-do-section__bottom-left,
	.vacature-detail__faq,
	.vacature-detail__sidebar,
	.usp-2-section__top-left,
	.job-card__description,
	.gerelateerde-vacatures-section .job-card {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
	/* 	hide elements */
	.over-ons-section__controls,
	.vacature-overzicht__layout-toggle-wrapper,
	.mobile-menu .chevron,
	#masthead .main-navigation .menu,
	.img-text-section__tagline-bottom-extension {
		display: none;
	}
	/* 	full width with padding inline */
	.job-alert-section,
	.vacature-detail__steps-inner-content,
	.vacature-detail__apply-inner,
	.vacature-detail__content-inner,
	.vacature-detail__hero-content,
	.articles-section__inner,
	.quote-section__inner .h2,
	.hero-3-section,
	.faq-section,
	.gerelateerde-vacatures-section,
	.faq-section,
	.artikel-content-section__inner {
		width: 100% !important;
		padding-inline: 20px !important;
	}
	
	/* 	full width with */
	.vacature-overzicht__jobs-filters-wrapper,
	.vacature-overzicht__jobs-grid {
		width: 100% !important;
	}
	
	/* flex column direction */
	.vacature-overzicht__jobs-grid,
	.job-alert-section,
	.vacature-detail__recruiter-card,
	.vacature-detail__content-inner,
	.contact-2-section__details,
	.articles-section__bekijk-vacatures-row,
	.articles-section__inner,
	.over-ons-section__list-items,
	.usp-2-section__top-right-item,
	.usp-2-section__inner,
	.usp-2-section__top,
	.vacature-overzicht__open-sollicitatie-row,
	.site-footer__bottom-bar,
	.site-footer__logo,
	.site-footer__top-cta,
	.instagram-section__header,
	.site-footer__bottom-top,
	.usp-section__grid,
	.job-alert-section__inner,
	.img-text-section__inner,
	.job-alert-section__inner-right,
	.job-card__details {
		display: flex !important;
		flex-direction: column !important;
		align-items: start;
		gap: 20px;
	}
	/* flex column reverse direction */
	.vacature-detail__apply-inner,
	.what-we-do-section__bottom,
	.site-footer__top-inner {
		display: flex;
		flex-direction: column-reverse;
		align-items: start;
		gap: 20px;
	}
	/* 	80px gap */
	.vacature-detail__content-inner,
	.vacature-detail__apply-inner {
		gap: 80px;
	}
}

@media (max-width: 600px) {
	.site-header__content .actions .bttn {
		display: none;
	}
}
.grecaptcha-badge {
    display: none !important;
}
.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
    display: none !important;
}