/*!
Theme Name: trion
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trion
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.

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

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}


/* Algemene stijl voor de container */
.container {
	max-width: 1640px;
	/* Maximale breedte van de container */
	width: 100%;
	/* Breedte is altijd 100% van de beschikbare ruimte */
	margin: 0 auto;
	/* Centrer de container horizontaal */
	padding: 0 15px;
	/* Wat padding aan de zijkanten voor wat ruimte */
}

/* Stijlen voor kleinere schermen */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
		/* Verhoog padding op kleinere schermen */
	}
}

/* Extra responsief voor mobiele schermen */
@media (max-width: 480px) {
	.container {
		padding: 0 10px;
		/* Verminder padding voor mobiele apparaten */
	}
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

.cap-content-swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: 50px;
}

.cap-content-swiper .swiper-slide {
	display: flex;
	align-items: stretch;
	gap: 16px;
	padding: 16px;
	box-sizing: border-box;
	min-height: 280px;
	flex-direction: row-reverse;
}

.cap-content-swiper img {
	width: 300px;
	height: 200px;
	object-fit: cover;
	flex-shrink: 0;
}

.cap-content-swiper h3 {
	margin: 0 0 8px;
}

.cap-content-swiper .cap-slide-content {
	flex: 1;
	align-self: center;
}

.cap-news-block {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.cap-news-block .cap-news-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.cap-news-block .cap-news-card {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

@media (max-width: 960px) {
	.cap-news-block .cap-news-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cap-news-block .cap-news-list {
		grid-template-columns: 1fr;
	}
}

/* Admin catalogue item spacing */
.cap-catalogue-item {
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

a:-webkit-any-link {
	text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 100;
}

dd {
	margin: 0 1.5em 1.5em;
}

embed,
iframe {
	width: 100%;
}

.cap-slider {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	color: #fff;
	position: relative;
	overflow: hidden;
	padding-left: 0;
	padding-right: 0;
}

.cap-slider h3 {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 500;
	font-size: clamp(28px, 5vw, 60px);
	line-height: 1;
	display: flex;
}

.cap-slider .swiper-wrapper {
	align-items: stretch;
	margin-top: 300px;
	padding: 0;
	margin: 0;
	gap: 12px;
	transform: none;
}

.cap-slider .swiper-slide {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 12px;
	flex: 0 0 calc(25% - 27px);
	max-width: calc(25% - 27px);
}

.cap-slider .swiper-slide:first-child {
	margin-left: 0;
}

@media (max-width: 1280px) {
	.cap-slider {
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.cap-slider .swiper-wrapper {
		padding: 0;
		margin: 0;
		gap: 10px;
		transform: none;
	}

	.cap-slider .swiper-slide {
		flex: 0 0 calc(33.333% - 24px);
		max-width: calc(33.333% - 24px);
	}

	.cap-slider .swiper-slide:first-child {
		margin-left: 0;
	}
}

@media (max-width: 960px) {
	.cap-slider {
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.cap-slider .swiper-wrapper {
		padding: 0;
		margin: 0;
		gap: 10px;
		transform: none;
	}

	.cap-slider .swiper-slide {
		flex: 0 0 calc(50% - 18px);
		max-width: calc(50% - 18px);
	}

	.cap-slider .swiper-slide:first-child {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.cap-slider {
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.cap-slider .swiper-wrapper {
		padding: 0;
		margin: 0;
		gap: 10px;
		transform: none;
	}

	.cap-slider .swiper-slide {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.cap-slider .swiper-slide:first-child {
		margin-left: 0;
	}
}

.cap-slider .swiper-slide img {
	width: 100%;
	max-width: 471px;
	aspect-ratio: 471 / 372;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}

.cap-slider .cap-slide-year {
	margin-top: 8px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	font-size: 16px;
	line-height: 1.2;
}

.cap-slider .swiper-slide h3 {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.1;
	margin: 19px 0 0 !important;
}

.cap-slider .swiper-button-prev,
.cap-slider .swiper-button-next {
	position: absolute;
	top: auto;
	bottom: 12px;
	left: auto;
	transform: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	opacity: 1;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	z-index: 3;
}

.cap-slider .swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.cap-slider .swiper-button-next {
	right: 16px;
}

.cap-slider .swiper-button-prev {
	right: 72px;
}

.cap-slider .swiper-button-prev::after,
.cap-slider .swiper-button-next::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px 40px;
}

.cap-slider .swiper-button-prev::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10m2.03-13.53a.75.75 0 0 1 0 1.06L11.56 12l2.47 2.47a.75.75 0 1 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.cap-slider .swiper-button-next::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10M9.97 8.47a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06L12.44 12L9.97 9.53a.75.75 0 0 1 0-1.06' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.cap-slider-cta-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.cap-slider-cta {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 6px;
	background: #927544;
	color: #fff;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 500;
	font-size: 16px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.cap-slider-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	background: #84683e;
}

.cap-content-swiper {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
	color: #fff;
	overflow: visible;
	justify-content: center;
}

.cap-content-swiper .swiper-wrapper {
	align-items: stretch;
}

.cap-content-swiper .swiper-slide {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.cap-content-swiper .swiper-slide img {
	width: 100%;
	max-width: 812px;
	aspect-ratio: 812 / 516;
	height: auto;
	object-fit: cover;
	border-radius: 0;
}

.cap-swiper-content {
	padding-top: 20px;
}

.cap-content-swiper .cap-slide-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

}

.cap-content-swiper h3,
.cap-content-swiper p {
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cap-content-swiper h3 {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	font-size: clamp(28px, 5vw, 60px);
	line-height: 1;
	margin: 0;
	max-width: 600px;
	padding-bottom: 30px;
}

.cap-content-swiper p {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	font-size: clamp(16px, 2.2vw, 24px);
	line-height: 1.4;
	margin: 0;
	max-width: 700px;
}

.cap-content-swiper .swiper-pagination {
	position: static;
	margin: 0;
	max-width: 700px;
	text-align: left;
	align-self: flex-start;
}

.cap-content-swiper .swiper-pagination-bullet {
	background-color: #95989A;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	opacity: 1;
	position: relative;
	transition: all 0.3s ease;
	margin: 0 16px !important;
}

.cap-content-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ffffff;
}

.cap-content-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.cap-content-swiper .swiper-slide {
		gap: 12px;
	}
}

@media (max-width: 640px) {
	.cap-content-swiper .swiper-slide img {
		max-width: 100%;
	}

	.cap-content-swiper h3 {
		max-width: 100%;
	}

	.cap-content-swiper p {
		max-width: 100%;
	}
}

.cap-highlighted {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	padding-bottom: 0;
	margin-bottom: 160px;
	gap: 50px;
}

.cap-highlighted__images {
	position: relative;
	min-height: 240px;
	flex: 0 0 100%;
	max-width: 50%;
	min-width: 260px;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: visible;
}

.cap-highlighted--single .cap-highlighted__images {
	flex: 0 0 65%;
	max-width: 65%;
	min-width: 340px;
	min-height: 360px;
	max-width: 1100px;
	max-height: 720px;
}

.cap-highlighted--single .cap-highlighted__image--0 {
	width: 100%;
	height: 100%;
}

.cap-highlighted__image {
	display: block;
	width: 100%;
	height: 100%;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	object-fit: cover;
}

.cap-highlighted__image--0 {
	position: relative;
	z-index: 1;
	width: 90%;
	height: 70%;
}

.cap-highlighted__image--1 {
	position: absolute;
	top: 45%;
	left: 10%;
	width: 85%;
	height: 60%;
	z-index: 2;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.cap-highlighted--single .cap-highlighted__image--1 {
	display: none;
}

.cap-highlighted__items {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 0;
}

/* Catalogue */
.cap-catalogue {
	margin: 32px 0;
	display: grid;
	gap: 24px;
	grid-template-columns: 530px 1fr;
}

.cap-catalogue__filters {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 12px;
}

.cap-catalogue__filter {
	border-radius: 6px;
	min-width: 240px;
}

.cap-catalogue__filter-header {
	width: 100%;
	text-align: left;
	padding: 18px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 100;
	background: #f7f7f7;
	border: none;
	cursor: pointer;
	font-size: 20px;
}

.cap-catalogue__filter.is-open .cap-catalogue__filter-header {
	background: #eef3ff;
}

.cap-catalogue__filter-body {
	padding: 10px 14px 14px;
}

.cap-catalogue__filter-options {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.cap-catalogue__filter-option {
	width: 100%;
	text-align: left;
	padding: 8px 10px;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.cap-catalogue__filter-option:hover {
	background: #f0f4ff;
	border-color: #c7d5ff;
}

.cap-catalogue__filter-chevron {
	transition: transform 0.15s ease;
}

.cap-catalogue__filter.is-open .cap-catalogue__filter-chevron {
	transform: rotate(180deg);
}

.cap-catalogue__items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cap-catalogue__item {
	border-radius: 8px;
	display: grid;
	gap: 12px;
}

.cap-catalogue__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 8px;
}

.cap-catalogue__photo {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}

.cap-catalogue__photo img {
	display: block;
	width: 100%;
	height: 220px;
}

.cap-catalogue__item-title {
	margin: 0 0 4px;
	font-size: 1.1rem;
}

.cap-catalogue__item-body {
	color: #fff !important;
}

.cap-catalogue__item-year {
	margin: 0 0 6px;
	font-weight: 600;
}

.cap-catalogue__item-content p:last-child {
	margin-bottom: 0;
}

.cap-catalogue__item-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	font-weight: 100;
}


.cap-catalogue__item-lease {
	color: #3a4a8a;
}

.cap-catalogue__item-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cap-catalogue__item-button {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 4px;
	background: #2f64e9;
	color: #fff;
	text-decoration: none;
	transition: background 0.15s ease;
}

.cap-catalogue__item-button:hover {
	background: #1f4bb0;
}

.cap-highlighted__item {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 240px;
}

.cap-highlighted__title {
	margin: 0 0 8px;
	font-size: 3rem;
}

.cap-highlighted__content {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.4;
}

/* Admin catalogue collapse helpers */
.cap-catalogue-item__header {
	background: #f7f7f7;
	padding: 8px 10px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.cap-catalogue-item--collapsed .cap-catalogue-item__body {
	display: none;
}

@media (max-width: 1100px) {
	.cap-highlighted {
		flex-wrap: wrap;
		gap: 40px;
	}

	.cap-highlighted__images {
		flex: 1 1 100%;
		max-width: 100%;
		min-width: 0;
	}

	.cap-highlighted__items {
		flex: 1 1 100%;
	}

	.cap-highlighted__image--1 {
		position: static;
		width: 100%;
		max-width: none;
		top: auto;
		left: auto;
		margin-top: 16px;
	}
}

@media (max-width: 900px) {
	.cap-highlighted {
		flex-direction: column;
		align-items: flex-start;
	}

	.cap-highlighted__images {
		width: 100%;
		max-width: 480px;
		min-height: 220px;
	}

	.cap-highlighted__items {
		gap: 16px;
	}
}

.cap-cta {
	margin: 40px auto;
	text-align: center;
	max-width: 960px;
	padding: 40px 0;
}

.cap-cta__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 4rem;
	line-height: 1.2;
	color: #fff;
	padding-bottom: 30px;
}

.cap-cta__actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 12px;
}

.cap-cta__button {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	border: 1px solid transparent;
}

.cap-cta__button--primary {
	background: #927544;
	color: #fff;
	border-color: #927544;
}

.cap-cta__button--secondary {
	background: #fff;
	color: #000;
}

.cap-cta__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
	.cap-cta {
		margin: 20px auto;
		padding: 16px 12px;
	}

	.cap-cta__title {
		font-size: 1.6rem;
		/* ~25.6px */
		line-height: 1.15;
		padding-bottom: 12px;
	}

	.cap-cta__actions {
		display: flex;
		flex-direction: column;
		gap: 8px;
		align-items: stretch;
		margin-top: 10px;
	}

	.cap-cta__button {
		padding: 8px 10px;
		font-size: 14px;
		border-radius: 4px;
		width: 100%;
		box-sizing: border-box;
	}

	.cap-cta__button--primary,
	.cap-cta__button--secondary {
		display: block;
	}
}

@media (max-width: 900px) {
	.cap-highlighted {
		flex-direction: column;
		align-items: flex-start;
	}

	.cap-highlighted__images {
		width: 100%;
		max-width: 420px;
		min-height: 220px;
	}

	.cap-highlighted__image--1 {
		top: 15%;
		left: 14%;
	}
}

object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	line-height: 1;
	padding: 0.6em 1em 0.4em;
	background-color: transparent !important;
	color: #fff;
	border: none !important;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */

.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.menu-toggle {
	display: inline-flex;
}

.main-navigation.toggled ul {
	display: flex;
	border-right: solid 2px #927544;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,

.post-navigation .nav-previous {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
	text-align: left;
.sticky {
	display: block;
}


.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
	width: 15em;
	height: auto;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

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

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 100;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.custom-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 300px;
	display: flex;

}


.custom-banner.image {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 100px;
	margin-top: 150px;
}

.custom-banner .banner-content {
	color: #fff;
	max-width: 100%;
}

.custom-banner h2 {
	margin: 0;
	font-size: 80px !important;
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
}

.custom-banner img {
	width: 47rem !important;
}

.custom-banner .small-text {
	font-size: 26px !important;
	margin-top: 10px;
	color: #fff !important;
	width: 600px !important;
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
}

.custom-banner .banner-button {
	display: inline-block;
	margin-top: 10px !important;
	padding: 7px 30px;
	background-color: #917545;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s ease;
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.custom-banner .banner-button:hover {
	background-color: #81683d;
}

.site-header {
	position: relative;
}

.site-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #fff;
	pointer-events: none;
	z-index: 2;
}

.header-buttons {
	display: flex;
	gap: 10px;
}

.header-button {
	padding: 3px 6px;
	font-size: 16px;
	text-decoration: none;
	color: #fff !important;
	border: none;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
	border: solid 1px #fff;
	line-height: 0 !important;
}

.site-branding {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
}

.button-text {
	font-size: 12px;
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.usp-blok {
	color: #fff;
}

.button-text-nav {
	font-size: 14px !important;
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.header-button-special {
	padding: 8px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: relative;
}

.header-button-special .button-text-nav {
	flex-grow: 1;
	text-align: center;
}

.button-svg {
	position: absolute;
	right: 10px;
	width: 10px;
	height: 16px;
}

.usp-blok {
	display: flex;
	justify-content: flex-start;
	padding-left: 0;
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

.usp-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 1;
}

.usp-content img {
	position: absolute;
	    left: -3vw;
	width: 50%;
	object-fit: cover;
	max-width: 100%;
	top: 50%;
	transform: translateY(20%);
	z-index: -1;
}

.usp-blok {
	display: flex;
	justify-content: flex-start;
	padding-left: 0;
	position: relative;
	width: 100%;
	height: 40vh;
	overflow: visible;
}

.usp-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 1;
}

.usp-content img {
	position: absolute;
	left: -15vw;
	width: 60em;
	object-fit: cover;
	max-width: 100%;
	top: 15%;
	transform: translateY(10%);
	z-index: -1;
}

.blok-usps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 10px;
	margin-left: 27rem;
	margin-top: 3rem;
}

.usps {
	display: flex;
	align-items: center;
}

.usp-selection2 {
	display: flex;
	flex-direction: column;
	text-align: center;
	position: relative;
	justify-content: center;
	align-items: center;
}

.usp-selection2 h2 {
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400;
	width: 80rem;
	margin: 0;
}

.usp-selection2 .uspblok-description {
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	text-align: center;
	width: 60rem;
}

.usp-selection2 .usp-text {
	font-size: 16px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}


.mySwiper img {
	width: 100%;
	border-radius: 8px;
}

.slide-title {
	font-weight: bold;
	margin-top: 8px;
	font-size: 14px;
	text-align: center;
}

.slide-year {
	color: gray;
	font-size: 13px;
	text-align: center;
}

.my-custom-slider {
	padding-bottom: 100px;
	margin-left: -200px;
}

.custom-slider-image {
	width: 471px !important;
	height: 372px !important;
	object-fit: cover !important;
}

.fade-slide-image {
	width: 812px !important;
	height: 516x !important;
	border-radius: 0 !important;
}

.fade-slide-content {
	display: flex !important;
	justify-content: space-between !important;
}

.fade-slide-content h2,
.fade-slide-content p {
	color: #fff !important;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.fade-selecion2 h2 {
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	line-height: 60px !important;
	margin-bottom: 0 !important;
	width: 600px !important;
}

.fade-selecion2 p {
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	width: 700px !important;
	line-height: normal !important;
}

.item {
	display: flex !important;
	align-items: center !important;
	color: #fff;
}

.item-content h3 {
	font-size: 40px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin: 0 !important;
}

.item-content p {
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	line-height: normal !important;
	margin: 0 !important;
}

.two-image-block {
	display: flex !important;
	flex-direction: row !important;
}


.custom-slider-main-title {
	margin-top: 260px !important;
	text-align: center;
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400 !important;
	color: #fff !important;

}

.custom-slider-container {
	padding-top: 210px !important;

}

.fade-swiper-container .swiper-pagination-bullet {
	background-color: #95989A !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	opacity: 1 !important;
	position: relative;
	transition: all 0.3s ease;
}

.fade-swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ffffff !important;
}

.fade-swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	pointer-events: none;
}

.categorieen-blok {
	display: flex;
	gap: 20px;
}

.categorieen-blok .categorie-block {
	flex: 1;
	border: 1px solid #927544;
	padding: 25px 40px;
	background: transparent;
	color: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.categorieen-blok .categorie-block:hover {
	border: 2px solid #927544;
	box-shadow: inset 10px 30px 20px rgba(213, 41, 65, 0.1);
}

.categorieen-blok .categorie-block-button {
	display: inline-block;
	margin-top: 4px;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	line-height: normal !important;
	font-size: 20px;
	margin-top: auto;
	align-self: flex-end;
}

.categorie-block h3 {
	margin-top: 0;
	font-size: 40px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
}

.categorie-block p {
	font-size: 20px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	line-height: normal !important;
}

.cap-section1 h2 {
	cursor: move;
	color: #fff;
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin-bottom: 10px;

}

.cap-frontend-image {
	max-width: 50%;
	height: auto;
	margin-bottom: 15px;
}

.cap-frontend-block {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cap-usp-block.usp-blok {
	display: flex;
	justify-content: flex-start;
	position: relative;
	width: 100%;
	height: 40vh;
	overflow: visible;
	margin-bottom: 300px;
}

.cap-usp-content.usp-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 1;
}

.cap-usp-content.usp-content img {
	position: absolute;
	left: -15vw;
	width: 60em;
	max-width: 100%;
	object-fit: cover;
	top: 15%;
	transform: translateY(10%);
	z-index: -1;
}

.cap-usp-inner.usp-selection2 {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	position: relative;
}

.cap-usp-inner.usp-selection2 h2 {
	font-size: 60px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400;
	width: 80rem;
	margin: 0;
}

.cap-usp-inner .uspblok-description {
	font-size: 24px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	width: 60rem;
	margin-top: 1rem;
}

.cap-usp-block .blok-usps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-left: 27rem;
	margin-top: 3rem;
}

.cap-usp-block .usps {
	display: flex;
	align-items: center;
}

.cap-usp-block .usp-text {
	font-size: 16px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	display: flex;
	align-items: center;
	gap: 20px;
}

.cap-categories__items {
	display: flex;
	gap: 20px;
}

.cap-categories__title {
	margin: 0 !important;
}

.cap-categories {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.cap-categories h2 {
	color: #fff;
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin-bottom: 10px;
}

.cap-categories-MainTitel {
	display: flex;
	justify-content: center;
}

.cap-reviews {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #ffffff;
}

.cap-reviews__title {
	color: #fff;
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin-bottom: 24px;
}

.cap-reviews__swiper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-bottom: 64px;
}

.cap-reviews .swiper-slide {
	display: flex;
	justify-content: center;
	overflow: visible;
}

.cap-reviews__card {
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	color: inherit;
	overflow: visible;
}

.cap-reviews__swiper .swiper-wrapper {
	width: 100%;
}

.cap-reviews__swiper .swiper-button-prev,
.cap-reviews__swiper .swiper-button-next {
	position: absolute;
	top: auto;
	bottom: 12px;
	width: 48px;
	height: 48px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	opacity: 1;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cap-reviews__swiper .swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.cap-reviews__swiper .swiper-button-prev {
	left: 50%;
	transform: translate(-48px, 0);
}

.cap-reviews__swiper .swiper-button-next {
	left: 50%;
}

.cap-reviews__swiper .swiper-button-prev::after,
.cap-reviews__swiper .swiper-button-next::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px 40px;
}

.cap-reviews__swiper .swiper-button-prev::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10m2.03-13.53a.75.75 0 0 1 0 1.06L11.56 12l2.47 2.47a.75.75 0 1 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.cap-reviews__swiper .swiper-button-next::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10M9.97 8.47a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06L12.44 12L9.97 9.53a.75.75 0 0 1 0-1.06' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.cap-reviews__swiper .swiper-pagination {
	display: none;
}

.cap-reviews__name {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	font-size: clamp(18px, 3vw, 24px);
}

.cap-reviews__content {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	font-size: clamp(16px, 2.4vw, 22px);
	line-height: 1.5;
	color: inherit;
	position: relative;
	display: inline-block;
	max-width: 760px;
	margin: 0 auto;
	overflow: visible;
	text-align: left;
	text-align: center;
}

.cap-reviews__content-text {
	max-width: 530px;
}

.cap-reviews__quote {
	display: inline-flex;
	flex-shrink: 0;
}

.cap-reviews__quote--start {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-5px, -5px);
}

.cap-reviews__quote--end {
	position: absolute;
	right: 0;
	bottom: 0;
}

.footer-grid {
	background: #1c1c1c;
	color: #f2f4f8;
	padding: 60px 20px;
	margin-top: 80px;
	position: relative;
	border-top: 2px solid rgba(146, 117, 68, 0.5);
	border-bottom: 3px solid #d52941;

}

.footer-grid::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
	height: 2px;
	background: #927544;
	pointer-events: none;
}

.footer-inner {
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.footer-column {
	text-align: center;
}

.footer-column h4 {
	margin: 0 0 12px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	font-size: 32px;
	color: #f7f8fa;
}

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

.footer-column li {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
}

.footer-column a {
	color: #f2f4f8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-column a:hover {
	color: #917545;
}

.footer-empty {
	margin: 0;
	color: #9ca3af;
	font-size: 14px;
}

.footer-social {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.footer-social-buttons {
	display: inline-flex;
	gap: 18px;
	align-items: center;
}

.footer-social-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	background: #917545;
	border-radius: 50%;
	line-height: 0;
	flex-shrink: 0;
	position: relative;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social-button svg {
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/* Reuse footer socials inside hamburger info */
.nav-info .footer-social {
	justify-content: flex-start;
	margin-top: 16px;
}

.nav-info .footer-social-buttons {
	gap: 14px;
}

.footer-legal-buttons {
	margin-top: 16px;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-legal-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 4px;
	border: none;
	border-radius: 0;
	color: #f2f4f8;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	font-size: 12px;
	background: transparent;
	transition: color 0.2s ease;
}

.footer-legal-button:hover {
	color: #fff;
}

.footer-legal-button:not(:last-child)::after {
	content: "|";
	margin-left: 12px;
	color: #b5b8bd;
}

.cap-content-block {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	color: #fff;
	margin-bottom: 8%;
}

.cap-content-block--reverse {
	flex-direction: row-reverse;
	justify-content: start;
}

.cap-content-content {
	max-width: 100%;
	width:100%;
}

.cap-content-content h2 {
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin: 0;
	line-height: 1;
	padding-bottom: 20px;
}

.cap-content-content p {
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	line-height: normal !important;
	max-width: 700px;
}

.cap-content-image {
	max-width: 50%;
	opacity: 80%;
}

.cap-content-button {
	color: #fff;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 20px !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cap-content-brands {
	display: flex;
	flex-wrap: wrap;
	margin-top: 16px;
	align-items: center;
	max-width: 550px;
}

.cap-content-brand {
	max-height: 80px;
	max-width: 100px;
	object-fit: contain;
	padding: 6px 10px;
	border-radius: 4px;
}

.cap-content-brands {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	justify-items: center;
}

@media (max-width: 640px) {
	.cap-content-brands {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}



@media (max-width: 768px) {

	.cap-content-block,
	.cap-content-block--reverse {
		flex-direction: column;
		gap: 16px;
	}

	.cap-content-image {
		max-width: 100%;
	}
}


.cap-team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 372px));
	gap: 20px;
	justify-content: center;
	margin: 0 auto;
	padding-bottom: 150px;
}

.cap-team-title {
	text-align: center;
	font-size: 50px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	color: #fff;

}

.cap-team__member {
	position: relative;
}

.cap-team__photo-wrap {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	width: 100%;
	max-width: 372px;
	max-height: 406px;
	aspect-ratio: 372 / 406;
}

.cap-team__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cap-team__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 16px;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.cap-team__member:hover .cap-team__overlay {
	opacity: 1;
}

.cap-team__overlay--noimage {
	position: relative;
	background: #111;
	min-height: 180px;
}

.cap-team__name {
	margin: 0 0 6px;
	font-size: 32px;
	line-height: 1.2;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
}

.cap-team__first,
.cap-team__last {
	display: block;
}

.cap-team__last {
	font-weight: 600;
}

.cap-team__name--single {
	margin: 0 0 6px;
}

.cap-team__position {
	margin: 0;
	font-size: 1.4rem;
	color: #927544;
}

@media (max-width: 640px) {
	.cap-team {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		gap: 14px;
	}

	.cap-team__photo-wrap {
		aspect-ratio: 3 / 4;
	}
}

.cap-diensten {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 140px;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	justify-items: center;
	padding-bottom: 180px;
}

.cap-dienst {
	display: flex;
	flex-direction: column;
	padding: 24px;
	height: 100%;
	text-align: center;
	justify-content: center;
	color: #fff;
}

.cap-dienst__image {
	max-width: 370px;
	height: auto;
	object-fit: cover;
	margin: 0 auto 16px;
}

.cap-dienst__title {
	font-size: 1.15rem;
	margin: 0 0 10px;
	text-align: center;
	font-size: 30px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	color: #fff;
}

.cap-dienst__content {
	flex: 1;
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cap-dienst__content p {
	margin: 0 0 8px;
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	max-width: 350px;
}

.cap-dienst__button {
	display: inline-block;
	align-self: center;
	padding: 10px 16px;
	color: #fff;
	text-decoration: none;
}


@media (max-width: 960px) {
	.cap-diensten {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cap-diensten {
		grid-template-columns: 1fr;
	}
}

.main-navigation:not(.toggled) ul {
	display: none;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	flex-direction: column;
}

.main-navigation.toggled ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.menu-toggle-label {
	font-size: 14px;
	text-transform: uppercase;
}

body.nav-open {
	overflow: hidden;
}

.main-navigation {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	background: #1C1C1C;
	padding: 56px 24px 32px;
	display: flex;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.02);
	transition: opacity 0.35s ease, transform 0.35s ease;
	z-index: 2000;
	overflow: auto;
}

.main-navigation .nav-top-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.main-navigation .nav-top-row .nav-header-buttons {
	flex: 0 0 auto;
}

.main-navigation .nav-top-row .nav-branding {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.main-navigation .nav-top-row .menu-close {
	flex: 0 0 auto;
	background: none;
	border: none;
	padding: 0;
	position: static;
	margin-left: auto;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.main-navigation.toggled {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

.nav-inner {
	width: 100%;
	max-width: 1640px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	text-align: center;
	align-items: stretch;
}

.header-button-menu {
	background-color: #917545;
	border: none;
	border-radius: 3px;
	padding: 15px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.nav-branding .site-description {
	color: #d7d7d7;
	margin: 0;
	font-size: 0.95rem;
	text-align: center;
}

.main-navigation ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 100px !important;
}

.main-navigation a {
	color: #fff;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	text-decoration: none;
	letter-spacing: 0.01em;
}

.nav-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.nav-pages {
	flex: 1 1 55%;
}

.nav-info {
	flex: 1 1 45%;
	color: #f4f4f4;
	text-align: left;
	font-size: 1rem;
	line-height: 1.5;
	padding: 0;
}

.nav-info p {
	margin: 0 0 12px;
}

@media screen and (min-width: 900px) {
	.nav-content {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.nav-pages ul {
		align-items: flex-start;
	}
}

.nav-header-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.nav-header-buttons .header-button {
	text-decoration: none;
	display: flex;
}

.menu-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.menu-close:hover {
	background: rgba(255, 255, 255, 0.16);
	transform: scale(1.03);
}

.menu-close svg {
	width: 40px;
	height: 40px;
}

@media screen and (min-width: 900px) {
	.main-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

}

.cap-info {
	display: flex;
	color: #fff;
	gap: 40px !important;
}

.cap-info__image img {
	border-radius: 10px;
	max-width: 830px;
	height: auto;
	object-fit: cover;
}

.cap-info__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.cap-location {
	display: flex;
	flex-direction: column;
}

.cap-info__content h3 {
	font-size: 40px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin: 0;
	gap: 10px;
}

.cap-info__address,
.cap-info__location,
.cap-info__country {
	margin: 0 !important;
	font-size: 18px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
}

.cap-info__contactinfo {
	display: flex;
	gap: 30px;
}

.cap-phone,
.cap-mail {
	display: flex;
	flex-direction: column;
}


.cap-phone p {
	margin: 0;
	font-size: 14px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
}

.cap-mail p {
	margin: 0;
	font-size: 14px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
}

.cap-news-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.cap-news-card {
	max-width: 370px;
	width: 100%;
	height: 435px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	text-align: center;
	border: 1px solid #927544;
	border-radius: 8px;
	padding: 16px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	color: #fff;
}

.cap-news-block__title {
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	color: #fff;
	margin-bottom: 16px;
	text-align: center;
}

.cap-news-card__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cap-news-card__meta {
	margin: 0;
	font-size: 14px !important;
	letter-spacing: 0.01em;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	color: #EFF1F3;
}

.cap-news-card__title {
	margin: 0;
	font-size: 22px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 500 !important;
	line-height: 1.2;
}

.cap-news-card__image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

.cap-info__phone a,
.cap-info__email a {
	font-size: 18px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}

form {
	border: 2px solid #927544;
	padding: 40px;
	border-radius: 10px;
}

.contact-title {
	font-size: 26px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin-bottom: 30px;
	color: #fff;
}

.contact-naam,
.contact-bedrijf,
.contact-bedrijf,
.contact-mail,
.contact-tel,
.contact-omschrijving {
	border: solid 1px #927544 !important;
	background-color: transparent !important;
	color: #fff !important;
	padding: 4px 7px !important;
}

.contact-naam::placeholder,
.contact-bedrijf::placeholder,
.contact-bedrijf::placeholder,
.contact-mail::placeholder,
.contact-tel::placeholder,
.contact-omschrijving::placeholder {
	color: #fff !important;
}

.contact-naam:focus,
.contact-bedrijf:focus,
.contact-mail:focus,
.contact-tel:focus,
.contact-omschrijving:focus {
	border: solid 1px #927544 !important;
	outline: none !important;
}

.contact-verzenden {
	background-color: #927544 !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 20px !important;
	cursor: pointer !important;
	font-size: 16px !important;
	font-family: "Source Sans 3", sans-serif !important;
	font-weight: 600 !important;
	border-radius: 5px !important;
}

.nieuwsdetail-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	color: #fff;
}

.cap-news-detail {
	color: #fff;
}

.cap-news-detail__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin-bottom: 20px;
}

.cap-news-detail__title {
	font-size: 60px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
	margin-bottom: 16px;
}

.cap-news-detail__content {
	font-size: 24px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	line-height: normal !important;
	border-top: 1px solid #927544;
	padding-top: 20px;
	border-bottom: 1px solid #927544;
	padding-bottom: 20px;
}

.cap-news-detail__meta {
	font-size: 20px !important;
	letter-spacing: 0.01em;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	color: #EFF1F3;
	margin-bottom: 40px;
}

.cap-news-detail__social-buttons {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.cap-catalogue__filter-header {
	border: 3px solid #927544 !important;
	padding: 10px 20px !important;
	border-radius: 10px !important;
}

#cap_dynamic_fields .cap-catalogue-item__header {
	display: block !important;
}

.cap-catalogue-detail {
	margin: 0 auto;
	padding: 40px 20px;
	color: #fff;
}

.cap-catalogue-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 36px;
	align-items: flex-start;
}

@media (max-width: 960px) {
	.cap-catalogue-detail__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.cap-catalogue-detail__gallery {
	display: flex;
	flex-direction: column;
	max-width: 730px;
}

.cap-catalogue-detail__swiper {
	width: 100%;
	height: clamp(300px, 55vw, 640px);
	min-height: 300px;
	max-height: 640px;
	border-radius: 12px;
	overflow: hidden;
	background: #0d0d0f;
	position: relative;
	aspect-ratio: 4 / 3;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.cap-catalogue-detail__swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cap-catalogue-detail__swiper .swiper-wrapper,
.cap-catalogue-detail__swiper .swiper-slide {
	height: 100%;
	align-items: stretch;
}

.cap-catalogue-detail__thumbs {
	height: 90px;
	border-radius: 10px;
	overflow: hidden;
	padding: 4px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.cap-catalogue-detail__swiper.is-ready,
.cap-catalogue-detail__thumbs.is-ready {
	opacity: 1;
}

.cap-catalogue-detail__thumbs .swiper-wrapper {
	height: 100%;
	align-items: stretch;
}

.cap-catalogue-detail__thumbs .swiper-slide {
	opacity: 0.65;
	transition: opacity 0.2s ease;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
}

.cap-catalogue-detail__thumbs .swiper-slide-thumb-active,
.cap-catalogue-detail__thumbs .swiper-slide:hover {
	opacity: 1;
}

.cap-catalogue-detail__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cap-catalogue-detail__info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cap-catalogue-detail__block-title {
	margin: 0;
	font-size: 14px !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #d3b377;
}

.cap-catalogue-detail__title {
	margin: 0;
	font-size: 48px !important;
	line-height: 1.1;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 100;
}

@media (max-width: 640px) {
	.cap-catalogue-detail__title {
		font-size: 36px !important;
	}
}

.cap-catalogue-detail__year {
	margin: 0;
	font-size: 18px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	color: #eff1f3;
}

.cap-catalogue-detail__content {
	font-size: 18px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: #f6f6f8;
}

.cap-catalogue-detail__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.cap-catalogue-detail__price {
	font-size: 22px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	color: #ffffff;
}

.cap-catalogue-detail__lease {
	font-size: 18px !important;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400;
	color: #fff;
}

.cap-catalogue-detail__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}

.cap-catalogue-detail__button {
	display: inline-block;
	width: fit-content;
	padding: 12px 20px;
	border-radius: 8px;
	background: #927544;
	color: #fff;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.cap-catalogue-detail__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	background: #84683e;
}

#cap_dynamic_fields .cap-block {
	background: #fff !important;
}

.cap-catalogue-detail__thumbs {
	max-width: 730px;
	height: 170px !important;
}

.cap-catalogue-detail__thumbs .swiper-slide {
	width: auto;
	max-width: 500px;
}

.cap-catalogue-detail__thumbs .swiper-slide img {
	max-width: 400px;
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.cap-catalogue__load-more {
	display: inline-block;
	margin: 40px auto 0;
	padding: 12px 34px !important;
	background: #927544 !important;
	color: #fff;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	border-radius: 4px;
}

.cap-catalogue-detail__price {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 200;
	font-size: 60px !important;
}

.cap-catalogue-detail__button {
	border-radius: 3px;
}

.cap-catalogue-detail__button:first-child {
	background-color: transparent;
	border: 1px solid #fff;
	padding: 5px 23px;
	font-size: 14px !important;
}

/* Responsive rules for Diensten block (tablet & mobile)
	 Keeps desktop styling unchanged; overrides only under breakpoints */

@media (max-width: 960px) {
	.cap-diensten {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
		justify-content: space-between;
		align-items: stretch;
	}

	.cap-dienst {
		flex: 0 0 calc(50% - 12px);
		box-sizing: border-box;
		margin-bottom: 24px;
		padding: 12px 0;
		min-height: 1px;
	}

	.cap-dienst__image {
		max-width: 100%;
		height: auto;
		display: block;
		margin-bottom: 12px;
	}

	.cap-dienst__title {
		font-size: 1.1rem;
		margin-bottom: 8px;
	}

	.cap-dienst__content {
		font-size: 0.95rem;
		margin-bottom: 10px;
	}

	.cap-dienst__button {
		display: inline-block;
		padding: 8px 12px;
	}
}

@media (max-width: 640px) {
	.cap-diensten {
		display: block;
	}

	.cap-dienst {
		width: 100%;
		margin-bottom: 18px;
		padding: 10px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}


	/* Make images larger on mobile while keeping layout stacked */
	.cap-dienst__image {
		max-width: 220px;
		width: 100%;
		height: auto;
		float: none;
		margin: 0 auto 12px auto;
		display: block;
		object-fit: cover;
		border-radius: 6px;
	}

	/* Slightly reduce text sizes on mobile for better fit */
	.cap-dienst__title {
		font-size: 0.95rem;
		margin: 0 0 6px 0;
		line-height: 1.15;
	}

	.cap-dienst__content {
		font-size: 0.9rem;
		margin: 0 0 10px 0;
		line-height: 1.4;
	}

	.cap-dienst__button {
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		padding: 10px 14px;
		margin-top: 8px;
	}

	.cap-dienst::after {
		content: "";
		display: block;
		clear: both;
	}
}


/* InfoBlock responsive: tablet & mobile only
	 Desktop layout is controlled by existing theme rules above.
*/
@media (min-width:769px) and (max-width:1024px) {
	.cap-info {
		display: flex;
		gap: 1.25rem;
		align-items: flex-start;
		flex-wrap: wrap
	}

	.cap-info__image {
		flex: 0 0 160px
	}

	.cap-info__image img {
		max-width: 100%;
		height: auto;
		display: block;
		border-radius: 6px
	}

	.cap-info__contactinfo {
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
		margin-top: .5rem
	}

	.cap-info__contactinfo>div {
		min-width: 140px
	}
}

@media (max-width:768px) {
	.cap-info {
		display: flex;
		gap: 1.25rem;
		align-items: flex-start;
		flex-direction: column;
		flex-wrap: wrap
	}

	.cap-info__image {
		flex-basis: auto;
		width: 100%
	}

	.cap-info__image img {
		max-width: 100%;
		height: auto;
		display: block;
		border-radius: 6px
	}

	.cap-info__contactinfo {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-top: .5rem
	}

	.cap-info__contactinfo>div {
		min-width: 0
	}
}

.cap-catalogue-detail__button:nth-child(2) {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	padding: 5px 23px;
	font-size: 14px !important;
}

.cap-catalogue-detail__button:nth-child(3) {
	background-color: #927544;
	padding: 14px 18px;
	font-size: 16px !important;
	font-weight: 500;
}

/* Strong overrides to ensure mobile filters/dropdowns work and two-column layout applies */
@media (max-width: 640px) {
	.cap-catalogue__filter {
		z-index: 99999 !important;
		overflow: visible !important;
		pointer-events: auto !important;
	}

	.cap-catalogue__filter-header {
		pointer-events: auto !important;
		z-index: 100000 !important;
	}

	.cap-catalogue__filter-body {
		max-height: none !important;
		overflow: visible !important;
		pointer-events: auto !important;
		position: relative !important;
		background: transparent !important;
	}

	.cap-catalogue__items {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
	}

	.cap-catalogue__item {
		width: auto !important;
		margin-bottom: 0 !important;
		box-sizing: border-box !important;
	}

	.cap-catalogue__photo img {
		width: 100% !important;
		height: auto !important;
		object-fit: cover !important;
	}

	.cap-catalogue__load-more {
		width: 100% !important;
		display: block !important;
		text-align: center !important;
	}
}

@media (max-width: 960px) {

	.cap-catalogue__filter .cap-catalogue__filter-body,
	.cap-catalogue__filter .cap-catalogue-filter__body {
		display: none !important;
		max-height: none !important;
		overflow: visible !important;
		pointer-events: auto !important;
	}

	.cap-catalogue__filter.is-open .cap-catalogue__filter-body,
	.cap-catalogue__filter[aria-expanded="true"] .cap-catalogue__filter-body,
	.cap-catalogue__filter .cap-catalogue__filter-header[aria-expanded="true"]+.cap-catalogue__filter-body {
		display: block !important;
	}

	.cap-catalogue__filter .cap-catalogue__filter-body[hidden] {
		display: none !important;
	}
}

@media (max-width: 960px) {
	.cap-catalogue {
		padding: 0 18px;
		grid-template-columns: 1fr;
	}

	.cap-catalogue__filters {
		display: block;
		margin-bottom: 18px;
		order: 1;
	}

	.cap-catalogue__items {
		display: flex;
		flex-wrap: wrap;
		gap: 18px;
		order: 2;
	}

	.cap-catalogue__filter {
		width: 100%;
		box-sizing: border-box;
		position: relative;
		z-index: 2;
		margin-bottom: 12px;
	}

	.cap-catalogue__filter-header {
		padding: 10px;
		position: relative;
		z-index: 3;
		cursor: pointer;
	}

	.cap-catalogue__filter-body {
		display: block;
		max-height: none !important;
		overflow: visible !important;
		position: relative;
		z-index: 2;
	}

	.cap-catalogue__item {
		flex: 0 0 calc(50% - 9px);
		box-sizing: border-box;
	}

	.cap-catalogue__photo img {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 8px;
	}

	.cap-catalogue__item-buttons {
		display: flex;
		gap: 8px;
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	.cap-catalogue {
		padding: 0 14px;
		grid-template-columns: 1fr;
	}

	.cap-catalogue__filters {
		display: block;
		margin-bottom: 12px;
		order: 1;
	}

	.cap-catalogue__filter {
		width: 100%;
		margin-bottom: 10px;
		position: relative;
		z-index: 1000;
		overflow: visible;
		pointer-events: auto;
	}

	.cap-catalogue__filter-header {
		width: 100%;
		position: relative;
		z-index: 3;
	}

	.cap-catalogue__filter-body {
		display: block;
		padding-top: 8px;
		max-height: none !important;
		overflow: visible !important;
		pointer-events: auto;
	}

	.cap-catalogue__items {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		order: 2;
	}

	.cap-catalogue__item {
		width: auto;
		display: block;
		margin-bottom: 0;
		box-sizing: border-box;
	}

	.cap-catalogue__photo {
		margin-bottom: 12px;
	}

	.cap-catalogue__photo img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 8px;
	}

	.cap-catalogue__item-title {
		font-size: 1.05rem;
	}

	.cap-catalogue__item-body p {
		font-size: 0.95rem;
	}

	.cap-catalogue__item-meta,
	.cap-catalogue__item-year {
		display: block;
		margin-top: 6px;
	}

	.cap-catalogue__item-buttons {
		display: flex;
		gap: 8px;
		flex-wrap: wrap;
	}

	.cap-catalogue__item-button {
		flex: 1 1 auto;
		min-width: 120px;
		text-align: center;
		padding: 10px 12px;
	}

	.cap-catalogue__load-more {
		width: 100%;
		display: block;
		text-align: center;
		margin: 28px auto 0;
	}
}

.cap-news-controls {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.cap-news-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem
}

.cap-news-controls .swiper-button-prev,
.cap-news-controls .swiper-button-next,
.cap-news-controls .swiper-pagination {
	position: static !important;
	transform: none !important
}

.cap-news-controls .swiper-pagination {
	margin: 0
}

/* Numbered pagination for news swiper */
.cap-news-swiper .swiper-pagination {
	counter-reset: news-page;
	display: flex;
	gap: .5rem;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0
}

.cap-news-swiper .swiper-pagination-bullet {
	counter-increment: news-page;
	min-width: 36px;
	padding: 6px 10px;
	border-radius: 6px;
	background: #f4f4f4;
	border: 1px solid #e6e6e6;
	color: #333;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px
}

.cap-news-swiper .swiper-pagination-bullet::after {
	content: counter(news-page);
	display: block
}

.cap-news-swiper .swiper-pagination {
	counter-reset: news-page;
	display: flex;
	gap: .5rem;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0
}

.cap-news-swiper .swiper-pagination-bullet {
	counter-increment: news-page;
	min-width: auto;
	padding: 0;
	background: transparent;
	border: none;
	color: inherit;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer
}

.cap-news-swiper .swiper-pagination-bullet::after {
	content: counter(news-page);
	display: block
}

.cap-news-swiper .swiper-pagination-bullet:hover {
	color: #927544
}

.cap-news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: #927544;
}

.cap-content-swiper.cap-news-swiper .swiper-pagination {
	counter-reset: news-page;
	display: flex;
	gap: .5rem;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0
}

.cap-content-swiper.cap-news-swiper .swiper-pagination-bullet {
	counter-increment: news-page !important;
	background: transparent !important;
	border: none !important;
	width: auto !important;
	height: auto !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: inherit !important;
	cursor: pointer !important;
}

.cap-content-swiper.cap-news-swiper .swiper-pagination-bullet::before {
	display: none !important
}

.cap-content-swiper.cap-news-swiper .swiper-pagination-bullet::after {
	content: counter(news-page) !important;
	display: block !important;
	position: static !important;
	width: auto !important;
	height: auto !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
	padding: 0 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
}

.cap-content-swiper.cap-news-swiper .swiper-pagination-bullet:hover {
	color: #927544 !important
}

.cap-content-swiper.cap-news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: #927544 !important;
}
