@font-face {
font-family: "Quicksand";
src: url(//werkenbij.laurens.nl/wp-content/themes/paddap-custom-theme/fonts/Quicksand-VariableFont_wght.ttf) format('truetype');
}
@font-face {
font-family: "Spline Sans";
src: url(//werkenbij.laurens.nl/wp-content/themes/paddap-custom-theme/fonts/SplineSans-VariableFont_wght.ttf) format('truetype');
}
:root {
--heading-font: "Quicksand";
--body-font: "Spline Sans"; --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); --navbar-height: 122px; --container: 1440px;
--small-container: 1024px; --section-margin: 110px;
--section-margin-mobile:55px;
--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;
margin:0;
}
a {
text-decoration: none;
}
input, button, select, textarea {
font-size: 18px;
line-height: 1.2;
}
input:focus-visible, textarea:focus-visible {
outline: red 3px;
}
body.no-scroll {
overflow: hidden;
}
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: 115%;
font-weight:600;
}
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: 36px;
}
h2, .h2 {
font-size: 32px;
}
h3, .h3 {
font-size: 22px;
}
h4, .h4 {
font-size: 16px;
}
h5, .h5 {
font-size: 20px;
}
body,
p {
font-size: 16px;
}
}
@media (max-width: 600px) {
h1, .h1 {
font-size: 26px;
}
}
section {
margin-top: var(--section-margin);
}
@media (max-width: 768px){
section{
margin-top: var(--section-margin-mobile);
}
}
img, video, iframe, svg {
display: block;
} .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 ul:last-child {
margin-bottom: 0;
padding-left: 18px;
}
.text-link,
.text-link:visited {
color: var(--black);
text-decoration: underline;
}
.text-link {
display: inline-block;
width: fit-content;
transition: all .2s ease;
}
.text-link:hover,
.text-link:visited:hover{
color: var(--red);
} .btn, button.btn[type="submit"] {
border: 1px solid var(--green);
border-color: var(--green);
outline: none;
padding: 8px 18px;
background-color: transparent;
overflow: clip;
border-radius: 12px;
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 {
border-color: var(--green);
}
.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);
white-space: nowrap;
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;
}
.loadMoreBttnWrapper {
grid-column: 5/13;
display: flex;
justify-content: center;
}
.vacancy-overview__grid .loadMoreBttnWrapper {
grid-column: unset;
}
.vacancy-overview__filters-top .wpv-reset-trigger {
height: 40px;
width: 40px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
} #masthead.site-header {
padding: 16px 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
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;
} .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;
}
.header__inner .menu-main-menu-container .menu {
gap: 32px;
}
.header__inner .menu-item {
position: relative;
width: fit-content;
}
.header__inner .menu-item .menu-item__wrapper a:after,
.header__inner .menu-item > a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: var(--red);
transform: scaleX(0);
transition: all .2s ease;
}
.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-item a:visited,
.header__inner .menu-item a {
color: var(--black);
transition: all .2s ease;
width: fit-content;
white-space: nowrap;
position: relative;
}
.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,
.header__inner .menu .menu-item:hover > .menu-item__wrapper > a:visited {
color: var(--red);
}
.header__inner .menu-item:hover .menu-item__wrapper > a:after,
.header__inner .menu-item:hover > a:after {
transform: scaleX(1);
}
.header__inner .menu .current-menu-item > a,
.header__inner .menu .current-menu-item > .menu-item__wrapper > a {
color: var(--red)
}
.header__inner .menu .current-menu-item .menu-item__wrapper a:after,
.header__inner .menu .current-menu-item > a:after {
transform: scaleX(1);
}
.header__inner .menu .current-menu-ancestor > a {
color: var(--red);
}
.header__inner .menu .current-menu-ancestor .menu-item__wrapper a:after,
.header__inner .menu .current-menu-ancestor > a:after {
transform: scaleX(0);
}
.header__inner .menu .current-menu-ancestor .menu-item__wrapper a,
.header__inner .menu .current-menu-ancestor > a {
color: var(--red);
}
@media (max-width: 1024px) {
.header__inner .menu .current-menu-ancestor .menu-item__wrapper a:after,
.header__inner .menu .current-menu-ancestor > a:after {
transform: scaleX(0);
}
.header__inner .menu .current-menu-ancestor:hover .menu-item__wrapper a:after,
.header__inner .menu .current-menu-ancestor:hover > a:after {
transform: scaleX(0);
}
.header__inner .menu .menu-item__arrow {
display: none;
}
}
.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;
align-items: center;
gap: 8px;
}
.header__hamburger-line {
width: 32px;
height: 3px;
background-color: var(--red);
border-radius: 99px;
}
.header__hamburger-line.header__hamburger-line--2 {
width: 16px;
}
.mobile-navigation {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--white);
padding: 48px 0 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;
box-shadow: 0 12px 8px rgba(255, 255, 255, 1);
position: relative;
z-index: 1;
}
.mobile-navigation__close i {
font-size: 26px;
color: var(--red);
padding-right: var(--container-padding);
}
.mobile-navigation .menu-mobile-menu-container {
display: flex;
justify-content: center;
padding: 24px 0; overflow: scroll;
flex: 1;
font-weight: 600;
}
.mobile-navigation .menu-mobile-menu-container .menu {
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
width: fit-content;
height: max-content;
}
.mobile-navigation .menu-mobile-menu-container .sub-menu {
padding: 0;
list-style: none;
}
.mobile-navigation__inner {
display: flex;
flex-direction: column;
height: 100%;
}
.mobile-navigation__questions {
display: flex; gap: 24px;
background-color: var(--green-tint-1);
align-items: center;
justify-content: center;
padding: 16px;
box-shadow: 0 -12px 8px rgba(255, 255, 255, 1);
position: relative;
}
.mobile-navigation__questions-content-wrapper {
display: flex;
flex-direction: column;
width: 60%;
}
.mobile-navigation__questions-content-wrapper h3 {
margin-top: 0;
margin-bottom: 12px;
}
.mobile-navigation__questions-content-wrapper a,
.mobile-navigation__questions-content-wrapper a:visited {
color: var(--black);
font-weight: 600;
}
@media (max-width: 1024px) {
.header__inner .main-navigation {
display: none;
}
.mobile-navigation {
display: block;
}
.header__navigation {
flex-direction: row;
align-items: center;
gap: 32px;
}
.header__hamburger {
display: flex;
}
}  #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__logo svg {
width: 100px;
}
.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__link {
display: flex;
gap: 6px;
align-items: center;
transform: translateX(-25px);
}
@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;
}
}  .hero-2__content-wrapper .text-link {
display: inline-block;
color: var(--white);
text-decoration: none;
cursor: pointer;
}
.hero-2__content-wrapper .text-link:hover {
color: var(--white);
text-decoration: underline;
}
.hero-2.no-image .hero-2__content-wrapper .text-link {
color: var(--black);
}
.hero-2.no-image .hero-2__content-wrapper .text-link:hover {
color: var(--black);
text-decoration: underline;
}  .form-control-wrapper {
position: relative;
}
.form-control-wrapper .form-control__arrow {
position: absolute;
top: 50%;
right: 16px;
transform: translateY(-50%);
}
.form-control {
border: none;
border-radius: 16px;
padding: 12px 16px;
min-height: 50px;
width: 100%;
position: relative;
}
.form__select-wrapper {
position: relative;
}
.form__select-wrapper .form__select-arrow {
position: absolute;
height: 24px;
width: 24px;
top: 50%;
right: 8px;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: flex-start;
}
.form__select-wrapper .form__select-arrow i {
color: var(--black);
}
select.form-control {
appearance: none;
}
span.wpv-filter-next-link.page-link {
display: none;
}
.no-items-found strong {
width: 100%;
display: block;
text-align: center;
}
.checkboxes-wrapper-inner {
max-height: 115.2px;
overflow: clip;
transition: all .2s ease;
}
.checkboxes-wrapper-button {
display: flex;
align-items: center;
gap: 16px;
margin-top: 12px;
border: 1px solid var(--black);
border-radius: 8px;
width: fit-content;
padding: 4px 16px;
cursor: pointer;
}
.checkboxes-wrapper-button i {
transition: all .2s ease;
transform-origin: center center;
}
.checkboxes-wrapper.open .checkboxes-wrapper-button i {
transform: rotate(180deg);
}
@media (max-width: 768px) {
.checkboxes-wrapper-inner {
max-height: 100px;
}
}  .wpcf7 br {
display: none;
}
.wpcf7 p {
margin: 0;
}
.wpcf7 form {
display: flex;
flex-direction: column;
gap: 16px;
}
.wpcf7 p label {
display: block;
}
.wpcf7 .wpcf7-form-control-wrap {
display: block;
}
.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap textarea {
width: 100%;
padding: 16px 24px;
border: none;
}
.wpcf7 .wpcf7-list-item {
margin: 0;
}
.wpcf7 .wpcf7-list-item label {
display: flex;
align-items: center;
gap: 8px;
}
.wpcf7 .wpcf7-list-item input[type="checkbox"] {
appearance: none;
padding: 0;
width: 20px;
min-width: 20px;
max-width: 20px;
height: 20px;
min-height: 20px;
max-height: 20px;
border-radius: 20px;
background-color: var(--white);
position: relative;
}
.wpcf7 .wpcf7-list-item input[type="checkbox"]:after {
content: '\2713';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
}
.wpcf7 .wpcf7-list-item input[type="checkbox"]:checked:after {
opacity: 1;
}
.wpcf7 .tekstKlein {
font-size: 14px;
font-style: italic;
}  .error-404__inner {
min-height: calc(100vh - 110px);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.error-404__inner h1 {
margin: 0;
}
.error404 #colophon {
margin-top: 0;
}  .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;
}  .heart.liked path {
stroke: var(--red);
fill: var(--red);
}
.heart {
cursor: pointer;
transition: transform 0.2s ease;
}
.heart:hover {
transform: scale(1.1);
}
.heart.liked {
animation: heartbeat 0.3s;
}
@keyframes heartbeat {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
}  .whatsapp {
position: fixed;
z-index: 999;
bottom: 48px; 
right: 5%;
display: block;
color: var(--green);
}
.whatsapp__inner {
}
.whatsapp__inner i {
color: var(--green);
font-size: 35px;
display: block;
}
@media (max-width: 1200px) {
.page-id-33 .whatsapp {
bottom: 80px;
}
}  .section-animation {
position: relative;
z-index: 3;
}
.invisible-start {
opacity: 0 !important;
} div#CookiebotWidget {
display:none!important;
}
.grecaptcha-badge { display: none !important; }