/**
 * main.css
 */

* {
	outline: 0 none;  /* hide focus */
}
body, html {
	color: #333333;
	overflow-x:clip;
	margin: 0;
	padding: 0;
	font-family: system-ui, sans-serif;
	font-size: clamp(16px, 1vw + 12px, 18px);
	font-weight: 300;
	line-height: 1.6;
}
svg {
	color: #333333;
}
h1, h2, h3 {
	color: #222222;
}
.bgImage h1, h2, h3,
.colored h1, h2, h3,
.gradient h1, h2, h3 {
	color: #444444;
}
h1 {
	/*font-size: clamp(36px, calc(1.2vw + 24px), 48px);
	font-weight: 500;*/
	font-size: clamp(28px, calc(0.8vw + 18px), 36px);
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 40px;
}
h2 {
	font-size: clamp(28px, calc(0.8vw + 18px), 36px);
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 40px;
}
h3 {
	font-size: clamp(20px, calc(0.6vw + 15px), 24px);
	font-weight: 400;
	margin-top: 7px;
	margin-bottom: 12px;
}
.content {
	color: #777777;
}
.bgImage .content,
.colored .content,
.gradient .content {
	color: #666666;
}
a {
	color: var(--color-primary);
	text-decoration:none;
}
a:not(.button):hover{
	color: var(--color-primary);
	text-decoration:underline;
}
button {
	font-size: clamp(16px, 1vw + 12px, 18px);
}/**
 * topbar.css
 */

#topbar {
	background: #f5f5f5;
	padding: 10px 25px;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
}
#topbar-inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#topbar .contact {
	display: flex;
	align-items: center;
	gap: 24px;
}
#topbar .contact svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	stroke-width: 1.6;
}
#topbar .contact-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

@media (max-width: 768px) {
	#topbar .contact-item:last-child {
		display: none;
	}
}
/**
 * menu.css
 */

header {
	display:flex;
	justify-content:space-between;
	align-items: center;
	padding: 5px 18px 0 25px;

	position: sticky;
	top: 0;
	z-index: 1000;

	/*background: rgba(255,255,255,.90);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);*/

	background:rgba(255,255,255,.7);
	backdrop-filter:blur(7px);
	-webkit-backdrop-filter:blur(7px);
}

/* AB HIER alpine.js  */

.site-header {
	width: 100%;
	overflow: visible;
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 20px 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: visible;
}

.nav-links {
	display: flex;
	gap: 24px;
	overflow: visible;
}

.nav-links a {
	text-decoration: none;
	color: inherit !important;
}
.nav-links a:hover,
.nav-links a.active {
	color: var(--color-primary) !important;
}

.menu-button {
	display: none;

	background: linear-gradient(#ffab1f, #ff9900);
	box-shadow:
			0 6px 18px rgba(255,153,0,.22),
			inset 0 1px 0 rgba(255,255,255,.35);

	border: 0;
	border-radius: 14px;

	transition: all .22s ease;
}

.menu-button:hover {
	transform: translateY(-1px);
	box-shadow:
			0 10px 24px rgba(255,153,0,.28),
			inset 0 1px 0 rgba(255,255,255,.4);
}

.nav-item-with-panel {
	cursor: pointer;
	position: relative;
	padding-bottom: 5px;
}

.nav-item-with-panel:has(.active) .submenu-title {
	color: var(--color-primary);
}

.submenu-panel {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);

	position: absolute;
	top: 25px;
	left: -25px;

	padding: 10px 5px;
	min-width: 160px;
	background: white;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	z-index: 1000;

	transition: all 0.2s ease;
}

.nav-item-with-panel:hover .submenu-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.submenu-panel a {
	display: block;
	padding: 8px 12px;
	white-space: nowrap;
}

@media (max-width: 768px) {

	header {
		align-items: flex-start;
	}

	header > a {
		align-self: flex-start;
		flex-shrink: 0;
		padding-top: 8px;
	}

	.menu-button {
		display: block;
	}

	.nav-inner {
		flex-wrap: wrap;
	}

	.nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 6px;
		padding: 18px 0 24px;
	}

	.nav-links.is-open {
		display: flex;
	}

	/* Hauptmenüpunkte */

	.nav-links > a,
	.nav-item-with-panel > a,
	.submenu-title {
		display: block;
		padding: 10px 14px;
		font-weight: 600;
		border-radius: 10px;
		transition: background .2s ease, color .2s ease;
	}

	.nav-links > a:hover,
	.nav-links > a.active,
	.nav-item-with-panel > a:hover,
	.nav-item-with-panel > a.active,
	.submenu-title:hover {
		background: rgba(255,153,0,.08);
	}

	/* Untermenü */

	.nav-item-with-panel {
		padding-bottom: 8px;
	}

	.submenu-panel {
		position: static;
		margin-top: 4px;
		margin-left: 12px;
		padding: 4px 0 4px 16px;

		border-left: 2px solid rgba(255,153,0,.25);

		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
	}

	.submenu-panel a {
		display: block;
		padding: 8px 12px;
		font-size: .95em;
		color: #555 !important;
		border-radius: 8px;
		white-space: normal;
	}

	.submenu-panel a:hover,
	.submenu-panel a.active {
		background: rgba(255,153,0,.06);
		color: var(--color-primary) !important;
	}

}/**
 * banner.css
 */
.banner,
.banner * {
	box-sizing: border-box;
}
.banner {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 6;
	min-height: 420px;
	max-height: 720px;
	overflow: hidden;
	isolation: isolate;
	--title-size: clamp(30px, 3.6vw, 56px);
}
.banner .background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.banner.gradient::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
			90deg,
			rgb(240 232 220 / .99) 0%,
			rgb(245 237 226 / .96) 12%,
			rgb(250 244 236 / .88) 24%,
			rgb(253 250 246 / .62) 40%,
			rgb(255 255 255 / .20) 54%,
			transparent 66%
	);
	pointer-events: none;
}
/* Auf kleinen Screens grundsätzlich Bannerverlauf von oben nach unten */
@media (max-width: 768px) {
	.banner::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
	}
	.banner::before,
	.banner.gradient::before {
		background: linear-gradient(
				180deg,
				rgb(240 232 220 / .99) 0%,
				rgb(245 237 226 / .96) 15%,
				rgb(250 244 236 / .88) 30%,
				rgb(253 250 246 / .60) 48%,
				rgb(255 255 255 / .18) 62%,
				transparent 78%
		);
	}
}
.banner .banner-content {
	position: relative;
	width: min(1400px, calc(100% - 40px));
	height: 100%;
	margin: 0 auto;
}
.banner .text {
	position: absolute;
	top: 10%;
	left: 7%;
	width: 38%;
	max-width: 650px;
	z-index: 2;
	opacity: 0;
	transform: translateX(-30px);
	animation: bannerText .7s ease-out .15s forwards;
}
@keyframes bannerText {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.banner .text .title {
	margin: 0 0 clamp(14px, 1.5vw, 24px);
	font-size: var(--title-size);
	line-height: 1.15;


}
.banner .text .slogan {
	color: var(--color-primary);
	margin: 0;
	font-size: calc(var(--title-size) * 0.66);
	font-weight: 300;
	line-height: 1.25;
	text-shadow:
			0 -1px 1px rgba(255,255,255,.35),
			0 2px 4px rgba(0,0,0,.20);
}

.banner.gradient .text .slogan {
	color: var(--color-primary);
}
.banner .inner {
	position: absolute;
	right: 0;
	bottom: 3%;
	width: min(68%, 980px);
	max-height: 88%;
	height: auto;
	object-fit: contain;
	z-index: 1;
	opacity: 0;
	transform: translateY(30px) scale(.97);
	animation: bannerInner .7s ease-out .15s forwards;
}
@keyframes bannerInner {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 992px) {
	.banner {
		min-height: 340px;
	}
}
@media (max-width: 850px) {
	.banner {
		min-height: 260px;
	}
}
@media (max-width: 600px) {
	.banner {
		aspect-ratio: auto;
		min-height: 0;
		height: auto;
		max-height: 500px;
		padding: 45px 20px 30px;
		overflow: hidden;
		--title-size: clamp(38px, 8vw, 52px);
	}
	.banner .banner-content {
		position: relative;
		width: 100%;
		height: auto;
		min-height: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 28px;
	}
	.banner .text {
		position: static;
		left: 0;
		margin: 0;
		padding: 0 10px;
		width: 100%;
		max-width: none;
		box-sizing: border-box;
	}
	.banner .text .title {
		line-height: 1.15;
		word-break: normal;
		overflow-wrap: break-word;
	}
	.banner .text .slogan {
		font-size: calc(var(--title-size) * 0.60);
		line-height: 1.3;
	}
	.banner .inner {
		position: static;
		order: 2;
		width: min(115%, 620px);
		max-width: none;
		max-height: none;
		height: auto;
		transform: none;
		margin: 0 -7.5%;
	}
}/**
 * layout.css
 */
.content-section {
	width: 100%;
	padding-block: 50px;
}
.content-section.topless {
	padding-top: 0;
}
/* Bereich mit farbigem Hintergrund */
.content-section.colored {
	background: var(--color-surface);
}
/* Bereich mit Farbverlauf im Hintergrund */
.content-section.gradient {
	background:
			radial-gradient(
					ellipse at 10% 0%,
					rgb(var(--color-primary-rgb) / 0.12),
					transparent 42%
			),
			radial-gradient(
					ellipse at 95% 100%,
					rgb(var(--color-surface-dark-rgb) / 0.5),
					transparent 45%
			),
			#f8f9fc;
}
/* Bereich, in dem ein fixes Bild dargestellt wird, das mitscrollt */
.content-section.image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 400px;
}
@media (max-width: 900px) {
	.content-section.image {
		min-height: 200px !important;
		max-height: 200px !important;
		background-size: auto 200%;
		background-position: center 48%;
	}
}
/* Bereich mit Hintergrundbild => Bild muss noch irgendwo mit css background-image: ... definiert werden */
.content-section.bgImage {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 70px 0 50px 0;
}
/* Bereich mit animiertem Hintergrund */
.bgAnimated {
	position: relative;
	overflow: hidden;
	--parallax-x: 0px;
	--parallax-y: 0px;
}
.bgAnimated::before {
	content: "";
	position: absolute;
	inset: -120px;
	z-index: 0;
	pointer-events: none;
	will-change: transform;
	background:
			radial-gradient(
					ellipse 560px 440px at var(--orange-x, 8%) 18%,
					rgb(var(--color-primary-rgb) / .45) 0%,
					rgb(var(--color-primary-rgb) / .30) 35%,
					rgb(var(--color-primary-rgb) / .10) 60%,
					transparent 68%
			),
			radial-gradient(
					ellipse 800px 560px at var(--blue-x, 92%) 82%,
					rgb(var(--color-surface-accent-rgb) / .52) 0%,
					rgb(var(--color-surface-accent-rgb) / .26) 38%,
					rgb(var(--color-surface-accent-rgb) / .09) 62%,
					transparent 70%
			),
			linear-gradient(
					120deg,
					transparent 30%,
					rgb(255 255 255 / .55) 46%,
					rgb(255 255 255 / .12) 56%,
					transparent 68%
			),
			linear-gradient(
					135deg,
					var(--color-primary-light) 0%,
					#ffffff 48%,
					var(--color-surface) 100%
			);

	transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
}
.bgAnimated .content-inner {
	position: relative;
	z-index: 2;
}
@media (max-width: 00px) {
	.bgAnimated::before {
		--orange-x: 12%;
		--blue-x: 88%;
	}
}
/* Bereich mit heller Schrift z. B. bei dunklem Hintergrundbild */
.content-section.invers,
.content-section.invers h2,
.content-section.invers h3 {
	color: #f5f5f5;
}
.content-inner {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;
	padding-inline: clamp(12px, 3vw, 60px);
}
.content-inner.centered,
.content-inner h2 {
	place-items: center;
	text-align: center;
}


/* Spaltenansicht */
.columns {
	display: flex;
	gap: 80px;
}
.columns .col {
	flex: 1;
	text-align: left;
}

/* Spaltenansicht (2-spaltig) */
@media (max-width: 900px)
{
	.columns {
		flex-direction: column;
		gap: 0;
	}
	.columns .col.left {
		margin-bottom: 25px;
	}
	.swap {
		flex-direction: column !important;
	}
}


/* YouTube-Video */
lite-youtube {
	width: min(560px, calc(100vw - 30px));
}

/* Button */
button,
.button {
 	background: #ff9900;
	color: #f5f5f5;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	cursor: pointer;

	display: inline-block;
	transition:
			transform .2s ease,
			box-shadow .2s ease,
			background-color .25s ease;
}
button:hover,
.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.button:active {
	transform: translateY(1px);
}

/* checkbox */
.checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}
.checkmark {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	border: 2px solid #ff9800;
	border-radius: 7px;
	background: #fff;
	position: relative;
	transition: all .2s ease;
}
.checkbox:hover .checkmark {
	box-shadow: 0 0 0 4px rgba(255,152,0,.15);
}
.checkbox input:checked + .checkmark {
	background: #ff9800;
	border-color: #ff9800;
}
.checkbox input:checked + .checkmark::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 3px;
	width: 7px;
	height: 14px;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

/* Popup */
.popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.popup {
	width: min(90%, 420px);
	padding: 30px;
	border-radius: 12px;
	background: #fff;
	text-align: center;
	box-shadow: 0 15px 50px rgba(0, 0, 0, .25);
}
.popup button {
	margin-top: 20px;
}
/**
 * footer.css
 */

#footer {
	background: var(--color-primary);
	padding: 7px 25px;
	text-align:right;
	font-size:14px;
}
#footer,
#footer a {
	color: #f5f5f5;
	text-decoration:none;
}
#footer a:hover {
	text-decoration:underline;
}
#footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 600px) {
	.footer-left {
		display: none;
	}
	#footer-inner {
		justify-content: center;
	}
}/**
 * footerPre.css
 */

#footerPre h2 {
	text-align: left;
}
#footerPre ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
#footerPre li {
	display: flex;
	align-items: center;
}
#footerPre .col.left li,
#footerPre .col.center li {
	gap: 7px;
}
#footerPre .col.right li {
	gap: 0;
}
#footerPre svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	stroke-width: 1.5;
}
#footerPre .col.center li svg {
	stroke: var(--color-primary);
}
/**
 * accordion.css
 */
.accordion {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.acc-item {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	overflow: hidden;
	transition:
			border-color .2s ease,
			box-shadow .2s ease;
}
.acc-item + .acc-item {
	margin-top: 14px;
}
.acc-item:hover {
	border-color: #d8d8d8;
}
.acc-item[open] {
	border-color: rgb(var(--color-primary-rgb) / .4);
	box-shadow: 0 10px 30px rgb(0 0 0 / .06);
}
.acc-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 22px 24px;
	cursor: pointer;
	font-weight: 600;
	line-height: 1.35;
	list-style: none;
	user-select: none;
}
/* Standard-Pfeil ausblenden */
.acc-item summary::-webkit-details-marker {
	display: none;
}
.acc-item summary::marker {
	display: none;
	content: "";
}
.acc-item summary:hover {
	color: var(--color-primary);
}
.acc-item summary svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .25s ease;
}
.acc-item[open] summary svg {
	transform: rotate(180deg);
}
.acc-answer {
	padding: 0 24px 22px;
	color: #666;
	line-height: 1.65;
}
.acc-answer p {
	margin: 0;
}
@media (max-width: 600px) {
	.acc-item summary {
		padding: 18px 20px;
	}
	.acc-answer {
		padding: 0 20px 20px;
	}
}/**
 * imageAndText.css
 */
.imageWithText .col.left {
    padding-top: 20px;
    text-align: center;
}
.imageWithText img {
    max-width: 100%;
    height: auto;
}
.imageWithText,
.imageWithText h2 {
    text-align: left;
}
.imageWithText.swap {
    flex-direction: row-reverse;
}


/* A N I M A T I O N */

.imageWithText {
    overflow: hidden;
}

.imageWithText .col {
    opacity: 0;
    transition:
            opacity .50s ease,
            transform .55s cubic-bezier(.22, 1, .36, 1);

    will-change: opacity, transform;
}

/* Standard: Bild von links, Text von rechts */
.imageWithText .left {
    transform: translateX(-50px);
}

.imageWithText .right {
    transform: translateX(50px);
}

/* Bei swap genau umdrehen */
.imageWithText.swap .left {
    transform: translateX(50px);
}

.imageWithText.swap .right {
    transform: translateX(-50px);
}

/* Sichtbar */
.imageWithText .col.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Text minimal verzögert */
.imageWithText .right {
    transition-delay: .08s;
}

/* Smartphone */
@media (max-width: 900px) {

    .imageWithText .left,
    .imageWithText .right {
        transform: translateY(28px);
    }

    .imageWithText .col.is-visible {
        transform: translateY(0);
    }

    .imageWithText .right {
        transition-delay: .06s;
    }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {

    .imageWithText .col {
        opacity: 1;
        transform: none;
        transition: none;
    }

}/**
 * list.css
 */
.list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(50px, 7vw, 80px);
	row-gap: 20px;
	padding-bottom: 40px;
}
.list,
.list .item,
.list .item .content {
	min-width: 0;
}
.list .item {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	align-items: start;
	gap: 5px;
}
.list .item .icon-wrap {
	display: grid;
	place-items: center;
	margin-top: 10px;
}
.list .item .icon-wrap svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.list .item .icon-wrap.colored svg {
	stroke: var(--color-primary);
}
.list .item .content {
	font-size: clamp(20px, calc(0.6vw + 15px), 22px);
	line-height: 1.4;
}
.list .item .content strong {
	font-weight: 500;
}

@media (max-width: 900px) {
	.list {
		column-gap: 40px;
	}
}

@media (max-width: 760px) {
	.content-section:has(.list) {
		padding-inline: 20px;
	}
	.list {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}
	.list .item .icon-wrap {
		margin-top: 8px;
	}
}

@media (max-width: 440px) {
	.list .item {
		grid-template-columns: 28px minmax(0,1fr);
		gap: 12px;
	}
	.list .item .content {
		width: calc(100vw - 100px);
	}
}


/* A N I M A T I O N */

.list {
	overflow: hidden;
}
.list .item {
	opacity: 0;
	transition:
			opacity .48s ease,
			transform .52s cubic-bezier(.22, 1, .36, 1);
	will-change: opacity, transform;
}

/* Linke Spalte */
.list .item:nth-child(odd) {
	transform: translateX(-32px);
}

/* Rechte Spalte */
.list .item:nth-child(even) {
	transform: translateX(32px);
}

/* Sichtbarer Zustand */
.list .item.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Smartphone: einheitlich leicht von unten */
@media (max-width: 700px) {
	.list {
		grid-template-columns: 1fr;
	}

	.list .item:nth-child(odd),
	.list .item:nth-child(even) {
		transform: translateY(24px);
	}

	.list .item.is-visible {
		transform: translateY(0);
	}
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
	.list .item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}/**
 * listIconsLeft.css
 */
.listIcLe {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(40px, 6vw, 90px);
	row-gap: clamp(32px, 4vw, 48px);
}
.listIcLe,
.listIcLe .item,
.listIcLe .item .content {
	min-width: 0;
}
.listIcLe .item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: start;
	gap: 5px;
}
.listIcLe .item .icon-wrap {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid #ffe1cc;
	border-radius: 50%;
	background: var(--color-primary-light);
	box-shadow: 0 10px 30px rgba(40, 50, 70, 0.06);
}
.listIcLe .item .icon-wrap svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.listIcLe .item .icon-wrap.colored svg {
	stroke: var(--color-primary);
}
.listIcLe .item .content {
	width: auto;
	max-width: 100%;
	white-space: normal;
}

.listIcLe .item .content h3,
.listIcLe .item .content p {
	max-width: 100%;
	white-space: normal;
	overflow-wrap: break-word;
}
.listIcLe .item .content h3 {
	margin: 0 0 6px;
	line-height: 1.25;
}
.listIcLe .item .content p {
	margin: 0;
}

@media (max-width: 760px) {
	.content-section:has(.listIcLe) {
		padding-inline: 20px;
	}
	.listIcLe {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}
}

@media (max-width: 440px) {
	.listIcLe .item {
		grid-template-columns: 64px minmax(0, 1fr);
		align-items: start;
		gap: 10px;
	}
	.listIcLe .item .content {
		width: calc(100vw - 119px);
	}
	.listIcLe .item .content h3 {
		margin-top: 2px;
	}
}


/* A N I M A T I O N */

/* Ausgangszustand */
.listIcLe .item .icon-wrap,
.listIcLe .item .content {
	opacity: 0;
	transform: translateY(28px);
	transition:
			opacity .48s ease,
			transform .48s cubic-bezier(.22, 1, .36, 1);
}

/* Sichtbar */
.listIcLe .item.is-visible .icon-wrap,
.listIcLe .item.is-visible .content {
	opacity: 1;
	transform: translateY(0);
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
	.listIcLe .item .icon-wrap,
	.listIcLe .item .content {
		opacity: 1;
		transform: none;
		transition: none;
	}
}/**
 * listIconsLeftFramed.css
 */
.listIcLeFr {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 2.5vw, 32px);
}

.listIcLeFr,
.listIcLeFr .item,
.listIcLeFr .item .content {
	min-width: 0;
}
.listIcLeFr .item {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	padding: clamp(22px, 2vw, 30px);
	background: #fff;
	border: 1px solid rgba(40, 50, 70, 0.09);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(40, 50, 70, 0.05);
}
.listIcLeFr .item .icon-wrap {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: transparent;
}
.listIcLeFr .item .icon-wrap.colored {
	background: var(--color-primary-light);
}
.listIcLeFr .item .icon-wrap svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.listIcLeFr .item .icon-wrap.colored svg {
	stroke: var(--color-primary);
}
.listIcLeFr .item .content {
	width: auto;
	max-width: 100%;
}
.listIcLeFr .item .content h3 {
	margin: 0 0 7px;
	line-height: 1.25;
}
.listIcLeFr .item .content h3.longItemTitle {
	min-height: 2.5em;
}
.listIcLeFr .item .content p {
	margin: 0;
	line-height: 1.6;
}
.listIcLeFr .item .content h3,
.listIcLeFr .item .content p {
	max-width: 100%;
	white-space: normal;
	overflow-wrap: break-word;
}

@media (max-width: 1050px) {
	.listIcLeFr {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.listIcLeFr {
		grid-template-columns: minmax(0, 1fr);
	}
	.listIcLeFr .item .content h3 {
		min-height: auto;
	}
}


/* A N I M A T I O N */

.listIcLeFr {
	perspective: 1200px;
}

.listIcLeFr .item {
	opacity: 0;
	transform: rotateY(-35deg);
	transform-origin: left center;
	backface-visibility: hidden;

	transition:
			opacity .45s ease,
			transform .58s cubic-bezier(.22, 1, .36, 1);

	will-change: opacity, transform;
}

.listIcLeFr .item.is-visible {
	opacity: 1;
	transform: rotateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.listIcLeFr .item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}/**
 * listIconsTop.css
 */
/* Icon-Grid (z. B. "Vorteile") */
.listIcTo {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 50px;
	row-gap: 60px;
}
.listIcTo .item {
	text-align: center;
}
.listIcTo .item .icon-wrap svg {
	width: 48px;
	height: 48px;
	stroke-width: 1.4;
}
.listIcTo .item .icon-wrap.colored svg {
	stroke: var(--color-primary);
}
.listIcTo .item p {
	max-width: 360px;
	margin: 0 auto;
	line-height: 1.4;
}


/* Icon-Grid responsive */
@media (max-width: 1200px) {
	.listIcTo {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 700px) {
	.listIcTo {
		grid-template-columns: 1fr;
	}
}


/* A N I M A T I O N */

/* Zoom-Effekt */
.listIcTo .item {
	opacity: 0;
	transform: scale(0.94);
	transform-origin: center center;
	transition:
			opacity 0.6s ease,
			transform 0.6s cubic-bezier(.22, 1, .36, 1);
	will-change: opacity, transform;
}

.listIcTo .item.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
	.listIcTo .item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}/**
 * process.css
 */
.process {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(24px, 2.5vw, 44px);
	margin-top: 20px;
}

.process .item {
	position: relative;
	min-width: 0;
	text-align: center;
}

.process .item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 52px;
	left: calc(50% + 62px);
	width: calc(100% - 80px);
	border-top: 3px dotted;
	border-color: var(--color-primary);
}
.process .icon-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	margin: 0 auto clamp(28px, 2.5vw, 38px);
	color: var(--color-primary);
	background: var(--color-primary-light);
	border-radius: 50%;
}
.process .icon-wrap svg {
	color: var(--color-primary);
	width: 52px;
	height: 52px;
	stroke-width: 1.7;
}
.process .content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.process .content h3 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 2.4em;
	margin: 0 0 10px;
	line-height: 1.2;
	font-size: clamp(16px, 1vw + 9px, 19px);
	font-weight: 550;
	text-align: center;
}
.process .content p {
	margin: 0;
	max-width: 230px;
	line-height: 1.5;
	text-align: center;
}


/* Tablet */
@media (max-width: 1200px) {
	.process {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 56px;
	}
	.process .content h3 {
		height: auto;
		margin-bottom: 7px;
	}
}

@media (min-width: 701px) and (max-width: 1200px) {
	.process .item:nth-child(3n)::after {
		display: none;
	}
}

/* Smartphone */
@media (max-width: 700px) {
	.process {
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 36px;
	}
	.process .item {
		display: grid;
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 20px;
		align-items: start;
		padding-bottom: 34px;
		text-align: left;
	}
	.process .item:last-child {
		padding-bottom: 0;
	}
	.process .item:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 74px;
		left: 37px;
		bottom: -34px;
		width: 0;
		border-top: 0;
		border-left: 3px dotted var(--color-primary);
	}
	.process .icon-wrap {
		width: 76px;
		height: 76px;
		margin: 0;
	}
	.process .icon-wrap svg {
		width: 38px;
		height: 38px;
	}
	.process .content {
		align-items: flex-start;
		padding-top: 7px;
	}
	.process .content h3 {
		margin-bottom: 7px;
		font-size: clamp(18px, 3.8vw, 21px);
		line-height: 1.25;
		text-align: left;
	}
	.process .content p {
		max-width: none;
		margin: 0;
		text-align: left;
	}
}


/* A N I M A T I O N */

/* Prozess: von links nach rechts */
.process .item {
	opacity: 0;
	transform: translateX(-35px);
	transition:
			opacity 1s ease,
			transform 1s cubic-bezier(.22, 1, .36, 1);
}
.process .item.is-visible {
	opacity: 1;
	transform: translateX(0);
}/**
 * references.css
 */

.content-section:has(.reference-grid) {
	padding-top: 70px;
	padding-bottom: 60px;
}


/* Raster */

.reference-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
	perspective: 1200px;
}


/* Referenzkarte */

.reference-grid .item {
	--card-offset: 0px;
	--card-hover: 0px;
	--card-rotate: -35deg;

	position: relative;
	display: flex;
	min-height: 320px;
	overflow: hidden;
	flex-direction: column;

	padding:
			clamp(16px, 1.4vw, 20px)
			clamp(22px, 2.2vw, 32px);

	color: inherit;
	text-decoration: none;

	opacity: 0;

	background:
			linear-gradient(
					145deg,
					rgb(255 255 255 / 0.98),
					rgb(250 251 253 / 0.96)
			);

	border: 1px solid #e2e7ed;
	border-radius: 28px;

	box-shadow:
			0 16px 42px rgb(34 47 68 / 0.07),
			0 3px 8px rgb(34 47 68 / 0.03);

	transform:
			translateY(calc(var(--card-offset) + var(--card-hover)))
			rotateY(var(--card-rotate));

	transform-origin: left center;
	backface-visibility: hidden;

	transition:
			opacity .6s ease,
			transform .6s cubic-bezier(.22, 1, .36, 1),
			border-color .35s ease,
			box-shadow .35s ease;

	will-change: opacity, transform;
}


/* Eingeblendeter Zustand */

.reference-grid .item.is-visible {
	--card-rotate: 0deg;

	opacity: 1;
}


/* Mittlere Karte jeder Dreierreihe nach unten versetzen */

.reference-grid .item:nth-child(3n + 2) {
	--card-offset: 32px;
}


/* Dekorativer Lichtschein */

.reference-grid .item::before {
	position: absolute;
	top: -120px;
	right: -120px;

	width: 260px;
	height: 260px;

	background:
			radial-gradient(
					circle,
					rgb(255 153 0 / 0.10),
					transparent 68%
			);

	border-radius: 50%;
	content: "";

	transition: transform .5s ease;
}


/* Orange Linie */

.reference-grid .item::after {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 4px;

	background:
			linear-gradient(
					90deg,
					var(--color-primary, #ff9900),
					rgb(255 153 0 / 0.18)
			);

	content: "";

	transform: scaleX(0);
	transform-origin: left;

	transition: transform .35s ease;
}


/* Hover */

.reference-grid .item:hover {
	--card-hover: -9px;

	border-color: rgb(255 153 0 / 0.35);

	box-shadow:
			0 26px 65px rgb(34 47 68 / 0.13),
			0 8px 18px rgb(34 47 68 / 0.05);
}

.reference-grid .item:hover::before {
	transform: scale(1.18);
}

.reference-grid .item:hover::after {
	transform: scaleX(1);
}


/* Kartenkopf */

.reference-grid .card-top {
	position: relative;
	z-index: 1;

	display: flex;
	align-items: flex-start;
	justify-content: space-between;

	gap: 40px;
}


/* Logo */

.reference-grid .logo {
	display: flex;
	width: 150px;
	height: 90px;
	align-items: center;
	justify-content: flex-start;
}

.reference-grid .logo img {
	display: block;

	width: 100%;
	max-width: 150px;
	max-height: 80px;

	object-fit: contain;
	object-position: left center;

	filter: grayscale(1);
	opacity: .78;

	transition:
			filter .35s ease,
			opacity .35s ease,
			transform .35s ease;
}

.reference-grid .item:hover .logo img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.03);
}


/* Kategorie */

.reference-grid .category {
	display: inline-flex;
	align-items: center;

	min-height: 30px;
	padding: 5px 10px;

	color: #8d5c11;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;

	background: rgb(255 153 0 / 0.10);
	border: 1px solid rgb(255 153 0 / 0.15);
	border-radius: 100px;
}


/* Inhalt */

.reference-grid .content {
	position: relative;
	z-index: 1;

	margin-top: 7px;
}

.reference-grid .content p {
	margin: 0;
}


/* Footer */

.reference-grid .footer {
	position: relative;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: auto;
	padding-top: 32px;

	color: #4d535c;
	font-size: 15px;
	font-weight: 700;
}

.reference-grid .footer svg {
	width: 24px;
	height: 24px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
			color .3s ease,
			transform .3s ease;
}

.reference-grid .item:hover .footer svg {
	color: var(--color-primary, #ff9900);
	transform: translateX(6px);
}


/* Tastaturbedienung */

.reference-grid .item:focus-visible {
	outline: 3px solid rgb(255 153 0 / 0.45);
	outline-offset: 5px;
}


/* Abschluss */

.reference-footer {
	margin-top: 80px;

	font-size: clamp(30px, calc(1.2vw + 24px), 42px);
	font-style: italic;
	font-weight: 400;
	text-align: center;
}


/* Tablet */

@media (max-width: 1100px) {
	.reference-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Desktop-Versatz zurücksetzen */
	.reference-grid .item:nth-child(3n + 2) {
		--card-offset: 0px;
	}

	/* Rechte Karte jeder Zweierreihe versetzen */
	.reference-grid .item:nth-child(even) {
		--card-offset: 24px;
	}
}


/* Smartphone */

@media (max-width: 700px) {
	.reference-grid {
		grid-template-columns: 1fr;
	}

	.reference-grid .item,
	.reference-grid .item:nth-child(3n + 2),
	.reference-grid .item:nth-child(even) {
		--card-offset: 0px;
	}

	.reference-grid .item {
		min-height: 280px;
		padding: 28px 24px;
		border-radius: 24px;
	}

	.reference-grid .logo {
		width: 125px;
		height: 75px;
	}

	.reference-grid .logo img {
		max-width: 125px;
		max-height: 65px;
	}

	.reference-grid .content {
		margin-top: 28px;
	}
}


/* Bewegung reduzieren */

@media (prefers-reduced-motion: reduce) {
	.reference-grid .item {
		--card-hover: 0px;
		--card-rotate: 0deg;

		opacity: 1;
		transition: none;
	}

	.reference-grid .item::before,
	.reference-grid .item::after,
	.reference-grid .logo img,
	.reference-grid .footer svg {
		transition: none;
	}
}/**
 * referenzen.css
 */
.references-stats,
.references-stats * {
	box-sizing: border-box;
}

.references-stats {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 120px) 0;
}

.references-stats .content-inner {
	position: relative;
	z-index: 1;
}

/* Überschrift */

.references-stats .section-heading {
	max-width: 760px;
	margin: 0 auto clamp(48px, 6vw, 78px);
	text-align: center;
}

.references-stats .eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--color-primary, #ff9900);
	font-size: 14px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.references-stats .section-heading h2 {
	margin: 0;
}

.references-stats .section-heading p {
	max-width: 680px;
	margin: 18px auto 0;
	color: #6d7480;
}

/* Kennzahlen */

.reference-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	background: rgb(255 255 255 / .86);
	border: 1px solid rgb(219 226 235 / .9);
	border-radius: 24px;
	box-shadow:
			0 24px 70px rgb(31 41 55 / .08),
			0 5px 18px rgb(31 41 55 / .04);
	backdrop-filter: blur(12px);
}

.reference-stat {
	position: relative;
	display: flex;
	min-height: 250px;
	padding: clamp(28px, 3vw, 42px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.reference-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 34px;
	right: 0;
	bottom: 34px;
	width: 1px;
	background: linear-gradient(
			to bottom,
			transparent,
			#dce3ec 20%,
			#dce3ec 80%,
			transparent
	);
}

/* Icon */

.reference-stat__icon {
	display: grid;
	width: 64px;
	height: 64px;
	margin-bottom: 22px;
	place-items: center;
	color: var(--color-primary);
	background: var(--color-primary-light);
	border: 1px solid var(--color-primary);
	border-radius: 32px;
}

.reference-stat__icon svg {
	color: var(--color-primary);
	width: 32px;
	height: 32px;
}

/* Text */

.reference-stat__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reference-stat__value {
	display: flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	color: #2f343b;
	font-size: clamp(34px, 3vw, 52px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.035em;
}

.reference-stat__label {
	display: flex;
	min-height: 44px;
	max-width: 220px;
	margin-top: 13px;
	align-items: flex-start;
	justify-content: center;
	color: #6f7680;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	text-align: center;
}

/* Hover */

@media (hover: hover) {
	.reference-stat {
		transition:
				background 180ms ease,
				transform 180ms ease;
	}

	.reference-stat:hover {
		z-index: 2;
		background: #ffffff;
		transform: translateY(-3px);
	}

	.reference-stat__icon {
		transition:
				transform 180ms ease,
				background 180ms ease;
	}

	.reference-stat:hover .reference-stat__icon {
		background: rgb(255 153 0 / .16);
		transform: translateY(-2px);
	}
}

/* Tablet */

@media (max-width: 980px) {
	.reference-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reference-stat:nth-child(2)::after {
		display: none;
	}

	.reference-stat:nth-child(-n + 2)::before {
		content: "";
		position: absolute;
		right: 32px;
		bottom: 0;
		left: 32px;
		height: 1px;
		background: linear-gradient(
				to right,
				transparent,
				#dce3ec 18%,
				#dce3ec 82%,
				transparent
		);
	}
}

/* Smartphone */

@media (max-width: 580px) {
	.references-stats {
		padding: 64px 0;
	}

	.references-stats .section-heading {
		margin-bottom: 38px;
		text-align: left;
	}

	.references-stats .section-heading p {
		margin-left: 0;
	}

	.reference-stats-grid {
		grid-template-columns: 1fr;
		border-radius: 18px;
	}

	.reference-stat {
		min-height: auto;
		padding: 30px 24px;
		flex-direction: row;
		justify-content: flex-start;
		gap: 20px;
		text-align: left;
	}

	.reference-stat:not(:last-child)::after,
	.reference-stat:nth-child(-n + 2)::before {
		display: none;
	}

	.reference-stat:not(:last-child) {
		border-bottom: 1px solid #e2e7ee;
	}

	.reference-stat__icon {
		width: 56px;
		height: 56px;
		margin: 0;
		flex: 0 0 auto;
	}

	.reference-stat__content {
		align-items: flex-start;
	}

	.reference-stat__value {
		font-size: 34px;
	}

	.reference-stat__label {
		max-width: none;
		margin-top: 7px;

	}
	.reference-stat__value,
	.reference-stat__label {
		min-height: 0;
	}
}/**
 * tiles.css
 */
.content-section .tiles {
	width: 100%;
	padding-bottom: 30px;
}
.content-section .tiles *,
.content-section .tiles *::before,
.content-section .tiles *::after {
	box-sizing: border-box;
}

/* Grid */
.tiles .grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
/* Einzelne Kachel */
.tiles .item {
	position: relative;
	display: flex;
	min-height: 260px;
	overflow: hidden;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	box-shadow:
			0 3px 10px rgba(0, 0, 0, 0.04),
			0 12px 30px rgba(0, 0, 0, 0.06);
	transition:
			transform 0.25s ease,
			box-shadow 0.25s ease,
			border-color 0.25s ease;
}
.tiles .item:hover {
	transform: translateY(-5px);
	border-color: rgb(var(--color-primary-rgb) / .4);
	box-shadow:
			0 8px 20px rgba(0, 0, 0, 0.06),
			0 18px 40px rgba(0, 0, 0, 0.10);
}


/* Hintergrundbild */
.tiles .item > img {
	position: absolute;
	inset: 0 0 0 auto;
	width: 68%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}
.tiles .item:hover > img {
	transform: scale(1.035);
}


/*
 * Verlauf über das Bild:
 * links vollständig weiß,
 * nach rechts zunehmend transparent
 */
.tiles .item::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
			90deg,
			#fff 0%,
			#fff 32%,
			rgba(255, 255, 255, 0.97) 43%,
			rgba(255, 255, 255, 0.78) 57%,
			rgba(255, 255, 255, 0.20) 78%,
			rgba(255, 255, 255, 0) 100%
	);
	pointer-events: none;
}


/* Inhalt */

.tiles .item .content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	width: 58%;
	min-height: 260px;
	padding: 24px 18px 22px 24px;
}

.tiles .item h3 {
	margin: 14px 0 9px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.tiles .item p {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.55;
}


/* Icon-Kreis */

.tiles .icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	color: var(--color-primary);
	font-size: 27px;
	line-height: 1;
	background: var(--color-primary-light);
	border: 1px solid rgba(242, 106, 0, 0.15);
	border-radius: 50%;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}
.tiles .icon-wrap svg {
	width: 55%;
	height: 55%;
	color: var(--color-primary);
}


/* Pfeil */

.tiles .arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-top: auto;
	color: var(--color-primary);
	font-size: 20px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid;
	border-color: var(--color-primary);;
	border-radius: 50%;
	transition:
			color 0.2s ease,
			background-color 0.2s ease,
			transform 0.2s ease;
}

.tiles .item:hover .arrow {
	color: #fff;
	background: var(--color-primary);
	transform: translateX(3px);
}


/* Tastaturbedienung */
.tiles .item:focus-visible {
	outline: 3px solid rgba(242, 106, 0, 0.35);
	outline-offset: 4px;
}

/* Tablet: zwei Spalten */
@media (max-width: 1100px) {
	.tiles .grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* Smartphone: eine Spalte */

@media (max-width: 700px) {
	.tiles .grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.tiles .item {
		min-height: 280px;
	}
	.tiles .item > img {
		width: 100%;
	}
	.tiles .item::before {
		background: linear-gradient(
				90deg,
				#fff 0%,
				rgba(255, 255, 255, 0.98) 40%,
				rgba(255, 255, 255, 0.87) 62%,
				rgba(255, 255, 255, 0.35) 100%
		);
	}
	.tiles .item .content {
		width: 72%;
		min-height: 280px;
		padding: 22px;
	}
}


/* Sehr kleine Displays */

@media (max-width: 430px) {
	.tiles .item .content {
		width: 82%;
	}
	.tiles .item h3 {
		font-size: 18px;
	}
	.tiles .item p {
		font-size: 14px;
	}
}/**
 * videoMonitor.css
 */
.content-section.video {
	padding-top: 80px;
	padding-bottom: 70px;
}

.videoMonitorWrapper,
.videoMonitorWrapper h2 {
	text-align: left;
}
.videoMonitorWrapper.swap {
	flex-direction: row-reverse;
}

.video-monitor,
.video-monitor * {
	box-sizing: border-box;
}
.video-monitor {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 4px;
}

/* Monitor */
.monitor {
	position: relative;
	width: 100%;
	background: linear-gradient(#444, #1d1d1d);
	padding: 14px;
	border-radius: 18px;
	box-shadow:
			0 18px 50px rgba(0, 0, 0, .18),
			0 4px 12px rgba(0, 0, 0, .15);
}
.monitor:hover .video-play,
.monitor:focus-within .video-play {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
.monitor:hover .video-preview {
	filter: brightness(.75);
	transform: scale(1.02);
}

/* Bildschirm */
.monitor .screen {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #000;
}
.monitor .video-youtube {
	display: none;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.monitor .video-youtube.is-active {
	display: block;
}

/* Stand */
.stand {
	width: 120px;
	height: 32px;
	margin: 0 auto;
	background: linear-gradient(#555, #2f2f2f);
	clip-path: polygon(
			35% 0,
			65% 0,
			85% 100%,
			15% 100%
	);
}

/* Fuß */
.base {
	width: 220px;
	height: 14px;
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(#666, #333);
	box-shadow:
			inset 0 2px 4px rgba(255, 255, 255, .15),
			0 6px 18px rgba(0, 0, 0, .18);
}

/* Automatisch laufende Videovorschau */
.video-preview {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition:
			filter .3s ease,
			transform .4s ease;
}
.video-preview.is-hidden {
	display: none;
}

/* Play-Button zum vollständigen Film */
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 56px;
	transform: translate(-50%, -50%) scale(.85);
	background: #ff0000;
	border-radius: 16px;
	color: #fff;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transition:
			opacity .25s ease,
			transform .25s ease,
			background .2s ease;
}
.video-play.is-hidden {
	display: none;
}
.video-play::before {
	content: "";
	margin-left: 3px;
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 18px solid #fff;
}
.video-play:hover {
	background: #e60000;
	transform:
			translate(-50%, -50%)
			scale(1.08);

}
.video-play:focus-visible {
	outline: 3px solid rgba(255, 153, 0, 0.45);
	outline-offset: 5px;
}

@media (max-width: 900px) {
	.video-monitor {
		margin-bottom: 40px;
	}
}

/* Mobile Ansicht */

@media (max-width: 700px) {
	.video-monitor {
		max-width: 100%;
		padding: 0 8px;
	}
	.monitor {
		padding: 9px;
		border-radius: 14px;
	}
	.monitor .screen {
		border-radius: 7px;
	}
	.stand {
		width: 90px;
		height: 26px;
	}
	.base {
		width: 165px;
		height: 12px;
	}
	.video-play {
		width: 68px;
		height: 48px;
		border-radius: 13px;
	}
	.video-play::before {
		margin-left: 3px;
		border-top-width: 9px;
		border-bottom-width: 9px;
		border-left-width: 15px;
	}
}


/* A N I M A T I O N */

.videoMonitorWrapper .col {
	opacity: 0;
	transition:
			opacity 1s ease,
			transform 1s cubic-bezier(.22, 1, .36, 1);

	will-change: opacity, transform;
}

/* Monitor leicht einzoomen */
.videoMonitorWrapper .left {
	transform: scale(.94);
}

/* Text von rechts */
.videoMonitorWrapper .right {
	transform: translateX(50px);
}

/* Sichtbar */
.videoMonitorWrapper .left.is-visible {
	opacity: 1;
	transform: scale(1);
}

.videoMonitorWrapper .right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Text leicht verzögert */
.videoMonitorWrapper .right {
	transition-delay: .08s;
}


/* Smartphone */

@media (max-width: 900px) {

	.videoMonitorWrapper .left,
	.videoMonitorWrapper .right {
		transform: translateY(28px);
	}

	.videoMonitorWrapper .col.is-visible {
		transform: translateY(0);
	}

	.videoMonitorWrapper .right {
		transition-delay: .06s;
	}

}


/* Bewegung reduzieren */

@media (prefers-reduced-motion: reduce) {

	.videoMonitorWrapper .col {
		opacity: 1;
		transform: none;
		transition: none;
	}

}/**
 * video.css
 */
.videoWithText .col.left {
	text-align: center;
}
.videoWithText .video-preview {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}
.videoWithText,
.videoWithText h2 {
	text-align: left;
}
.videoWithText.swap {
	flex-direction: row-reverse;
}


/* A N I M A T I O N */

.videoWithText .col {
	opacity: 0;
	transition:
			opacity 1s ease,
			transform 1s cubic-bezier(.22, 1, .36, 1);

	will-change: opacity, transform;
}

/* Video von links */
.videoWithText .left {
	transform: scale(.94);
}

/* Text von rechts */
.videoWithText .right {
	transform: translateX(50px);
}

/* Sichtbar */
.videoWithText .left.is-visible {
	opacity: 1;
	transform: scale(1);
}

.videoWithText .right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Text minimal verzögert */
.videoWithText .right {
	transition-delay: .08s;
}

/* Smartphone */
@media (max-width: 900px) {

	.videoWithText .left,
	.videoWithText .right {
		transform: translateY(28px);
	}

	.videoWithText .col.is-visible {
		transform: translateY(0);
	}

	.videoWithText .right {
		transition-delay: .06s;
	}
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {

	.videoWithText .col {
		opacity: 1;
		transform: none;
		transition: none;
	}

}lite-youtube {
	background-color: #000;
	position: relative;
	display: block;
	contain: content;
	background-position: center center;
	background-size: cover;
	cursor: pointer;
	max-width: 720px;
}

/* gradient */
lite-youtube::before {
	content: attr(data-title);
	display: block;
	position: absolute;
	top: 0;
	/* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
	background-image: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 54%) 14%, rgb(0 0 0 / 15%) 54%, rgb(0 0 0 / 5%) 72%, rgb(0 0 0 / 0%) 94%);
	height: 99px;
	width: 100%;
	font-family: "YouTube Noto",Roboto,Arial,Helvetica,sans-serif;
	color: hsl(0deg 0% 93.33%);
	text-shadow: 0 0 2px rgba(0,0,0,.5);
	font-size: 18px;
	padding: 25px 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	box-sizing: border-box;
}

lite-youtube:hover::before {
	color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
	content: "";
	display: block;
	padding-bottom: calc(100% / (16 / 9));
}
lite-youtube > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
}

/* play button */
lite-youtube > .lyt-playbtn {
	display: block;
	/* Make the button element cover the whole area for a large hover/click target… */
	width: 100%;
	height: 100%;
	/* …but visually it's still the same size */
	background: no-repeat center/68px 48px;
	/* YT's actual play button svg */
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
	position: absolute;
	cursor: pointer;
	z-index: 1;
	filter: grayscale(100%);
	transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
	border: 0;
}

lite-youtube:hover > .lyt-playbtn,
lite-youtube .lyt-playbtn:focus {
	filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
	cursor: unset;
}
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lyt-playbtn {
	opacity: 0;
	pointer-events: none;
}

.lyt-visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}