/*!
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/
*/

@font-face {
	font-family: 'Inter';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
}

@font-face {
	font-family: 'InfoTextHeader';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextComp.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'InfoTextHeader';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextComp-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'InfoTextHeader';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextComp-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: 'InfoTextHeader';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextComp-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: 'InfoText';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextWeb.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'InfoText';
	src: url('/wp-content/themes/paddap-custom-theme/fonts/InfoTextWeb-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

.menu-language-menu-container {
	display: none !important;
}

:root {
	/* Typography */
	--heading-font: "InfoTextHeader";
	--body-font: "InfoText";
	--fallback-font: 'serif';

	/* Colors */
	--primary: #EF3024;
	--secondary: #A9C301;
	--tertiary: #016C64;
	--tertiary-tint-1: #016C64;
	--tertiary-tint-2: #005F57;
	/* 	--tertiary-tint-3: rgba(1, 108, 100, 0.1); */
	--tertiary-tint-3: #E6EFEE;


	--background: #FBFBFA;

	--gradient: var(--tertiary) 0%, var(--secondary) 100%;

	--white: #FFFFFF;
	--black: #444;

	/* Utility */
	--navbar-height: 140px;
	--container-width: 1280px;
	--small-container-width: 920px;

	/* 	 Paddings and margins: */
	--section-padding: 150px;
	--container-padding: calc((100vw - var(--container-width)) / 2);

	--inner-margin: 56px;
}

@media (max-width: 1520px) {
	:root { 
		--container-width: 1280px 
	}
}
@media (max-width: 1280px) {
	:root { 
		--container-width: 960px 
	}
}
@media (max-width: 960px) {
	:root { 
		--container-width: 768px
	}
}
@media (max-width: 768px) {
	:root { 
		--container-width: 90vw;
		--section-padding: 75px;
	}
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--background);
	overflow-x: hidden;
}

body.menu--open {
	height: 100vh; 
	overflow: hidden;
}
body.no-scroll {
	overflow: hidden;
}

body,
p, 
input,
a,
option {
	font-family: var(--body-font), var(--fallback-font);
	font-size: 20px;
	line-height: normal;
	font-weight: 300;
	color: var(--black);
	text-decoration: none;
}

a {
	outline: none;
	cursor: pointer;
	transition: all .2s ease;
}

h1, h2, h3, h4, h5 {
	font-family: var(--heading-font), var(--fallback-font);
}
h1, .h1 {
	font-size: 42px;
	line-height: normal;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--tertiary);
	hyphens: auto;
}
h2 {
	font-size: 32px;
	line-height: normal;
	font-weight: 700;
	color: var(--tertiary);
	margin-bottom: 16px;
}
h3 {
	font-size: 24px;
	line-height: normal;
	font-weight: 600;
	color: var(--tertiary);
}
h4 {
	font-size: 20px;
	line-height: normal;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--tertiary);
}

img,
svg,
video,
iframe {
	display: block;
}

section {
	margin-top: var(--section-padding);
}

.highlight {
	color: var(--secondary);	
}


/* Utility */
.module-intro {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: var(--inner-margin);
}
.module-intro > h2,
.module-intro > h1,
.module-intro .wysiwyg,
.module-intro__wrapper {
	width: 50%;
}
@media (max-width: 768px) {
	.module-intro {
		flex-direction: column;
		gap: 0;
	}
	.module-intro > h2,
	.module-intro > h1,
	.module-intro .wysiwyg,
	.module-intro__wrapper {
		width: 100%;
	}
}

.wysiwyg .white-space-bottom {
	margin-bottom: 32px;
}

.wysiwyg p:last-of-type {
	margin-bottom: 0;
}
.btn-group {
	display: flex;
	gap: 16px;
}
.container {
	width: 90%;
	max-width: var(--container-width);
	margin-right: auto;
	margin-left: auto;
}
.container-visible {
	padding: 0 var(--container-padding);
}
.small-container {
	width: 90%;
	max-width: var(--small-container-width);
	margin-right: auto;
	margin-left: auto;
}
.flex-element {
	width: 50%;
}
.link-group {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}
.link {
	color: var(--black);
}
.link:visited {
	color: var(--black);
}
@media (max-width: 768px) {
	.flex-element {
		width: 100%;
	}
	.link-group {
		flex-direction: column;
	}
}
.col-6 {
	grid-column: span 6;
}
.col-12 {
	grid-column: span 12;
}

.label {
	color: var(--white);
	padding: 8px;
	font-size: 18px;
	font-weight: 700;
	width: fit-content;
}
.label--highlight {
	background-color: var(--secondary);
}

.taxonomy-item {
	padding: 8px 16px;
	border: 1px solid var(--black);
	border-radius: 99px;
	font-size: 18px;
	white-space: nowrap;
	border-color: gray !important;
	color: gray !important;
}
.taxonomy-item__inner {
	display: flex;
	align-items: center;
	gap: 4px;
}
.taxonomy-item__inner i {
	color: var(--tertiary-tint-2);
}

.story-taxonomy {
	border-color: gray !important;
	color: gray !important;
}

.card-link,
.card-link:visited {
	color: var(--tertiary);
	font-size: 18px;
	font-weight: 700;
	border-bottom: 2px solid transparent;
	width: fit-content;
	transition: all .2s ease;
}
.card-link:hover,
.card-link:hover:visited {
	color: var(--secondary);
	border-bottom-color: var(--secondary);
}

/* Buttons */
.btn {
	padding: 14px 24px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	justify-content: center;

	border: none;
	border-color: unset;
	border-radius: 3px;
	background: unset;
	color: unset;
}
.btn__inner,
.btn a {
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	font-family: var(--body-font);
	color: var(--white);
	position: relative;
	z-index: 2;
	transition: all .2s ease;
}
.btn:before {
	content: '';
	position: absolute;
	content: '';
	position: absolute;
	z-index: 1;

	transform: skewX(45deg);
	width: 155%;
	height: 155%;
	top: -25%;
	left: -25%;

	transition: all .25s ease;
}
.btn:hover:before {
	transform: translateX(100%) skewX(45deg);
}

.btn--1 {
	background-color: var(--secondary);
}
.btn--1:before {
	background-color: var(--primary);
}
.btn--1:hover .btn__inner {
	color: var(--black);
}
.btn:hover a {
	color: var(--black);
}

.btn--2 {
	background-color: var(--primary);
}
.btn--2:before {
	background-color: var(--secondary);
}
.btn--2 .btn__inner {
	color: var(--black);
}

.btn--2 a {
	color: var(--black);
}

.btn--2:hover a, .btn--2:hover .btn__inner {
	color: var(--white);
}

.btn--3 {
	border: 1px solid var(--tertiary);
	background-color: var(--tertiary);
}
.btn--3 .btn__inner {
	color: var(--tertiary);
}
.btn--3:before {
	background-color: var(--white);
}
.btn--3:hover .btn__inner {
	color: var(--white);
}

.btn--4 {
	padding: 12px 24px;
	border: 1px solid var(--tertiary);
}
.btn--4 .btn__inner {
	color: var(--tertiary);
	font-weight: 600;
}
.btn--4:hover {
	background-color: var(--tertiary);
}
.btn--4:hover .btn__inner {
	color: var(--white);
}

.btn--5 {
	background-color: var(--white);
	border: 2px solid var(--tertiary);
}
.btn--5 .btn__inner {
	color: var(--white);
}
.btn--5:before {
	background-color: var(--tertiary);
}
.btn--5:hover .btn__inner {
	color: var(--tertiary);
}

.btn-group > div.data-mrwork-website-widget-popup_82731a14-047a-4e3c-b7d7-f5cb52427f74 {
	background-color: var(--primary);
	border-radius: 0;
	border: none;
	padding: 14px 24px;
	font-size: 16px;
	font-weight: 500;
	height: 48px;
	border-radius: 3px;
	transition: all .2s ease;
}

.btn-group > div.data-mrwork-website-widget-popup_82731a14-047a-4e3c-b7d7-f5cb52427f74:hover {
	background-color: var(--secondary);
	color: var(--black);
}

div.wpforms-container-full .btn {
	overflow: hidden;
	position: relative;
	padding: 14px 24px;
	border-radius: 3px;
	width: fit-content;
	border: 2px solid transparent;
}
div.wpforms-container-full .btn.btn--5 {
	border-color: var(--tertiary);
}

div.wpforms-container-full button[type=submit].wpforms-submit.btn:not(:hover):not(:active) {
	color: var(--white);
	background-color: var(--tertiary);
	background: var(--tertiary);
	height: unset;
	padding: 14px 24px;
	border: 2px solid transparent;
}
div.wpforms-container-full .wpforms-submit.btn:before {
	content: none;
}

div.wpforms-container-full button[type=submit].wpforms-submit.btn:hover {
	color: var(--tertiary);
	background-color: var(--white);
	background: var(--white);
	height: unset;
	padding: 14px 24px;
	border: 2px solid var(--tertiary);
}

.form-link,
.form-link:visited {
	color: var(--tertiary);
	text-decoration: underline;
	transition: all .2s ease;
}

.form-link:hover {
	color: var(--secondary);
}

div.wpforms-container-full button[type=submit].wpforms-submit:not(:hover):not(:active),
div.wpforms-container-full .wpforms-confirmation-container-full .btn {
	color: var(--white);
	background-color: var(--tertiary);
	background: var(--tertiary);
	height: unset;
	padding: 14px 24px;
	border: 2px solid transparent;
}

div.wpforms-container-full button[type=submit].wpforms-submit:hover,
div.wpforms-container-full .wpforms-confirmation-container-full .btn:hover {
	color: var(--tertiary);
	background-color: var(--white);
	background: var(--white);
	height: unset;
	padding: 14px 24px;
	border: 2px solid var(--tertiary);
}

@media (max-width: 768px) {
	.btn {
		width: 100%;
	}
	.btn-group {
		flex-direction: column;
	}
}
/* END Buttons */

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--white);
	z-index: 999;

	transition: all .2s ease;
}
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header__top {
	background: linear-gradient(90deg, var(--gradient));
}
.header__top-inner {
	padding: 10px 0;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.header__top p {
	margin: 0;
	color: var(--white);
}
.header__top a {
	margin: 0;
	color: #96FF00;
}
.header__top a:hover {
	color: var(--white);
}

.header__bottom {
	background-color: var(--white);
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header__bottom-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	gap: 18px;
}

.header__logo-wrapper {
	min-height: 56px;
	min-width: 72px;
}

.header .menu {
	display: flex;
}
.header .menu .home-item {
	display: none;
}
.header .menu .kandidaat {
	display: none;
}

.header__main .menu,
.header-mobile-navigation .menu {
	gap: 18px;
	flex-wrap: wrap;
}
.header__main .menu .menu-item:not(.btn),
.header-mobile-navigation .menu .menu-item:not(.btn) {
	border-bottom: 2px solid transparent;
	transition: all .2s ease;
}
.header__main .menu .menu-item:hover,
.header-mobile-navigation .menu .menu-item:hover {
	border-color: var(--secondary);
}
.header__main .menu .menu-item:hover > a,
.header-mobile-navigation .menu .menu-item:hover > a {
	color: var(--secondary);
}
.header__main .menu .menu-item:not(.btn):hover > a:visited,
.header-mobile-navigation .menu .menu-item:hover > a:visited,
.header-mobile-navigation .menu .menu-item:not(.btn):hover > a:visited {
	color: var(--secondary);
}
.header__main .menu .menu-item a,
.header-mobile-navigation .menu .menu-item a {
	font-weight: 700;
	color: var(--tertiary);
}
.header__main .menu .menu-item:not(.btn) a:visited,
.header-mobile-navigation .menu .menu-item:not(.btn) a:visited {
	color: var(--tertiary);
}

.header__main .menu .menu-item.current-menu-item,
.header-mobile-navigation .menu .menu-item.current-menu-item {
	border-color: var(--secondary);
}
.header__main .menu .menu-item.current-menu-item a,
.header__main .menu .menu-item.current-menu-item:not(.btn) a,
.header-mobile-navigation .menu .menu-item.current-menu-item:not(.btn) a,
.header-mobile-navigation .menu .menu-item.current-menu-item:not(.btn) a:visited {
	color: var(--secondary);
}

.header__sec .menu {
	gap: 20px;
	align-items: center;
}

.header__sec-inner {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header__sec-inner .menu-language-menu-container > .menu > .menu-item:last-child {
	display: none;
}

.header__sec-inner .menu-language-menu-container > .menu > .wpml-ls-first-item.wpml-ls-last-item {
	display: none;
}

.header__hamburger {
	display: none;
	cursor: pointer;
}
.header__hamburger-inner {
	display: flex;
	flex-direction: column;
	gap: 4px;
	position: relative;
	width: 25px;
	height: 18px;
}
.header__hamburger-line {
	width: 25px;
	height: 3px;
	background-color: var(--tertiary);

	position: absolute;
}

.header__hamburger-line--1 {
	top: 0;
	left: 0;

	transition: translate .2s .2s ease;
}
.header__hamburger-line--2 {
	top: 50%;
	left: 0;
	transform-origin: top;
	transform: translateY(-50%);

	transition: rotate .2s 0s ease;
}
.header__hamburger-line--3 {
	top: 50%;
	left: 0;
	transform-origin: top;
	transform: translateY(-50%);

	transition: rotate .2s 0s ease;
}
.header__hamburger-line--4 {
	bottom: 0;
	left: 0;

	transition: translate .2s .2s ease;
}

.header--open .header__hamburger-line--1 {
	translate: 300%;

	transition: translate .2s ease;
}
.header--open .header__hamburger-line--4 {
	translate: 300%;

	transition: translate .2s ease;
}

.header--open .header__hamburger-line--2 {
	rotate: 45deg;

	transition: rotate .2s .2s ease;
}
.header--open .header__hamburger-line--3 {
	rotate: -45deg;

	transition: rotate .2s .2s ease;
}

.menu-language-menu-container .menu > .wpml-ls-menu-item a:visited {
	color: var(--black);
}

.menu-language-menu-container .menu > .wpml-ls-current-language {
	position: relative;
	padding-right: 24px;
}
.menu-language-menu-container .menu > .wpml-ls-current-language:before {
	content: '\f078';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.menu-language-menu-container .menu .sub-menu {
	position: absolute;
	z-index: 2;
	padding-top: 56px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;

	display: none;
	width: max-content;

	left: 50%;
	transform: translateX(-50%);
}
.menu-language-menu-container .menu .sub-menu:before {
	content: '';
	position: absolute;
	top: 39px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	z-index: -1;

	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.11);
}

.menu-language-menu-container .menu .sub-menu .menu-item a {
	color: var(--black);
}

.menu-language-menu-container .menu > .wpml-ls-current-language:hover .sub-menu {
	display: block;
}

.menu-language-menu-container .menu .wpml-ls-item,
.menu-language-menu-container .menu .wpml-ls-item:hover,
.menu-language-menu-container .menu .wpml-ls-item:visited:hover { 
	color: var(--black);
}

.menu-language-menu-container .menu .sub-menu .wpml-ls-item:hover {
	text-decoration: underline;
}

.header-mobile-navigation {
	display: none;
}

.header-usp-balk {
	height: 40px;
	background-color: var(--tertiary-tint-2);
}
.header-usp-balk.bottom {
	transform: translateY(-100%);
	position: fixed;
	top: 140px;
	width: 100%;
	transition: all .2s ease;
}
body.scrolled--down .header-usp-balk.bottom {
	transform: translateY(0%);
}
body.scrolled--down.single-vacature .header-usp-balk.bottom {
	transform: translateY(-100%);
}

.header-usp-balk:not(.bottom) {
	background: linear-gradient(90deg, #005F57 0%, #A9C301 100%);
}
.header-usp-balk:not(.bottom) .header-usp-balk__marquee-track {
	animation-play-state: paused;
	width: fit-content;
}
.header-usp-balk:not(.bottom) .header-usp-balk__marquee {
	justify-content: flex-end;
}

.header-usp-balk__marquee {
	overflow: clip;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 var(--container-padding);
}
.header-usp-balk__marquee-track {
	display: flex;
	justify-content: space-between;
	width: 100%;

	animation: marquee-move-text 60s linear infinite;
	animation-play-state: paused;
}
.header-usp-balk__marquee-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.header-usp-balk__marquee-item.hidden {
	display: none;
}
.header-usp-balk__marquee-item i,
.header-usp-balk__marquee-item p {
	color: #E6EFEE;
	margin: 0;
	white-space: nowrap;
	font-size: 16px;
}

.header-usp-balk:not(.bottom) .header-usp-balk__marquee-item p .link {
	font-size: 16px;
	color: #E6EFEE;
	margin-left:10px;
}

.header-usp-balk.top {
	display: flex;
	justify-content: space-between;
	padding: 0 var(--container-padding);
}

.header-usp-balk.top .header-usp-balk__marquee {
	padding: 0;
}
.header-usp-balk.top .header-usp-balk__marquee-track {
	gap: 16px;
}

.header-usp-balk.top .header-usp-balk__question {
	display: flex;
	align-items: center;
}
.header-usp-balk.top .header-usp-balk__question p,
.header-usp-balk.top .header-usp-balk__question p a {
	color: var(--white);
	font-size: 16px;
	margin: 0;	
}
.header-usp-balk.top .header-usp-balk__question p a {
	margin-left: 8px;
	border-bottom: 1px solid transparent;
}
.header-usp-balk.top .header-usp-balk__question p a:hover {
	border-bottom-color: var(--white);
}

@media (max-width: 1280px) {
	.header-usp-balk.top .header-usp-balk__marquee-item:last-child {
		display: none;
	}
}

@media (max-width: 960px) {
	.header-usp-balk.top .header-usp-balk__marquee-item {
		display: none;
	}
}

body.scrolled--up #masthead {
	transform: translateY(0%);	
}
body.scrolled--down #masthead {
	transform: translateY(calc(-100%));	
}

.mobile-item {
	display: none;
}

.menu .menu-item.vacancy-menu-item {
	position: relative;
	padding-right: 36px;
}
.vacancy-menu-item__number {
	position: absolute;
	top: 50%;
	right: 0;
	border-radius: 99px;
	background-color: var(--primary);
	color: var(--white);
	font-size: 14px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;

	transform: translateY(-50%);

	cursor: pointer;
}

.header__main .menu .menu-item  {
	position: relative;
}
.header__main .menu > .menu-item > .sub-menu {
	position: absolute;
	z-index: 2;
	padding-top: 54px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	width: max-content;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	flex-direction: column;
	gap: 6px;
}
.header__main .menu > .menu-item > .sub-menu:before {
	content: '';
	position: absolute;
	top: 38px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.11);
}
.header__main .menu > .menu-item:hover > .sub-menu {
	display: flex;
}


.header-mobile-navigation .menu > .menu-item {
	position: relative;
}
.header-mobile-navigation .menu > .menu-item-has-children a {
	display: block;
	width: 100%;
	text-align: center;
}

.header-mobile-navigation .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 4px;		
}
.header-mobile-navigation .sub-menu .menu-item:first-child {
	margin-top: 8px;
}
.header-mobile-navigation .sub-menu.is-open {
}
.submenu-toggle {
	background: none;
	border: none;
	cursor: pointer;

	position: absolute;
	top: 50%;
	right: -48px;
	transform: translateY(-50%);
}
.submenu-toggle i {
	transition: transform 0.2s ease;
	color: var(--tertiary);
}
.submenu-toggle.is-open i {
	transform: rotate(180deg);
}

.submenu-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

@media (max-width: 1280px) {
	.header-usp-balk.bottom .header-usp-balk__marquee {
		padding: 0;
	}
	.header-usp-balk__marquee-track {
		animation-play-state: running;
		gap: 48px;
		width: max-content;
		padding-left: 48px;
	}
	.header-usp-balk__marquee-item.hidden {
		display: flex;
	}
}

@media (max-width: 960px) {
	.mobile-item {
		display: flex;
	}

	.header .menu .home-item {
		display: block;
	}

	.header__main {
		display: none;
	}

	.header-mobile-navigation  {
		display: block;
		position: absolute;
		z-index: 999;
		height: calc(100vh - var(--navbar-height));
		width: 100%;
		top: var(--navbar-height);
		left: 0;
		background-color: var(--white);
		transform: translateX(-100%);
		transition: all .2s 0s ease;
	}

	.header--open .header-mobile-navigation  {
		transform: translate(0%);
		transition: all .4s .1s ease;
	}

	.header-mobile-navigation .menu-main-menu-container {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.header-mobile-navigation  .menu-main-menu-container .menu {
		flex-direction: column;
		align-items: center;
	}

	.header__sec .menu-secondary-menu-container {
		display: none;
	}

	.header__hamburger {
		display: block;
	}
}
/* End Header */

/* Footer */
.footer {
	margin-top: var(--section-padding);
}
.footer__top {
	background-color: var(--tertiary-tint-1);
	padding: 100px 0;
}
.footer__top-inner {
	display: flex;
	justify-content: space-between;
}
.footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 0 44px;
}
.footer__bottom {
	background-color: var(--tertiary-tint-2);
	padding: 24px 0;
}
.footer__bottom p {
	margin: 0;
	color: var(--white);
	white-space: nowrap;
	opacity: 50%;
}
.footer__bottom a {
	color: var(--white);
	border-bottom: 2px solid transparent;
	opacity: 50%;
}
.footer__bottom a:hover {
	border-color: var(--white);
}
.footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.footer__bottom-copyright br {
	display: none;
}
.footer__bottom-link-divider {
	display: block;
	opacity: 50%;
}

.footer__column-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
}

.footer__column .menu {
	list-style: none;
	margin: 0;
}

.footer__column .menu .menu-item {
	margin-bottom: 12px;
	border-bottom: 2px solid transparent;
	transition: all .2s ease;
	width: fit-content;
}
.footer__column .menu .menu-item:hover {
	border-bottom-color: var(--white);
}

.footer__column .menu .menu-item a,
.footer__column .menu .menu-item a:visited {
	color: var(--white);
	font-weight: 300;
}

.footer__column .footer__column-title {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
}

.footer__column--1 p, .footer__column--1 a {
	color: var(--white);
}

.footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.footer__bottom-links a {
	font-size: 17px;
}

.footer__bottom-link {
	color: var(--white);
	height: fit-content;
}

.footer__bottom-link-divider {
	height: 21px;
	width: 2px;	
	background-color: var(--white);
}

@media (max-width: 1024px) {
	.footer__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 32px 64px;
	}
}
@media (max-width: 768px) {
	.footer__top-inner {
		flex-direction: column;
		gap: 48px;
	}
	div.vac-recruiter {
		max-width: unset;
	}
	.vac-intro-1__right-sticky {
		width: 100%;
	}
	.footer__grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.footer__bottom-copyright br {
		display: block;
	}
	.footer__bottom-link-divider {
		display: none;
	}
	.footer__bottom-links {
		flex-direction: column;
	}
}
/* END Footer */


/* Login Popup */
.login-popup {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	display: none;
}
.login-popup.open {
	display: block;
}

.login-popup__inner {
	height: 100%;
	display: flex;
	align-items: center;
}
.login-popup__el {
	background-color: var(--white);
	height: 90vh;
	display: flex;
	flex-direction: column;
}
.login-popup__close {
	font-size: 32px;
	color: var(--secondary);
	cursor: pointer;
	display: flex;
	justify-content: flex-end;
	padding: 10px 14px;
}
.login-popup__content {
	display: flex;
	padding: 0 32px 32px 32px;
	flex-grow: 1;
	overflow: scroll;
}
.login-popup__content-left {
	width: 60%;	
	padding-right: 32px;

	display: flex;
	flex-direction: column;
}
.login-popup__content-form {
	flex-grow: 1;
}
.login-popup__content-right {
	width: 40%;
	border-left: 2px solid var(--secondary);
	padding-left: 32px;
}
.login-popup__content-right .btn-group {
	flex-direction: column;
}
.login-popup__content-right .btn-group .btn {
	width: 50%;
}
.login-popup__content-right .btn-group .btn .btn__inner {
	white-space: nowrap;
}

@media (max-width: 960px) {
	.login-popup__content-right .btn-group .btn {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.login-popup__content {
		flex-direction: column;
	}
	.login-popup__content-left {
		width: 100%;
		padding-right: 0;
		padding-bottom: 32px;
	}
	.login-popup__content-right {
		width: 100%;
		padding-left: 0;
		padding-top: 32px;
		border-left: none;
		border-top: 2px solid var(--secondary);
	}
}
/* END Login Popup */


/* Contact Form 7 */
.wpcf7-form {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 40px 20px;
}
.wpcf7-form p {
	margin: 0;
	display: block;
	width: 100%;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap input,
.wpcf7-form .wpcf7-form-control-wrap textarea,
.wpcf7-form .wpcf7-form-control-wrap select {
	display: block;
	width: 100%;
	padding: 20px;
	background-color: var(--tertiary-tint-3);
	outline: none;
	border: none;
	border-radius: 0;
}
.wpcf7-form .wpcf7-form-control-wrap select {
	font-family: var(--body-font);
	font-size: 20px;
}

.wpcf7-not-valid-tip {
	position: absolute;
}

.input-wrapper.submit p {
	display: flex;
	align-items: center;
	gap: 16px;
}

.input-wrapper.checkbox .wpcf7-list-item {
	margin: 0;
}
.input-wrapper.checkbox .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 8px;
}
.input-wrapper.checkbox input[type="checkbox"] {
	appearance: none;
	padding: 0;
	position: relative;
	min-width: 24px;
	min-height: 24px;
}
.input-wrapper.checkbox input[type="checkbox"]:after {
	content: "✔";
	position: absolute;
	color: var(--black);
	font-size: 1rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	opacity: 0;
}
.input-wrapper.checkbox input[type="checkbox"]:checked:after {
	opacity: 1;
}
.input-wrapper.checkbox .wpcf7-list-item .wpcf7-list-item-label {
	white-space: nowrap;
}

.wpcf7-response-output {
	grid-column: span 12;
}

input::file-selector-button {
	background: var(--secondary);
	color: var(--white);
	border: none;
	outline: none;
	padding: 8px 16px;
	margin-right: 16px;
}
/* END Contact Form 7 */


/* Swiper */
.swiper-navigation-wrapper {
	display: flex;
	gap: 16px;
}
.swiper-navigation-button {
	width: 45px;
	height: 45px;
	background-color: rgba(1, 108, 100, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.swiper-navigation-button.swiper-button-disabled {
	background-color: rgba(1, 108, 100, .05);
}
.swiper-navigation-button.swiper-button-disabled svg {
	opacity: 0.1;
}
/* END Swiper */

/* 404 page */
.error404 .error-404 {
	margin: 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
	position: relative
}
.error404 .error-404:before {
	content: '';
	position: absolute;
	inset: 0;
	border-right: 90vw solid var(--white);
	border-bottom: 60vh solid transparent;
}
.error-404__inner {
	position: relative;
	z-index: 1;
}
.error404 #colophon {
	margin: 0;
}
/*End 404 page */


/* Vacancy Overview */
.grid-list-switcher {
	display: flex;
	margin-bottom: 16px;
	align-items: center;
	justify-content: space-between;
}
.grid-list-switcher__map-button {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
.grid-list-switcher__map-button span {
	font-size: 18px;
	font-weight: 700;
}

.grid-list-switcher__option {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	padding: 8px 12px;
	cursor: pointer;

	transition: all .2s ease;
}
.grid-list-switcher__option i {
	font-size: 24px;
	color: var(--tertiary);
	transition: all .2s ease;
}
@media (max-width: 1360px) {
	.grid-list-switcher__option {
		display: none;
	}
}

.grid-list-switcher__option.active {
	background-color: var(--tertiary);
	color: var(--white);
}
.grid-list-switcher__option.active i {
	color: var(--white);
}

.wpv-reset-trigger {
	border: 1px solid var(--tertiary);
	border-radius: 3px;
	background-color: var(--white);
	padding: 0;
	aspect-ratio: 1;
	width: 46px;
	cursor: pointer;
	transition: all .2s ease;
}
.wpv-reset-trigger i {
	color: var(--tertiary);	
}
.wpv-reset-trigger:hover {
	background-color: var(--secondary);
}

wpv-filter-next-link js-wpv-pagination-next-link page-link {

}

.wpv-filter-next-link.page-link:not(.js-wpv-pagination-next-link) {
	display: none;
}

.vacancy-overview__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	grid-auto-flow: dense;
	grid-gap: 24px;
}
.vacancy-overview__grid.list {
	grid-template-columns: 1fr;
	grid-gap: 24px 0;
}

.filter-bar__grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-bar .filter-bar__item {
	background-color: var(--background);
	box-shadow: 0 1px 0 0 rgba(167,178,204,.17);
	display: flex;
	align-items: center;
	border: none;
	color: var(--black);
	border-radius: 0;
	position: relative;
	cursor: pointer;

	max-width: 270px;
}
.filter-bar .filter-bar__item .key,
.filter-bar .filter-bar__item.filter-bar__item--first,
.filter-bar .filter-bar__item.filter-bar__item--search {
	padding: 16px 24px;
}
.filter-bar__item--first:before {
	content: '';
	width: 6px;
	height: 100%;
	background-color: var(--tertiary);
	position: absolute;
	top: 0;
	left: -6px;
}
.filter-bar__item h4 {
	margin-bottom: 0;
}
.filter-bar__item-inner {
	width: 100%;
}
.filter-bar__item-inner .key {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.filter-bar__location .form-group {
	display: flex;
	flex-direction: row-reverse;
}
.filter-bar__location .form-group .btn {
	display: none;
}
.filter-bar__location .form-group input[type="number"] {
	order: 2;
	width: 50px;
}
.filter-bar__location .form-group select {
	order: 1;
}
.filter-bar__location .toolset-maps-distance-wrapper {
	flex-grow: 1;
	display: flex;
}
.filter-bar__location .form-group input[type="text"] {
	order: 3;
	padding: 16px 32px 16px 24px;
	border: none;
	border-radius: 0;
	flex-grow: 1;
}

.filter-bar__location .custom-km-select-wrapper {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.filter-bar__location .custom-km-select {
	background-color: var(--white);
	border: 1px solid var(--tertiary);
	outline: none;
	color: var(--tertiary);
	padding: 0 2rem 0 1rem;

	width: 100%;
	appearance: none;
	height: 100%;
}
.filter-bar__location .custom-km-select-wrapper i { 
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--tertiary);
}

.filter-bar__submit {
	position: sticky;
	bottom: 16px;
}

input:focus-visible {
	outline: 1px solid var(--tertiary);
}

.map-wrapper {
	overflow: hidden;
	transition: all .4s ease;
}
.map-wrapper #js-wpv-addon-maps-render-map-1 {
	margin-bottom: 16px;
}

.filter-bar__item .values {
	padding: 0 24px 16px 24px;
}

.filter-bar__item .values .checkbox label {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 4px;
}

.filter-bar__item .values .checkbox label input {
	position: relative;
	appearance: none;
	padding: 0;
	position: relative;
	min-width: 16px;
	min-height: 16px;
	background-color: var(--tertiary-tint-3);
}

.filter-bar__item .values .checkbox label input:after {
	content: "✔";
	position: absolute;
	color: var(--black);
	font-size: .75rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
.filter-bar__item .values .checkbox label input:checked:after {
	opacity: 1;
}

@media (max-width: 1280px) {
	.vacancy-overview__grid {
		grid-template-columns: 1fr;
		grid-gap: 24px 0;
	}
}
@media (max-width: 960px) {
	.filter-bar .filter-bar__item {
		max-width: unset;
	}
}
@media (max-width: 560px) {
	.vacancy-overview__grid {
		grid-template-columns: 1fr;
	}
}
/* END Vacancy Overview */


/* Vacancy Recruiter */
.vac-recruiter {
	padding: 24px;
	max-width: 270px;
	background-color: var(--tertiary-tint-3);
	margin-bottom: 32px;
}
.vac-recruiter__image-wrapper {
	height: 130px;
	margin-bottom: 24px;
}
.vac-recruiter__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vac-recruiter h3 {
	margin-bottom: 8px;
}
.vac-recruiter p {
	margin-bottom: 24px;
}
.vac-recruiter__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
/* END Vacancy Recruiter */


/* Content Modules */
.cont-mod-image__image-wrapper {
}
.cont-mod-image__image-wrapper.full-width {
	height: 50vh;
}
.cont-mod-image__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: content;
}

.cont-mod-double-image__inner {
	display: flex;
	justify-content: space-between;
	gap: 48px;
}
.cont-mod-double-image__image-wrapper {
}
.cont-mod-double-image__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: content;
}

.cont-mod-video__wrapper {
	aspect-ratio: 16/9;
	width: 100%;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.cont-mod-video__video {
	width: 100%;
	height: 100%;
}
.cont-mod-video__thumbnail {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cont-mod-video__play-button {
	height: 56px;
	width: 56px;
	border-radius: 999px;
	background-color: rgba(255,255,255,0.8);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;

	pointer-events: none;
}
.cont-mod-video__play-button svg {
	transform: translateX(1px);
}
.cont-mod-video__play-button svg path {
	fill: var(--tertiary);
}

@media (max-width: 768px) {
	.cont-mod-double-image__inner {
		flex-direction: column;
	}
}
/* END Content Modules */


/* Range Selector */
.range-slider.noUi-target {
	margin-bottom: 1em;
	position: relative;
	box-shadow: none;
	margin: 16px 0;
}

.range-slider__input {
	width: 100%;
	display: block;
	margin: 0.5em 0;
}

.range-slider__labels {
	font-size: 0.9em;
	text-align: center;
}

.range-slider .noUi-handle {
	border: none;
	border-radius: 3px;
	background: var(--tertiary);
	cursor: default;
	box-shadow: none;
	background-color: var(--tertiary);
}
.range-slider .noUi-connect {
	background: var(--tertiary-tint-3);
	background-color: var(--tertiary-tint-3);
}
/* End Range Selector */


/* Open Application Card */
.open-application-card {
	grid-column: span 1;
	min-height: 245px;
	height: 245px;

	position: relative;

	background-size: cover;

	display: flex;
	align-items: flex-end;
}

.open-application-card__content {
	padding: 24px;
	position: relative;
}
.open-application-card__content h2 {
	color: var(--white);
}

.open-application-card .btn-group {
	justify-content: flex-start;
	margin-top: 16px;
}

.open-application-card__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.3);
}

.open-application-card:hover .btn {
	background-color: var(--secondary);
}
.open-application-card:hover .btn:before {
	transform: translateX(100%) skewX(45deg);
}
/* END Open Application Card */


/* Swiper Styling */
.swiper .swiper-pagination {
	position: static;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
	background: var(--tertiary);
}
/* END Swiper Styling */


/* Candidate and Employer Exceptions */
.menu-item.candidate {
	display: none;
}
.home .candidate {
	display: block;
}

.home .header-usp-balk__marquee-track.candidate,
.page-id-31 .header-usp-balk__marquee-track.candidate,
.page-id-33 .header-usp-balk__marquee-track.candidate,
.page-id-41 .header-usp-balk__marquee-track.candidate {
	display: flex;
}
.home .header-usp-balk__marquee-track.employer,
.page-id-31 .header-usp-balk__marquee-track.employer,
.page-id-33 .header-usp-balk__marquee-track.employer,
.page-id-41 .header-usp-balk__marquee-track.employer {
	display: none;
}

.home .btn.candidate,
.page-id-33 .btn.candidate,
.page-id-31 .btn.candidate,
.page-id-41 .btn.candidate {
	display: none;
}

.single-vacature .employer,
.page-id-25 .employer,
.page-id-29 .employer,
.page-id-43 .employer,
.page-id-377 .employer,
.page-id-548 .employer,
.page-id-540 .employer,
.page-id-541 .employer,
.page-id-542 .employer,
.page-id-543 .employer {
	display: none;
}

.single-vacature .candidate,
.page-id-31 .candidate,
.page-id-33 .candidate,
.page-id-41 .candidate,
.page-id-43 .candidate,
.page-id-25 .candidate,
.page-id-29 .candidate,
.page-id-377 .candidate,
.page-id-548 .candidate,
.page-id-540 .candidate,
.page-id-541 .candidate,
.page-id-542 .candidate,
.page-id-543 .candidate {
	display: flex;
}

.page-id-27 .employer,
.page-id-31 .employer,
.page-id-41 .employer,
.page-id-381 .employer,
.page-id-570 .employer,
.page-id-571 .employer,
.page-id-572 .employer,
.page-id-573 .employer,
.page-id-574 .employer {
	display: flex;
}

.page-id-27 .candidate,
.page-id-381 .candidate,
.page-id-570 .candidate,
.page-id-571 .candidate,
.page-id-572 .candidate,
.page-id-573 .candidate,
.page-id-574 .candidate {
	display: none;
}


/* END Candidate and Employer Exceptions */


/* Animations and animation styling */
@keyframes marquee-move {
	to {
		transform: translateX(calc(-100cqw - 100%));
	}
}

@keyframes marquee-move-text {
	to {
		transform: translateX(calc(-50%));
	}
}
/* End animations and animation styling */

.grecaptcha-badge {
	display: none !important;
}
div#CookiebotWidget {
	display: none !important;
}