/*!
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 Variables */
:root {
	/* Font Families */
	--font-bebas: 'Bebas Neue', sans-serif;

	/* Font Weights */
	--fw-regular: 400;
	--fw-bold: 700;
	--fw-extra-bold: 800;
	/* Added for .content-block-content h3 */

	/* Responsive Font Sizes with Clamp */
	--fs-100: clamp(60px, 8vw, 100px);
	/* Added for .content-block-content h3 */
	--fs-70: clamp(40px, 6vw, 70px);
	--fs-32: clamp(22px, 2vw, 32px);
	--fs-30: clamp(20px, 2vw, 30px);
	/* Added for smaller h1 */
	--fs-26: clamp(18px, 1.7vw, 26px);
	--fs-24: clamp(16px, 1.5vw, 24px);
	--fs-20: clamp(14px, 1.3vw, 20px);
	--fs-18: clamp(12px, 1.2vw, 18px);
	/* Added for smaller text */
	--fs-16: clamp(12px, 1vw, 16px);
	--fs-14: clamp(10px, 0.9vw, 14px);
	/* Added for smaller buttons */
	--fs-12: clamp(8px, 0.8vw, 12px);
	/* Added for small text */
	--fs-10: clamp(8px, 0.7vw, 10px);
	/* Added for footer .madeBy */

	/* Line Heights */
	--lh-100: 1;
	/* Added for .content-block-content h3 */
	--lh-84: 1.2;
	--lh-38: 1.2;
	--lh-31: 1.2;
	--lh-28: 1.2;
	--lh-24: 1.2;
	--lh-22: 1.4;
	--lh-20: 1.25;
	/* Added for smaller text */
	--lh-17: 1.21;
	/* Added for form radio buttons */

	/* Colors */
	--primary-300: #ffedcb;
	--primary-400: #fcd6bd;
	--primary-500: #fcc03d;
	--primary-600: #fb8500;
	--primary-700: #ea6427;
	--white: #ffffff;
	--black: #000000;
	--grey: #4a4a49;
	--orange-30: #fcd6bd;
	--orange-70: #f49965;
	--orange-100: #ea6427;
	--yellow-30: #ffedcb;
	--yellow-100: #fcc03d;
	--slider-dot-active: #c9c9c9;
	--overlay-dark: rgba(0, 0, 0, 0.1);
	/* Added for hero backgrounds */
	--overlay-darker: rgba(0, 0, 0, 0.3);
	/* Added for popup overlay */
	--popup-bg: #f0f0f0;
	/* Added for .formPopup .popupBg */
	--shadow-light: rgba(0, 0, 0, 0.1);
	/* Added for box-shadows */
	--shadow-medium: rgba(0, 0, 0, 0.08);
	/* Added for mobile button shadow */
	--placeholder-peach: #FACCB2;
	/* Light peach, used for placeholder text and inputs */
	--error-red--error-red: red;
	/* Red, used for error component text */

	/* Layout */
	--navbar-height: 80px;
	--mainGrid: 1600px;
	--smallGrid: 770px;
	--innerSectionMargin: 70px;
	--sectionPadding: 180px;
	--smallSectionPadding: 70px;
	--gridPadding: calc((100% - var(--mainGrid)) / 2);
}

/* Base Typography */
html {
	scroll-behavior: smooth;
}

body,
input,
p {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-20);
	line-height: var(--lh-24);
	color: var(--grey);
}

a {
	text-decoration: none;
	outline: none;
	color: inherit;
}

/* Headings */
h1 {
	font-family: var(--font-bebas);
	font-weight: var(--fw-bold);
	font-size: var(--fs-70);
	line-height: var(--lh-84);
	text-transform: uppercase;
	color: var(--grey);
	margin: 0px;
}

h2 {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-70);
	line-height: var(--lh-84);
	text-transform: uppercase;
	color: var(--grey);
	margin: 0px;
}

h3 {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-20);
	line-height: var(--lh-24);
	color: var(--grey);
}

/* Utility Font Classes */
.text-24 {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-24);
	line-height: var(--lh-28);
	color: var(--grey);
}

.text-26 {
	font-family: var(--font-bebas-exp);
	font-weight: var(--fw-regular);
	font-size: var(--fs-26);
	line-height: var(--lh-31);
	text-align: center;
	color: var(--grey);
}

.text-32 {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-32);
	line-height: var(--lh-38);
	color: var(--grey);
}

.text-16-inter {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-16);
	line-height: var(--lh-22);
	color: var(--grey);
}


img,
svg,
video {
	display: block;
}

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

section .mainGrid>h2 {
	margin-top: 0;
	margin-bottom: var(--innerSectionMargin);
}

section.logos .bigGrid .mainGrid>h2 {
	margin-bottom: 30px;
}

#page {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}

main {
	flex: 1;
}

.wysiwyg :first-child {
	margin-top: 0;
}

.wysiwyg :last-child {
	margin-bottom: 0;
}

.wysiwyg ul,
.wysiwyg ol {
	margin-left: 0;
	padding-left: 25px;
}

.wysiwyg p a {
	text-decoration: underline;
}

p a,
nav a {
	outline: none;
	position: relative;
	text-decoration: none;
	color: var(--black);
	transition: color 0.2s ease;
}

p a:hover,
nav a:hover {
	color: var(--orange-100);
}

p a:after,
nav a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 2px;
	background-color: var(--orange-100);
	transition: width 0.2s ease;
}

p a:hover:after,
nav a:hover:after {
	left: 0;
	width: 100%;
}

.wysiwyg>p:first-of-type {
	color: var(--orange-100);
}

a {
	outline: none;
	text-decoration: none;
	color: var(--black);
}

.wysiwyg p a:after {
	content: unset;
}

a:visited {
	color: var(--black);
}

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

.nameOfComponent {
	color: red;
	text-align: center;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	gap: 16px;
	margin-top: 64px;
}

.heartWrapper a:after,
.bttnWrapper a:after {
	display: none;
}

.heartWrapper {
	position: relative;
}

.heartWrapper span {
	width: 20px;
	height: 20px;
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 12px;
	background-color: var(--primary-500);
	border-radius: 9999px;
	border: solid 1px var(--white);
	transition: all .2s ease;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul#menu-footer-contact,
ul#menu-footer-socials {
	flex-direction: column;
}

.col-span-2.contact {
	grid-column: span 2;
	display: flex;
	justify-content: center;
}

.col-span-5.address {
	grid-column: span 5;
	display: flex;
	justify-content: flex-start;
}

/* Utility classes */
.mainGrid {
	width: 90%;
	max-width: var(--mainGrid);
	margin: 0 auto;
}

.smallGrid {
	width: 90%;
	max-width: var(--smallGrid);
	margin: 0 auto;
}

.hidden {
	display: none !important;
}

.col-span-1 {
	grid-column: span 1;
}

.col-span-2 {
	grid-column: span 2;
}

.col-span-3 {
	grid-column: span 3;
}

.col-span-4 {
	grid-column: span 4;
}

.col-span-5 {
	grid-column: span 5;
}

.col-span-6 {
	grid-column: span 6;
}

.col-span-7 {
	grid-column: span 7;
}

.col-span-8 {
	grid-column: span 8;
}

.col-span-9 {
	grid-column: span 9;
}

.col-span-10 {
	grid-column: span 10;
}

.col-span-11 {
	grid-column: span 11;
}

.col-span-12 {
	grid-column: span 12;
}

.col-span-full {
	grid-column: 1/-1;
}

.fal,
.fa-light {
	font-weight: bold;
}

/* Navbar */
#masthead .navbar {
	padding: 21px 0;
	border-bottom: 2px solid var(--orange-100);
}

#masthead .navbarGrid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
}

#masthead .navbarGrid .site-logo {
	display: flex;
}

#masthead .navbarGrid .site-logo img {
	height: 78px;
	width: auto;
}

#masthead nav.hiddenMenu {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--primary-300);
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-right: var(--gridPadding);
	padding-bottom: 100px;
	padding-left: 100px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

#masthead nav.hiddenMenu ul li+li {
	margin-top: 25px;
}

#masthead nav.hiddenMenu ul li.current-menu-item a {
	color: var(--orange-100);
}

#masthead .navbar .bttnWrapper a[aria-current="page"] {
	color: var(--white);
}

#masthead nav.hiddenMenu ul li.current-menu-item a:after {
	left: 0;
	width: 100%;
}

body.menuOpen,
body.popupOpen {
	overflow: hidden;
}

.menuOpen #masthead nav {
	opacity: 1;
	pointer-events: auto;
}

#masthead nav.hiddenMenu ul {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	margin-right: 12rem;
}

#masthead .icons {
	display: flex;
	align-items: center;
}

#masthead .icons>*+* {
	margin-left: 24px;
}

#masthead .icons .heart {
	display: block;
	width: auto;
	height: 30px;
}

#masthead .icons nav ul {
	display: flex;
	align-items: center;
}

#masthead .icons nav ul li+li {
	margin-left: 24px;
}

#masthead .navbar .bttnWrapper a {
	background: var(--orange-100);
	color: var(--white);
}

#masthead .main-navigation a {
	font-family: var(--font-bebas);
	font-weight: var(--fw-regular);
	font-size: var(--fs-32);
	line-height: var(--lh-38);
}

.navbar .navbar-noHamburger .current-menu-item a {
	color: var(--orange-100);
}

.navbar .navbar-noHamburger .current-menu-item a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: var(--orange-100);
}

.navBarWithLinksNoHamburger#masthead .icons nav ul li+li {
	margin-left: 0;
}

/* Menu hamburger icon */
.hamburgerIcon {
	display: block;
	position: relative;
	width: 50px;
	height: 28px;
	cursor: pointer;
	z-index: 9999;
}

.hamburgerIcon .hamburgerLine {
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: var(--orange-100);
	border-radius: 10px;
	transition: transform 0.2s ease, width 0s 0.2s, top 0.2s 0.2s ease;
}

.menuOpen .hamburgerIcon .hamburgerLine {
	transition: top 0.2s ease, width 0s 0.2s, transform 0.2s 0.2s ease
}

.hamburgerIcon .hamburgerLine:nth-child(1) {
	top: 0;
	right: 0;
}

.hamburgerIcon .hamburgerLine:nth-child(2) {
	top: calc(50% - 1px);
	right: 0;
	width: 40px;
}

.hamburgerIcon .hamburgerLine:nth-child(3) {
	top: calc(100% - 2px);
	right: 0;
	width: 30px;
}

.menuOpen .hamburgerIcon .hamburgerLine {
	top: calc(50% - 1px);
	width: 100%;
}

.menuOpen .hamburgerIcon .hamburgerLine:nth-child(1) {
	transform: rotate(225deg);
}

.menuOpen .hamburgerIcon .hamburgerLine:nth-child(2) {
	width: 0;
}

.menuOpen .hamburgerIcon .hamburgerLine:nth-child(3) {
	transform: rotate(135deg);
}

.formPopup.show {
	pointer-events: auto;
	opacity: 1;
	overflow-y: auto;
	background-color: var(--white);
}

/* Footer */
#colophon {
	margin-top: auto;
	padding-top: var(--sectionPadding);
}

#colophon .mainFooter {
	padding: var(--smallSectionPadding) 0;
	background-color: var(--primary-300);
}

#colophon .mainFooter .mainGrid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 0 30px;
}

.testimonialGrid.swiper-wrapper {
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.singleBigTestimonial {
	background-color: var(--primary-400);
	border-radius: 16px;
}

.singleBigTestimonial img {
	height: 48px;
	width: 48px;
	border-radius: 9999px;
}

.singleBigTestimonialUnder {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: auto;
}

.singleBigTestimonialText.wysiwyg {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 80px 110px 0 110px;
	line-height: 1;
}

.singleBigTestimonialText.wysiwyg :last-child {
	font-weight: 400;
}

.singleBigTestimonial {
	display: flex;
	flex-flow: column;
	gap: 24px;
	text-align: center;
	line-height: 1;
	padding-bottom: 40px;
}

.testimonialBig .mainGrid {
	width: 846px;
}

.singleBigTestimonialUnder p {
	margin: 8px 0 0 0;
}

#colophon .mainFooter .mainGrid .cta {
	grid-column: span 8;
}

#colophon .mainFooter .mainGrid hr {
	grid-column: 1/-1;
	width: 100%;
	height: 3px;
	background-color: var(--primary-400);
	margin: var(--innerSectionMargin) 0;
}

#colophon .mainFooter .mainGrid .socials {
	display: flex;
	justify-content: flex-end;
}

#colophon .copyright {
	background-color: var(--primary-500);
	text-align: center;
	padding: 8px 0;
}

#colophon .copyright p,
#colophon .copyright .mainGrid nav ul li a {
	margin: 0;
	font-size: 16px;
}

#colophon .copyright .mainGrid {
	display: flex;
	justify-content: center;
}

#colophon .copyright .mainGrid *+*,
#colophon .copyright .mainGrid nav ul li+li {
	margin-left: 30px;
}

#colophon .copyright .mainGrid nav ul {
	display: flex;
	align-items: center;
}

#colophon .copyright .mainGrid nav ul li a:hover {
	color: var(--black);
}

#colophon .copyright .mainGrid nav ul li a:after {
	background-color: var(--black);
}

#colophon .madeBy {
	background-color: var(--grey);
	text-align: center;
	padding: 8px 0;
}

#colophon .madeBy a {
	display: block;
	font-size: 10px;
	line-height: 1;
	color: var(--white);
	text-transform: uppercase;
}

/* Page - Home */

/* Page - Home - hero */
section.homeHero .heroSearchWrapper {
	margin-top: 40px;
	padding: 50px 30px;
	background-color: var(--primary-400);
	width: 100%;
	max-width: var(--mainGrid);
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

section.homeHero .heroTextWrapper {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

section.homeHero .heroTextWrapper p {
	grid-column: span 8;
	margin: 0 0 1.5em;
}

section.homeHero h1 {
	margin: 0;
}

.jobSearchWrapper {
	width: 100%;
	display: flex;
}

.jobSearchInput {
	position: relative;
}

i.fa-sharp.fa-regular.fa-loader {
	position: absolute;
	display: none;
	right: 30px;
	top: 16px;
	animation: spin 1.5s linear infinite;
}

.menu-footer-navbar-heart-container #menu-footer-navbar-heart .heartWrapper a {
	display: flex;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.jobSearchWrapper input,
.jobSearchInput {
	flex: 1 0 0;
}

.jobSearchInput input {
	width: 100%;
}

.jobSearchWrapper button {
	margin-left: 30px;
}

.contactFormTwo .submitWrapper {
	margin-top: 32px;
}

/* Input */

/* Input - Text */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea {
	-webkit-appearance: none;
	outline: none;
	padding: 19px 20px;
	border-radius: 10px;
	border: 0px;
	background-color: var(--orange-70);
	color: var(--placeholder-peach);
}

input[name="wpv_post_search"] {
	color: var(--grey) !important;
	caret-color: var(--grey) !important;
}

input[name="wpv_post_search"]::placeholder {
	color: var(--placeholder-peach) !important;
}

form input[type="text"]::placeholder {
	color: var(--placeholder-peach);
}

input::placeholder,
textarea::placeholder,
input[type="email"]::placeholder {
	color: var(--placeholder-peach) !important;
}

form input[type="file"]::file-selector-button {
	box-shadow: unset;
	background-color: var(--grey);
	color: var(--white);
	border: 0;
	font-size: 14px;
	line-height: 1;
	padding: 10px 16px;
	border-radius: 6px;
	margin-right: 20px;
	cursor: pointer;
}

textarea {
	resize: vertical;
}

#countryCode {
	display: none;
}

#page .iti {
	width: 100%;
}

#page .iti__flag-box,
#page .iti__country-name {
	font-size: 16px;
}

#page .iti__flag-container {
	padding: 5px;
}

/* Button */
.bttnGroup {
	display: flex;
	flex-flow: row wrap;
	margin-top: var(--innerSectionMargin);
	grid-gap: 1.5rem 20px;
}

.bttnGroup.smallMargin {
	margin-top: 40px;
}

.bttn,
input.bttn,
.bttnWrapper a {
	-webkit-appearance: none;
	outline: none;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 0;
	padding: 18px 40px;
	display: inline-flex;
	justify-content: center;
	background-color: var(--orange-100);
	color: var(--white);
	cursor: pointer;
	transition: 0.3s ease;
	font-size: var(--fs-26);
	text-transform: uppercase;
	text-align: center
}

a.bttn:hover,
input.bttn:hover,
.bttnWrapper a:hover {
	background-color: transparent;
	border: 2px solid var(--orange-100);
	color: var(--black);
}

.vacatures #masthead .navbar .bttnWrapper a:hover {
	color: var(--black);
}

#masthead .navbar .bttnWrapper a:hover  {
	background-color: transparent;
	border: 2px solid var(--orange-100);
	color: var(--white);
}

.bttn .heart {
	margin-left: 10px;
}

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

/* section */
section.text .bg {
	background-color: var(--primary-300);
	padding: var(--sectionPadding) 0;
}

.text .mainGrid {
	display: flex !important;
	align-items: flex-end;
	gap: clamp(2rem, 4vw, 70px);
	flex-wrap: wrap;
}

.text .wysiwyg {
	flex: 1 1 clamp(300px, 60%, 813px);
	max-width: 100%;
	position: relative;
}

.text .right-text {
	flex: 1 1 clamp(250px, 35%, 570px);
	max-width: 100%;
	position: relative;
}


section.text .mainGrid .wysiwyg+.wysiwyg {
	margin-top: var(--innerSectionMargin);
}

section.text.fullWidth .mainGrid .wysiwyg {
	grid-column: span 12;
}

section.jobAlert .innerPadding {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: start;
	flex: 0 1 clamp(58%, 62%, 64%);
}

section.jobAlert .jobAlert__image {
	flex: 0 1 clamp(34%, 36%, 38%);
}

section.text .staticTextSlideshowGrid.mainGrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
	justify-content: center;
	gap: 2rem;
	padding-top: 3rem;
}

.jobsGrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	grid-auto-flow: dense;
	grid-gap: 32px;
}

.jobsGrid.list {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.jobAlert .job-wrapper {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: clamp(24px, 2vw, 40px);
}

.jobAlert .job-wrapper .innerPadding>p:first-of-type {
	margin-top: 0px;
	color: var(--orange-100);
}

.jobAlert .job-wrapper .innerPadding h2 {
	width: clamp(300px, 70%, 1050px);
	padding: 30px 0 20px;
}

.jobAlert .job-wrapper .innerPadding p {
	width: clamp(280px, 50vw, 570px);
}

.jobAlert #signPopupBttn {
	padding: clamp(12px, 2vw, 18px) clamp(24px, 4vw, 40px);
	background-color: var(--yellow-100);
	color: var(--white);
	min-width: clamp(140px, 20vw, 183px);
	margin-top: clamp(30px, 6vw, 60px);
	width: fit-content;
	border: 2px solid transparent;
	transition: 0.3s ease-in-out;
}


.jobAlert #signPopupBttn:hover, .home .content-block .bttn:hover {
	border-color: var(--yellow-100);
	background-color: transparent;
	color: var(--black);
}
.home .homeHero .bttn:hover {
	border-color: var(--yellow-100);
	background-color: transparent;
	color: var(--white);
}
.col.deelVacatureShare.vacatureShareLogo {
	justify-content: end;
}

.deelVacatureShareUnder:hover .secondLogo .shareButton {
	transform: rotate(180deg);
}

.col.deelVacatureShare .secondLogo img {
	transition: opacity 0.3s ease, transform 0.3s ease;
	filter: brightness(0) invert(0);
}

.firstLogo {
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateX(calc(100% + 10px));
}

section.video .mejs-container,
section.video .wp-video {
	width: 100% !important;
}

.secondLogo img {
	position: absolute;
}

.mailButton {
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: rotate(-180deg);
}

.deelVacatureShareUnder:hover .firstLogo {
	opacity: 1;
	transform: translateX(0);
}

.deelVacatureShareUnder:hover img.mailButton {
	opacity: 1;
	transform: rotate(0deg);
	display: block;
}

.deelVacatureShareUnder:hover img.shareButton {
	opacity: 0;
}

.deelVacatureShareUnder {
	display: flex;
	gap: 10px;
	padding-right: 30px;
}

.deelVacatureShareUnder img {
	width: 32px;
	height: 32px;
}

.singleJob {
	position: relative;
	padding: 24px;
	background-color: var(--orange-30);
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	border-radius: 20px;
}

.singleJob .favouriteWrapper {
	position: absolute;
	top: 30px;
	right: 30px;
}

.jobWithFilterPopupContainer.overview {
	padding-top: 0;
}

.filterPopupFilters {
	height: 100%;
	overflow-x: auto;
	margin: 2rem 0;
}

.filterPopupFilters label {
	font-size: 16px;
	display: flex;
	align-items: center;
	grid-gap: 0.5rem;
	cursor: pointer;
}

.singleJob.list:hover {
	transform: translateY(-4px);
}

.singleJob h3 {
	margin: 0;
	padding-right: 30px;
}

.singleJob .uspList {
	margin-top: auto;
	display: flex;
	flex-flow: column;
	padding-top: 20px;
}

.uspImageGrid.swiper-wrapper {
	display: flex;
	gap: 160px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.swiper-slide .singleUspImage {
	height: auto;
	width: 152px;
}

.swiper-wrapper.uspImageGrid .swiper-slide {
	width: 152px;
}

.singleJob .uspList .uspItem {
	display: flex;
	align-items: center;
}

.singleJob .uspList .uspItem+.uspItem {
	margin-top: 10px;
}

.singleJob .uspList .uspItem i {
	margin-right: 10px;
	color: var(--primary-600);
	width: 20px;
}

.singleJob .uspList .uspItem p {
	margin: 0;
	display: block;
	word-break: break-word;
	overflow-wrap: break-word;
}

.singleJob h3 {
	padding: 0;
	display: block;
	word-break: break-word;
	overflow-wrap: break-word;
}

.swiper.singleUspsSwiper .swiper-slide {
	display: flex;
	height: auto;
}

.singleJob .excerpt {
	margin-top: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.uspTextImage.swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: -webkit-center;
	column-gap: 1.5rem;
}

.uspTextImageSix.swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: -webkit-center;
}

.uspTextImageSix .singleUspTextImageSix {
	grid-column: span 4;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
}

.uspTextImageSix .singleUspTextImageSix:nth-child(4) {
	grid-column: 3/7;
}

.uspTextImageSix .singleUspTextImageSix:nth-child(5) {
	grid-column: 7/11;
}

.singleUspTextImageSix img,
.uspTextImage.swiper-wrapper .singleUspTextImage img {
	width: 80px;
	height: auto;
}

.singleUspTextImageSix.swiper-slide p,
.singleUspTextImageSix.swiper-slide h1,
.singleUspTextImageSix.swiper-slide h2,
.singleUspTextImageSix.swiper-slide h3 {
	margin: 4px 0 0 0;
}

.singleJob.big {
	grid-column: span 2;
}

.singleJob.big .uspList {
	flex-flow: row;
}

.singleJob.big .uspList .uspItem+.uspItem {
	margin-top: 0;
	margin-left: 50px;
}

.singleJob.big .excerpt {
	-webkit-line-clamp: 3;
}

.singleJob.list {
	transition: .3s ease;
}

.singleJob.list {
	flex-flow: row;
	align-items: center;
	padding: 24px;
	border-radius: 16px;
	background-color: var(--primary-400);
}

.singleJob.list .uspList {
	margin-top: 0;
	margin-left: auto;
	padding-top: 0;
	flex-flow: row;
	align-items: center;
	flex-shrink: 0;
}

.singleJob.list .uspList .uspItem+.uspItem {
	margin-top: 0;
	margin-left: 40px;
}

.titleUsp {
	margin: 0;
	padding-bottom: 3rem;
}

.singleJob.list .favouriteWrapper {
	position: initial;
	display: flex;
	margin-left: 40px;
}

.shadowItem .shadow {
	width: 250px;
	height: 22px;
	background-color: var(--primary-400);
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.shadowItem .shadow.excerpt {
	height: 110px;
}

.singleJob.shadow.invisible {
	display: none;
}

.shadowItem .categories .shadow {
	width: 70px;
}

.shadowItem .categories .shadow {
	margin-right: 10px;
}

.shadowItem.list .shadow.h3 {
	width: 160px;
}

.shadowItem.list .uspList .shadow {
	width: 110px;
}

.singleContent {
	position: relative;
	background-color: var(--primary-300);
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}

.singleContent h3 {
	margin: 0;
	padding-right: 30px;
}

.singleContent .uspList {
	margin-top: auto;
	padding-top: 30px;
	display: flex;
	flex-flow: column;
}

.singleContent .uspList .uspItem {
	display: flex;
	align-items: center;
}

.singleContent .uspList .uspItem+.uspItem {
	margin-top: 20px;
}

.singleContent .uspList .uspItem i {
	margin-right: 10px;
	color: var(--primary-600);
	width: 20px;
}

.singleContent .uspList .uspItem p {
	margin: 0;
}

.singleContent .excerpt {
	margin-top: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.singleContent .categories {
	display: flex;
	flex-flow: row wrap;
	gap: 12px;
}

.singleContent .categories .category,
.singleContent .categories .category-multiple {
	font-size: 16px;
	line-height: 24px;
	font-style: italic;
	color: var(--white);
	transition: color 0.2s ease;
}

.singleContent .categories .category:hover {
	color: var(--orange-100);
}

.quotesIcon {
	font-size: 143px;
	line-height: 1;
	margin-bottom: -90px;
	margin-top: 0;
}

.dateName>p {
	margin: 0;
}

.testimonialBottom {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.testimonialTopGoogleReview {
	display: flex;
	gap: 30px;
	align-items: start;
}

.googleReviewStars {
	display: flex;
	margin-top: 8px;
	flex-wrap: wrap;
}

.googleReviewStars img {
	width: 1.5rem;
	height: 1.5rem;
	filter: brightness(0) invert(1);
}

.testimonialBottom img,
.testimonialTopGoogleReview img {
	width: 92px;
	height: 109px;
	border-radius: 20px;
}

.singleTestimonial p {
	text-wrap: balance;
}

.singleTestimonial.swiper-slide {
	width: 276px;
	height: auto;
}

.agendaGrid {
	display: grid;
	gap: 24px;
}

.singleAgendaItem {
	display: flex;
	align-items: center;
	gap: 26px;
	background-color: var(--primary-400);
	border-radius: 16px;
	cursor: pointer;
}

.singleAgendaItem.hiddenChevron img.chevronAgenda {
	display: none;
}

.singleAgendaItem.hiddenChevron {
	cursor: unset;
}

.singleAgendaItem p,
.singleAgendaItem h2,
.singleAgendaItem h3 {
	margin: 0;
}

.singleAgendaItemTop {
	padding: 12px 0;
}

div.singleAgendaImage {
	background-color: var(--primary-600);
	min-width: 138px;
	display: flex;
	align-items: center;
	height: 100%;
	flex-flow: column;
	padding: 12px;
	border-radius: 16px 0 0 16px;
}

.rotateAgenda {
	transform: rotate(180deg);
	transition: 0.3s;
}

img.chevronAgenda {
	display: flex;
	place-self: flex-start;
	padding: 12px 24px;
	margin-left: auto;
	transition: 0.5s;
}

.singleAgendaItem p {
	margin-top: 6px;
}

.agendaText {
	overflow: hidden;
	max-height: 25px;
}

.singleAgendaItem.notClickable .agendaText {
	display: block;
}

.singleAgendaItem.notClickable .chevronAgenda {
	display: none;
}

.singleAgendaItem.notClickable {
	cursor: unset;
}

.singleAgendaImage img {
	width: 40px;
	height: auto;
}

/* Heart */
.heart {
	width: 25px;
	height: auto;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.heart:hover {
	transform: scale(1.1);
}

.heart path {
	stroke: var(--primary-600);
	fill: var(--primary-300);
	transition: stroke 0.2s ease, fill 0.2s ease;
}

.heart.white path {
	fill: var(--white);
}

.heart.transparent path {
	fill: transparent;
}

.heart.liked,
.current-menu-item .heart {
	animation: heartbeat 0.3s;
}

.heart.liked path,
.current-menu-item .heart path {
	stroke: var(--orange-100);
	fill: var(--orange-100);
}

/* Load more button */
.gridButtonsText {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

.gridButtonsText p {
	grid-column: span 8;
}

.loadMoreBttnWrapper {
	justify-content: center;
}

span.wpv-filter-next-link.page-link {
	display: none;
}

section.hero .mainGrid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 30px;
}

section.hero .mainGrid .wysiwyg {
	grid-column: span 8;
}

.filterBar {
	padding: 16px 0;
	background-color: var(--white);
}

.filterBar .mainGrid.filterGrid {
	display: flex;
	grid-gap: 0 30px;
}

.filterBar .mainGrid.filterGrid .filterItem {
	flex-grow: 1;
}

.mainFooter .mainGrid img {
	width: auto;
	height: 100%;
}

.footerNavItems ul,
.footerContactItems ul,
.footerNavItems ul a {
	text-decoration: none;
	list-style: none;
}

.footerNavItems ul,
.footerContactItems ul,
.footerNavItems ul a:visited {
	color: inherit;
}

.footerNavItems {
	grid-column: 5 / 8
}

.footerContactItems {
	grid-column: 9 / 13
}

.footerSocialsUnder img {
	height: 33px;
	width: 33px;
}

#colophon .mainFooterSocialsUnder {
	padding: var(--smallSectionPadding) 0 0 0;
	background-color: var(--primary-300);
}

.footerSocialsUnder {
	display: grid;
	grid-auto-flow: column;
	justify-content: center;
	gap: 2rem;
}

.footerSocialsUnderLinks {
	display: flex;
}



/*  Footer 3 */

.menu-footer-navbar-heart-container ul {
	list-style: none;
	gap: 2rem;
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	margin: 0;
	padding: 0;
}

.footerLinksSocialsGrid {
	display: grid;
	justify-content: space-between;
}

.mainFooter .mainGrid .footerLinksSocialsUnder img {
	height: 33px;
	width: 33px;
}

.FooterLinksSocialsGrid {
	display: grid;
	grid-auto-flow: column;
	justify-content: space-between;
}

#colophon .mainFooter .mainGrid.mainGrid.FooterLinksSocialsGrid {
	grid-template-columns: inherit;
}

.menu-footer-navbar-heart-container {
	display: grid;
}

.footerLinksSocialsUnder {
	display: grid;
	grid-auto-flow: column;
	gap: 1.5rem;
}

.filterBar .mainGrid.filterGrid .submitActions {
	display: flex;
	grid-gap: 0 10px;
}

.filterVacancies {
	width: 100%;
}

.wpv-reset-trigger {
	-webkit-appearance: none;
	outline: none;
	border-radius: 50px;
	border: 0px;
	background-color: var(--orange-100);
	cursor: pointer;
}

.wpv-reset-trigger i {
	color: var(--white);
}

.selectCheckboxFilter {
	position: relative;
	display: flex;
	flex-flow: column;
}

.selectCheckboxFilter .key {
	position: relative;
	padding: 19px 20px;
	border-radius: 10px;
	border: 2px solid var(--orange-100);
	color: var(--grey);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.selectCheckboxFilter .key i {
	transition: transform 0.2s ease;
}

.filterItem.show .selectCheckboxFilter .key i {
	transform: rotate(180deg);
}

.selectCheckboxFilter .key .title {
	display: flex;
	align-items: center;
}

.selectCheckboxFilter .key .amount {
	margin-left: 10px;
	width: 24px;
	height: 24px;
	background-color: var(--orange-100);
	border-radius: 9999px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: var(--primary-300);
}

.selectCheckboxFilter .values {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0 20px 20px rgb(0 0 0 / 10%);
	padding: 14px 20px;
	z-index: 1;
}

.selectCheckboxFilter .values ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.selectCheckboxFilter .values ul li+li {
	margin-top: 10px;
}

.selectCheckboxFilter .values input {
	-webkit-appearance: none;
	outline: none;
	width: 1rem;
	height: 1rem;
	border: 1px solid var(--orange-100);
	margin-right: 10px;
}

.selectCheckboxFilter .values label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.selectCheckboxFilter .values input:checked {
	background-color: var(--orange-100);
}

.bar {
	position: sticky;
	top: 0;
	margin-top: var(--sectionPadding);
	background-color: var(--orange-100);
	padding: 15px 0;
	z-index: 10;
}

.bar .mainGrid {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	grid-gap: 1rem 0;
}

.bar .uspList {
	display: flex;
	align-items: center;
}

.bar .uspList .uspItem {
	display: flex;
	align-items: center;
}

.bar .uspList .uspItem+.uspItem {
	margin-left: 80px;
}

.bar .uspList .uspItem i {
	margin-right: 10px;
}

.bar .uspList .uspItem p {
	margin: 0;
}

.bar .bttnGroup {
	margin-top: 0;
}

.bar .bttnGroup .bttn {
	min-width: 200px;
}

.bar .heartBttn {
	padding: 13px;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.heartBttn {
	cursor: pointer;
}

.heartBttn .heart {
	pointer-events: none;
}

section.form .formWrapper h2 {
	margin-top: 0;
	margin-bottom: 45px;
}

section.form .motivation .wpcf7-radio {
	display: flex;
	width: 175px;
	background-color: var(--primary-400);
	border-radius: 9999px;
}

section.form .motivation .wpcf7-radio .wpcf7-list-item {
	flex: 1 0 0;
	margin: 0;
}

section.form .motivation .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-400);
	padding: 10px 25px;
	border-radius: 9999px;
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wpcf7-form .wpcf7-list-item-label a {
	color: var(--grey);
}



section.form .motivation .wpcf7-radio input:checked+.wpcf7-list-item-label {
	background-color: var(--white);
}

section.form .motivation .wpcf7-radio input {
	-webkit-appearance: none;
	display: none;
}

.wpcf7 form>p {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
	margin: 0;
}

.wpcf7 .submitWrapper {
	margin-bottom: 0;
}

.wpcf7 p br {
	display: none;
}

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

.wpcf7 p .wpcf7-acceptance {
	padding: 40px 0px;
	display: block;
}

.wpcf7 p input:not([type="checkbox"]),
.wpcf7 p textarea {
	width: 100%;
}

.wpcf7 [data-class="wpcf7cf_group"] p {
	margin: 0;
}

.wpcf7 .wpcf7-not-valid-tip {
	margin-top: 10px;
	font-size: 18px;
	line-height: 22px;
	font-style: italic;
	color: var(--black);
}

.wpcf7 .wpcf7-list-item {
	margin-left: 0;
}

.wpcf7 .wpcf7-list-item label {
	cursor: pointer;
}

.wpcf7 .wpcf7-list-item input[type="checkbox"] {
	-webkit-appearance: none;
	outline: none;
	width: 24px;
	height: 24px;
	border: 1px solid var(--primary-700);
	margin-right: 10px;
	background-color: var(--white);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.wpcf7 .wpcf7-list-item input[type="checkbox"]:after {
	content: "\f00c";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.wpcf7 .wpcf7-list-item input[type="checkbox"]:checked:after {
	opacity: 1;
}

section.favoriteJobs .favoriteJobsWrapper {
	margin-top: var(--innerSectionMargin);
}

section.image .fullwidth {
	max-width: 100%;
}

section.image img {
	width: 100%;
	height: auto;
}

section.image .fullwidth img {
	height: 400px;
	object-fit: cover;
	object-position: center;
}

section.doubleImage .mainGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 50px;
}

section.doubleImage .mainGrid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

section.map iframe {
	width: 100%;
}

section.overview .mainGrid .resultsBar {
	margin-top: 0;
	margin-bottom: var(--innerSectionMargin);
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

section.overview .mainGrid .resultsBar p {
	margin: 0;
}

section.overview .mainGrid .resultsBar .gridSwitcher {
	display: flex;
	align-items: center;
}

section.overview .mainGrid .resultsBar .gridSwitcher .gridOption+.gridOption {
	margin-left: 25px;
}

section.overview .mainGrid .resultsBar .gridSwitcher .gridOption {
	display: flex;
	align-items: center;
	color: var(--grey);
	cursor: pointer;
	transition: color 0.2s ease;
}

section.overview .mainGrid .resultsBar .gridSwitcher .gridOption.active {
	cursor: default;
	background: var(--orange-30);
	padding: 15px 8px;
	border-radius: 10px;
	font-size: 24px;
}

section.overview .mainGrid .resultsBar .gridSwitcher .gridOption i {
	margin-right: 10px;
	color: var(--orange-100);
}

section.logos .mainGrid {
	padding: var(--sectionPadding) 50px;
	background-color: var(--primary-300);
}

section.logos .logosWrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 150px;
	grid-auto-rows: 150px;
	grid-gap: 30px;
}

section.logos .logosWrapper .singleLogo {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

section.logos .logosWrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 1;
	transition: opacity 0.3s ease;
}

section.logos .logosWrapper img.hide {
	opacity: 0;
}

/* 404 page */
.error-404 .mainGrid {
	display: flex;
	flex-flow: column;
	align-items: start;
}

.single-content .hero .categories {
	margin: -20px 0 30px;
	display: flex;
	flex-flow: row wrap;
}

.single-content .hero .categories .category {
	margin-right: 10px;
	font-size: 16px;
	line-height: 24px;
	font-style: italic;
	color: var(--primary-600);
	cursor: pointer;
	transition: color 0.2s ease;
}

.singleLogoShare {
	border-radius: 9999px;
	background-color: var(--primary-600);
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	display: flex;
}

.single-content .hero .categories .category:hover {
	color: var(--orange-100);
}

aside .sideBarItem.noBackgroundSideBar {
	background-color: unset;
	padding: 0;
}



aside .sideBarItem.questions .content {
	display: flex;
	justify-content: space-between;
	flex-flow: column;
}

.col.deelVacatureShare.noBackgroundSideBarUnder {
	display: flex;
	justify-content: right;
	align-items: center;
	gap: 22.5px;
}

.col.deelVacatureShare.noBackgroundSideBarUnder img {
	width: 56px;
	height: 56px;
}

section.sideBarLayout .mainGrid .main {
	grid-column: span 8;
}

section.sideBarLayout .mainGrid aside {
	grid-column: span 4;
}

aside .sticky {
	top: 100px;
}


aside .sideBarItem.questions .content .imageWrapper {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	overflow: hidden;
}

aside .sideBarItem.questions .content .imageWrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

aside .sideBarItem.share p {
	margin: 0;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
}

aside .sideBarItem.share .socials {
	margin-top: 25px;
}

aside .sideBarItem.share .socials a {
	color: var(--primary-700);
}

aside .sideBarItem.share .socials a i {
	font-size: 28px;
}

aside .sideBarItem.share .socials a+a {
	margin-left: 20px;
}

.sticky {
	position: sticky;
	top: 0;
}

.logosSwiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logos.swiperStatic.staticSlider {
	margin-top: inherit;
}

.logosSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.swiper.loop .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

.clients .swiper {
	margin-top: var(--innerSectionMargin);
}

section.growthPath .growthPathWrapper {
	margin-top: var(--innerSectionMargin);
	position: relative;
	display: flex;
	justify-content: space-between;
}

section.growthPath .growthPathWrapperText p {
	display: inline-block;
	margin: 0 10px;
}


.filterTitleContainer {
	display: flex;
	grid-gap: 1rem;
	align-items: center;
	cursor: pointer;
	margin: 0;
}

.popup.filterPopup .popupContent h3 img {
	cursor: pointer;
}

.filterPopupFilters {
	height: 100%;
	overflow-x: auto;
	margin: 2rem 0;
}

.filterPopupFilters ul {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
	margin: 0;
	padding: 0;
}

.popup.filterPopup .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-700);
	opacity: 0.3;
	top: 0;
	cursor: pointer;
}

.mainGrid.filterPopupGrid {
	display: flex;
	flex-direction: column;
}

.popup.filterPopup .popupContent {
	position: relative;
	z-index: 1;
	max-width: 420px;
	height: 100%;
	padding: 32px;
	background-color: var(--primary-400);
	border-radius: 0 16px 16px 0;
	transition: .2s ease;
	transform: translateX(-100%);
}

.popup.filterPopup {
	display: none;
	position: fixed;
	left: 0;
	z-index: 50;
	height: 100%;
	width: 100%;
	top: 0;
}

.popup.filterPopup .popupContent h3 {
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.filterBar .controllerBar,
section.mobileSidebarContent,
.mobileStickyBttn {
	display: none;
}

button.cky-show-desc-btn:not(:hover):not(:active),
.cky-preference-content-wrapper .cky-show-desc-btn {
	color: var(--orange-100);
}

div[data-cky-tag="detail-powered-by"] {
	display: none;
}

.imagesSwiper .swiper-slide {
	height: auto;
}

.imagesSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.relatedImages .imageGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
}

section.relatedImages .imageGrid img {
	width: 100%;
	height: 100%;
}

.jobWithFilterSidebarContainer .mainGrid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(30px, 6vw, 116px);
}

.jobWithFilterSidebarContainer .filters {
	grid-column: 1 / 4;
	grid-row: 1;
}

.jobWithFilterSidebarContainer .jobContainer {
	grid-column: 4 / 13;
	grid-row: 1;
}


.jobWithFilterSidebarContainer .mainGrid section {
	padding-top: 0px;
}

.jobWithFilterSidebarContainer .filterBar .mainGrid.filterGrid {
	flex-direction: column;
	grid-gap: 20px;
}

.hero-splitsing {
	min-height: unset;
}

.hero-splitsing-section {
	padding-top: 0;
}

section.jobWithFilterSidebarContainer.overview .resultsBar {
	margin-bottom: 50px;
}

section.jobWithFilterSidebarContainer.overview h2 {
	color: var(--white);
	margin-bottom: 20px;
}

.jobWithFilterSidebarContainer .mainGrid .filters form {
	position: sticky;
	top: 30px;
}

.quickSearchContainer .singleJob.list h3 {
	font-size: 18px;
}

.quickSearchContainer .singleJob.list {
	padding: 6px 30px;
}

.quickSearchContainer .uspList p {
	font-size: 14px;
}

.quickSearchContainer {
	width: 100%;
	position: absolute;
}

.quickSearchContainer .favouriteWrapper {
	margin-left: 20px !important;
	width: 20px;
}

.quickSearchContainer .singleJob.list:nth-child(even) {
	background-color: var(--white);
}

.form.apply div#solliciteren .wpcf7 {
	display: none;
	margin-top: 50px;
}

span.bttn.solid.openSollForm {
	display: flex;
	width: fit-content;
	align-items: center;

}

.openSollForm i.fa-regular.fa-plus {
	margin-left: .5rem;
	transition: .3s ease-in-out;
}

.openSollForm i.fa-regular.fa-plus.close {
	transform: rotate(225deg);
}

.formPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.formPopup.show {
	pointer-events: auto;
	opacity: 1;
}

.formPopup .popupBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #F0F0F0;
	opacity: 1;
}

.formPopup .popupContent {
	position: relative;
	background-color: var(--white);
	padding: 70px;
}

.formPopup .popupContent .popupHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 45px;
}

.formPopup .popupContent .popupHeader h3 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	margin: 0;
}

.formPopup .popupContent .popupHeader i {
	font-size: 32px;
	cursor: pointer;
}

.pja-title-toggle-container h2 {
	width: 100%;
	margin-top: 0;
}

.employersStatic {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: wrap;
	gap: 30px;
}

.employerImageWrapper {
	background-color: var(--primary-600);
	justify-content: center;
	align-items: center;
	display: flex;
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

.employerImageWrapper img {
	object-fit: cover;
	height: 32px;
	padding: 24px 0;
	filter: brightness(0) invert(1);
}

.employerImageWrapper.active {
	background-color: var(--primary-700);
}

.singleEmployerStatic:first-child .employerImageWrapper {
	border-radius: 16px 16px 0 0;
}

.singleEmployerStatic:last-child .employerImageWrapper {
	border-radius: 0 0 16px 16px;
}

.singleEmployerStatic {
	width: 256px;
	height: auto;
}

.singleEmployerText {
	opacity: 0;
}

.singleEmployerText.active {
	opacity: 1;
}

/* Swiper Styling */
.swiper .swiper-pagination {
	position: static;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primary-300);
}

.noHamburgerHamburger {
	display: none;
}

nav ul {
	display: flex;
	align-content: center;
}

.navBarHeartLinks ul {
	gap: 40px;
}

nav.withGap ul {
	column-gap: 18px;
}

.altNavbar nav.withGapHeader ul {
	column-gap: 40px;
}

.bttnBorder {
	border: 1px solid var(--primary-600);
}

.menuOpen .noHamburgerHamburger {
	display: flex;
}

.mainGrid.highlightedVacancies {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Download Bar */
.bttn.download-bar__bttn:hover {
	background-color: var(--orange-100);
}

.download-bar {
	position: fixed;
	z-index: 750;
	bottom: 0;
	width: 100%;
	background-color: var(--primary-400);

	transform: translateY(120%);
	transition: all .2s ease;
}

.download-bar.open {
	transform: translateY(0%);
}

.download-bar.closed {
	transform: translatey(120%) !important;
}

.download-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.download-bar h2 {
	margin: 0;
}

.download-bar__close {
	width: 32px;
	min-width: 32px;
	height: 32px;
	min-height: 32px;
	border-radius: 99px;
	background-color: var(--primary-400);
	position: absolute;
	top: 0;
	right: 24px;
	transform: translateY(-50%);
	box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
}

.download-bar__close i {
	color: var(--white);
}

.download-bar__close:active {
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.download-bar-form {
	height: 100dvh;
	width: 100%;
	position: fixed;
	z-index: 755;
	background-color: rgba(0, 0, 0, 0.1);

	opacity: 0;
	pointer-events: none;

	transition: all .2s ease;
}

.download-bar-form.show {
	opacity: 1;
	pointer-events: all;
}

.download-bar-form__inner {
	height: calc(100dvh - 82px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.download-bar-form__inner .wpcf7 {
	padding: 32px;
	background: var(--primary-400);
	border-radius: 16px;
	box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
}

.download-bar-form__close {
	position: absolute;
	top: 32px;
	right: 32px;
	border-radius: 99px;
	min-width: 40px;
	min-height: 40px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-400);
	box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* END Download Bar */


/* Animation Styling */
.animating {
	transition: none !important;
}

.invisible-start {
	opacity: 0 !important;
}

.home #masthead.header--1 .site-branding,
.home #masthead.header--1 .icons nav,
.home #masthead.header--1 .icons .hamburgerIcon {
	transform: translateY(-40px);
	opacity: 0;
}

.home #masthead.header--2 .site-branding,
.home #masthead.header--2 .icons nav .menu .menu-item,
.home #masthead.header--2 .icons .hamburgerIcon {
	transform: translateY(-40px);
	opacity: 0;
}

.home #masthead.header--3 .site-branding,
.home #masthead.header--3 .navbar-noHamburger .menu .menu-item,
.home #masthead.header--3 .icons .withGap .menu .menu-item,
.home #masthead.header--3 .icons .hamburgerIcon {
	transform: translateY(-40px);
	opacity: 0;
}

.home .footer-2 .site-footer-wrapper {
	background: var(--orange-100);
}

.home #masthead.header--4 .site-branding,
.home #masthead.header--4 .navbar-noHamburger .menu .menu-item,
.home #masthead.header--4 .icons .withGapHeader,
.home #masthead.header--3 .icons .hamburgerIcon {
	transform: translateY(-40px);
	opacity: 0;
}

.hero-animate h1,
.hero-animate .hero-text,
.hero-animate .heroSearchWrapper,
.hero-animate .hero-splitsing-item,
.hero-animate .bttnGroup {
	transform: translateY(40px);
	opacity: 0;
}

.hero-8__image-wrapper {
	transform: translateX(-24px);
	opacity: 0;
}

/* Animations */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .5;
	}
}

@keyframes heartbeat {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}


@keyframes opening {
	from {
		transform: translatey(120%);
	}

	to {
		transform: translatey(0%);
	}
}

.vacature-kaart {
	display: flex;
	gap: 8px;
}

.swiper-pagination-bullet {
	background: var(--slider-dot-active, #000);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--orange-100);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	margin-top: 20px;
}

.openApplication {
	display: flex;
	align-items: center;
	height: 185px;
	width: 100%;
	background-image: url('/wp-content/uploads/2025/06/open-sollicitatie-img.png');
	background-size: cover;
	background-position: center;
	color: var(--white);
	text-decoration: none;
	box-sizing: border-box;
	grid-column: 1 / -1;
	background-repeat: no-repeat;
	border-radius: 20px;
	padding: 43px 40px;
}

.contentWrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.openApplication .wysiwyg {
	width: clamp(50%, 60%, 80%);
}

.openApplication .wysiwyg h2,
.openApplication .wysiwyg p {
	margin: 0;
	color: var(--white);
}

.openApplication .bttnGroup {
	margin: 0px;
	width: clamp(200px, 30vw, 264px);
	justify-content: end;
	display: flex;
}


.openApplication .bttn.white {
	background-color: var(--orange-100);
	color: var(--white);
}

.openApplication.list .contentWrapper {
	flex-direction: row;
}

.homeHero--sollicitatie .heroFlexWrapper {
	display: flex;
	align-items: start;
	justify-content: center;
	gap: clamp(2rem, 6vw, 112px);
}

.homeHero--sollicitatie .heroTextWrapper {
	display: block !important;
	width: clamp(320px, 55vw, 800px);
}

.homeHero--sollicitatie .hero-img {
	width: clamp(250px, 35vw, 587px);
}

.homeHero--sollicitatie .hero-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.homeHero--sollicitatie .heroTextWrapper>p:first-of-type {
	color: var(--orange-100);
}

.homeHero--sollicitatie .heroTextWrapper>h2 {
	margin-bottom: 20px;
}

.home .site-header, .kandidaat .site-header, .opdrachtgevers .site-header, .over-ons .site-header {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.home .site-header::before,
.kandidaat .site-header::before,
.opdrachtgevers .site-header::before,
.over-ons .site-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: -1;
}

.home .homeHero::before,
.opdrachtgevers .bs-hero-bg::before,
.kandidaat .bs-hero-bg::before,
.over-ons .bs-hero-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 0;
}

.home .homeHero>*,
.opdrachtgevers .bs-hero-bg>* .over-ons .bs-hero-bg>*
.kandidaat .bs-hero-bg>* {
	position: relative;
	z-index: 1;
}

.home .bs-homehero-bg {
	width: 100%;
	background-image: url(/wp-content/uploads/2025/06/homepage-img-1.png);
	color: var(--white);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	height: 100vh;
	padding-bottom: 80px;
	display: flex;
	align-items: flex-end;
	box-sizing: border-box;
}

.text.clients, .text.clients + section {
	padding-top: calc(var(--sectionPadding) / 2);
}

.home .homeHero .gridButtonsText {
	display: flex;
	align-items: flex-end;
	gap: clamp(1rem, 5vw, 80px);
	text-align: left;
}

.home .homeHero .hero-text {
	display: block !important;
	width: clamp(280px, 55vw, 800px);
	margin-top: 484px;
}

.home .homeHero .bttnGroup {
	width: clamp(200px, 35vw, 587px);
}

.home .homeHero .hero-text>p:first-of-type {
	color: var(--orange-100);
}

.home .homeHero .hero-text p,
.opdrachtgevers .bs-hero-bg p,
.kandidaat .bs-hero-bg p,
.over-ons .bs-hero-bg p {
	color: var(--white);
	width: clamp(280px, 50vw, 570px);
}

.home .homeHero .hero-text h1,
.opdrachtgevers .bs-hero-bg h2,
.kandidaat .bs-hero-bg h2,
.over-ons .bs-hero-bg h1 {
	color: var(--white);
	margin-bottom: 30px;
}

.home .navbar-noHamburger a,
.opdrachtgevers .navbar-noHamburger a,
.kandidaat .navbar-noHamburger a,
.over-ons .navbar-noHamburger a {
	color: var(--white);
}

.bs-hero-bg .wysiwyg h1 {
	margin-bottom: 0;
}

.home .homeHero .bttn {
	background-color: var(--yellow-100);
}

.home .content-block .content-block-wrapper {
	background: var(--yellow-30);
}

.home .content-block .content-block-wrapper {
	padding: 120px 0px;
}

.over-ons .content-block .content-block-wrapper {
	padding: 0px;
}

.over-ons .our-team-grid .mainGrid>h2 {
	width: min(100%, clamp(300px, 60%, 813px));
}

.over-ons .content-block .bttn {
	background-color: var(--yellow-100);
	color: var(--white);
}

.content-block .content-block-wrapper .content-block__text-wrapper>p:first-of-type,
.opdrachtgevers .bs-hero-bg .wysiwyg>p:first-of-type,
.kandidaat .bs-hero-bg .wysiwyg>p:first-of-type,
.over-ons .bs-hero-bg .wysiwyg>p:first-of-type {
	color: var(--orange-100);
}

.testimonialTopGoogleReview .wysiwyg>p:first-of-type {
	color: var(--grey);
}

.opdrachtgevers .bs-hero-bg, .kandidaat .bs-hero-bg {
	width: 100%;
	background-image: url(/wp-content/uploads/2025/06/opdrachtgevers-background-img.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: scroll;
	color: var(--white);
	display: flex;
	align-items: end;
	justify-content: end;
	text-align: left;
	height: 100vh;
	padding-bottom: 10vh;
	flex-direction: column;
}

.iconContactTop i {
	color: var(--orange-100);
}

.over-ons .bs-hero-bg {
	width: 100%;
	background-image: url(/wp-content/uploads/2025/06/overons-background-img.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: scroll;
	color: var(--white);
	display: flex;
	align-items: end;
	justify-content: end;
	text-align: left;
	padding: 10vh 0;
	height: 100vh;
	flex-direction: column;
}

.bs-hero-bg h2,
.bs-hero-bg p {
	margin: 0px !important;
}

.contact .contactFormTwo .formWrapperWithTitle {
	width: clamp(280px, 25vw, 558px);
}

.contact .contactFormTwo .imageFormWrapper {
	width: clamp(600px, 60vw, 1051px);
}

.contact .contactFormTwo .imageFormWrapper .contactInfoBlocks {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(2rem, 5vw, 71px);
	margin-bottom: clamp(1.5rem, 4vw, 40px);
}

.contact .contactFormTwo .contactInfoBlocks-content {
	display: flex;
	gap: clamp(1rem, 2vw, 20px);
	align-items: center;
	min-height: clamp(40px, 5vh, 80px);
}

.contact .contactFormTwo .contactInfoBlocks-content p {
	white-space: nowrap;
	margin: 0;
}

.contact .contactFormTwo .formWrapper {
	display: flex;
	align-items: flex-end;
	gap: clamp(4rem, 8vw, 148px);
	padding-left: clamp(2rem, 5vw, 120px);
	width: 100%;
	box-sizing: border-box;
	justify-content: flex-end;
}

.error-404 .error-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: clamp(1rem, 4vw, 70px);
}

.error-404 .error-text-wrapper {
	flex: 1 1 clamp(280px, 60%, 813px);
	max-width: 100%;
}

.error-404 .error-hero-image {
	flex: 1 1 clamp(200px, 35%, 570px);
	max-width: 100%;
}

.error-404 .error-text {
	color: var(--orange-100);
	margin: 0px;
}

.error-404 .error-title {
	padding: clamp(20px, 5vw, 30px) 0 clamp(30px, 6vw, 40px);
}

.footer-2 .footer-2-container {
	display: flex;
	margin-bottom: clamp(2rem, 5vw, 4.5rem);
	justify-content: space-between;
	gap: clamp(2rem, 4vw, 4.5rem);
}

.footer-2 .site-footer-wrapper {
	background: var(--grey);
	padding: clamp(4rem, 8vw, 6.25rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.home #colophon .madeBy {
	background-color: var(--primary-700);
}

.footer-2 .footerUnder {
	align-items: center;
	justify-content: space-between;
	display: flex;
	gap: clamp(1rem, 2.5vw, 2rem);
}

.footer-2 .footer-copyright p {
	color: var(--white);
	margin: 0;
}

.footer-2 .footerSocialsUnderLinks p {
	margin: 0;
	position: relative;
	white-space: nowrap;
}

.footer-2 .footerSocialsUnderLinks p a {
	color: var(--white);
}

.footer-2 .footer-brand-section,
.footer-2 .footer-nav-section {
	width: 50%;
}

.footer-2 .footer-nav-section {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(2rem, 5vw, 5.8rem);
}

.footer-2 .footer-logo {
	margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.home .footer-2 .footer-logo, .home .google-logo {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(1deg) brightness(101%) contrast(103%);
}

.footer-2 ul,
.footer-2 .footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-2 .menu-footer-container h3 {
	margin-top: 0;
	margin-bottom: clamp(0.75rem, 2vw, 1.125rem);
	color: var(--white);
}

.footer-2 .menu-footer-container li {
	text-decoration: none;
	margin-bottom: 5px;
}

.footer-2 .menu-footer-container li a {
	color: var(--white);
	transition: .2s ease-in-out;
}

.home footer.footer-2 .menu-footer-container li a:hover, .home .footer-2 .footerSocialsUnderLinks p a:hover {
	color: var(--black);
}

footer.footer-2 .menu-footer-container li a:hover, .footer-2 .footerSocialsUnderLinks p a:hover {
	color: var(--orange-100);
}

.footer-2 .footer-brand-info h2,
.footer-2 .footer-brand-info p {
	color: var(--white);
	margin: 10px 0px;
}

.footer-2 .footerSocialsUnderLinks p:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 21px;
	background-color: var(--white);
	margin: 0px 20px;
	vertical-align: middle;
}

.app-form-2__inner {
	display: flex;
	gap: clamp(40px, 8vw, 151px);
	align-items: flex-end;
}

.app-form-2__wrapper {
	background-color: var(--orange-30);
	padding-top: clamp(60px, 8vw, 120px);
	padding-left: clamp(20px, 13vw, 261px);
}

.app-form-2__left {
	flex-grow: 1;
	width: clamp(300px, 50vw, 558px);
	padding-bottom: clamp(60px, 8vw, 120px);
}

.app-form-2__share,
.app-form-2__contact {
	background-color: var(--primary-300);
	border-radius: 20px;
	width: clamp(280px, 30vw, 385px);
	margin-bottom: clamp(40px, 8vw, 100px);
	padding: clamp(20px, 4vw, 30px);
	margin-left: 130px;
}



.sideBarItem.questions .content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	gap: 60px;
}

.contact__name h4,
.contact__function p {
	margin: 6px 0 0 0;
}

.app-form-2__share h3,
.app-form-2__contact h3 {
	margin: 0;
}

.contact__name h4,
.contactOptions a p {
	color: var(--orange-100) !important;
}

.contactOptions p {
	margin: 0;
}

.app-form-2__share {
	margin-bottom: 16px;
}

.app-form-2__share-icons {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.app-form-2__share-icon-link i {
	font-size: 24px;
}

.testimonial .mainGrid .wysiwyg {
	width: clamp(300px, 60%, 813px);
}

.pjaPopup form label input[type="text"],
.pjaPopup form label input[type="email"] {
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	background-color: var(--orange-70);
}

.pjaPopup form label {
	display: flex;
	flex-flow: column;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--black);
	text-align: left;
}

.pjaPopup form .job-alert-privacy__container label {
	flex-flow: row !important;
}

.pjaPopup form {
	position: relative;
	background-color: var(--orange-30);
	padding: clamp(1rem, 5vw, 80px);
	overflow-y: auto;
	max-width: 1440px;
	width: 100%;
	border-radius: 16px;
	color: var(--white);
	margin-inline: 20px;
}

.pjaPopup form h4 {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	text-align: left;
	margin: 20px 0px;
	color: var(--black);
}

.pjaPopup .fieldsWrapper .bttn {
	border-radius: 50px;
	padding: 8px 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	background: var(--orange-100);
	width: 100%;
	display: flex;
	max-width: 158px;
	min-width: max-content;
}

.homeHero .homehero-wrapper {
	background: var(--yellow-30);
	padding: clamp(60px, 8vw, 120px) 0;
}

.homeHero .mainGrid .wysiwyg {
	width: clamp(280px, 60%, 813px);
	padding-bottom: clamp(60px, 10vw, 120px);
}

.homeHero .content-block-wrapper .content-block__inner {
	background-color: var(--white);
	border-radius: 20px;
	padding: 0;
	align-items: flex-start;
	gap: 0;
	display: flex;
	flex-wrap: wrap;
}

.homeHero .content-block__text-wrapper {
	width: 100%;
	padding: clamp(30px, 5vw, 100px);
}

.homeHero .content-block__text-wrapper .content-block-content h3 {
	font-weight: 800;
	font-size: clamp(30px, 7vw, 100px);
	line-height: 100%;
	text-transform: uppercase;
	color: var(--orange-100);
	margin: 0;
}

.homeHero .content-block__text-wrapper .content-block-content p {
	margin: 0;
}

.homeHero .content-block__text-wrapper .content-block-content:not(:last-child) {
	margin-bottom: clamp(20px, 3vw, 30px);
}

.homeHero .content-block-wrapper .content-block__image-wrapper {
	position: relative;
	width: 100%;
	padding: clamp(40px, 6vw, 100px) clamp(40px, 6vw, 100px) 0 0;
}

.homeHero .content-block-wrapper .content-block__image-wrapper p {
	position: absolute;
	left: -280px;
	top: 211px;
	width: clamp(250px, 40vw, 231px);
	font-size: clamp(18px, 3vw, 32px);
	color: var(--orange-100);
	font-weight: 700;
	line-height: 100%;
	margin: 0;
}

.home .bs-singlejob {
	position: initial;
	width: 284px;
}

.home .bs-singlejob .favouriteWrapper {
	position: initial;
}

div.swiper-slide a.bs-singlejob.singleJob h3 {
	margin-top: 50px;
} 

.home .bs-singlejob h3 {
	font-weight: 700;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding: 0;
	display: block;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.bs-singlejob .uspList p {
	color: var(--orange-100);
	margin-bottom: 10px;
}

.content-block .bttn {
	background-color: var(--yellow-100);
	color: var(--white);
}

.recentJobs p:first-of-type {
	color: var(--orange-100);
}

.home .content-block .bttn {
	background-color: var(--yellow-100);
}

.home section .mainGrid>h2 {
	width: clamp(300px, 60%, 813px);
}

.home .showAllRecentlyVacancy {
	background-color: var(--white);
	color: var(--orange-100);
}

.home  a.showAllRecentlyVacancy:visited {
	color: var(--orange-100);
}

.single-vacature .hero .mainGrid {
	display: block;
	padding-left: 101px;
	padding-right: 202px;
}

.single-vacature .hero .wysiwyg .vacature-details-title {
	display: flex;
	gap: 223px;
	align-items: center;
	width: 100%;
	margin-bottom: 8px;
}

.single-vacature .hero .mobileJobSpecs {
	display: flex;
	gap: 10px;
}

.single-vacature .hero .wysiwyg p {
	color: var(--orange-100);
}

.single-vacature .hero .bttn {
	background-color: var(--yellow-100);
	border: 2px solid transparent;
	transition: .3s ease-in-out;
}

.single-vacature .hero .bttn:hover {
	border: 2px solid var(--yellow-100);
	background-color: transparent;

}

.single-vacature .sideBarLayout .mainGrid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 30px;
}

.sideBarLayout h2 {
	color: var(--gray);
}

.sideBarLayout h3 {
	color: var(--orange-100);
	margin: 20px 0px;
}

.sideBarLayout p {
	color: var(--gray) !important;
}

.single-vacature .singleJob {
	position: initial;
	gap: 30px;
}

.single-vacature .singleJob .favouriteWrapper {
	position: initial;
}

.single-vacature .singleJob h3 {
	font-weight: 700;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.single-vacature .singleJob p {
	color: var(--orange-100);
	margin-bottom: 10px;
}

.single-vacature .singleJob .swiper-slide {
	width: 284px !important;
}

.single-vacature .showAllRecentlyVacancy {
	background-color: var(--white);
	color: var(--orange-100);
}

.single-vacature .sideBarLayout .mainGrid {
	display: flex;
	gap: clamp(40px, 11vw, 223px);
	padding-left: clamp(20px, 5vw, 101px);
	padding-right: clamp(20px, 10vw, 202px);
	flex-wrap: nowrap;
}

.single-vacature .sideBarLayout .mainGrid .main {
	width: clamp(100px, 60vw, 689px);
}

.single-vacature aside .sticky {
	width: clamp(100px, 30vw, 385px);
}

.single-vacature .vacature-details-title h1 {
	width: clamp(100px, 60vw, 689px);
}

/* Responsive Adjustments with Media Query */
@media (min-width: 768px) {

	.homeHero .content-block-wrapper .content-block__text-wrapper,
	.homeHero .content-block-wrapper .content-block__image-wrapper {
		width: 50%;
	}
}

@media (min-width: 1025px) and (max-width: 1365px) {
	.app-form-2__inner {
		gap: clamp(40px, 6vw, 120px);
	}

	.app-form-2__share,
	.app-form-2__contact {
		margin-left: clamp(60px, 8vw, 100px);
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	aside .sideBarItem.questions {
		width: clamp(300px, 50%, 480px);
	}

	.single-vacature .hero .mainGrid {
		padding: 0;
	}

	.single-vacature .sideBarLayout .mainGrid {
		padding: 0;
		flex-wrap: wrap;
	}

	.single-vacature .sideBarLayout .mainGrid .main {
		width: 100%;
	}

	.homeHero .content-block-wrapper .content-block__image-wrapper p {
		top: 101px;
		left: -230px;
	}

	.app-form-2__inner {
		gap: clamp(30px, 6vw, 80px);
		flex-wrap: wrap;
	}

	.app-form-2__left {
		width: clamp(280px, 60vw, 480px);
	}

	.app-form-2__share,
	.app-form-2__contact {
		margin-left: clamp(20px, 6vw, 60px);
		width: clamp(250px, 40vw, 350px);
	}

	.app-form-2__wrapper {
		padding-left: 0px !important;
		padding-right: 20px;
	}
}

@media (min-width: 1921px) {
	.mainGrid-2 {
		width: 90%;
		max-width: var(--mainGrid);
		margin-right: auto;
		margin-left: auto;
	}

	.contact .contactFormTwo .formWrapper {
		padding-left: 0px;
	}
}

@media only screen and (max-width: 1620px) {
	:root {
		--mainGrid: 1280px;
	}
}

@media (max-width: 1439px) {
	.mainGrid-2 {
		width: 90%;
		max-width: var(--mainGrid);
		margin-right: auto;
		margin-left: auto;
	}

	.contact .contactFormTwo .formWrapper {
		padding-left: 0px;
	}
}

@media only screen and (max-width: 1280px) {
	:root {
		--mainGrid: 980px;
	}

	.navbar-noHamburger {
		display: none;
	}

	.noHamburgerHamburger {
		display: flex;
	}

	nav.withCTA ul {
		column-gap: inherit;
	}

	.filterBar .mainGrid.filterGrid {
		grid-gap: 0 10px;
	}

	section.jobWithFilterSidebarContainer.overview .singleJob.big {
		grid-column: span 1;
	}

	.filterBar .mainGrid.filterGrid input.filterItem {
		flex-grow: 0;
		width: 200px;
	}

	section.jobWithFilterSidebarContainer.overview .filterItem.search {
		width: 100%;
	}

	.filterBar .mainGrid.filterGrid .submitActions .wpv-submit-trigger {
		min-width: calc(100% - 60px);
	}
}

@media only screen and (max-width: 1024px) {
	:root {
		--mainGrid: 90vw;
		--smallGrid: var(--mainGrid);
	}

	.jobAlert .job-wrapper {
		flex-wrap: wrap
	}
	.contactFormTwo img {
		border-radius: 32px;
	}

	section.jobAlert .innerPadding,
	section.jobAlert .jobAlert__image {
		flex: 1 1 100%;
	}

	section.form .smallGrid {
		max-width: 100%;
	}

	section.form .formWrapper {
		padding: var(--sectionPadding) var(--gridPadding);
	}

	.jobWithFilterSidebarContainer .jobContainer {
		grid-column: 12 span;
	}

	section.jobWithFilterSidebarContainer.overview .jobsGrid {
		grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
	}

	.gridButtonsText p {
		grid-column: 12 span;
	}

	#masthead nav.hiddenMenu {
		justify-content: flex-start;
		padding-left: var(--gridPadding);
	}

	#masthead nav.hiddenMenu ul {
		margin-right: unset;
	}

	section.text .mainGrid .wysiwyg {
		grid-column: span 12;
	}

	section.hero .mainGrid .wysiwyg {
		grid-column: span 12;
	}

	section.filters {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding-top: 0;
		z-index: 20;
		display: flex;
		transform: translateY(calc(100% - 74px));
		transition: transform 0.3s ease;
	}

	.filterOpen section.filters {
		transform: translateY(0) !important;
	}

	section.filters>form {
		width: 100%;
	}

	section.filters .filterBar .mainGrid.filterGrid {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 20px;
	}

	.filterBar .mainGrid.filterGrid input.filterItem {
		width: 100%;
	}

	.filterBar .mainGrid.filterGrid .submitActions button[type="submit"] {
		flex-grow: 1;
	}

	.filterBar {
		padding-top: 0;
	}

	.filterOpen {
		overflow: hidden;
	}

	.filterBar .controllerBar {
		display: flex;
		cursor: pointer;
	}

	.filterBar .controllerBar .mainGrid {
		display: flex;
		align-items: center;
		padding: 25px 0;
	}

	.filterBar .controllerBar .mainGrid h3 {
		margin: 0 0 0 20px;
		display: flex;
		align-items: center;
	}

	.filterBar .controllerBar .mainGrid h3 .amountFilters {
		width: 2rem;
		height: 2rem;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		border-radius: 9999px;
		font-size: 16px;
		line-height: 1;
		background-color: var(--orange-100);
		margin-left: 10px;
		color: var(--white);
	}

	.filterBar .controllerBar .mainGrid .chevron {
		margin-left: auto;
		transition: transform 0.3s ease;
	}

	.filterOpen .filterBar .controllerBar .mainGrid .chevron {
		transform: rotate(180deg);
	}

	.selectCheckboxFilter .values {
		position: relative;
	}

	.bar .uspList .uspItem+.uspItem {
		margin-left: 30px;
	}

	section.image .fullwidth img {
		height: 300px;
	}

	#page aside .sideBarItem.questions .contactOptions a i.visible {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(360deg);
	}

	#page aside .sideBarItem.questions .contactOptions a i.invisible {
		opacity: 1;
		pointer-events: auto;
		transform: translate(-50%, -50%) rotate(360deg);
	}

	#page aside .sideBarItem.questions .contactOptions a+a {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	section.sideBarLayout .mainGrid {
		grid-gap: 30px 0;
	}

	section.sideBarLayout .mainGrid .main {
		grid-column: span 12;
	}

	section.sideBarLayout .mainGrid aside {
		display: block;
	}

	section.mobileSidebarContent {
		display: block;
	}

	aside .sticky {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 0 16px;
	}

	aside .sideBarItem+.sideBarItem {
		margin-top: 0;
	}

	.footerLinksSocialsUnder {
		display: grid;
		grid-auto-flow: inherit;
		gap: 1.5rem;
		grid-template-rows: repeat(2, 1fr);
		height: fit-content;
	}

	.uspImageGrid.swiper-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 80px 160px;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	.singleUspImage {
		height: auto;
		width: 152px;
	}

	.uspTextImage.swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		text-align: -webkit-center;
		column-gap: 1.5rem;
	}

	.testimonialGrid.swiper-wrapper {
		display: flex;
		place-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.singleTestimonial.swiper-slide {
		width: fit-content;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	.mainGrid.highlightedVacancies {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.pjaPopup {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100% + -48px);
		z-index: 50;
		display: flex;
		justify-content: center;
		align-items: center;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.formPopup.show .wpcf7-form-control.wpcf7-submit.has-spinner.bttn {
		z-index: 1;
		position: fixed;
		bottom: 0;
		left: 0;
		border-radius: 0;
		width: 100%;
	}

	section.jobAlert .innerPadding .bttn.popupController {
		position: unset;
		width: unset;
		box-shadow: unset;
	}

	.contact .contactFormTwo .formWrapper {
		flex-direction: column-reverse;
		align-items: center;
		gap: clamp(2rem, 6vw, 80px);
		padding: 0;
	}

	.contact .contactFormTwo .formWrapperWithTitle,
	.contact .contactFormTwo .imageFormWrapper {
		width: 100%;
	}

	.imageFormWrapper {
		height: auto !important;
	}
}

@media only screen and (max-height: 725px) {
	.formPopup {
		align-items: flex-start !important;
	}

	.formPopup .popupBg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--white);
	}
}

@media only screen and (max-width: 768px) {
	:root {
		--sectionPadding: 72px;
		--innerSectionMargin: 40px;
		--navbar-height: 65px;
	}
	.single-vacature .hero .wysiwyg .vacature-details-title {
		gap: unset;
	}
	.openApplication {
		height: auto;
		min-height: clamp(100px, 15vh, 150px);
		padding: clamp(10px, 3vw, 20px);
		border-radius: clamp(8px, 1.5vw, 10px);
		flex-direction: column;
		text-align: start;
	}

	.contentWrapper {
		flex-direction: column;
		gap: clamp(10px, 2vh, 20px);
	}

	.openApplication .wysiwyg {
		width: 100%;
	}

	.openApplication .bttnGroup {
		width: 100%;
		justify-content: start;
	}

	.app-form-2__share,
	.app-form-2__contact {
		margin-left: 0px;
	}

	.error-404 .error-flex-wrapper {
		flex-direction: column-reverse;
		align-items: center;
		text-align: left;
	}

	.error-404 .error-text-wrapper,
	.error-404 .error-hero-image {
		flex: 1 1 100%;
	}

	.footer-2 .footer-2-container {
		flex-direction: column;
		gap: 40px;
	}

	.footer-2 .footer-brand-section,
	.footer-2 .footer-nav-section {
		width: 100%;
	}

	.footer-2 .footer-nav-section {
		flex-direction: column;
		gap: 30px;
	}

	.footer-2 .footerUnder {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 20px;
	}

	.footer-2 .footerSocialsUnderLinks {
		display: flex;
		gap: 10px;
	}

	.pjaPopup form {
		padding: 8% 5%;
		max-width: 100%;
		height: 80% !important;
	}

	.app-form-2__inner {
		flex-direction: column;
	}

	.homeHero .content-block-wrapper .content-block__image-wrapper {
		display: flex;
		flex-direction: column;
		padding: 30px;
	}

	.homeHero .content-block-wrapper .content-block__image-wrapper p {
		position: initial;
		margin-bottom: 20px;
	}

	.homeHero .content-block__text-wrapper {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 30px;
		align-items: center;
	}

	.app-form-2__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.app-form-2__wrapper {
		padding-left: 0px !important;
		padding-right: 20px;
	}

	.app-form-2__left {
		width: 100%;
		padding-bottom: 60px;
	}

	.single-vacature .sideBarLayout .mainGrid {
		flex-direction: column;
		flex-wrap: wrap;
		gap: 40px;
		padding: 0px;
	}

	.single-vacature .sideBarLayout .mainGrid .main,
	.single-vacature aside .sticky,
	.single-vacature .vacature-details-title h1 {
		width: 100%;
	}

	.single-vacature .hero .mainGrid {
		display: block;
		padding: 0px;
	}

	.home .homeHero {
		padding-top: 5vh;
		padding-bottom: 5vh;
		min-height: 60vh;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		text-align: left;
		flex-wrap: wrap;
	}

	.home .homeHero .gridButtonsText {
		gap: 1rem;
		flex-direction: column;
		align-items: start;
	}

	.home .homeHero .hero-text p,
	.home .homeHero .hero-text h1 {
		width: 100%;
	}

	.home .homeHero .bttnGroup {
		width: 90vw;
	}

	.homeHero--sollicitatie .heroFlexWrapper {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: wrap;
	}

	.homeHero--sollicitatie .heroTextWrapper,
	.homeHero--sollicitatie .hero-img {
		width: 100%;
	}

	section.jobWithFilterSidebarContainer.overview .jobsGrid {
		grid-template-columns: 1fr;
	}

	#masthead .icons nav ul .bttnWrapper {
		display: none;
	}

	.applicationProcedureThree .applicationPathWrapper {
		margin-bottom: 32px;
	}

	.single.single-vacature .applicationPathWrapper .lineWrapper {
		grid-column: 1 / 2;
		grid-row: span 2;
		margin-right: 16px;
	}

	.single.single-vacature .applicationProcedureThree .applicationPathWrapper .applicationContent.wysiwyg {
		grid-column: 2 / 13;
		grid-row: 2 / 3;
	}

	.single.single-vacature .applicationProcedureThree .imageWrapper {
		grid-column: 2 / 13;
		grid-row: 1 / 2;
		margin-bottom: 24px;
	}

	.single.single-vacature .applicationProcedureThree .applicationPathWrapper:nth-child(odd) .imageWrapper {
		grid-column: 2 / 13;
		grid-row: 1 / 2;
	}

	.single.single-vacature .applicationProcedureThree.mainGrid .applicationPathWrapper:last-child .line {
		display: block;
	}

	.single.single-vacature .applicationProcedureThree.mainGrid .applicationPathWrapper:last-child .lineWrapper {
		align-self: auto;
	}

	section.homeHero .heroSearchWrapper {
		max-width: 100%;
		margin-top: 70px;
		padding: 10px 0;
	}

	section.homeHero .heroSearchWrapper form {
		width: 100%;
		max-width: var(--mainGrid);
		margin-right: auto;
		margin-left: auto;
	}

	.jobSearchWrapper button {
		margin-top: 10px;
		margin-left: 0;
	}

	.singleJob .uspList {
		padding-top: 40px;
	}

	.bttn,
	input.bttn,
	.bttnWrapper a {
		min-width: 170px;
	}

	.bttnGroup {
		margin-top: 40px;
	}

	section .mainGrid>h2 {
		margin-bottom: 40px;
	}

	.jobsGrid {
		grid-gap: 32px;
		grid-template-columns: 1fr;
	}

	.singleJob.big {
		grid-column: span 1;
	}

	.singleJob.big .excerpt {
		display: none;
	}

	.singleJob.big .uspList {
		flex-flow: column;
	}

	.singleJob.big .uspList .uspItem+.uspItem {
		margin-top: 20px;
		margin-left: 0;
	}

	section.overview .mainGrid .resultsBar .gridSwitcher {
		display: none;
	}

	section.logos .logosWrapper {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 100px;
		grid-auto-rows: 100px;
		grid-gap: 20px;
	}

	section.hero .mainGrid {
		grid-gap: 30px 0;
	}

	#masthead .navbar {
		padding: 15px 0;
	}

	#masthead .navbarGrid .site-logo img {
		height: 35px;
	}

	#masthead .icons>*+* {
		margin-left: 20px;
	}

	#masthead .icons .heart {
		height: 25px;
	}

	.hamburgerIcon {
		width: 40px;
		height: 25px;
	}

	.hamburgerIcon .hamburgerLine:nth-child(2) {
		width: 30px;
	}

	.hamburgerIcon .hamburgerLine:nth-child(3) {
		width: 20px;
	}

	.menuOpen .hamburgerIcon .hamburgerLine:nth-child(3) {
		width: inherit;
	}

	.bar {
		display: none;
	}

	.vacature-solliciteren-btn {
		display: none;
	}

	section.form .formWrapper .col-span-1 {
		grid-column: span 2;
	}

	section.growthPath .growthPathWrapper .line {
		height: 10px;
	}

	section.growthPath .growthPathWrapper .circle {
		width: 50px;
		height: 50px;
	}

	.mobileStickyBttn {
		display: inline-flex;
		position: fixed;
		bottom: 0;
		width: 100%;
		transform: translateY(100%);
		z-index: 10;
		transition: transform 0.3s ease;
	}

	.mobileStickyBttn.show {
		transform: translateY(0);
	}

	.mobileStickyBttn .bttn {
		width: 100%;
		padding: 18px;
		box-shadow: 0 -10px 20px rgb(0 0 0 / 8%);
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="file"],
	textarea {
		padding: 0.8rem 1rem;
	}

	section.doubleImage .mainGrid {
		grid-gap: 0 20px;
	}

	section.image .fullwidth img {
		height: 250px;
	}

	aside .sticky {
		grid-template-columns: 1fr;
		grid-gap: 30px 0;
	}

	#colophon .copyright .mainGrid,
	#colophon .copyright .mainGrid nav ul {
		flex-flow: column;
		align-items: center;
	}

	#colophon .copyright .mainGrid *+*,
	#colophon .copyright .mainGrid nav ul li+li {
		margin-left: 0;
		margin-top: 10px;
	}

	section.relatedImages .imageGrid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footerSocialsUnderLinks {
		display: grid;
		grid-auto-flow: column;
		justify-content: center;
		column-gap: 2rem;
		grid-template-rows: repeat(2, 1fr);
		padding-top: 1rem;
	}

	#colophon .mainFooterSocialsUnder .mainGrid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		row-gap: 2rem;
	}

	.footerContactItems,
	.footerNavItems {
		grid-column: inherit;
		grid-row: 2;
	}

	.menu-footer-navbar-heart-container ul {
		list-style: none;
		gap: 2rem;
		display: grid;
		grid-auto-flow: column;
		align-items: center;
		margin: 0;
		padding: 0;
		grid-template-rows: repeat(3, 1fr);
	}

	.footerLinksSocialsUnder {
		display: grid;
		grid-auto-flow: column;
		gap: 1.5rem;
		grid-template-rows: repeat(2, 1fr);
	}

	section.text .staticTextSlideshowGrid.mainGrid {
		display: flex;
		grid-template-columns: inherit;
		justify-content: inherit;
		gap: 0;
	}

	.uspImageGrid.swiper-wrapper {
		display: flex;
		grid-template-columns: inherit;
		gap: 0;
		flex-wrap: inherit;
		justify-content: inherit;
	}

	.uspTextImage.swiper-wrapper {
		display: flex;
		grid-template-columns: inherit;
		gap: 0;
	}

	.singleUspImage {
		height: auto;
		width: 152px;
	}

	.uspTextImageSix.swiper-wrapper {
		grid-gap: inherit;
	}

	.uspTextImageSix .singleUspTextImageSix {
		grid-column: inherit;
		display: flex;
		text-align: center;
	}

	.uspTextImageSix .singleUspTextImageSix:nth-child(4),
	.uspTextImageSix .singleUspTextImageSix:nth-child(5) {
		grid-column: inherit;
	}

	.testimonialGrid.swiper-wrapper {
		display: flex;
		grid-template-columns: inherit;
		gap: 0;
		place-items: inherit;
		flex-wrap: nowrap;
		justify-content: inherit;
	}

	.singleTestimonial.swiper-slide {
		gap: 0;
		margin-right: 0;
	}

	.testimonialGoogleReviewGrid.swiper-wrapper {
		display: flex;
		grid-template-columns: inherit;
		gap: 0;
		justify-content: inherit;
	}

	.uspImageGrid .swiper-slide {
		text-align: center;
	}

	.singleBigTestimonialText.wysiwyg {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 80px 20px 0 20px;
		line-height: 1;
	}

	div.singleAgendaImage {
		background-color: var(--primary-600);
		width: 100%;
		display: flex;
		align-items: center;
		height: 100%;
		flex-flow: column;
		padding: 12px;
		border-radius: 16px;
	}

	.singleAgendaItem {
		display: flex;
		align-items: center;
		gap: 26px;
		background-color: var(--primary-400);
		border-radius: 16px;
		flex-flow: column;
	}

	.singleAgendaItemTop.wysiwyg {
		padding: 0 12px;
	}

	.singleAgendaItem.hiddenChevron .singleAgendaItemTop {
		padding: 0px 12px 48px 12px;
	}

	.mainGrid.highlightedVacancies {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.wpcf7 form>p .col-span-1 {
		grid-column: span 2;
	}

	.formPopup .popupContent {
		padding: 30px 0;
		height: 100%;
		overflow-y: auto;
	}

	.formPopup .popupBg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--white);
	}

	.wpcf7 form>p {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 980px) {
	.singleJob.list {
		flex-direction: column;
		align-items: baseline;
		padding: 24px;
	}

	.singleJob.list h3 {
		margin-bottom: 2rem;
	}

	.singleJob.list .favouriteWrapper {
		margin: 0;
		position: absolute;
		right: 24px;
		top: 24px;
	}

	.singleJob.list .uspList {
		margin-left: unset;
	}
}

@media only screen and (max-width: 600px) {

	body,
	p,
	input {
		font-size: 16px;
		line-height: 20px;
	}

	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 20px;
		line-height: 24px;
	}

	.bttn,
	input.bttn,
	.bttnWrapper a {
		font-size: 16px;
		line-height: 20px;
		padding: 12px 14px;
	}

	.jobSearchWrapper {
		flex-flow: column;
	}

	#colophon .mainFooter .mainGrid {
		grid-gap: 30px 0;
	}

	#colophon .mainFooter .mainGrid hr {
		margin: 0;
	}

	#colophon .mainFooter .mainGrid .cta {
		grid-column: span 12;
	}

	#colophon .mainFooter .mainGrid .address {
		grid-column: span 12;
	}

	#colophon .mainFooter .mainGrid .contact {
		grid-column: span 6;
		display: flex;
		align-items: flex-end;
		justify-content: inherit;
	}

	#colophon .mainFooter .mainGrid .socials {
		grid-column: span 6;
	}

	section.logos .mainGrid {
		padding: 40px;
	}

	#masthead nav.hiddenMenu ul li+li {
		margin-top: 30px;
	}

	section.filters .filterBar .mainGrid.filterGrid {
		grid-template-columns: 1fr;
	}

	.filterBar .mainGrid.filterGrid .submitActions {
		align-items: unset;
	}

	.footerLinksSocialsUnder {
		display: grid;
		grid-auto-flow: inherit;
		gap: 1.5rem;
		grid-template-rows: repeat(2, 1fr);
		height: fit-content;
	}

	.menu-footer-navbar-heart-container ul {
		list-style: none;
		gap: 2.5rem;
		display: grid;
		grid-auto-flow: row;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.singleJob.list .uspList {
		flex-flow: column;
		align-items: baseline;
		gap: 1rem;
	}

	.singleJob.list .uspList .uspItem+.uspItem {
		margin-left: unset;
	}

	.openApplication {
		flex-direction: column;
		gap: 1rem;
	}
}

@media only screen and (max-width: 480px) {
	.footer-2 .footerSocialsUnderLinks {
		flex-direction: column;
	}

	.footer-2 .footerSocialsUnderLinks p:not(:last-child)::after {
		display: none;
	}

	.openApplication .bttnGroup {
		flex-wrap: wrap;
		gap: clamp(5px, 1vh, 10px);
	}
}

@media only screen and (max-width: 420px) {
	section.growthPath .growthPathWrapper .circle {
		width: 40px;
		height: 40px;
	}

	.jobWithFilterSidebarContainer .mainGrid {
		display: block;
	}

	section.doubleImage .mainGrid {
		grid-gap: 0 10px;
	}

	section.image .fullwidth img {
		height: 200px;
	}

	section.relatedImages .imageGrid {
		grid-gap: 20px;
	}

	.menu-footer-navbar-heart-container ul {
		list-style: none;
		gap: 2rem;
		display: grid;
		grid-auto-flow: row;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.footerLinksSocialsUnder {
		display: grid;
		grid-auto-flow: inherit;
		gap: 1.5rem;
		grid-template-rows: repeat(2, 1fr);
		height: fit-content;
	}

	.footerContactItems {
		display: grid;
		grid-row: 3;
		grid-column: 1;
	}

	.footerNavItems {
		display: grid;
		grid-row: 2;
		grid-column: 1;
	}

	#colophon .mainFooterSocialsUnder .mainGrid {
		display: grid;
		grid-template-columns: inherit;
		grid-template-rows: inherit;
		row-gap: 2rem;
		grid-auto-flow: inherit;
		grid-template-rows: repeat(3, 1fr);
	}

	.footerContactItems ul {
		margin: 0;
		padding: 0;
	}
}

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