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

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
	--bodyFont: "Lato";
	--primaryColor: #ee3333;

	--orange: #FE970C;
	--groen: #00635A;
	--white: #fff;
	--darkgreen: #00635b;
	--darkblue:#144253;

	--mainGrid: 1280px;
	--smallGrid: 770px;

	--sectionPadding: 150px;

	--gridPadding: calc((100vw - var(--mainGrid)) / 2);
}
@media(max-width: 1440px) {
	:root {
		--gridPadding: calc((100vw - 90vw) / 2);
	}
}
@media(max-width: 768px) {
	:root {
		--sectionPadding: 75px;
	}
}

body {
	margin: 0;
}

body,
p,
li {
	font-family: var(--bodyFont);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
section {
	padding-top: var(--sectionPadding);
}
.nopadding{
	padding-top: 0px;
}

h1,h2,h3,h4,h5 {
	font-family: var(--bodyFont);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-top: 0px;
}

h1 {
	font-size: 70px;
}
h2 {
	font-size: 50px;
}
h3 {
	font-size: 40px;
}
h4 {
	font-size: 32px;
}
h5 {
	font-size: 30px;
}

.titel__kleur{
	color: var(--groen);
}

.contact-form__inner {
}

.contact-form__form-text {
	width: 65%;
}


.contact-form__inner-text {
	color: var(--darkgreen);
}

.email__inputfield {

}

.voornaam__inputfield {

}

.achternaam__inputfield {

}

.telefoonnummer__inputfield {

}

.bedrijf__inputfield {

}

.je-bedrijf__inputfield {

}

.bttn__tekst,
.bttn__tekst a {
	position: relative;
	color: var(--orange);
	font-size: 24px;
	line-height: 32px;
	font-weight: 400;
	text-decoration: none !important;
}

.bttn__tekst:hover,
.bttn__tekst a:hover,
.bttn__tekst:visited,
.bttn__tekst a:visited {
	color: var(--orange);
}

.bttn__tekst::after,
.bttn__tekst a::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--orange);
}
.bttn__inner,
.bttn__tekst,
.bttn__background,
.hero__button-doorzicht,
.bttn__inner-links,
.bttn__tekst-white{
	display: inline-flex;
	align-items: center;
	line-height: 28px; 
	font-size: 20px;
}

@media (max-width: 768px) {
	.bttn__inner,
	.bttn__tekst,
	.bttn__background,
	.hero__button-doorzicht,
	.bttn__inner-links,
	.bttn__tekst-white{
		line-height: 20px; 
		font-size: 18px;
	}
}

.bttn__wrapper-center{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.bttn__background {
	-webkit-appearance: none;
	background-color: var(--orange);
	color: var(--white);
	padding: 8px 32px;	
	text-decoration: none;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	border-radius: 24px;

	font-family: var(--bodyFont);

	border: solid 2px transparent;
	transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.bttn__background--2 {
	border: 2px solid var(--orange);
}

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

.bttn__background:hover {
	background-color: transparent;
	color: var(--white);
}

.bttn__white-border {
	border: 2px solid transparent;
}
.bttn__white-border:hover{
	border: solid var(--orange) 2px;
}

.bttn__orange-border {
	border: 2px solid transparent;
}
.bttn__orange-border:hover{
	border: solid var(--orange) 2px;
}

.bttn__transparent {
	background-color: var(--transparent);
	border-color: var(--orange);
}

.bttn__background.form-overlay-btn {
	align-items: center;
	border: 2px solid transparent;
	display: flex;
	align-items: center;
	height: 48px;
}

.bttn__background.form-overlay-btn:hover {
	border-color: var(--orange);
}

.hero__button-doorzicht {
	-webkit-appearance: none;
	color: white;
	padding: 8px 32px;	
	text-decoration: none;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	font-size: 22px;
	border: solid 2px orange;
	border-radius: 30px;
	height: fit-content;
}

.hero__button-doorzicht:visited {
	color: white;
}

.hero__button-doorzicht:hover {
	background-color: var(--groen);
	border: 2px solid transparent;
	color: white;
}

.arrow {
	width: 24px;
	margin-left: 5px;
	display: inline-block; 
	transition: transform 0.3s ease;
}
.arrow__size{
	width: 24px;
}

.arrow__color{
	color: white;
}
.arrow__color-groen{
	color: var(--groen);
}

.bttn__tekst:hover .arrow {
	transform: translateX(6px);
}
.bttn__background:hover .arrow {
	transform: translateX(4px);
}
.hero__button-doorzicht:hover .arrow {
	transform: translateX(4px);
}
.hero-cta:hover .arrow{
	transform: translateX(6px);
}

.bttn__tekst-white {
	position: relative;
	color: var(--white); 
	text-decoration: none;
	font-family: var(--bodyFont);
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	transition: color 0.3s ease;
}
.bttn__tekst-white:hover,
.bttn__tekst-white:visited {
	color: var(--white);
}
.bttn__tekst-white:visited::after {
	width: 100%;
	background: var(--white);
}
.arrow-white {
	margin-left: 5px;
	font-weight: bold;
}
.bttn__tekst-white:hover .arrow{
	transform: translateX(6px);
}

.mainGrid {
	width: 90%;
	max-width: var(--mainGrid);
	margin-right: auto;
	margin-left: auto;
}
.smallGrid {
	width: 90%;
	max-width: var(--smallGrid);
	margin-right: auto;
	margin-left: auto;
}
.site-footer {
	background-color: var(--groen);
	color: var(--white);
}


.footer-hero {
	position: relative;
	width: 100%;
	min-height: 600px;
	background-image: url('/wp-content/uploads/2025/10/BG-regenwoud-scaled.png'); /* vervang met jouw afbeelding */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	overflow: hidden;
}

.footer-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.80) 100%);
	z-index: 0;
}

.footer-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 48px 0;
	max-width: 1200px;
	width: 100%;
}

.hero-sub {
	font-size: 40px;
	letter-spacing: 1px;
	margin: 0 0 12px;
	font-weight: 600;
	opacity: 0.95;
}

@media (max-width: 768px) {
	.footermain .hero-sub,
	.footermain .hero-title {
		font-size: 24px;
	}
}

.hero-number {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	margin: 8px 0;
}

.hero-number__value {
	font-size: 200px;
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -2px;
}

.hero-number__sup {
	font-size: 200px;
	font-weight: 900;
	line-height: 1;
}

.hero-title {
	font-size: 40px;
	margin: 8px 0 18px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	margin-top: 6px;
	font-size: 24px;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 24px;
	color: var(--white);
	transition: all .18s ease-in-out;
}
@media (max-width: 768px) {
	.hero-cta {
		font-size: 18px;
	}
}
.hero-cta:visited{
	color:var(--white);
}

.hero-cta:hover,
.hero-cta:focus {
	color: var(--white);
	outline: none;
}

@media (max-width: 768px) {
	.footer-hero {
		min-height: 320px;
		padding: 28px var(--gridPadding);
	}
	.hero-number__value { font-size: 72px; }
	.hero-number__sup { 
		font-size: 68px; 
		transform: translateY(-1px); 
	}
}


.site-footer {
	background-color: var(--groen);
	color: var(--white);
}

/* Remove top padding from footer on some pages */
.home .footermain, .page-id-51 .footermain {
	padding-top: 0;
}

.footer-top {
	margin-bottom: 40px;
	padding: 65px 65px 0;
	position: relative;
	z-index: 3;
}

.footer-column.footer-logo {
	display: block;
	margin: 0;
}

.footer-logo img {
	width: 280px;
	margin-bottom: 35px;
}

@media (max-width: 768px) {
	.footer-column.footer-links {
		margin-top: 48px;
	}
	.footer-logo img {
		width: 220px;
	}
}

.footer-column h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--white);
}

.footer-column p,
.footer-column a {
	color: var(--white);
	font-size: 18px;
	line-height: 1.6;
	text-decoration: none;
}


.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.social-icons a {
	color: var(--white);
	margin-right: 10px;
	font-size: 1.2rem;
}

.footer-bottom {
	padding: 12px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.9rem;
	background-color: #004A44;
}

.footer-bottom-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	width: 60%;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
}

.footer-bottom-links a {
	color: var(--white);
	text-decoration: none;
}


.footer-info {
	display: flex;
	flex-direction: row;
	gap: 150px;
}

.footer-top ul {
	margin: 0;
}

/* ---------- Nieuwe Footer Contact CSS ---------- */

/* Footer Contact Items */
.footer-contact__item {
	display: flex;
	align-items: center;
	gap: 15px; /* ruimte tussen icon en tekst */
	margin-top: 25px;
	text-decoration: none;
	color: var(--white); /* blijft consistent met footer */
	cursor: pointer;
	transition: color 0.3s ease;
}

.footer-contact__item:hover .footer-contact__icon {
	animation: bounce 1s ease infinite;
}

/* Iconen */
.footer-contact__icon {
	width: 28px; /* kan per modifier aangepast worden */
	height: 28px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

/* Tekst */
.footer-contact__text {
	font-size: 18px; /* past bij je footer */
	line-height: 1.4;
}

/* Bounce animatie */
@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	30% { transform: translateY(-4px); }
	50% { transform: translateY(2px); }
	70% { transform: translateY(-1px); }
}

/* Footer Socials */
.footer-contact__socials {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.footer-contact__social img {
	width: 28px;
	height: 28px;
	transition: transform 0.2s ease;
	filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(107%) hue-rotate(303deg) brightness(117%) contrast(100%);
}

.footer-contact__social:hover img {
	animation: bounce 1s ease infinite;
}

/* Optioneel: individuele aanpassingen per type */
.footer-contact__icon--phone,
.footer-contact__icon--whatsapp {
	width: 30px;
	height: 30px;
}

.footer-contact__icon--location {
	width: 26px;
	height: 26px;
}

.footer__particle-decal {
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 60%;
	max-height: 100%;
	object-position: right;
	object-fit: contain;
}

/* Responsive Footer Contact */
@media (max-width: 768px) {
	.footer-contact__item {
		gap: 10px;
	}
	.footer-contact__text {
		font-size: 16px;
	}
	.footer-contact__socials {
		gap: 10px;
		margin-top: 20px;
	}
	.footer-contact__social img,
	.footer-contact__icon {
		width: 24px;
		height: 24px;
	}
	.footer__particle-decal {
		bottom: 0;
	}
	.footer__particle-decal {
		width: 80%;
	}
}

body.white-header .site-header,
.single-post .site-header,
.page-id-121 .site-header,
.page-id-3 .site-header,
.page-id-47 .site-header {
	background-color: var(--white);
}
body.white-header .site-header .nav-right .bttn__background:hover,
.single-post .site-header .nav-right .bttn__background:hover,
.page-id-121 .site-header .nav-right .bttn__background:hover,
.page-id-3 .site-header .nav-right .bttn__background:hover,
.page-id-47 .site-header .nav-right .bttn__background:hover {
	background-color: var(--groen);
	border-color: var(--groen);
}

.site-header {
	padding: 30px 0;
	position: absolute;
	z-index: 1600;
	width: 100%;
	text-align: right;

	transition: all .2s ease;
}

.site-header .site-logo img {
	transition: all .2s ease;
}
.site-header .site-logo img {
	width: 250px;
}
.page-id-47 .site-header {
	position: relative;
}

.nav-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 45px;
}

.bericht-video {
	aspect-ratio: 16/9;
}
.bericht-video iframe {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.nav-right .bttn__background {
		display: none;
	}

	.overlay-logo img{
		width: 180px;	
	}
	.close-btn {
		width: 32px;
	}

	.site-header .site-logo {
		width: 180px;
	}
}

.appointment-btn {
	background-color: var(--white);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease;
}

.appointment-btn:hover {
	background-color: var(--groen);
	color: var(--white);
}

.hamburger {
	width: 50px;
	min-width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	background-color: var(--orange);
	border: none;
	cursor: pointer;
	padding: 10px;
	border-radius: 9999px;
}
.hamburger__fixed {
	position: fixed;
	top: 16px;
	right: 5vw;
	z-index: 9995;

	transform: translateX(calc(5vw + 100%));
	transition: all .2s ease;
}
.hamburger__fixed.show {
	transform: translateX(0);
}

.hamburger span {
	height: 3px;
	background-color: white;
	border-radius: 2px;
	transition: 0.3s ease;
}
.hamburger__span1{
	margin-left: auto;
	width: 100%;
	min-width: 100%;
}
.hamburger__span2{
	margin-left: auto;
	width: 80%;
	min-width: 80%;
}
.hamburger__span3{
	margin-left: auto;
	width: 60%;
	min-width: 60%;
}

.hamburger:hover span {
	width: 100%;
}

.overlay-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--orange);
	display: flex;
	flex-direction: column;
	padding: 30px 0;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.overlay-menu.active {
	opacity: 1;
	pointer-events: all;
}

.overlay-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-btn {
	background: none;
	border: none;
	color: var(--white);
	font-size: 60px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.3s ease;
	padding:0;
}

.ti-header.source-Google {
	color: var(--white);
}

.overlay-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
}
.overlay-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.overlay-header__reviews {
	position: absolute;
	bottom: 56px;
}

.overlay-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	direction: ltr;
	margin-right: 4rem;
	padding-top:50px;
}

.overlay-nav li {
	margin: 20px 0;
}

.overlay-nav .menu a,
#colophon .menu a,
.footer-bottom-links a {
	position: relative;
	color: var(--white);
	text-decoration: none;
	font-size: 50px;
	font-weight: 500;
	display: inline-block;
}
.footer-bottom-links div,
.footer-bottom-links a {
	white-space: nowrap;
	font-size: 16px;
}
.footer-bottom-links li {
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
	.overlay-nav .menu a {
		font-size: 24px;
	}
}
#colophon .menu a,
.footer-bottom-links a {
	font-size: 18px;
}

.overlay-nav .menu a::after,
#colophon .menu a::after,
.footer-bottom-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: auto;
	width: 0;
	height: 2px;
	background: var(--white);
	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: 
		cubic-bezier(.4, 0, .2, 1);
	right: 0px;
}
.overlay-nav .menu a:hover:after,
#colophon .menu a:hover:after,
.footer-bottom-links a:hover:after {
	left: 0px;
	right: auto;
	width: 100%;
}

@keyframes in-from-left {
	from { width: 0; left: 0; }
	to { width: 100%; left: 0; }
}

@keyframes out-to-right {
	from { width: 100%; left: 0; }
	to { width: 0; left: 100%; } 
}


.appointment-btn.appointment-2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--white);
	color: var(--groen);
	font-size: 20px;
	position: relative;
	padding: 8px 32px;
	transition: all 0.3s ease;
	font-weight:400;
	min-height:48px;
}
.appointment-btn.appointment-2:hover .arrow {
	transform: translateX(4px);
}
.appointment-btn.appointment-2:hover .arrow img {
	transition: all .2s ease;
}
.appointment-btn.appointment-2:hover .arrow img {
	filter: brightness(0) invert(1);
}

.appointment-btn.appointment-2:hover {
	background-color: var(--groen);
	color: var(--white);
}


.arrow-wrapper {
	position: relative;
	display: inline-block;
	width: 24px; 
	height: 24px;
}

.arrow-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
}

.arrow-green { opacity: 1; }
.arrow-white { opacity: 0; }


/* overlay form + blur-overlay */

#blur-overlay {
	display: block; /* altijd in DOM */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1601;
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	transition: opacity 0.5s ease, visibility 0.5s ease;
	opacity: 0;
	visibility: hidden;
	box-shadow: 
		inset 0 -80px 120px rgba(255,255,255,0.45),
		inset 80px 0 120px rgba(255,255,255,0.45),
		inset -80px 0 120px rgba(255,255,255,0.45);
}

#blur-overlay.show {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	z-index: 1601;
}

#fixed-form,
#demo-form {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 90%;
	max-width: 900px;
	min-height: 573px;
	box-sizing: border-box;
	background: var(--white);
	padding: 48px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.35);
	z-index: 9999;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	transition: transform 0.6s ease, opacity 0.6s ease;
}
#demo-form {
	min-height: unset;
	justify-content: unset;
}

#fixed-form.open,
#demo-form.open {
	opacity: 1;
	pointer-events: all;
	transform: translate(-50%, -50%) scale(1);
}

#fixed-form h3,
#demo-form h3 {
	color: var(--groen);
	margin: 0;
	line-height: 1;
	margin-bottom:30px;
}
#demo-form h3 {
	margin-bottom: 0;
}

#fixed-form .close-form,
#demo-form .close-form {
	position: absolute;
	top: 48px;
	right: 48px;
	z-index: 1510;
	color: var(--groen);
	background: transparent;
	border: none;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	display: block;
	padding: 0;
}

#fixed-form .close-form.hidden,
#demo-form .close-form.hidden {
	display: none;
}

#fixed-form form,
#fixed-form .contact-section,
#demo-form form,
#demo-form .contact-section {
	width: 100%;
}

#fixed-form .form-inner,
#demo-form .form-inner {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

#fixed-form input,
#fixed-form textarea,
#demo-form input,
#demo-form textarea {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background: transparent;
	border-top: none;
	border-right: none;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	border-radius: 0;
	outline: none;
	font-size: 1rem;
}

#fixed-form .two-columns,
#demo-form .two-columns {
	display: flex;
	gap: 32px;
}

#fixed-form .two-columns input,
#demo-form .two-columns input{
	width: 50%;
}

#fixed-form button.bttn__background,
#demo-form button.bttn__background {
	align-self: flex-start;
	margin-top: 12px;
	height:48px;
}
#fixed-form button:hover,
#demo-form button:hover {
	border-color:var(--groen);
	transition: all 0.3s;
}

@media (max-width: 768px) {
	#fixed-form,
	#demo-form {
		width: 85%;
		background: var(--white);
		padding: 35px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
		overflow-y: auto;
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 0;
		transition: transform 0.5s ease, opacity 0.5s ease;
	}
	#fixed-form.open,
	#demo-form.open {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	#fixed-form .close-form,
	#demo-form .close-form {
		top: 29px;
		right: 24px;
		font-size:35px;
	}
	#fixed-form h3,
	#demo-form h3 {
		font-size: 24px;
	}
	#fixed-form .two-columns,
	#demo-form .two-columns {
		gap: 16px;
		flex-direction: column;
	}
	#fixed-form .two-columns input, #demo-form .two-columns input {
		width: 100%;
	}
}

.hidden-overlay {
	display: none !important;
}


/* Overige CSS blijft hetzelfde… */

#appointment-form input,
#appointment-form textarea {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.two-columns {
	display: flex;
	gap: 10px;
}

.two-columns input {
	width: 50%;
}

.contact-section {
	margin-top: 40px;
}

.contact-title {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--groen);
	font-size: 24px;
}

.contact-details {
	display: flex;
	align-items: center;
	gap: 15px;
}

.contact-details img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.contact-info {
	display: flex;
	flex-direction: column;
}

.contact-info a,
.contact-info a:hover,
.contact-info a:visited, 
.contact-info a:visited:hover {
	color: var(--orange);
	text-decoration: none;
}

.contact-info span.name {
	font-weight: bold;
	color: var(--orange);
}

.contact-info span.phone {
	color: var(--orange);
}

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

input[type='file']::file-selector-button {
	border-radius: 99px;
	background-color: #afd1ce;
	color: var(--groen);
	padding: 6px 16px 8px;
	font-family: var(--bodyFont);
	font-size: 16px;

	cursor: pointer;

	outline: none;
	border: none;
	transition: all .2s ease;
}

input[type='file']::file-selector-button:hover {
	background-color: #93c1bd;
}

.sollicitaite__grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0px 40px;
}

.sollicitaite__grid .submitWrapper p {
	margin: 0;
}

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

@media (max-width: 768px) {
	.col-span-1 {
		grid-column: span 2;
	}
}

.wpcf7 br {
	display: none;
}

.wpcf7 form input,
.wpcf7 form textarea {
	width: 100%;
	padding: .6rem;
	border: none;
	border-bottom: 1px solid black;
	border-left: 1px solid black;
	font-size: 1rem;
	box-sizing: border-box;
}

textarea[name="your-message"] {
	max-height: 160px;
	resize: vertical;
}

.message-wrapper {
	position: relative;
}

.wpcf7 .message-counter {
	display: flex;
	position: absolute;
	right: 2%;
	bottom: 10%;
	color: var(--groen);
	display: none;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.bttn__background {
	width: fit-content;
	display: inline-flex;
	-webkit-appearance: none;
	background-color: var(--orange);
	color: var(--white);
	padding: 8px 32px;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
	border-radius: 99px;
	border: none;
	transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;

	font-family: var(--bodyFont);
	font-size: 20px;
	height: 46px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner.bttn__background:hover {
	background-color: var(--groen);
	color: white;
}

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

.wpcf7-not-valid-tip {
	font-size: 14px;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(calc(100% + 4px));
}

.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	margin: 0;
	font-size: 16px;
	display: block;
	opacity: 0;
	position: fixed;
	top: 64px;
	left: 50%;
	transform: translate(-50%, -16px);
	background-color: var(--white);
	padding: 8px 16px;

	transition: all .2s ease;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	opacity: 1;
	transform: translate(-50%, 0px);
}

.hidden {
	display: none;
}

@media (max-width: 1024px) {
	body, p, li {
		font-family: var(--bodyFont);
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}
	h1 {
		font-family: var(--bodyFont);
		font-size: 52px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}

	h2{
		font-family: var(--bodyFont);
		font-size: 38px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	h3{
		font-family: var(--bodyFont);
		font-size: 30px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	h4{
		font-family: var(--bodyFont);
		font-size: 22px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-top: 0px;
	}
	h5{
		font-family: var(--bodyFont);
		font-size: 22px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	.overlay-header__reviews{
		margin-right: 163px;
		position: static;
		margin-top: 10px;
	}
	.overlay-appointment.appointment-2 {
		margin-right: 317px;
		margin-top: 0px;
	}

	.overlay-menu .mainGrid {
		display: flex;
		flex-direction: column;
		height: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 768px) {
	p {
		font-family: var(--bodyFont);
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 1.5;
	}
	h1 {
		font-family: var(--bodyFont);
		font-size: 42px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}

	h2{
		font-family: var(--bodyFont);
		font-size: 32px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	h3{
		font-family: var(--bodyFont);
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	h4{
		font-family: var(--bodyFont);
		font-size: 22px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-top: 0px;
	}
	h5{
		font-family: var(--bodyFont);
		font-size: 22px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	.site-header {
		padding: 23px 0;
		position: absolute;
		z-index: 1000;
		width: 100%;
		text-align: right;
	}
	.overlay-appointment.appointment-2 {
		margin-right: 0px;
		margin-top: 0px;
	}
	.overlay-nav {
		display: block;
	}
	.overlay-nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
		direction: ltr;
		margin-right: 0px;
	}
	.appointment-btn.appointment-2 {
		margin-top: 10px;
	}
	/* 	.overlay-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--orange);
	display: block;
	padding: 30px 0;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: opacity 0.3s 
	ease, transform 0.3s 
	ease, visibility 0.3s 
	ease;
} */
	.overlay-header__reviews{
		display: block;
		position: static;
		padding-top: 24px;
	}
	.wpcf7 form .wpcf7-grid {
		grid-template-columns: 1fr;
	}
	.contact-form__form-text {
		width: 100%;
	}
	.wpcf7-form-control.wpcf7-submit.has-spinner.bttn__background {
		width: 100%;
	}

	.two-columns {
		display: block;
		gap: 10px;
	}
	.overlay-header{
		width: 100%;
	}

	.footer-bottom-links {
		display: flex;
		margin: 0;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 10px 0px;
		font-size: 16px;
	}
	.footer-top {
		margin-bottom: 0px;
		padding: 48px var(--gridPadding) 20px;
		position: relative;
		z-index: 3;
	}
	.footer-info {
		display: block;
		gap: 150px;
	}
	.footer-column {
		margin: 0px;
	}
	.footer-bottom {
		padding: 20px;
		display: block;
		background-color: #004A44;
	}

}
@media (min-width: 768px) {
	.md\:block {
		display: block;
	}
	.md\:hidden {
		display: none;
	}
}



/* PAGE - Taltentwave Solution */


/* END PAGE - Taltentwave Solution */

.review-block,
.review-block:visited {
	display: flex;
	flex-direction: column;
	gap: 12px;

	color: var(--white);
	text-decoration: none;
}
.review-block:hover,
.review-block:visited:hover {
	color: var(--white);
	text-decoration: none;
}
.review-block h4 {
	margin: 0;
	color: var(--white);
	font-size: 18px;
}
.review-block__star-wrapper {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 6px;
}
.review-block__star-wrapper h4 {
	font-weight: 600;
}
.review-block__stars {
	display: flex;
	align-items: center;
	gap: 4px;
}
.review-block__bottom {
	width: fit-content;
}
.review-block__bottom i {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;

}
.review-block__google-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
} 
.review-block__google-wrapper img {
	object-fit: contain;
	width: 50px;
}

/* 404 */
.error-404 .error-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* END 404 */

/* ANIMATION STYLING */
.animating {
	transition: none !important;
}
.invisible-start {
	opacity: 0 !important;
}
.home .invisible-start-header {
	opacity: 0 !important;
}
/* END ANIMATION STYLING */

/* Download Bar */
.download-bar {
	position: fixed;
	z-index: 750;
	bottom: 0;
	width: 100%;
	background-color: var(--groen);

	transform: translateY(120%);
	transition: all .2s ease;
}
.download-bar.open {
	transform: translateY(0%);
}
.download-bar.closed {
	transform: translatey(350%) !important;
}

.download-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}
.download-bar h2 {
	margin: 0;
	color: var(--white);
}
.download-bar__close {
	width: 32px;
	min-width: 32px;
	height: 32px;
	min-height: 32px;
	border-radius: 99px;
	background-color: var(--groen);
	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 svg {
	width: 75%;
	height: 75%;
}
.download-bar__close svg path {
	fill: 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;
}
.download-bar__inner {
	position: relative;
}

.download-bar__image {
	position: absolute;
	top: -210px;
	left: -220px;      
}

.download-bar__image img {
	width: 350px;     
	height: auto;
}
@media (max-width: 768px) {
	.download-bar__inner {
		align-items: flex-end;
	}
	.download-bar h2 {
		font-size: 24px;
	}
	.download-bar__bttn .bttn__inner {
		display: none;
	}
	.download-bar__bttn {
		height: 44px;
		min-height: 44px;
		width: 44px;
		min-width: 44px;
		padding: 0;
	}
	.download-bar__image {
    top: -120px;
    left: -90px;    
	}

	.download-bar__image img {
		width: 200px;     
	}
}
/* END Download Bar */

/* Exception styling */


/* Quote Module */
.quote__background{
	background-color: var(--groen);
}

.quote__main-wrapper {
	position: relative;
	padding: calc(var(--sectionPadding) * 1.3) 0px;
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center;     
	text-align: center;      
}

.quote__img {
	border-radius: 360px;
	min-width: 150px;
	width: 150px;
	max-width: 150px;
	min-height: 150px;
	height: 150px;
	max-height: 150px;
	object-fit: cover;
	margin-top: 20px;
}
.quote__icon{
	font-size: 285px;
	color: rgba(255, 255, 255, 0.4);
	z-index: 1;
	line-height: 1px;
	align-self: flex-start;
	transform: translate(100%, 100%);
}
.quote__titel{
	margin-top: 0;
}
.quote__subtekst p {
	font-size: 28px;
	margin: 0;
}
.quote__img-wrapper{
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.quote__titel,
	.quote__subtekst {
		text-align: left;
		width: 100%;
	}
	.quote__subtekst {
		display: flex;
	}
	.quote__subtekst p {
		font-size: 20px;
		width: 65%;
	}
	.quote__icon{
		font-size: 200px;
		transform: translate(0, 0);
	}
	.quote__main-wrapper {
		padding: calc(var(--sectionPadding ) * 1.5) 0 calc(var(--sectionPadding ) / 2);
	}
	.quote__img {
		margin: 0;
	}
}
/* END Quote Module */

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