/* ========================================================
	WEBSITE CSS
	OSTEOPATHIE DE STREEK Â© FORWARD - BRAVEBOYS STUDIO
======================================================== */


/* ============================
	BODY - BASE
============================ */

body,
html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* ============================
   HEADER AND NAVIGATION
============================ */

.site-header {
	background-color: var(--color-white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	left: 0;
	position: sticky;
	top: 0;
	transition: var(--transition);
	width: 100%;
	z-index: 50;
}

.site-header--scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* TOP BAR */

.site-header__top {
	background-color: #E7F1F9;
	color: #5395C3;
	font-size: 0.9rem;
}

.site-header__top-inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 0.4rem 0;
}

.site-header__top-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-header__top-contact a {
	align-items: center;
	color: #3C88BE;
	display: inline-flex;
	gap: 0.5rem;
	text-decoration: none;
	transition: var(--transition);
}

.site-header__top-contact a:hover {
	opacity: 0.8;
}

.site-header__top-icon {
	align-items: center;
	display: inline-flex;
	font-size: 1.1rem;
	justify-content: center;
}

.site-header__top-hours {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* NAV BAR */

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

.site-header__nav-inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 0.75rem 0;
	transition: var(--transition);
}

.site-header--scrolled .site-header__nav-inner {
	padding: 0.35rem 0;
}

/* LOGO */

.site-header__logo {
	display: inline-flex;
	max-width: 200px;
}

.site-header__logo img {
	display: block;
	height: auto;
	max-width: 100%;
	transition: var(--transition);
}

.site-header--scrolled .site-header__logo img {
	transform: scale(0.7);
}

/* LAYOUT */

.site-header__center {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 1.5rem;
	justify-content: center;
}

.site-header__navigation {
	align-items: center;
	display: flex;
	flex: 1 1 100%;
	justify-content: center;
	width: 100%;
}

.site-header__cta {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

/* NAV MAIN */

.nav-main {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.nav-main--mobile {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: flex-start;
	width: 100%;
}

.nav-main__item {
	position: relative;
	width: auto;
}

.nav-main--mobile .nav-main__item {
	width: 100%;
}

.nav-main__item--has-children {
	cursor: default;
}

.nav-main__link--parent-wrapper {
	align-items: center;
	display: inline-flex;
	gap: 0.25rem;
}

.nav-main__toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.7rem;
}

/* HOOFDMENU LINKS */

.nav-main__link {
	align-items: center;
	border-radius: 999px;
	color: #010101;
	display: inline-flex;
	font-size: 1.175rem;
	font-weight: 500;
	gap: 0.4rem;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 0.35rem 0.9rem;
	position: relative;
	text-decoration: none;
	transition: var(--transition);
}

.nav-main__link::after {
	content: none;
}

.nav-main__link--parent {
	align-items: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

@media (min-width: 992px) {

	.nav-main__link:hover,
	.nav-main__link--active,
	.nav-main__item--active>.nav-main__link,
	.nav-main__item--active>.nav-main__link--parent,
	.nav-main__item--has-children:hover>.nav-main__link,
	.nav-main__item--has-children:hover>.nav-main__link--parent,
	.nav-main__link--parent:hover {
		background-color: #EEEEEE75;
		color: #010101;
	}
}

.nav-main__icon {
	display: inline-flex;
	font-size: 0.7rem;
}

/* NAV SUB */

.nav-sub {
	background-color: var(--color-white);
	border-radius: 0.75rem;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	display: none;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 230px;
	padding: 0.6rem 0;
	position: absolute;
	top: 100%;
	z-index: 40;
}

.nav-sub__item {
	width: 100%;
}

.nav-sub__link {
	color: #010101;
	display: block;
	font-size: 0.95rem;
	padding: 0.4rem 1rem;
	text-decoration: none;
	transition: var(--transition);
}

.nav-sub__link:hover {
	background-color: #E7F1F9;
	color: #010101;
}

/* OPEN STATE */

.nav-main__item--open>.nav-sub {
	display: block;
}

/* DESKTOP DROPDOWN */

@media (min-width: 992px) {
	.nav-main__item.nav-main__item--has-children:hover>.nav-sub {
		display: block;
	}
}

/* MOBILE NAV */

@media (max-width: 991.98px) {
	.site-header__navigation {
		display: none;
	}

	.nav-main--mobile .nav-main__link {
		border-radius: 0.75rem;
		justify-content: space-between;
		width: 100%;
	}

	.nav-main--mobile .nav-sub {
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
		display: block;
		min-width: 0;
		padding: 0.35rem 0 0.35rem 1rem;
		position: static;
		width: 100%;
	}
}


/* BUTTON APPOINTMENT */

.button {
	align-items: center;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 600;
	gap: 0.35rem;
	justify-content: center;
	line-height: 1;
	padding: .8rem 1.25rem;
	text-decoration: none;
	transition: var(--transition);
}

.button--appointment {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
}

.button--appointment:hover {
	background-color: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}

/* TOGGLE */

.site-header__toggle {
	align-items: center;
	background-color: transparent;
	border: none;
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	justify-content: center;
	padding: 0.4rem;
}

.site-header__toggle-bar {
	background-color: #010101;
	border-radius: 999px;
	display: block;
	height: 2px;
	transition: var(--transition);
	width: 20px;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* OFFCANVAS MOBILE MENU */

.site-header__offcanvas {
	background-color: var(--color-white);
	bottom: 0;
	/*box-shadow: -18px 0 45px rgba(0, 0, 0, 0.18);*/
	display: flex;
	flex-direction: column;
	max-width: 360px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.2s ease;
	width: 86%;
	z-index: 90;
}

.site-header__offcanvas--open {
	transform: translateX(0);
}

.site-header__offcanvas-inner {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.1rem 1.5rem 1.5rem;
}

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

.site-header__offcanvas-logo {
	max-width: 180px;
}

.site-header__offcanvas-logo img {
	display: block;
	height: auto;
	max-width: 100%;
}

.site-header__offcanvas-close {
	align-items: center;
	background-color: transparent;
	border: none;
	color: #010101;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.4rem;
	justify-content: center;
	padding: 0.25rem;
	transition: var(--transition);
}

.site-header__offcanvas-close:hover {
	color: #5395C3;
}

.site-header__offcanvas-nav {
	flex: 1 1 auto;
	overflow-y: auto;
	padding-top: 0.5rem;
}

.site-header__offcanvas-cta {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-top: 0.75rem;
	padding-top: 1rem;
}

/* BACKDROP */

.site-header__offcanvas-backdrop {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	visibility: hidden;
	z-index: 80;
}

.site-header__offcanvas-backdrop--visible {
	opacity: 1;
	visibility: visible;
}

/* RESPONSIVE HEADER */

@media (max-width: 991.98px) {
	.site-header__top {
		display: none;
	}

	.site-header__nav-inner {
		gap: 1rem;
	}

	.site-header__logo {
		max-width: 100px;
	}

	.site-header__center {
		display: none;
	}

	.site-header__navigation {
		display: none;
	}

	.site-header__cta {
		display: none;
	}

	.site-header__toggle {
		display: inline-flex;
		margin-left: auto;
	}

	/* nav-sub in offcanvas: vlak onder parent als bulk-lijst */
	.site-header__offcanvas .nav-sub {
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
		display: block;
		margin-top: 0.1rem;
		min-width: 0;
		padding: 0.2rem 0 0.4rem;
		position: static;
	}

	.site-header__offcanvas .nav-sub__link {
		padding-inline: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.nav-main {
		gap: 1.25rem;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.site-header__logo {
		max-width: 190px;
	}
}

@media (min-width: 1400px) {
	.site-header__nav-inner {
		padding: 1rem 0;
	}

	.site-header__logo {
		max-width: 200px;
	}
}



/* ============================
   HERO
============================ */

.hero {
	background-color: var(--color-white);
	color: #010101;
	position: relative;
}

/* beeld */

.hero__media {
	position: relative;
}

.hero__image {
	display: block;
	height: 100%;
	max-height: 620px;
	object-fit: cover;
	width: 100%;
}

/* overlay â€“ zachter, meer foto zichtbaar */

.hero__overlay {
	align-items: center;
	background: linear-gradient(155deg,
			rgba(83, 149, 195, 0.60) 0%,
			rgba(192, 167, 152, 0.55) 25%,
			rgba(192, 167, 152, 0.65) 70%,
			rgba(83, 149, 195, 0.25) 90%);
	display: flex;
	inset: 0;
	justify-content: center;
	position: absolute;
}

/* content wrapper */

.hero__content {
	color: #FFFFFF;
	padding: 4.5rem 0 3.5rem;
}

/* introblok links */

.hero__intro {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

/* kicker boven h1 */

.hero__kicker {
	color: rgba(255, 255, 255, 1);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: var(--letter-spacing-tight);
	margin: 0;
	text-transform: uppercase;
}

/* h1 â€“ zwart en vet */

.hero__title {
	color: #010101;
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.2;
	margin: 0;
}

/* subtitel â€“ wit en groter */

.hero__subtitle {
	color: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
}

/* CTA knoppen */

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

/* afspraakbutton in hero â€“ wit met zwarte tekst */

.button--hero-appointment {
	background-color: #FFFFFF;
	border: 2px solid #FFFFFF;
	color: #000000;
}

.button--hero-appointment:hover {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: #FFFFFF;
	transform: translateY(-1px);
}

/* tweede knop â€“ zacht spookje */

.button--hero-ghost {
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 1);
	color: #FFFFFF;
}

.button--hero-ghost:hover {
	background-color: #FFFFFF;
	border-color: #FFFFFF;
	color: #010101;
	transform: translateY(-1px);
}

/* icoon in knoppen */

.hero__cta-icon {
	display: inline-flex;
	font-size: 1.05rem;
	line-height: 1;
}

/* targets rechts */

.hero-targets {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.hero-targets__label {
	color: rgba(255, 255, 255, 1);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: var(--letter-spacing-tight);
	margin: 0;
	text-transform: uppercase;
}

/* grid van items */

.hero-targets__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* items â€“ lichter/witter */

.hero-targets__item {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	color: #010101;
	display: inline-flex;
	flex: 1 1 45%;
	gap: 0.75rem;
	justify-content: flex-start;
	min-width: 10.5rem;
	padding: 0.55rem 0.9rem;
	text-decoration: none;
	transition: var(--transition);
}

.hero-targets__item:hover {
	background-color: #FFFFFF;
	color: var(--color-blue);
	transform: translateY(-1px);
}

/* cirkel â€“ nog iets witter dan de chip */

.hero-targets__icon {
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 999px;
	color: #5395C3;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 1.25rem;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.hero-targets__text {
	font-family: var(--font-family-paragraph);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: -.0125rem;
	margin-bottom: 1px;
}

/* RESPONSIVE HERO */

@media (max-width: 575.98px) {
	.hero__content {
		padding: 3.5rem 0 3rem;
	}

	.hero__title {
		font-size: 1.7rem;
	}

	.hero__subtitle {
		font-size: 1.2rem;
	}

	.hero-targets__item {
		flex: 1 1 100%;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.hero__content {
		padding: 4rem 0 3.5rem;
	}

	.hero__title {
		font-size: 1.9rem;
	}

	.hero__subtitle {
		font-size: 1.35rem;
	}

	.hero-targets__item {
		flex: 1 1 48%;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.hero__content {
		padding: 5rem 0 4rem;
	}

	.hero__title {
		font-size: 2.2rem;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.hero__content {
		padding: 5.25rem 0 4.25rem;
	}

	.hero__title {
		font-size: 2.35rem;
	}
}

@media (min-width: 1400px) {
	.hero__content {
		padding: 5.5rem 0 4.5rem;
	}

	.hero__title {
		font-size: 2.5rem;
	}
}



/* ============================
   INTRODUCTION
============================ */

.intro {
	background-color: #FFFFFF;
	padding: 4rem 0;
}

.intro__row {
	gap: 3rem;
}

.intro__media {
	border-radius: 1.75rem;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.intro__image {
	display: block;
	height: 100%;
	max-height: 460px;
	object-fit: cover;
	width: 100%;
}

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

.intro__title {
	color: #010101;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.25;
	margin: 0;
}

.intro__lead,
.intro__text {
	color: #010101;
	font-size: 1.15rem;
	line-height: 1.5;
	margin: 0;
}

.intro__highlights {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.intro__highlight {
	align-items: center;
	display: flex;
	gap: 0.65rem;
}

.intro__highlight-icon {
	align-items: center;
	background-color: rgba(83, 149, 195, 0.08);
	border-radius: 999px;
	color: #5395C3;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 1.15rem;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.intro__highlight-text {
	color: #010101;
	font-family: var(--font-family-paragraph);
	font-size: 1.05rem;
}

.intro__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.button--intro-primary,
.button--intro-secondary {
	background-color: transparent;
	border: 2px solid;
	border-color: var(--color-blue);
	color: var(--color-black);
}

.button--intro-secondary {
	border-color: #C0A798;
}

.button--intro-primary:hover {
	background-color: #5395C3;
	border-color: #5395C3;
	color: var(--color-black);
	transform: translateY(-1px);
	transition: var(--transition);
}

.button--intro-secondary:hover {
	background-color: #C0A798;
	border-color: #C0A798;
	color: var(--color-black);
	transform: translateY(-1px);
	transition: var(--transition);
}

.intro__cta-icon {
	display: inline-flex;
	font-size: 1.05rem;
	line-height: 1;
}

/* responsive intro */

@media (max-width: 575.98px) {
	.intro {
		padding: 2rem 0;
	}

	.intro__row {
		gap: 1.75rem;
	}

	.intro__title {
		font-size: 1.6rem;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.intro {
		padding: 3.5rem 0;
	}

	.intro__row {
		gap: 2rem;
	}

	.intro__media {
		max-width: 520px;
		width: 100%;
	}

	.intro__title {
		font-size: 1.75rem;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.intro {
		padding: 4rem 0;
	}

	.intro__title {
		font-size: 1.85rem;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.intro {
		padding: 4.25rem 0;
	}

	.intro__title {
		font-size: 1.95rem;
	}
}

@media (min-width: 1400px) {
	.intro {
		padding: 8rem 0;
	}

	.intro__title {
		font-size: 2.05rem;
	}
}



/* ============================
   INFO BANNER
============================ */

.info-banner {
	background-color: #F7F7F7;
	position: relative;
}

.info-banner__background {
	position: relative;
	overflow: hidden;
}

.info-banner__image {
	display: block;
	height: 360px;
	object-fit: cover;
	width: 100%;
}

.info-banner__overlay {
	align-items: center;
	background: linear-gradient(155deg, rgba(83, 149, 195, 0.60) 0%, rgba(192, 167, 152, 0.25) 25%, rgba(192, 167, 152, 0.65) 70%, rgba(83, 149, 195, 0.25) 90%);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 2.5rem 1rem;
	position: absolute;
}

/* CONTENT CARD */

.info-banner__content {
	background-color: rgba(255, 255, 255, 0.92);
	border-radius: 1.5rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 2.25rem 2.5rem 2.25rem 2.5rem;
	text-align: center;
}

.info-banner__title {
	color: #000000;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 0.5rem 0;
}

.info-banner__text {
	color: var(--color-black);
	font-size: 1.25rem;
	line-height: 1.5;
	margin: 0 0 0.75rem 0;
	letter-spacing: 0;
}

.info-banner__link {
	align-items: center;
	color: #5395C3;
	display: inline-flex;
	font-size: 0.98rem;
	font-weight: 600;
	gap: 0.4rem;
	letter-spacing: -0.01em;
	margin-bottom: 0.75rem;
	text-decoration: none;
	text-transform: none;
	transition: var(--transition);
}

.info-banner__link-icon {
	font-size: 0.95rem;
}

.info-banner__link:hover {
	color: #C0A798;
	transform: translateY(-1px);
}

.info-banner__subtitle {
	color: #222222;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 0.75rem 0;
	letter-spacing: 0;
}

/* BUTTONS */

.info-banner__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.info-banner__button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 600;
	gap: 0.4rem;
	justify-content: center;
	line-height: 1;
	padding: 0.75rem 1.6rem;
	text-decoration: none;
	transition: var(--transition);
}

.info-banner__button--primary {
	background-color: #5395C3;
	color: #FFFFFF;
}

.info-banner__button--primary:hover {
	background-color: #C0A798;
	color: #222222;
	transform: translateY(-1px);
}

.info-banner__button--secondary {
	background-color: #FFFFFF;
	border: 1.5px solid #5395C3;
	color: #5395C3;
}

.info-banner__button--secondary:hover {
	background-color: #5395C3;
	color: #FFFFFF;
	transform: translateY(-1px);
}

/* RESPONSIVE INFO BANNER */

@media (max-width: 575.98px) {
	.info-banner__image {
		height: 320px;
	}

	.info-banner__overlay {
		padding: 2rem 1rem;
	}

	.info-banner__content {
		border-radius: 1.25rem;
		padding: 1.75rem 1.5rem 1.85rem;
	}

	.info-banner__title {
		font-size: 1.6rem;
	}

	.info-banner__text {
		font-size: 1rem;
	}
}

@media (min-width: 992px) and (max-width: 1399.98px) {
	.info-banner__image {
		height: 400px;
	}
}

@media (min-width: 1400px) {
	.info-banner__image {
		height: 560px;
	}

	.info-banner__title {
		font-size: 2rem;
	}
}



/* ============================
   SPECIALITIES
============================ */

.specialities {
	background-color: rgba(192, 167, 152, 0.06);
	padding: 6rem 0;
	padding-bottom: 5rem;
}

.specialities__header {
	width: 100%;
}

.specialities__title {
	color: #000000;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 .75rem;
}

.specialities__intro {
	color: #222222;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
}

/* ROW */
.specialities__row {
	margin-top: 4rem;
	row-gap: 1.5rem;
}

/* ITEM */
.specialities__item {
	background-color: #FFFFFF;
	border-radius: 1.5rem;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.9rem 2.2rem 1.6rem;
	transition: all 0.2s ease;
}

.specialities__item:hover {
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

/* TITLES & TEXTS */
.specialities__item-title {
	color: #000000;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.025rem;
	margin: 0 0 0.8rem 0;
}

.specialities__item-text {
	color: #222222;
	font-size: 1.075rem;
	line-height: 1.5;
	flex-grow: 1;
	margin: 0 0 1.5rem 0;
}

/* LINK */
.specialities__item-link {
	align-items: center;
	color: #C0A798;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.specialities__item:hover .specialities__item-link,
.specialities__item-link:hover {
	color: #5395C3;
}

/* RESPONSIVE */
@media (max-width: 575.98px) {
	.specialities {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.specialities__item {
		padding: 1.7rem 1.5rem;
	}

	.specialities__title {
		font-size: 1.7rem;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.specialities__row {
		row-gap: 1.25rem;
	}
}



/* ============================
   TEAM
============================ */

.team {
	background-color: var(--color-white);
	padding: 6rem 0 5rem;
}

.team--header {
	margin: 0;
	text-align: left;
	width: 100%;
}

.team--title {
	color: #222222;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.3;
	margin: 0 0 .75rem;
}

.team--intro {
	color: #222222;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
}

/* SLIDER */

.splide__list {
	padding: .25rem 0;
}

.team--slider.splide {
	margin-top: 4rem;
	position: relative;
	visibility: visible;
}

.team--track {
	padding: .25rem 0 .75rem;
}

.team--list {
	align-items: stretch;
}

.team--slide {
	display: flex;
	height: auto;
}

.team--item {
	align-items: center;
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	border: 1.5px solid #EEE;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	height: 100%;
	padding: 1.25rem;
	text-align: center;
	transition: box-shadow .3s ease, transform .3s ease;
	width: 100%;
}

.team--image {
	aspect-ratio: 1 / 1.4;
	border-radius: var(--radius-md);
	overflow: hidden;
	width: 100%;
}

.team--image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform .4s ease;
	width: 100%;
}

.team--name {
	color: #222222;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.4;
	margin: .75rem 0 0;
}

.team--role {
	color: var(--color-darkgray);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0 0 .25rem;
}

/* HOVER EFFECTS */

.team--item:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.team--item:hover .team--image img {
	transform: scale(1.05);
}

/* ARROWS */

.team--arrows {
	display: flex;
	gap: .65rem;
	justify-content: flex-end;
	margin-bottom: 1.25rem;
	position: static;
}

.team--arrow.splide__arrow {
	align-items: center;
	background-color: var(--color-white);
	border: 1.5px solid var(--color-blue);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
	color: var(--color-blue);
	display: inline-flex;
	font-size: 1rem;
	height: 2.75rem;
	justify-content: center;
	opacity: 1;
	position: static;
	transform: translateY(0);
	transition:
		background-color .25s ease,
		border-color .25s ease,
		box-shadow .25s ease,
		color .25s ease,
		opacity .25s ease,
		transform .25s ease;
	width: 2.75rem;
}

.team--arrow.splide__arrow--prev,
.team--arrow.splide__arrow--next {
	left: auto;
	right: auto;
	top: auto;
}

.team--arrow.splide__arrow:hover {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	box-shadow: 0 8px 22px rgba(83, 149, 195, .22);
	color: var(--color-white);
	transform: translateY(-2px);
}

.team--arrow.splide__arrow:focus-visible {
	outline: 3px solid rgba(83, 149, 195, .25);
	outline-offset: 3px;
}

.team--arrow.splide__arrow:disabled {
	box-shadow: none;
	cursor: default;
	opacity: .3;
	transform: translateY(0);
}

.team--arrow i {
	pointer-events: none;
}

/* CTA */

.team--cta {
	margin-top: 3rem;
}

.team--cta .button.button--secondary {
	background-color: transparent;
	border: 2px solid var(--color-blue);
	color: var(--color-black);
}

.team--cta .button.button--secondary:hover {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-black);
	transform: translateY(-1px);
}

/* LARGE DESKTOP */

@media (min-width: 1400px) {

	.team--arrows {
		display: none;
	}

	.team--slider .splide__track {
		overflow: hidden;
	}

	.team--slider .splide__list {
		transform: translateX(0) !important;
	}
}

/* RESPONSIVE */

@media (max-width: 575.98px) {

	.team {
		padding: 3rem 0;
	}

	.team--title {
		font-size: 1.6rem;
	}

	.team--intro {
		font-size: 1.05rem;
	}

	.team--slider.splide {
		margin-top: 2.5rem;
	}

	.team--item {
		padding: 1rem;
	}

	.team--arrows {
		margin-bottom: 1rem;
	}

	.team--arrow.splide__arrow {
		height: 2.5rem;
		width: 2.5rem;
	}

	.team--cta {
		margin-top: 2rem;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {

	.team {
		padding: 4rem 0;
	}

	.team--slider.splide {
		margin-top: 3rem;
	}
}

@media (min-width: 992px) and (max-width: 1399.98px) {

	.team {
		padding: 5rem 0 4.5rem;
	}

	.team--slider.splide {
		margin-top: 3.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.team--item,
	.team--image img,
	.team--arrow.splide__arrow {
		transition: none;
	}
}



/* ============================
   FAQ
============================ */

.faq {
	background-color: var(--color-lightestgray);
	padding: 4rem 0;
}

.faq__inner {
	width: 100%;
	/*display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;*/
}

.faq__content {
	flex: 1 1 100%;
	max-width: 32rem;
}

.faq__title {
	color: var(--color-primary);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.3;
	margin: 0 0 .75rem;
}

.faq__intro {
	color: var(--text-color);
	font-size: 1.15rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.faq__list {
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.faq__list-item {
	margin: 0 0 .35rem;
	position: relative;
}

.faq__list-item::before {
	background-color: var(--color-secondary);
	border-radius: 999px;
	content: '';
	height: .35rem;
	left: -.9rem;
	position: absolute;
	top: .6rem;
	width: .35rem;
}

.faq__note {
	color: var(--color-darkgray);
	font-size: .9rem;
	line-height: 1.5;
	margin: 0;
}

.faq__carousel-wrapper {
	flex: 1 1 0;
	min-width: 0;
}

.faq__carousel {
	height: 100%;
}

.faq__slide {
	height: 100%;
}

.faq__card-link {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
}

.faq__card {
	background-color: var(--color-black);
	border-radius: 1.5rem;
	box-shadow: none;
	height: 450px;
	overflow: hidden;
	position: relative;
}

.faq__image {
	height: 450px;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.faq__image img {
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
	transition: var(--transition);
	width: 100%;
}

.faq__image::after {
	background: linear-gradient(to top, rgba(0, 0, 0, .65) 0, rgba(0, 0, 0, 0) 55%);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: var(--transition);
	width: 100%;
}

.faq__label {
	bottom: 1.75rem;
	left: 50%;
	padding: 0 1.5rem;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: 2;
}

.faq__category {
	background-color: rgba(255, 255, 255, .08);
	border-radius: 999px;
	color: var(--color-white);
	display: inline-flex;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.2;
	padding: .6rem 1.4rem;
}

/* HOVER EFFECTS */

.faq__card:hover .faq__image img {
	transform: translate(-50%, -50%) scale(1.05);
}

.faq__card:hover .faq__image::after {
	background: linear-gradient(to top, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, 0) 55%);
}

/* SPLIDE OVERRIDES IN FAQ CONTEXT */

.faq .splide__track {
	padding: .25rem 0 0;
}

.faq .splide__list {
	align-items: stretch;
}

.faq .splide__arrow {
	background-color: var(--color-white);
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	color: var(--color-primary);
	height: 2.5rem;
	opacity: .95;
	width: 2.5rem;
}

.faq .splide__arrow:disabled {
	opacity: .25;
}

/* RESPONSIVE FAQ */

@media (max-width: 575.98px) {
	.faq {
		padding: 3.25rem 0;
	}

	.faq__inner {
		flex-direction: column;
	}

	.faq__content {
		max-width: 100%;
	}

	.faq__card,
	.faq__image {
		height: 260px;
	}

	.faq__label {
		bottom: 1rem;
		padding: 0 1rem;
	}

	.faq__category {
		font-size: .9rem;
		padding: .5rem 1rem;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.faq {
		padding: 3.25rem 0;
	}

	.faq__inner {
		flex-direction: column;
	}

	.faq__content {
		max-width: 100%;
	}

	.faq__card,
	.faq__image {
		height: 300px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.faq {
		padding: 3.25rem 0;
	}

	.faq__inner {
		flex-direction: column;
	}

	.faq__content {
		max-width: 100%;
	}

	.faq__card,
	.faq__image {
		height: 340px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.faq {
		padding: 3.5rem 0;
	}

	.faq__content {
		flex: 0 0 40%;
	}

	.faq__carousel-wrapper {
		flex: 0 0 60%;
	}

	.faq__card,
	.faq__image {
		height: 360px;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.faq {
		padding: 3.75rem 0;
	}

	.faq__content {
		flex: 0 0 32%;
	}

	.faq__carousel-wrapper {
		flex: 0 0 68%;
	}
}

@media (min-width: 1400px) {
	.faq {
		padding: 6rem 0;
	}

	.faq__content {
		flex: 0 0 30%;
	}

	.faq__carousel-wrapper {
		flex: 0 0 70%;
	}
}


/* ============================
   FAQ PARAGRAPH
============================ */

.faq-paragraph {
	background-color: #FFFFFF;
	padding: 4rem 0 3rem;
}

.faq-paragraph__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-paragraph__content h2 {
	color: #010101;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.25;
	margin: 0;
}

.faq-paragraph__content p {
	color: #010101;
	font-size: 1.15rem;
	line-height: 1.65;
	margin: 0;
}

.faq-paragraph__content p strong {
	font-weight: 700;
}

.faq-paragraph__menu {
	background-color: rgba(83, 149, 195, 0.06);
	border: 1px solid rgba(83, 149, 195, 0.12);
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.75rem;
}

.faq-paragraph__menu h2 {
	color: #010101;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.25;
	margin: 0;
	padding: 0 .25rem;
}

.faq-paragraph__menu ul {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-paragraph__menu li {
	margin: 0;
	padding: 0;
}

.faq-paragraph__menu a {
	align-items: center;
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 999px;
	color: #010101;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	justify-content: space-between;
	line-height: 1.35;
	padding: 0.75rem 1rem;
	text-decoration: none;
	transition: var(--transition);
}

.faq-paragraph__menu a.active,
.faq-paragraph__menu a:hover {
	background-color: #5395C3;
	border-color: #5395C3;
	color: #FFFFFF;
	transform: translateY(-1px);
}

@media (min-width: 1200px) {
	.faq-paragraph {
		padding: 4rem 0;
	}

	.faq-paragraph__menu {
		position: sticky;
		top: 12rem;
	}
}

@media (max-width: 991.98px) {
	.faq-paragraph {
		padding: 3.25rem 0 2.5rem;
	}

	.faq-paragraph__menu {
		border-radius: 1.25rem;
		padding: 1.15rem;
	}

	.faq-paragraph__menu ul {
		display: grid;
		gap: 0.5rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.faq-paragraph {
		padding: 3rem 0 2rem;
	}

	.faq-paragraph__content h2 {
		font-size: 1.55rem;
	}

	.faq-paragraph__content p {
		font-size: 1.05rem;
	}

	.faq-paragraph__menu ul {
		grid-template-columns: 1fr;
	}
}



/* ============================
   PRACTICE GALLERY
============================ */

.practice-gallery {
	background-color: var(--color-white);
	padding: 7rem 0 0;
}

.practice-gallery__header {
	margin: 0 auto 2.75rem;
	max-width: 50rem;
	text-align: center;
}

.practice-gallery__title {
	color: #222222;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.25;
	margin: 0 0 .75rem;
}

.practice-gallery__intro {
	color: #222222;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
}

.practice-gallery__grid>[class*="col-"] {
	display: flex;
}

.practice-gallery__item {
	border-radius: .375rem;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.practice-gallery__item:focus-visible {
	outline: 3px solid rgba(83, 149, 195, .3);
	outline-offset: 3px;
}

.practice-gallery__media {
	aspect-ratio: 4 / 3;
	border-radius: .375rem;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.practice-gallery__image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform .4s ease;
	width: 100%;
}

.practice-gallery__overlay {
	background-color: rgba(83, 149, 195, .42);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .35s ease;
}

.practice-gallery__zoom {
	align-items: center;
	background-color: rgba(255, 255, 255, .94);
	border-radius: .375rem;
	color: var(--color-blue);
	display: flex;
	font-size: 1.15rem;
	height: 3rem;
	justify-content: center;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -42%) scale(.94);
	transition:
		opacity .3s ease,
		transform .35s ease;
	width: 3rem;
}

/* HOVER EFFECTS */

@media (hover: hover) {

	.practice-gallery__item:hover .practice-gallery__image {
		transform: scale(1.05);
	}

	.practice-gallery__item:hover .practice-gallery__overlay {
		opacity: 1;
	}

	.practice-gallery__item:hover .practice-gallery__zoom {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.practice-gallery__item:focus-visible .practice-gallery__overlay {
	opacity: 1;
}

.practice-gallery__item:focus-visible .practice-gallery__zoom {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* LIGHTGALLERY THUMBNAILS */

.lg-outer .lg-thumb-outer {
	text-align: center;
}

.lg-outer .lg-thumb {
	margin-left: auto;
	margin-right: auto;
}

.lg-outer .lg-thumb-item {
	border: 1.5px solid var(--color-blue);
	border-radius: .375rem;
	opacity: .65;
	overflow: hidden;
	transition:
		opacity .2s ease,
		transform .2s ease;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: var(--color-blue);
	opacity: 1;
	transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 575.98px) {

	.practice-gallery {
		padding: 4rem 0 0;
	}

	.practice-gallery__header {
		margin-bottom: 2rem;
	}

	.practice-gallery__title {
		font-size: 1.6rem;
	}

	.practice-gallery__intro {
		font-size: 1.05rem;
	}

	.practice-gallery__media {
		aspect-ratio: 16 / 11;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {

	.practice-gallery {
		padding: 5rem 0 0;
	}

	.practice-gallery__header {
		margin-bottom: 2.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.practice-gallery__image,
	.practice-gallery__overlay,
	.practice-gallery__zoom,
	.lg-outer .lg-thumb-item {
		transition: none;
	}
}



/* LIGHTGALLERY THUMBNAILS */

.lg-outer .lg-thumb-outer {
	text-align: center;
}

.lg-outer .lg-thumb {
	margin-left: auto;
	margin-right: auto;
}

.lg-outer .lg-thumb .lg-thumb-item {
	border: 1.5px solid var(--color-blue) !important;
	border-radius: .375rem !important;
	box-sizing: border-box;
	opacity: .65;
	overflow: hidden;
	transform: translateY(0);
	transition:
		border-color .25s ease,
		box-shadow .25s ease,
		opacity .25s ease,
		transform .25s ease !important;
}

.lg-outer .lg-thumb .lg-thumb-item img {
	border-radius: calc(.375rem - 1.5px);
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lg-outer .lg-thumb .lg-thumb-item.active {
	border-color: var(--color-blue) !important;
	box-shadow: 0 0 0 2px rgba(83, 149, 195, .18);
	opacity: 1;
}

.lg-outer .lg-thumb .lg-thumb-item:hover {
	border-color: var(--color-blue) !important;
	box-shadow: 0 6px 16px rgba(83, 149, 195, .22);
	opacity: 1;
	transform: translateY(-3px);
}



/* ============================
   PARTNERS
============================ */

.partners {
	background-color: var(--color-white);
	padding: 5rem 0 4rem 0;
}

.partners__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* HEADER */

.partners__header {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: center;
}

.partners__title {
	color: #222222;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.2;
	margin: 0;
}

.partners__intro {
	color: #222222;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
	max-width: 50rem;
}

/* MARQUEE */

.partners__marquee {
	mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
	overflow: hidden;
	position: relative;
}

.partners__track {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 3rem;
	/* meer ruimte */
	padding: 1.25rem 0;
	will-change: transform;
	animation: partners-scroll 45s linear infinite;
}

.partners__marquee:hover .partners__track {
	animation-play-state: paused;
}

/* ITEM */

.partners__item {
	flex: 0 0 auto;
}

.partners__link {
	align-items: center;
	background-color: transparent;
	border-radius: 1rem;
	display: flex;
	height: 6rem;
	/* groter blok */
	justify-content: center;
	padding: 0;
	transition: var(--transition);
}

.partners__link img {
	display: block;
	height: 100%;
	max-height: 4.75rem;
	/* groter logo */
	max-width: 10rem;
	/* grotere breedte */
	object-fit: contain;
	opacity: 1;
	/* kleur â†’ geen grayscale */
	transition: var(--transition);
	width: auto;
}

.partners__link:hover {
	transform: translateY(-3px);
}

/* SCROLL ANIMATION */

@keyframes partners-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
	.partners {
		padding: 3.25rem 0;
	}

	.partners__track {
		gap: 2rem;
	}

	.partners__link {
		height: 5rem;
	}

	.partners__link img {
		max-height: 4rem;
		max-width: 8rem;
	}
}

@media (min-width: 1200px) {
	.partners__track {
		gap: 5rem;
	}
}



/* ============================
   CTA APPOINTMENT
============================ */

.cta {
	background-color: var(--color-blue);
	color: var(--color-white);
	padding: 4rem 0;
	text-align: center;
}

/* TEXT */
.cta__title {
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta__text {
	color: var(--color-white);
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.cta__text--small {
	font-size: 1rem;
	margin-bottom: 0;
}

/* CIRCLE BUTTON GROUP */

.cta__circle-group {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* CIRCLES */

.cta__circle {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.85);
	border: 2px solid #FFF;
	border-radius: 1.5rem;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.125);
	color: var(--color-black);
	cursor: pointer;
	display: flex;
	font-size: 2.75rem;
	height: 5.5rem;
	justify-content: center;
	transition: var(--transition);
	width: 5.5rem;
}

.cta__circle:hover {
	background-color: var(--color-white);
	transform: translateY(-3px);
}

/* TOOLTIP */

.cta__circle[data-tooltip] {
	position: relative;
}

.cta__circle[data-tooltip]::after {
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: .5rem;
	color: #fff;
	content: attr(data-tooltip);
	font-family: var(--font-family-paragraph);
	font-size: .95rem;
	letter-spacing: 0;
	opacity: 0;
	padding: .4rem .6rem .5rem .6rem;
	pointer-events: none;
	position: absolute;
	top: calc(100% + .6rem);
	transition: var(--transition);
	white-space: nowrap;
	z-index: 2;
}

.cta__circle[data-tooltip]:hover::after {
	opacity: 1;
	transform: translateY(2px);
}

.cta__circle i.fa-whatsapp {
	font-size: 3rem;
}

.cta__circle i.fa-calendar-circle-plus {
	font-size: 2.5rem;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
	.cta__circle-group {
		gap: .85rem;
	}

	.cta__circle {
		border-radius: 1.25rem;
		font-size: 2.2rem;
		height: 4.25rem;
		width: 4.25rem;
	}

	.cta__circle i.fa-whatsapp {
		font-size: 2.45rem;
	}

	.cta__circle i.fa-calendar-circle-plus {
		font-size: 2.05rem;
	}
}

@media (max-width: 575.98px) {
	.cta__circle-group {
		gap: .5rem;
		justify-content: center;
	}

	.cta__circle {
		border-radius: 1rem;
		font-size: 1.9rem;
		height: 3.75rem;
		width: 3.75rem;
	}

	.cta__circle i.fa-whatsapp {
		font-size: 2.15rem;
	}

	.cta__circle i.fa-calendar-circle-plus {
		font-size: 1.8rem;
	}

	.cta__circle[data-tooltip]::after {
		display: none;
	}
}



/* ============================
   ROUTE & BEREIKBAARHEID
============================ */

.route {
	background-color: var(--color-softsand);
	color: var(--color-black);
	padding: 4rem 0 3.5rem 0;
	text-align: center;
}

.route__title {
	color: var(--color-black);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.route__text {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: .75rem;
}

.route__text--small {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

/* BUTTON */
.route__btn {
	align-items: center;
	background-color: #F4E6DD;
	border: 2px solid #B19889;
	border-radius: var(--radius-pill);
	color: var(--color-black);
	display: inline-flex;
	font-size: 1.15rem;
	font-weight: 600;
	gap: .55rem;
	letter-spacing: -.0125rem;
	margin-top: 1.25rem;
	padding: .6rem 1.4rem;
	text-decoration: none;
	transition: var(--transition);
}

.route__btn:hover {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
	transform: translateY(-3px);
}



/* ============================
REVIEWS
============================ */

.reviews {
	background-color: var(--color-white);
	color: var(--color-black);
	padding: 5rem 0 4.5rem 0;
}

.reviews__header {
	margin-bottom: 3rem;
	text-align: center;
}

.reviews__title {
	color: var(--color-black);
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	margin: 0 0 .5rem 0;
}

.reviews__intro {
	color: #111111;
	font-size: 1.2rem;
	line-height: 1.6;
	margin: .75rem auto 0 auto;
	max-width: 50rem;
}

/* GRID MET 3 KAARTEN */

.reviews__grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* REVIEW CARD */

.review-card {
	background-color: var(--color-white);
	border-radius: 1.5rem;
	box-shadow: 0 0 15px rgba(0, 0, 0, .06);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem 2rem;
}

/* META-RIJ: STERREN + BRON */

.review-card__meta-row {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 0 1rem 0;
}

.review-card__stars {
	align-items: center;
	display: inline-flex;
	gap: 0.25rem;
}

.review-card__stars i {
	color: #F9B805;
	font-size: 0.9rem;
}

.review-card__meta {
	color: var(--color-darkgray);
	display: flex;
	flex-direction: column;
	font-size: 0.85rem;
	line-height: 1.4;
	text-align: right;
}

.review-card__meta-label {
	font-weight: 600;
}

.review-card__meta-date {
	opacity: 0.9;
}

/* NAAM + TEKST */

.review-card__name {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 .35rem 0;
}

.review-card__text {
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
}

/* WRAPPER VOOR GELIJKE HOOGTE IN GRID */

.review-wrapper {
	display: flex;
	height: 100%;
}

.review-wrapper .review-card {
	width: 100%;
}

/* BRON-REVIEWS (HIDDEN) */

.reviews__source {
	display: none;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
	.reviews {
		padding: 3.5rem 0 3rem 0;
	}

	.reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-card {
		border-radius: 1.25rem;
		padding: 1.75rem 1.5rem;
	}


}

@media (max-width: 575.98px) {
	.reviews {
		padding: 3rem 0 2.5rem 0;
	}

	.reviews__grid {
		grid-template-columns: 1fr;
	}

	.review-card {
		padding: 1.5rem 1.25rem;
	}

	.reviews__title {
		font-size: 1.6rem;
	}


}



/* ============================
   PAGE HERO
============================ */

.page-hero {
	background-color: var(--color-white);
	color: #010101;
	position: relative;
}

.page-hero__media {
	position: relative;
}

.page-hero__image {
	display: block;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	width: 100%;
}

.page-hero__overlay {
	background: linear-gradient(155deg,
			rgba(83, 149, 195, 0.60) 0%,
			rgba(192, 167, 152, 0.45) 40%,
			rgba(192, 167, 152, 0.65) 75%,
			rgba(83, 149, 195, 0.25) 100%);
	position: absolute;
	inset: 0;
}

.page-hero .container {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
}

.page-hero__content {
	color: #FFFFFF;
	padding: 4rem 0 3rem;
	position: relative;
	z-index: 2;
}

.page-hero__content h1 {
	color: #010101;
	font-size: 2.15rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.2;
	margin: 0;
}

.page-hero__content p {
	color: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 1rem 0 0;
}

/* MOBILE FIX */

@media (max-width: 575.98px) {
	.page-hero__image {
		max-height: 420px;
	}

	.page-hero__content {
		padding: 0;
	}

	.page-hero__content h1 {
		font-size: 1.4rem;
	}

	.page-hero__content p {
		display: none;
	}
}

/* TABLET */

@media (min-width: 576px) and (max-width: 991.98px) {
	.page-hero__content {
		padding: 3.5rem 0 2.75rem;
	}

	.page-hero__content h1 {
		font-size: 1.95rem;
	}
}

/* DESKTOP LARGE */

@media (min-width: 1200px) {
	.page-hero__content {
		padding: 4.5rem 0 3.25rem;
	}

	.page-hero__content h1 {
		font-size: 2.5rem;
	}
}


/* ============================
   PAGE BREADCRUMB
============================ */

.page-breadcrumb {
	background-color: #FFFFFF;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 1rem 0;
}

.page-breadcrumb__list {
	align-items: center;
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
}

.page-breadcrumb .breadcrumb-item {
	color: #6C757D;
	font-size: 0.95rem;
	line-height: 1.5;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	color: #A7A7A7;
	content: "/";
	float: none;
	padding-right: 0.35rem;
}

.page-breadcrumb .breadcrumb-item a {
	color: #5395C3;
	text-decoration: none;
	transition: var(--transition);
}

.page-breadcrumb .breadcrumb-item a:hover {
	color: #C0A798;
}

.page-breadcrumb .breadcrumb-item.active {
	color: #010101;
	font-weight: 600;
}


/* ============================
   PAGE INTRODUCTION
============================ */

.page-intro {
	background-color: #FFFFFF;
	padding: 4rem 0 1.5rem;
}

.page-intro--contact {
	background-color: #FFFFFF;
	padding: 5.5rem 0;
}

.page-intro__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page-intro__content--wide {
	max-width: 100%;
}

.page-intro__content h2 {
	color: #010101;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.25;
	margin: 0;
}

.page-intro__content p {
	color: #010101;
	font-size: 1.15rem;
	line-height: 1.65;
	margin: 0;
}

.page-intro__content p strong {
	font-weight: 700;
}

@media (max-width: 575.98px) {
	.page-intro {
		padding: 3rem 0 2rem;
	}

	.page-intro__content h2 {
		font-size: 1.55rem;
	}

	.page-intro__content p {
		font-size: 1.05rem;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.page-intro {
		padding: 3.25rem 0 2.25rem;
	}

	.page-intro__content h2 {
		font-size: 1.7rem;
	}
}

@media (min-width: 1400px) {
	.page-intro {
		padding: 5.5rem 0 2.75rem;
	}

	.page-intro__content h2 {
		font-size: 2rem;
	}
}


/* ============================
   PAGE SECTIONS
============================ */

.page-section {
	background-color: #FFFFFF;
	padding: 2.5rem 0;
}

.page-section--content+.page-section--content {
	padding-top: 0.5rem;
}

.page-section--video {
	padding-top: 1rem;
}

@media (max-width: 575.98px) {
	.page-section {
		padding: 1.75rem 0;
	}

	.page-section--content+.page-section--content {
		padding-top: 0.25rem;
	}

	.page-section--video {
		padding-top: 0.5rem;
	}
}

@media (min-width: 1200px) {
	.page-section {
		padding: 4rem 0;
	}
}


/* ============================
   CONTENT BLOCKS
============================ */

.content-block {
	background-color: #FFFFFF;
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}

.content-block--text {
	padding: 0;
}

.content-block--video {
	padding: 0;
}

.content-block--media {
	padding: 0;
}

.content-block h2 {
	color: #010101;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.3;
	margin: 0;
}

.content-block h3 {
	color: #010101;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.content-block p {
	color: #222222;
	font-size: 1.175rem;
	line-height: 1.6;
	margin: 0;
}

.content-block__figure {
	border-radius: 1.5rem;
	overflow: hidden;
}

.content-block__figure img {
	display: block;
	height: 100%;
	max-height: 500px;
	object-fit: cover;
	width: 100%;
}

@media (max-width: 575.98px) {
	.content-block h2 {
		font-size: 1.45rem;
	}

	.content-block h3 {
		font-size: 1.2rem;
	}

	.content-block p {
		font-size: 1.02rem;
		line-height: 1.65;
	}
}


/* ============================
   VIDEO EMBED
============================ */

.video-embed {
	border-radius: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	margin-top: 0.5rem;
	overflow: hidden;
}

.video-embed iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}


/* ============================
   CONTENT LIST
============================ */

.content-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0;
	padding: 0 0 0 1.25rem;
}

.content-list li {
	color: #222222;
	font-size: 1.1rem;
	line-height: 1.4;
	padding-left: 0.15rem;
}

.content-list li::marker {
	color: #5395C3;
}


/* ============================
   COMPLAINTS OVERVIEW
============================ */

.page-section--complaints-overview {
	padding-top: 2rem;
	padding-bottom: 3.5rem;
}

.complaint-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 1.5rem;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem 1.5rem;
	position: relative;
	transition: all 0.2s ease;
}

.complaint-card:hover {
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.complaint-card__icon {
	align-items: center;
	background-color: rgba(83, 149, 195, 0.10);
	border-radius: 999px;
	color: #5395C3;
	display: inline-flex;
	font-size: 1.25rem;
	height: 3rem;
	justify-content: center;
	margin-bottom: 1rem;
	width: 3rem;
}

.complaint-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.85rem;
}

.complaint-card__content h3 {
	color: #010101;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.complaint-card__content p {
	color: #222222;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
}

.complaint-card__anchor {
	color: inherit;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.complaint-card__cta {
	align-items: center;
	color: #C0A798;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0;
	margin-top: auto;
	padding-top: 0.35rem;
	text-transform: uppercase;
	transition: var(--transition);
}

.complaint-card:hover .complaint-card__cta {
	color: #5395C3;
}

@media (max-width: 575.98px) {
	.page-section--complaints-overview {
		padding-top: 0.75rem;
		padding-bottom: 2rem;
	}

	.complaint-card {
		padding: 1.5rem 1.25rem;
	}

	.complaint-card__content h3 {
		font-size: 1.2rem;
	}
}


/* ============================
   COMPLAINT SUBLINKS
============================ */

.complaint-card__sublinks {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.25rem;
}

.complaint-card__sublink {
	align-items: center;
	background-color: rgba(192, 167, 152, 0.10);
	border-radius: 999px;
	color: #010101;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	padding: 0.65rem 0.95rem;
	text-decoration: none;
	transition: var(--transition);
}

.complaint-card__sublink:hover {
	background-color: #C0A798;
	color: #010101;
	transform: translateY(-1px);
}


/* ============================
   TEAM PAGE
============================ */

.team-page {
	background-color: #FFFFFF;
	padding: 1rem 0 4rem;
}

.team-page__row {
	row-gap: 1.75rem;
}

.team-page__item {
	height: 100%;
}

.team-card {
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 1.5rem;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: var(--transition);
}

.team-card:hover {
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.team-card__media {
	padding: 1.25rem 1.25rem 0;
}

.team-card__image {
	aspect-ratio: 1 / 1.2;
	border-radius: 1.25rem;
	overflow: hidden;
	width: 100%;
}

.team-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: var(--transition);
	width: 100%;
}

.team-card:hover .team-card__image img {
	transform: scale(1.04);
}

.team-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem 1.75rem 1.85rem 1.75rem;
}

.team-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.team-card__name {
	color: #010101;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.team-card__role {
	color: #6C757D;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}

.team-card__availability {
	align-items: center;
	color: #5395C3;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 600;
	gap: 0.5rem;
	line-height: 1.4;
	margin: 0;
}

.team-card__text {
	color: #222222;
	font-size: 1.05rem;
	line-height: 1.55;
	margin: 0;
}

.team-card__link {
	align-items: center;
	color: #C0A798;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	gap: 0.4rem;
	line-height: 1.3;
	margin-top: auto;
	padding-top: 0.35rem;
	text-transform: uppercase;
	transition: var(--transition);
}

.team-card:hover .team-card__link {
	color: #5395C3;
}

@media (max-width: 575.98px) {
	.team-page {
		padding: 0.5rem 0 2.5rem;
	}

	.team-card__body {
		padding: 1.1rem 1.1rem 1.25rem;
	}

	.team-card__name {
		font-size: 1.2rem;
	}
}


/* ============================
   TEAM DETAIL
============================ */

.team-detail {
	background-color: #FFFFFF;
}

.team-detail__aside {
	height: 100%;
}

.team-detail__aside-inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.team-detail__main {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.team-detail__media {
	border-radius: 1.5rem;
	overflow: hidden;
}

.team-detail__media img {
	display: block;
	height: 100%;
	max-height: 640px;
	object-fit: cover;
	width: 100%;
}

.team-detail__panel {
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 1.5rem;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
}

.team-detail__panel-title {
	color: #010101;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.9rem 0;
}

.team-detail__meta {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.team-detail__meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.team-detail__meta-label {
	color: #6C757D;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	text-transform: uppercase;
}

.team-detail__meta-value {
	color: #010101;
	font-size: 1rem;
	line-height: 1.55;
	margin: 0;
}

.team-detail__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.team-detail__button {
	width: 100%;
}

.team-detail__button.button--secondary {
	background-color: transparent;
	border: 2px solid #C0A798;
	color: #010101;
}

.team-detail__button.button--secondary:hover {
	background-color: #C0A798;
	border-color: #C0A798;
	color: #010101;
	transform: translateY(-1px);
}

.team-detail__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.team-detail__content--education {
	gap: 1rem;
	padding-top: 0.5rem;
}

.team-detail__quote {
	background-color: rgba(83, 149, 195, 0.06);
	border-left: 4px solid #5395C3;
	border-radius: 1rem;
	margin: 0;
	padding: 1.25rem 1.25rem;
}

.team-detail__quote p {
	color: #222222;
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
}

.team-detail__register {
	background-color: rgba(192, 167, 152, 0.12);
	border-radius: 1rem;
	padding: 1rem 1.1rem;
}

.team-detail__register p {
	color: #222222;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.team-detail__education {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding-top: 1rem;
}

.team-detail__education-item {
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 1rem;
	padding: 1rem 1.1rem;
}

.team-detail__education-item h3 {
	color: #010101;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.35rem 0;
}

.team-detail__education-item p {
	color: #222222;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.team-detail__team {
	padding-top: 1rem;
}

.team-detail__team-header {
	max-width: 100%;
}

.team-detail__team-kicker {
	color: #5395C3;
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.team-detail__team-row {
	margin-top: 2.5rem;
}

@media (min-width: 992px) {
	.team-detail__aside-inner {
		position: sticky;
		top: 7.5rem;
	}
}

@media (max-width: 991.98px) {
	.team-detail__panel {
		padding: 1.25rem;
	}

	.team-detail__main {
		gap: 1.5rem;
	}

	.team-detail__media img {
		max-height: 560px;
	}
}

@media (max-width: 575.98px) {
	.team-detail__quote {
		padding: 1rem;
	}

	.team-detail__quote p {
		font-size: 1rem;
	}
}


/* ============================
   PAGE SPACER
============================ */

.page-spacer {
	background-color: #FFFFFF;
	height: 5rem;
}

.page-spacer2 {
	background-color: #FFFFFF;
	height: 10rem;
}

@media (max-width: 575.98px) {
	.page-spacer {
		height: 2rem;
	}

	.page-spacer2 {
		height: 4rem;
	}
}



/* ============================
   FOOTER
============================ */

.footer {
	background-color: #F8F9FA;
	color: #222222;
}

.footer__main {
	background-color: #F8F9FA;
	padding: 2.5rem 0 1.5rem;
}

.footer__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	color: #222222;
}

.footer__list {
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 0;
}

.footer__list li {
	margin-bottom: 0.35rem;
}

.footer__link {
	color: #222222;
	display: inline-flex;
	font-size: 1.15rem;
	gap: 0.5rem;
	line-height: 1.6;
	text-decoration: none;
	align-items: center;
	transition: var(--transition);
}

.footer__link:hover {
	color: var(--color-blue);
	transform: translateX(3px);
}

.footer__icon {
	font-size: 1.15rem;
	line-height: 1;
}

.footer__logos {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer__logo {
	height: 2.1rem;
	max-width: 100%;
	object-fit: contain;
}

.footer__text {
	color: #222222;
	font-size: 1.15rem;
	line-height: 1.75;
}

.footer__text strong {
	font-size: 1.15rem;
}

/* Bottom bar */

.footer__bottom {
	background-color: #F8F9FA;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding: 0.85rem 0;
}

.footer__bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer__bottom-left,
.footer__bottom-right a {
	color: #222222;
	font-size: .9rem;
	text-decoration: none;
	transition: var(--transition);
}

.footer__bottom-right {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.footer__bottom-right a,
.footer__bottom-left a {
	color: var(--color-black);
}

.footer__bottom-right a:hover,
.footer__bottom-left a:hover {
	color: var(--color-blue);
}

/* Responsive */

@media (max-width: 575.98px) {
	.footer__bottom-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}



/* ============================
	CONTACT FORM SECTION
============================ */

.contactform--section {
	background-color: #F5F5F7;
	padding: 5.5rem 0;
}

.contactform--wrapper {
	padding: 0 .5rem;
}

.contactform--details {
	background-color: #FFF;
	border-radius: 1.5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
	padding: 2rem;
}

.contactform--details h2 {
	color: #010101;
	font-family: var(--font-family-heading);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.contactform--details .contactform--intro {
	color: #010101;
	font-family: var(--font-family-paragraph);
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.contactform--links {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.contactform--links a {
	align-items: center;
	color: #010101;
	display: inline-flex;
	gap: .65rem;
	text-decoration: none;
	transition: var(--transition);
}

.contactform--links a:hover {
	color: var(--color-blue);
}

.contactform--links i {
	color: var(--color-blue);
	display: inline-flex;
	flex: 0 0 1.15rem;
	font-size: 1rem;
	justify-content: center;
}

.contactform--details hr {
	border: 0;
	border-top: 1px solid #E6E6E6;
	margin: 1.35rem 0;
	opacity: 1;
}

.contactform--block h3 {
	color: #010101;
	font-family: var(--font-family-heading);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.15;
	margin-bottom: .5rem;
}

.contactform--block p {
	color: #010101;
	font-family: var(--font-family-paragraph);
	font-size: 1rem;
	line-height: 1.65;
	margin-bottom: 0;
}

.contactform--block p a {
	color: var(--color-black);
	text-decoration: none;
	transition: var(--transition);
}

.contactform--block p a:hover {
	color: var(--color-sand);
	text-decoration: none;
}

.contactform--formouter {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 1) 100%);
	border-radius: 1.75rem;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
	height: 100%;
	padding: 1rem;
}

.contactform--forminner {
	background-color: #FFF;
	border-radius: 1.25rem;
	height: 100%;
	padding: .9rem 2rem 2rem 2rem;
}

.contactform--forminner hr {
	opacity: .1;
}

.contactform--formheader {
	margin-bottom: 1rem;
}

.contactform--formheader h2 {
	color: #010101;
	font-family: var(--font-family-heading);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.1;
	margin-bottom: .5rem;
}

.contactform--formheader p {
	color: #010101;
	font-family: var(--font-family-paragraph);
	font-size: 1.15rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.contactform--formcontent {
	width: 100%;
}

.contactform--form label {
	color: #010101;
	display: block;
	font-family: var(--font-family-heading);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1.15;
	margin-bottom: .65rem;
}

.contactform--form .form-control {
	background-color: #FFF;
	border: 1.5px solid #DCDCDC;
	border-radius: .65rem;
	color: #010101;
	font-family: var(--font-family-paragraph);
	font-size: 1rem;
	padding: .65rem .9rem;
	transition: var(--transition);
	width: 100%;
}

.contactform--form input.form-control,
.contactform--form select.form-control {
	height: 52px;
}

.contactform--form textarea.form-control {
	height: auto;
	min-height: 150px;
	padding-top: .8rem;
	resize: vertical;
}

.contactform--form .form-control::placeholder {
	color: #9A9A9A;
	opacity: 1;
}

.contactform--form .form-control:hover {
	border-color: #CFCFCF;
}

.contactform--form .form-control:focus {
	background-color: #FFF;
	border-color: var(--color-blue);
	box-shadow: 0 0 0 .2rem rgba(83, 149, 195, .16);
	outline: none;
}

.contactform--selectwrapper {
	position: relative;
	width: 100%;
}

.contactform--selectwrapper select.form-control {
	appearance: none;
	cursor: pointer;
	padding-right: 3rem;
}

.contactform--selectwrapper::after {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #010101;
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
}

.contactform--footer hr {
	border: 0;
	border-top: 1px solid #EBEBEB;
	margin: 1rem 0 1.15rem 0;
	opacity: 1;
}

.contactform--privacy {
	color: #666;
	font-family: var(--font-family-paragraph);
	font-size: .95rem;
	line-height: 1.55;
	margin-bottom: 0;
}

.contactform--submit {
	align-items: center;
	background-color: var(--color-blue);
	border: 1.5px solid var(--color-blue);
	border-radius: .65rem;
	color: #FFF;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-family-heading);
	font-size: 1.1rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: var(--letter-spacing-tight);
	line-height: 1;
	min-height: 54px;
	padding: .95rem 1.25rem;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

.contactform--submit:hover {
	background-color: var(--color-sand);
	border-color: var(--color-sand);
	color: #010101;
}

.contactform--submit i {
	transition: transform .3s ease;
}

.contactform--submit:hover i {
	transform: translateX(4px);
}

/* ============================
	CONTACT FORM CHECKBOX
============================ */

.contactform--appointment {
	padding-top: .25rem;
}

.contactform--appointment--wrap {
	align-items: center;
	cursor: pointer;
	display: inline-flex !important;
	gap: .8rem;
	margin: 0;
	position: relative;
	text-decoration: none;
}

.contactform--appointment--input {
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 1px;
}

.contactform--appointment--box {
	background-color: #FFF;
	border: 1.5px solid #DCDCDC;
	border-radius: .35rem;
	display: inline-block;
	flex: 0 0 22px;
	height: 22px;
	position: relative;
	transition: var(--transition);
	width: 22px;
}

.contactform--appointment--wrap:hover .contactform--appointment--box {
	border-color: #CFCFCF;
}

.contactform--appointment--input:focus+.contactform--appointment--box {
	box-shadow: 0 0 0 .2rem rgba(83, 149, 195, .15);
}

.contactform--appointment--input:checked+.contactform--appointment--box {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
}

.contactform--appointment--box::after {
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	content: "";
	height: 11px;
	left: 7px;
	opacity: 0;
	position: absolute;
	top: 3px;
	transform: rotate(45deg);
	transition: opacity .2s ease;
	width: 5px;
}

.contactform--appointment--input:checked+.contactform--appointment--box::after {
	opacity: 1;
}

.contactform--appointment--text {
	color: #010101;
	display: inline-block;
	font-family: var(--font-family-paragraph);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	margin: 0;
}

/* ============================
	CONTACT FORM RESPONSIVE
============================ */

@media (max-width: 991.98px) {
	.contactform--section {
		padding: 4rem 0;
	}

	.contactform--details,
	.contactform--forminner {
		padding: 1.5rem;
	}

	.contactform--details h2 {
		font-size: 1.65rem;
	}
}

@media (max-width: 575.98px) {
	.contactform--section {
		padding: .5rem 0 3.5rem 0;
	}

	.contactform--wrapper {
		padding: 0;
	}

	.contactform--details {
		border-radius: 1.25rem;
		padding: 1.25rem;
	}

	.contactform--formouter {
		border-radius: 1.35rem;
		padding: .6rem;
	}

	.contactform--forminner {
		border-radius: 1rem;
		padding: 1.25rem;
	}

	.contactform--details h2 {
		font-size: 1.55rem;
	}

	.contactform--form label {
		font-size: 1rem;
	}

	.contactform--submit {
		width: 100%;
	}
}



/* ============================
   STICKY APPOINTMENT
============================ */

.sticky--appointment {
	bottom: 1.5rem;
	position: fixed;
	right: 1.5rem;
	z-index: 999;
}

/* WRAPPER */

.sticky--appointment--inner {
	background-color: var(--color-white);
	border-radius: 1.5rem;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
	display: flex;
	flex-direction: column;
	padding: 0.5rem;
}

/* TOGGLE */

.sticky--appointment--toggle {
	align-items: center;
	background-color: var(--color-blue);
	border: none;
	border-radius: 1.25rem;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	font-size: 0.95rem;
	font-weight: 600;
	justify-content: center;
	line-height: 1.2;
	padding: 0.6rem 1.1rem;
	transition: var(--transition);
	width: 100%;
}

.sticky--appointment--toggle:hover {
	background-color: var(--color-sand);
	color: var(--color-black);
	transform: translateY(-1px);
}

/* ACTIONS WRAPPER */

.sticky--appointment--actions {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transition: max-height .35s ease, opacity .25s ease, padding-top .25s ease;
}

.sticky--appointment.is-open .sticky--appointment--actions {
	max-height: 7rem;
	opacity: 1;
	padding-top: 0.25rem;
	pointer-events: auto;
}

/* CIRCLE GROUP */

.sticky--appointment__circle-group {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.5rem;
}

/* CIRCLES */

.sticky--appointment__circle {
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 1.15rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
	color: var(--color-black);
	display: flex;
	font-size: 1.75rem;
	height: 3.55rem;
	justify-content: center;
	text-decoration: none;
	transition: var(--transition);
	width: 3.55rem;
}

.sticky--appointment__circle:hover {
	background-color: var(--color-sand);
	color: var(--color-white);
	transform: translateY(-2px);
}

/* ICON TWEAKS */

.sticky--appointment__circle i.fa-whatsapp {
	font-size: 2.05rem;
}

.sticky--appointment__circle i.fa-calendar-circle-plus {
	font-size: 1.8rem;
}

/* RESPONSIVE */

@media (max-width: 575.98px) {
	.sticky--appointment {
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
	}

	.sticky--appointment__circle-group {
		gap: 0.45rem;
		padding: 0.3rem;
	}

	.sticky--appointment__circle {
		height: 3.25rem;
		width: 3.25rem;
	}
}



/* ======= MOBILE HEADER ACTIONS ======= */

.site-header__mobile-actions {
	align-items: center;
	display: none;
	gap: .45rem;
	margin-left: auto;
}

.site-header__mobile-action {
	align-items: center;
	background-color: #F4F8FB;
	border: 1px solid rgba(83, 149, 195, .16);
	border-radius: 50%;
	color: var(--color-blue);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: .95rem;
	height: 2.65rem;
	justify-content: center;
	text-decoration: none;
	transition: var(--transition);
	width: 2.65rem;
}

.site-header__mobile-action:hover,
.site-header__mobile-action:focus-visible {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
}

.site-header__toggle {
	align-items: center;
	background-color: var(--color-blue);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	flex: 0 0 auto;
	height: 2.9rem;
	justify-content: center;
	padding: 0;
	transition: var(--transition);
	width: 2.9rem;
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
	background-color: var(--color-black);
}

.site-header__toggle-icon {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	width: 1.2rem;
}

.site-header__toggle-icon span {
	background-color: var(--color-white);
	border-radius: 999px;
	display: block;
	height: 2px;
	transition:
		opacity .2s ease,
		transform .2s ease,
		width .2s ease;
	width: 1.2rem;
}

.site-header__toggle-icon span:nth-child(2) {
	width: .85rem;
}

.site-header__toggle:hover .site-header__toggle-icon span:nth-child(2) {
	width: 1.2rem;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
	width: 1.2rem;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(2) {
	opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
	width: 1.2rem;
}



/* ======= MOBILE OFFCANVAS ======= */

.site-header__offcanvas {
	background-color: var(--color-white);
	display: flex;
	flex-direction: column;
	height: 100dvh;
	inset: 0;
	max-height: 100dvh;
	max-width: none;
	overflow: hidden;
	position: fixed;
	transform: translateX(100%);
	transition: transform .28s cubic-bezier(.4, 0, .2, 1);
	width: 100%;
	z-index: 10020;
}

.site-header__offcanvas--open {
	transform: translateX(0);
}

.site-header__offcanvas-inner {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	padding:
		max(1rem, env(safe-area-inset-top)) 1.25rem max(1rem, env(safe-area-inset-bottom));
}

.site-header__offcanvas-header {
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	padding-bottom: 1rem;
}

.site-header__offcanvas-logo {
	display: inline-flex;
	max-width: 175px;
}

.site-header__offcanvas-logo img {
	display: block;
	height: auto;
	max-width: 100%;
}

.site-header__offcanvas-close {
	align-items: center;
	background-color: #F4F8FB;
	border: 1px solid rgba(83, 149, 195, .15);
	border-radius: 50%;
	color: var(--color-black);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.2rem;
	height: 2.9rem;
	justify-content: center;
	padding: 0;
	transition:
		background-color .22s ease,
		border-color .22s ease,
		color .22s ease,
		transform .22s ease;
	width: 2.9rem;
}

.site-header__offcanvas-close:hover,
.site-header__offcanvas-close:focus-visible {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
	transform: rotate(4deg);
}

.site-header__offcanvas-nav {
	flex: 1 1 auto;
	min-height: 0;
	overscroll-behavior: contain;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 1rem 0 2rem;
	-webkit-overflow-scrolling: touch;
}

.site-header__offcanvas-cta {
	background-color: var(--color-white);
	border-top: 1px solid rgba(0, 0, 0, .07);
	flex: 0 0 auto;
	margin: 0;
	padding-top: 1rem;
}

.site-header__offcanvas-cta .button {
	min-height: 3.25rem;
}

.site-header__offcanvas .nav-main--mobile {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: .25rem;
	justify-content: flex-start;
	width: 100%;
}

.site-header__offcanvas .nav-main__item {
	width: 100%;
}

.site-header__offcanvas .nav-main__link {
	align-items: center;
	border-radius: .75rem;
	color: var(--color-black);
	display: flex;
	font-size: 1.25rem;
	font-weight: 600;
	gap: .65rem;
	justify-content: flex-start;
	padding: .8rem .75rem;
	text-decoration: none;
	transform: translateX(0);
	transition:
		background-color .22s ease,
		color .22s ease,
		transform .22s ease;
	width: 100%;
}

.site-header__offcanvas .nav-main__link--mobile-heading {
	cursor: default;
}

.site-header__offcanvas .nav-main__link--mobile-page {
	justify-content: start;
}

.site-header__offcanvas .nav-main__link--mobile-page:hover,
.site-header__offcanvas .nav-main__link--mobile-page:focus-visible {
	background-color: #E7F1F9;
	color: var(--color-blue);
	transform: translateX(2px);
}

.site-header__offcanvas .nav-main__page-icon {
	color: currentColor;
	flex: 0 0 auto;
	font-size: .9rem;
	transform: translateX(0px);
	transform: translateY(1px);
	transition:
		color .22s ease,
		transform .22s ease;
}

.site-header__offcanvas .nav-main__link--mobile-page:hover .nav-main__page-icon,
.site-header__offcanvas .nav-main__link--mobile-page:focus-visible .nav-main__page-icon {
	transform: translateX(4px);
	transform: translateY(1px);
}

.site-header__offcanvas .nav-sub {
	background-color: transparent;
	border-radius: 0;
	box-shadow: none;
	display: block;
	margin: 0;
	min-width: 0;
	padding: 0 0 .75rem;
	position: static;
	width: 100%;
}

.site-header__offcanvas .nav-sub__link {
	align-items: flex-start;
	background-color: transparent;
	border-radius: .65rem;
	color: #333333;
	display: flex;
	font-size: 1rem;
	gap: .65rem;
	line-height: 1.4;
	padding: .5rem .75rem;
	text-decoration: none;
	transform: translateX(0);
	transition:
		background-color .22s ease,
		color .22s ease,
		transform .22s ease;
	width: 100%;
}

.site-header__offcanvas .nav-sub__icon {
	color: var(--color-blue);
	flex: 0 0 auto;
	font-size: .7rem;
	margin-top: .35rem;
	transform: translateX(0);
	transition:
		color .22s ease,
		transform .22s ease;
}

.site-header__offcanvas .nav-sub__link:hover,
.site-header__offcanvas .nav-sub__link:focus-visible {
	background-color: #F4F8FB;
	color: var(--color-blue);
	transform: translateX(2px);
}

.site-header__offcanvas .nav-sub__link:hover .nav-sub__icon,
.site-header__offcanvas .nav-sub__link:focus-visible .nav-sub__icon {
	transform: translateX(4px);
}

.site-header__offcanvas-backdrop {
	background-color: rgba(0, 0, 0, .28);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition:
		opacity .25s ease,
		visibility .25s ease;
	visibility: hidden;
	z-index: 10010;
}

.site-header__offcanvas-backdrop--visible {
	opacity: 1;
	visibility: visible;
}

body.site-offcanvas-open {
	overflow: hidden;
}

body.site-offcanvas-open .sticky--appointment {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}



/* ======= MOBILE HERO ======= */

.hero-mobile {
	background:
		linear-gradient(135deg, rgba(83, 149, 195, .12), rgba(192, 167, 152, .18)),
		#F8FAFB;
	display: none;
}

.hero-mobile__content {
	padding: 3.25rem 0 3.5rem;
}

.hero-mobile__eyebrow {
	color: var(--color-blue);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .06em;
	margin: 0 0 .75rem;
	text-transform: uppercase;
}

.hero-mobile__title {
	color: var(--color-black);
	font-size: clamp(2rem, 8vw, 2.8rem);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.1;
	margin: 0;
	max-width: 20rem;
}


/* ======= MOBILE INFO BANNER ======= */

.info-banner__content {
	position: relative;
}





/* END CSS FILE */