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

@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);
	}
}
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;
}

.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:visited {
	color: var(--white);
}

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

.bttn__white-border:hover{
	border: solid var(--white) 1px;
}

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

.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);
}

.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('https://paddapq42025.paddap.dev/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 20px;
	max-width: 1200px;
	width: 100%;
}

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

.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;
}
.hero-cta:visited{
	color:var(--white);
}

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

@media (max-width: 640px) {
	.footer-hero {
		min-height: 320px;
		padding: 28px 10px;
	}
	.hero-number__value { font-size: 72px; }
	.hero-number__sup { font-size: 18px; transform: translateY(-10%); }
}


.site-footer {
	background-color: var(--groen);
	color: var(--white);
}
.home .footermain {
	padding-top: 0;
}

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

.footer-column {
	margin: 10px;
}

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

.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;
}

.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;
}

/* 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;
	}
}

.site-header {
	padding: 30px 0;
	position: absolute;
	z-index: 1600;
	width: 100%;
	text-align: right;
}
.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;
}

.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;
}
#colophon .menu a,
.footer-bottom-links a {
	font-size: unset;
}

.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;
}


.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; }


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

.appointment-btn.appointment-2:hover .arrow-green {
	opacity: 0; 
}

.appointment-btn.appointment-2:hover .arrow-white {
	opacity: 1; 
}



/* 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: 1602;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	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;
	visibility: visible;
	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;
		visibility: hidden;
		transition: transform 0.5s ease, opacity 0.5s ease;
	}
	#fixed-form.open,
	#demo-form.open {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
		visibility: visible;
	}
	#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;
	}
}

.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 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;
}

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

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

.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;
}
.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: 18px;
		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;
	}
}

@media (max-width: 768px) {
	p {
		font-family: var(--bodyFont);
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}
	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: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-top: 0px;
	}
	h5{
		font-family: var(--bodyFont);
		font-size: 16px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin-top: 0px;
	}
	.site-header {
		padding: 15px 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;
		margin-top: 20px;
		margin-right: 205px;
	}
	.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;
		justify-content: space-evenly;
		align-items: center;
		padding: 10px 0px;
		font-size: 16px;
	}
	.footer-top {
		margin-bottom: 0px;
		padding: 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 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;
}