/*!
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: "Quicksand";
	src: url("/wp-content/themes/paddap-custom-theme/fonts/Quicksand-VariableFont_wght.ttf") format('truetype');
}

@font-face {
	font-family: "Spline Sans";
	src: url("/wp-content/themes/paddap-custom-theme/fonts/SplineSans-VariableFont_wght.ttf") format('truetype');
}

:root {
	--heading-font: "Quicksand";
	--body-font: "Spline Sans";

	/* Colors */
	--green: rgba(133, 204, 151, 1);
	--green-tint-1: rgba(212, 236, 218, 1);

	--red: rgba(223, 53, 87, 1);
	--red-tint-1: rgba(255, 236, 240, 1);

	--blue: rgba(210, 240, 240, 1);
	--blue-tint-1: rgba(210, 240, 240, 1);

	--gray: rgba(243, 243, 243, 1);
	--gray-tint-1: rgba(243, 243, 243, 1);

	--white: #fff;
	--black: rgb(51, 51, 51);

	/* Utility */
	--navbar-height: 122px;

	/* 	 Containers */
	--container: 1440px;
	--small-container: 1024px;

	/* 	 Paddings and margins: */
	--section-margin: 110px;
	--container-padding: calc((100vw - var(--container)) / 2);
	--small-container-padding: calc((100vw - var(--small-container)) / 2);
}

@media (max-width: 1408px) {
	:root {
		--small-container-padding: calc((100vw - 90vw) / 2); 
	}
}
@media (max-width: 1584px) {
	:root {
		--container-padding: calc((100vw - 90vw) / 2); 
	}
}

body,
p {
	font-family: var(--body-font);
	font-size: 18px;
	line-height: 160%;
	font-weight: 300;
}

a {
	text-decoration: none;
}
input, button, select, textarea {
	font-size: 18px;
	line-height: 1.2;
}
input:focus-visible, textarea:focus-visible {
	outline: red 3px;
}


h1, h2, h3, h4, h5, a, input, button, select, textarea {
	font-family: var(--heading-font);
}

h1, .h1 {
	font-size: 55px;
	line-height: 105%;
	font-weight: 600;
}
h2, .h2 {
	font-size: 40px;
	line-height: 120%;
}
h3, .h3 {
	font-size: 28px;
	line-height: 130%;
	font-weight: 600;
}
h4, .h4 {
	font-size: 22px;
	line-height: 130%;
	font-weight: 600;
}
h5, .h5 {
	font-size: 24px;
	line-height: 120%;
}

@media (max-width: 768px) {
	h1, .h1 {
		font-size: 40px;
	}
	h2, .h2 {
		font-size: 32px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	h4, .h4 {
		font-size: 18px;
	}
	h5, .h5 {
		font-size: 20px;
	}
	body,
	p {
		font-size: 16px;
	}
}

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

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

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

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

.btn-group {
	display: flex;
	gap: 32px;
	padding-top: 32px;
}

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

.wysiwyg ul {
	margin-left: 0;
}
.wysiwyg ol {
	list-style: none;
}
.wysiwyg ul:last-child {
	margin-bottom: 0;
	padding-left: 18px;
}

.wysiwyg p strong {
	font-weight: 600;
}

.wysiwyg p a,
.wysiwyg li a {
	color: var(--red);
	text-decoration: underline;
	transition: all .2s ease;
}
.wysiwyg p a:visited,
.wysiwyg li a:visited {
	color: var(--red);
}
.wysiwyg p a:hover,
.wysiwyg p a:visited:hover {
	color: var(--black);
}

.text-link,
.text-link:visited {
	color: var(--black);
	text-decoration: underline;
}
.text-link {
	display: block;
	width: fit-content;
	transition: all .2s ease;
}
.text-link:hover,
.text-link:visited:hover{
	color: var(--red);
}
/* END Utility */


/* Buttons */
.btn, button.btn[type="submit"] {
	border: 1px solid var(--green);
	border-color: var(--green);
	outline: none;
	padding: 12px 24px;
	background-color: transparent;
	overflow: clip;
	border-radius: 16px;
	cursor: pointer;

	color: var(--black);

	position: relative;

	display: flex;
	align-items: center;
	gap: 12px;

	text-decoration: none;
}
.btn:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;

	background-color: var(--green);
	border-radius: 999px;

	aspect-ratio: 1;
	width: 150%;
	pointer-events: none;

	transform-origin: center;
	transform: translate(-50%, -50%);

	transition: all .3s ease;
}
.btn__inner {
	position: relative;
	z-index: 2;
	font-weight: 600;
	color: var(--black);
	font-family: var(--heading-font);
	transition: all .3s ease;
}
.btn__arrow {
	position: relative;
	z-index: 2;
	transition: all .3s ease;
}
.btn__arrow i {
	color: var(--black);

	transition: all .3s ease;
}
.btn:hover:before {
	transform: translate(-50%, -50%) scale(0);
}
.btn:hover .btn__arrow {
	transform: translateX(4px);
}


.btn--2 {
	border-color: var(--white);
}
.btn--2:before {
	background-color: var(--white);
}
.btn--2:hover .btn__inner,
.btn--2:hover .btn__arrow i {
	color: var(--white);
}

.btn--3 {
	border-color: var(--white);

	transition: all .2s ease;
}
.btn--3:before {
	background-color: var(--white);
}
.btn--3:hover {
	border-color: var(--black);
}
.btn--3:hover .btn__inner,
.btn--3:hover .btn__arrow i {
	color: var(--black);
}

.btn--4,
button.btn--4[type="submit"],
button.btn--4:hover {
	border-color: var(--gray-tint-1);
}
.btn--4:before {
	background-color: var(--gray-tint-1);
}

.btn--link {
	padding: 0;
	border:none;
	border-radius: 0;
	overflow: visible;
}
.btn--link:before {
	content: none;
}
/* END Buttons */


/* Header */
#masthead.site-header {
	padding: 16px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--white);
	height: var(--navbar-height);

	transition: all .2s ease;
}
#masthead.site-header.header--scrolled {
	padding: 0;
	height: 75px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.single-vacature #masthead.site-header.header--scrolled {
	transform: translateY(-100%);
}

#masthead.site-header .site-branding svg {
	width: 100%;
	height: 100%;
}
#masthead.site-header .site-branding {
	height: 90px;
	transition: all .2s ease;
}
#masthead.site-header.header--scrolled .site-branding {
	height: 75px;
}

#masthead.site-header .header__icons {
	height: 21px;
	display: flex;
	gap: 16px;
	transition: all .2s ease;
	transition: 0.3s;
}
#masthead.site-header.header--scrolled .header__navigation {
	gap: 0;
}
#masthead.site-header.header--scrolled .header__icons {
	height: 0px;
	pointer-events: none;
	opacity: 0;
}
.header__search a {
	margin-left: 12px;
	color: var(--black);
	font-size: 16px;
}
.header__search a:hover {
	color: var(--red);
}
.header__icon-heart {
	position: relative;
}
.header__icon-heart span {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
	width: 18px;
	height: 18px;
	background-color: var(--red);
	border-radius: 99px;
	color: var(--white);
	font-size: 12px;

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

.header__inner {
	display: flex;
	justify-content: space-between;
}
.header__navigation {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 30px; 
	transition: gap .2s ease; 
}
.header__inner .menu-main-menu-container .menu {
	gap: 16px;
}

.header__inner .menu-item {
	position: relative;
	width: fit-content;
}
.header__inner .menu-item:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--red);
	transform: scaleX(0);
	transition: all .2s ease;
}

.header__inner .menu-item a:visited,
.header__inner .menu-item a {
	color: var(--black);
	transition: all .2s ease;
	width: fit-content;
	white-space: nowrap;
}

.header__inner .menu .menu-item:hover > a:visited,
.header__inner .menu .menu-item:hover > a,
.header__inner .menu .menu-item:hover > .menu-item__wrapper > a:visited,
.header__inner .menu .menu-item:hover > .menu-item__wrapper > a,
.header__inner .menu .menu-item:hover > .menu-item__wrapper > .menu-item__arrow > i {
	color: var(--red);
}

.header__inner .menu-item:hover:after {
	transform: scaleX(1);
}

.header__inner .menu .current-menu-item > a,
.header__inner .menu .current-menu-item > .menu-item__wrapper > a,
.header__inner .menu .current-menu-item > .menu-item__wrapper > .menu-item__arrow > i {
	color: var(--red)
}
.header__inner .menu .current-menu-item:after {
	transform: scaleX(1);
}

.menu-item__wrapper {
	display: flex;
	gap: 8px;
}

.header__inner .menu > .menu-item > .menu-item__wrapper i {
	transition: all .2s ease;	
}
.header__inner .menu > .menu-item:hover > .menu-item__wrapper i {
	rotate: 180deg;
}

.header__inner .menu .current-menu-ancestor > a {
	color: var(--red);
}
.header__inner .menu .current-menu-ancestor:after {
	transform: scaleX(1);
}

.header__inner .menu-main-menu-container .menu .sub-menu {
	left: 50%;
	transform: translateX(-50%);
	box-shadow: unset;
	padding: 48px 24px 16px 24px;

	flex-direction: column;
	gap: 4px;

	opacity: 0;
	pointer-events: none;
	transition: all .2s ease;
}
.header__inner .menu-main-menu-container .menu .sub-menu:before {
	content: '';
	position: absolute;
	top: 32px;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.2);
}
.header__inner .menu .menu-item:hover > .sub-menu {
	opacity: 1;
	pointer-events: all;
}

.header__hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
}

.header__hamburger-line {
	width: 24px;
	height: 2px;
	background-color: var(--black);
}

.mobile-navigation {
	display: none;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white);

	padding: 48px 0;

	transform: translateX(-100%);

	transition: all .2s ease;
}
.header--scrolled .mobile-navigation {
	padding-top: 28px; 
}

.site-header.header--menu-open .mobile-navigation {
	transform: translateX(0%);
}

.mobile-navigation__close {
	display: flex;
	justify-content: flex-end;
}
.mobile-navigation__close i {
	font-size: 24px;
}

.mobile-navigation .menu-mobile-menu-container {
	display: flex;
	justify-content: center;
	padding: 48px 0;
}

.mobile-navigation .menu-mobile-menu-container .menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: fit-content;
}

.mobile-navigation .menu-mobile-menu-container .sub-menu {
	padding: 0;
	list-style: none;
}

@media (max-width: 1024px) {
	.header__inner .main-navigation {
		display: none;
	}

	#masthead.site-header .header__icons {
		display: none;
	}

	.mobile-navigation {
		display: block;
	}

	.header__navigation {
		flex-direction: row;
		align-items: center;
		gap: 32px;
	}

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



/* Forms */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	border-radius: 12px;
	padding: 8px;
}
label {
	font-size: 16px;
	color: var(--black);
}
/* End Forms */



/* Footer */
#colophon.site-footer {
	margin-top: var(--section-margin);
	background-color: var(--gray);
}
.footer__top {
	padding: calc(var(--section-margin) / 2) 0;
}
.footer__top-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: calc(var(--section-margin) / 2) 0;
	grid-gap: 0 48px;
}

.footer__bottom {
	border-top: 1px solid var(--black);
	padding: 24px 0;
}
.footer__bottom-inner {
	display: flex;
	justify-content: space-between;
}
.footer__bottom-links {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer__bottom-links .text-link {
	text-decoration: none;
}
.footer__bottom-socials {
	display: flex;
	gap: 16px;
	align-items: center;
}
.footer__bottom-socials p {
	margin: 0;
}
.footer__bottom-divider {
	height: 20px;
	min-height: 20px;
	max-height: 75%;
	width: 1px;
	min-width: 1px;
	max-width: 1px;
	background-color: var(--black);
}

.footer__top-column--1 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.site-footer .btn {
	width: fit-content;
}
.footer__top-column h4 {
	margin-top: 0;
	margin-bottom: 16px;
}
.footer__top-column--4 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.footer__top-column--4 .btn {
	width: auto;
	justify-content: space-between;
}

.footer__top-column--2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer__top-column--3 .menu, .footer__top-column--4 .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__top-column--3 .menu .menu-item a, .footer__top-column--4 .menu .menu-item a, .footer__top-column--3 .menu .menu-item a:visited, .footer__top-column--4 .menu .menu-item a:visited {
	color: var(--black);
	transition: all .2s ease;
}
.footer__top-column--3 .menu .menu-item a:hover, .footer__top-column--4 .menu .menu-item a:hover,
.footer__top-column--3 .menu .menu-item a:visited:hover, .footer__top-column--4 .menu .menu-item a:visited:hover {
	color: var(--red);
}

@media (max-width: 1024px) {
	.footer__top-inner {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 64px;
	}
}
@media (max-width: 768px) {
	.footer__top-inner {
		grid-template-columns: repeat(1, 1fr);
	}
	.footer__bottom-inner {
		flex-direction: column;
		gap: 32px;
	}
}
/* END Footer */



/* Views */
.form-control-wrapper {
	position: relative;
}
.form-control {
	border: none;
	border-radius: 16px;
	padding: 12px 16px;
	min-height: 50px;
	width: 100%;
	position: relative;
}
select.form-control {
	appearance: none;
}

.form-control-wrapper .form-control__arrow {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
}
/* END Views */



/* Swiper */
.swiper-navigation__button-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}
.swiper-navigation__button {
	cursor: pointer;
	background-color: #F3F3F3;
	border-radius: 9999px;
	height: 38px;
	width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .2s ease;
}

.swiper-navigation__button.swiper-button-disabled {
	opacity: .5;
	cursor: default;
}
/* END Swiper */

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

.cookieadmin-poweredby {
    display: none !important;
}
.cookieadmin_consent_btns button, .cookieadmin_modal_footer button {
    border-radius: 15px;
}