:root {
	--bg-main: #fff;
	--bg-main-dark: #212121;
	--bg-main-light: #f9f9f9;
	--blue: #aaeeff;
	--txt-main: #3a3a3a;
	--green: #aaffaa;
	--light-grey: #e3e3e3;
	--dark-grey: #7c7c7c;
	--accent: #317f92;
	--border-radius: 10px;
}

@font-face {
	font-family: robotolight;
	src: url(../fonts/roboto-light-webfont.woff2) format("woff2"),
		url(../fonts/roboto-light-webfont.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: FontAwesome;
	src: url(../fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),
		url(../fontawesome/webfonts/fa-regular-400.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: FontAwesomeBrands;
	src: url(../fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),
		url(../fontawesome/webfonts/fa-brands-400.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

.fa-brands {
	font-family: FontAwesomeBrands;
}

i {
	font-style: normal;
}

p,
li {
	font-size: 18px;
	line-height: 1.8;
}

b {
	font-weight: 600;
}

.wrapper {
	max-width: 1400px;
	/*display: inline-block;*/
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.wrapper h2,
section:not(.banner) .wrapper > h1:not(.blog) {
	margin-bottom: 0px;
	font-size: 20px;
	color: var(--dark-grey);
	text-align: center;
}

.wrapper > h2 + p,
.wrapper > h2 + h3,
.wrapper > h1 + h2 {
	font-size: 40px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 20px;
	text-align: center;
	color: var(--txt-main);
}

.wrapper img {
	max-width: 100%;
}

i.fa-shopware {
	margin-right: 10px;
}

html, body {
	width: 100%;
	height: 100%;
	background: var(--bg-main);
	font-family: robotolight, sans-serif;
	color: var(--txt-main);
	padding: 0;
	margin: 0;
}

/* Tools Block Styles */
.tools {
    /* No fixed background - automatically set by section:nth-child(even) */
}

.tools .wrapper {
    text-align: center;
}

.tools .icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tools .tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    border: 2px solid transparent;
    width: 100px;
    min-height: 90px;
}


.tools .tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* On light backgrounds (even sections) - different card color */
section:nth-child(even) .tools .tech-item {
    background: var(--bg-main);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* On normal/white backgrounds (odd sections) */
section:nth-child(odd) .tools .tech-item {
    background: var(--bg-main-light);
}

.tools .logo-span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tools .logo-span svg {
    width: 32px;
    height: 32px;
    fill: var(--dark-grey);
    transition: fill 0.3s ease;
}

.tools .tech-item:hover .logo-span svg {
    fill: var(--accent);
}

.tools .logo-span img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tools .tech-item:hover .logo-span img {
    filter: grayscale(0%);
}

h1 {
	margin: 0;
	font-size: 60px;
	text-align: center;
}

h1.blog {
	margin: 0px;
}

section h1 i {
	font-size: 80px;
}

h2 {
	font-size: 40px;
	margin-top: 0px;
}

h3 {
	font-size: 25px;
}

/* Flexible Heading System - H2 to H6 */
.h-label { 
	font-size: 20px; 
	color: var(--dark-grey); 
	text-align: center;
	margin-bottom: 0;
}

.h-section { 
	font-size: 40px; 
	font-weight: 700; 
	margin-top: 0; 
	margin-bottom: 20px;
	text-align: center;
	color: var(--txt-main);
}

.h-topic { 
	font-size: 25px; 
	margin-top: 0;
	text-align: center;
}

.h-category { 
	font-size: 18px; 
	font-weight: 600;
	text-align: center;
}

.center {
	text-align: center;
}

.grid {
	display: grid;
	align-items: start;
}

.grid.col-2 {
	grid-template-columns: 1fr 1fr;
}

.grid.col-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.grid.col-4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid.col-5 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.gap-20 {
	gap: 20px;
}

.gap-40 {
	gap: 40px;
}

.gap-100 {
	gap: 100px;
}

.grid .topic img {
	margin: 10px;
	margin-bottom: 0;
}

.grid .topic img:not(.image-type-icon) {
	height: 150px;
	width: auto;
}

.grid .topic img.image-type-icon {
	filter: brightness(0) saturate(100%) invert(24%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(98%) contrast(88%);
}

ul {
	padding-left: 0px;
}

.topic ul {
	--icon-space: 1.3em;
	text-align: left;
}

.topic ul li {
	margin-bottom: 10px;
	list-style: none;
	padding: 0;
}

.topic ul li {
	padding-left: var(--icon-space);
}

.grid.check-circle .topic ul li:before {
	content: "\f058"; /* FontAwesome Unicode */
	font-family: FontAwesome;
	display: inline-block;
	margin-left: calc(var(--icon-space) * -1);
	width: var(--icon-space);
}
.icon-accent .topic li::before {
    color: var(--accent);
}

ul.columns-2 {
	column-count: 2;
	align-items: center;
	list-style: none;
	max-width: 1000px;
	margin: auto;
}

ul.columns-2 li {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	background: var(--bg-main-light);
	color: var(--txt-main);
	padding: 30px;
	border-radius: var(--border-radius);
}

/* Section Background Theme System - Apply to ul.columns-2 li */
section:nth-child(even) ul.columns-2 li {
	background: var(--bg-main);
	color: var(--txt-main);
}

/* Visual List alternating layout */
.visual-list ul.columns-2 {
	column-count: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1000px;
}

.visual-list ul.columns-2 li:nth-child(odd) {
	grid-column: 1;
}

.visual-list ul.columns-2 li:nth-child(even) {
	grid-column: 2;
}

ul.columns-2 li i {
	font-size: 24px;
	margin-right: 10px;
	align-self: center;
}

ul.tags {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

ul.tags li {
	width: fit-content;
	background: var(--light-grey);
    color: var(--txt-main);
	padding: 0px 10px;
	border-radius: var(--border-radius);
	font-size: 14px;
}

ul.tags li a {
	color: var(--txt-main);
}

.center.block {
	width: fit-content;
	margin: auto;
}

a {
	color: var(--accent);
	text-decoration: none;
}
section#cta-section a:not(.btn) {
    color: var(--txt-main);
}
.cta:hover {
	color: -moz-linear-gradient(top, #0a7a94 0%, #6e22b2 100%);
	color: -webkit-linear-gradient(top, #0a7a94 0%, #6e22b2 100%);
	color: linear-gradient(to bottom, #0a7a94 0%, #6e22b2 100%);
}

a.wobble.link {
	color: var(--light-grey);
}

a.wobble.link.dark {
	color: var(--dark-grey);
}

.wobble:hover {
	transform: translateY(-5px);
	transition: 0.2s;
}

.scale:hover {
	transform: scale(1.1);
	transition: 0.2s;
}

/* Grid Separators - Lines */
.grid-with-separators .topic {
    position: relative;
}

.grid-with-separators .topic:not(:last-child)::after {
    content: "";
    border-right: 2px solid var(--dark-grey);
    position: absolute;
    left: calc(100% + 30px);
    top: 80px;
    height: calc(100% - 80px);
}

/* Grid Separators - Arrows */
.grid-with-arrows {
    align-items: start;
    gap: 60px;
}

.topic-with-arrow h4::after {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 100%;
    top: 1em;
    transform: translateY(-50%);
    font-size: 60px;
    color: var(--dark-grey);
    z-index: 10;
    display: block;
}

.grid-with-arrows .topic h4 {
    position: relative;
}

/* Responsive: Arrows rotate on mobile */
@media (max-width: 850px) {
    .grid-with-arrows .topic {
        position: relative;
    }
    .grid .topic p br {
        display: none;
    }
    .topic-with-arrow h4::after {
        display: none; /* Desktop-Pfeil ausblenden */
    }
    .topic-with-arrow::after {
        left: 50%;
        top: auto;
        bottom: -60px;
        transform: translateX(-50%) rotate(90deg);
        content: "\f0a9";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        font-size: 60px;
        color: var(--dark-grey);
        z-index: 10;
        display: block;
    }
}

/* Text Alignment */
.text-align-left {
    text-align: left;
}

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

.text-align-right {
    text-align: right;
}

.text-align-justify {
    text-align: justify;
}

/* Image Type Styles */
.image-type-image {
    height: 150px;
    width: auto;
}

.image-type-icon {
    width: auto;
    /* Höhe via inline style */
}

/* Mobile: Lines rotate */
@media (max-width: 850px) {
    .grid-with-separators .topic:not(:last-child)::after {
        border-right: none;
        border-bottom: 2px solid var(--dark-grey);
        width: 100px;
        height: auto;
        top: auto;
        bottom: -50%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.back {
	position: absolute;
}

footer,
header {
	background: var(--bg-main-dark);
	width: 100%;
	text-align: center;
}

header .wrapper div i.menu {
	display: none;
}

header .wrapper {
	display: flex;
}

header .function-slot {
	width: 149px;
	display: flex;
	align-items: center;
}

header .function-slot-mobile {
	display: none;
}

header nav.menu {
	display: flex;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

header nav.menu a[aria-current] {
	color: var(--accent);
}

header nav a {
	height: 100%;
	color: white;
	display: flex;
	align-items: center;
	font-size: 18px;
}

header nav a span {
	padding-bottom: 6px;
}

.absolute {
	display: absolute;
}

.bottom-0 {
	bottom: 0px;
}

footer {
	padding: 20px 0;
	gap: 20px;
}

footer a {
	color: var(--light-grey);
}

header img {
	height: 50px;
	width: auto;
	padding: 20px;
	margin-left: 20px;
}

section {
	min-height: 20px;
	padding: 20px 40px;
}

section.bottom-green {
	border-bottom: 5px solid var(--green);
}

section.bottom-blue {
	border-bottom: 5px solid var(--blue);
}

section {
	padding: 50px;
}

section:nth-child(even) {
	background-color: var(--bg-main-light);
}


section > b {
	text-align: center;
}

section.dark {
	background-color: var(--bg-main);
}

section.light {
	background-color: var(--light-grey);
	color: var(--bg-main-dark);
}

section.banner {
	/* height: 330px; */
	overflow: hidden;
	position: relative;
	padding: 0;
	background: #343334;
}

.legal-page section.banner {
	height: 330px;
	overflow: hidden;
	position: relative;
	padding: 0;
}

.legal-page a.wobble.link {
	color: var(--bg-main-dark);
}

.legal-page h2 {
	margin-top: 20px;
}

.list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.list.center {
	justify-content: center;
	max-width: 400px;
	justify-self: center;
}

.list .logo-span {
	display: flex;
	flex-direction: column;
	width: fit-content;
}

.list .logo-span svg,
.list .logo-span img.svg {
	height: 30px;
}

svg.primary,
.logo-span.primary svg {
	fill: var(--bg-main-dark);
}

svg.secondary,
.logo-span.secondary svg {
	fill: var(--dark-grey);
}

svg.accent,
.logo-span.accent svg {
	fill: var(--accent);
}

.list .logo-span:hover svg {
	fill: var(--accent);
}

.banner video,
.banner img {
	justify-self: center;
	display: block;
}
.banner img {
    filter: blur(4px) brightness(0.5)
}
.banner video {
	width: 100%;
}

.banner:has(img) {
	max-height: 450px;
}

.banner:hover img {
	transform: scale(1.05);
    filter: blur(0px) brightness(1);
	transition: 1.5s;
}
.banner:hover h1 {
    opacity: 0;
	transition: 1.5s;
}

.banner > .wrapper {
	margin: auto;
	position: relative;
	display: block;
}

.banner h1 {
	margin-bottom: 10px;
	color: var(--light-grey);
	position: absolute;
	font-size: min(7vw, 80px);
	z-index: 100;
	width: 100%;
}

section div.inline {
	display: inline-block;
}
section .icon-wrapper div.inline {
    margin: 20px;
}

section div.inline.max230 {
	max-width: 230px;
}

section div.inline.max250 {
	max-width: 250px;
}

section div.inline.max300 {
	max-width: 300px;
}

section div.inline.max500 {
	max-width: 500px;
}

section div.inline.top {
	vertical-align: top;
}

section div.inline.middle {
	vertical-align: middle;
}

section i {
	font-size: 60px;
}

section i.primary {
	color: var(--txt-main);
}

section i.secondary {
	color: var(--dark-grey);
}

section i.accent {
	color: var(--accent);
}

/* section i:not(.no-clr) {
  background: -moz-linear-gradient(top, #0a7a94 0%, #6e22b2 100%);
  background: -webkit-linear-gradient(top, #0a7a94 0%, #6e22b2 100%);
  background: linear-gradient(to bottom, #0a7a94 0%, #6e22b2 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */
#about-us {
	padding-top: 0;
}

#about-us .left {
	justify-self: right;
}

#about-us .right {
	justify-self: left;
}

#about-us .icon-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

#about-us .card {
	color: var(--light-grey);
}

#about-us .icon-wrapper img.about-img {
	max-height: 250px;
	max-width: 250px;
	border-radius: 10px;
}

section .icon-wrapper,
.wrapper .icon-wrapper {
	text-align: center;
	margin-top: 20px;
}

.wrapper.tools h4 {
	text-align: center;
}
.wrapper .float-img {
	margin: 40px;
	max-width: 200px;
	width: 200px;
	height: auto;
}
.image-150 .wrapper .float-img {
	width: 150px;
}
.image-250 .wrapper .float-img {
	width: 250px;
}
.bright-07 {
	filter: brightness(0.7);
}

.wrapper .float-img.left {
	float: left;
}

.wrapper .float-img.right {
	float: right;
}

section div.overflow {
	overflow-y: scroll;
	height: 300px;
	max-width: fit-content;
	border-radius: var(--border-radius);
}

.marge-center {
	margin-left: 50%;
	transform: translateX(-50%);
}

.hide {
	display: none;
	transition: visibility 0s, opacity 0.5s linear;
}

.google-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(638px, 1fr));
	justify-items: center;
	grid-gap: 20px;
}

.refBtn {
	margin: 40px 0px;
}

.referenzen .google-grid {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.referenzen .google-grid.small {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.referenzen .google-grid.small .card {
	width: 100%;
}

.referenzen ul {
	padding-inline-start: 0px;
}

.google-grid .card {
	max-width: 676px;
	text-align: center;
	display: inline-block;
}

.google-grid .overview {
	grid-column: 1 / span 2;
}

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

.review.card {
	height: 100%;
}

.review.card img.portrait {
	margin-top: 20px;
	max-width: 40px;
}

.google-grid .card,
.google-grid img {
	background: #202124;
	border-radius: var(--border-radius);
}

.google-grid h3 {
	margin: 10px;
	color: var(--bg-main-light);
}

.google-grid .review.card p {
	max-width: 90%;
	margin: 0 auto 20px auto;
	text-align: left;
	color: var(--bg-main-light);
}

.table-center {
	margin: 0;
	text-align: center;
	font-size: 20px;
}

.btn,
.link {
	cursor: pointer;
}

.btn {
	padding: 10px 20px;
	border: none;
	width: fit-content;
	display: inline-block;
	border-radius: 10px;
}

.btn.cta {
	white-space: nowrap;
}

.btn.primary .fa-phone {
	transform: scaleX(-1);
}


/* Contact Cards Styling */
.btn.contact-card-phone,
.btn.contact-card-email {
	background: rgba(255,255,255,0.2);
	color: white;
	padding: 12px 30px;
	border-radius: 25px;
	border: 2px solid rgba(255,255,255,0.3);
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	font-weight: 600;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

/* Contact Cards Dark Styling */

.btn.contact-card-phone i,
.btn.contact-card-email i {
	color: white !important;
}


.btn.contact-card-phone:hover,
.btn.contact-card-email:hover {
	background: white;
	color: #333 !important;
	transform: scale(1.05);
}

.btn.contact-card-phone:hover i,
.btn.contact-card-email:hover i {
	color: #333 !important;
}


/* Contact Cards Container - wie im HTML Beispiel */
.contact-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 40px;
}

.contact-cards .inline {
	text-align: center;
	padding: 40px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #317f92 0%, #aaeeff 100%);
	color: white;
}


.contact-cards .cta-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	flex-grow: 1;
}

.contact-cards .inline.phone {
	background: linear-gradient(135deg, #317f92 0%, #aaeeff 100%);
}

.contact-cards .inline.email {
	background: linear-gradient(135deg, #aaffaa 0%, #317f92 100%);
}

.contact-cards .inline:nth-child(2) {
	background: linear-gradient(135deg, #aaffaa 0%, #317f92 100%);
}

.contact-cards .inline:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-cards .contact-icon {
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.8rem;
}

.contact-cards .contact-icon i {
	font-size: 1.8rem !important;
}



.contact-cards .contact-icon i.fa-phone {
	transform: scaleX(-1);
}

.contact-cards .btn i.fa-phone {
	transform: scaleX(-1);
}

.contact-cards h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: white;
}

.contact-cards p {
	font-size: 1rem;
	margin-bottom: 25px;
	opacity: 0.9;
	color: white;
}

/* Split Layout Styling - wie im HTML Beispiel */
.contact-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 400px;
}

.contact-split .inline:first-child {
	background: linear-gradient(135deg, #317f92 0%, #aaeeff 100%);
	color: white;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-split .inline:last-child {
	background: #ecf0f1;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.contact-split .info-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.contact-split .info-icon {
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	font-size: 1.2rem;
}

.contact-split .info-icon i {
	font-size: 1.2rem !important;
}

.contact-split .info-icon i.fa-phone {
	transform: scaleX(-1);
}

.btn.split-primary {
	background: #317f92;
	color: white !important;
	width: 100%;
	max-width: 280px;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn.split-primary i {
	color: white !important;
}

.btn.split-primary i.fa-phone {
	transform: scaleX(-1);
}

.btn.split-primary:hover {
	background: #2a6b7a;
	transform: translateY(-2px);
}

.btn.split-secondary {
	background: white;
	color: #317f92;
	border: 2px solid #bdc3c7;
	width: 100%;
	max-width: 280px;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn.split-secondary:hover {
	border-color: #317f92;
	color: #317f92;
}

.btn.primary {
	color: var(--bg-main);
	background-color: var(--txt-main);
}

.btn.primary:hover {
	background-color: var(--accent);
}

.btn.secondary {
	color: var(--txt-main);
	background-color: var(--bg-main);
	border: solid 2px var(--txt-main);
}

.btn.secondary:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.btn.accent {
	color: var(--light-grey);
	background: var(--accent);
}

.btn.accent:hover {
	background: #75bcce;
}

.btn i {
	font-size: 24px;
	margin-right: 10px;
}

.btn.light {
	background-color: var(--light-grey);
	color: var(--bg-main-dark);
}

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

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 20px;
	column-gap: 10px;
}

.contact-form input,
.contact-form textarea {
	font-family: robotolight, sans-serif;
	background-color: var(--txt-main);
	padding: 10px;
	outline: 0;
	border: none;
}

.contact-form textarea {
	min-height: 200px;
}

.contact-form .button {
	width: auto;
}

.contact-form .first {
	grid-column: 1 / span 1;
}

.contact-form .second {
	grid-column: 2 / span 1;
}

.contact-form .both {
	grid-column: 1 / span 2;
}

::-webkit-scrollbar {
	width: 10px;
	height: 5px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.proCons {
	text-align: left;
	margin: 0 50px;
}

.banner nav {
	position: absolute;
	right: 20px;
}

.banner nav i,
.fa-arrow-circle-left {
	margin-right: 5px;
	font-size: 20px;
}

.banner nav ul {
	list-style-type: none;
	line-height: 30px;
	font-size: 20px;
}

.banner nav ul a {
	display: block;
}

.customers img {
	width: 200px;
	cursor: pointer;
	max-width: unset;
}

.customers img:hover {
	filter: none;
}

.customers img.white-svg {
	filter: brightness(0.2);
}

.flex {
	display: flex;
}

.customers .flex {
	display: flex;
	align-items: center;
	gap: 50px;
}

.google-review .card {
	color: #bdc1c6;
}

.pricing-overview {
	margin: 40px 0;
}

.pricing-overview .card {
	color: #bdc1c6;
}

.card {
	background: var(--bg-main-dark);
	color: var(--light-grey);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card.light,
.referenzen .wrapper .card.light,
.blog .wrapper .card.light {
	background: var(--bg-main);
	color: var(--txt-main);
}

.card a {
	color: var(--light-grey);
}

.card a:hover {
	color: var(--accent);
}

.card a i.fa-external-link-alt {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 25px;
	-webkit-text-fill-color: var(--light-grey);
}

.referenzen .wrapper .card,
.blog .wrapper .card {
	overflow: hidden;
	padding: 0px;
	color: var(--bg-main);
	word-break: break-word;
	position: relative;
	display: flex;
	flex-direction: column;
}

.referenzen .google-grid img {
	background: #f5f5f5;
	height: 300px;
	object-fit: contain;
	width: 100%;
}

.referenzen .google-grid.small img {
	height: 200px;
	background: #f5f5f5;
	object-fit: contain;
}

/* Quote Toggle Funktionalität */
.quote-checkbox {
	display: none;
}

.quote-full {
	display: none;
}

.quote-checkbox:checked ~ .quote-preview {
	display: none;
}

.quote-checkbox:checked ~ .quote-full {
	display: inline;
}

.quote-toggle {
	display: inline;
	margin-left: 5px;
	color: var(--accent);
	cursor: pointer;
	font-size: 0.9em;
	text-decoration: underline;
	font-weight: normal;
}

.quote-toggle:hover {
	color: #2a6b7a;
	text-decoration: none;
}

.show-less {
	display: none;
}

.quote-checkbox:checked ~ .quote-toggle .show-more {
	display: none;
}

.quote-checkbox:checked ~ .quote-toggle .show-less {
	display: inline;
}

/* Referenzen Toggle Funktionalität */
.ref-toggle-checkbox {
	display: none;
}

.ref-toggle-content.hidden {
	display: none;
}

.ref-toggle-checkbox:checked ~ .ref-toggle-content.hidden {
	display: block;
}

.show-less-refs {
	display: none;
}

.ref-toggle-checkbox:checked ~ .wrapper .show-more-refs {
	display: none;
}

.ref-toggle-checkbox:checked ~ .wrapper .show-less-refs {
	display: inline;
}

.referenzen .card img,
.blog .card img {
	border-radius: 0px;
}

.referenzen .card img.logo {
	max-width: 200px;
	margin-top: 20px;
}

.referenzen .card > ul, .referenzen .card > a > ul {
	margin: 40px;
	list-style: none;
}

.referenzen .card ul li {
	position: relative;
}

.referenzen .card ul li h3 {
	text-align: left;
	font-size: 22px;
}

.referenzen .card ul li.title {
	display: inline-flex;
	align-items: baseline;
	width: 100%;
	gap: 10px;
}

.referenzen .small .card ul li.title {
	display: block;
}

.referenzen .card ul li.title span {
	font-size: 15px;
}

.referenzen .small .card ul li.title span {
	display: block;
	text-align: left;
	margin-left: 10px;
}

.referenzen .card ul li.quote {
	text-align: center;
	font-style: italic;
	font-size: 12px;
	margin-top: 25px;
}

.blog .wrapper.grid {
	align-items: stretch;
}

.blog .card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog .card > *:not(img) {
	margin: 10px 40px;
}

.blog .card > *:last-child {
	margin-bottom: 40px;
	margin-top: auto;
}

section.meta {
	padding: 10px 50px;
}

section.meta .wrapper {
	align-items: center;
}

@media (max-width: 1200px) {
	body {
		margin: 0;
	}

	.google-grid .overview {
		grid-column: 1;
	}

	section div.inline {
		margin: 20px 0;
	}

	#about-us .icon-wrapper {
		display: block;
		grid-template-columns: 1fr 1fr;
	}

	.grid.col-4,
	.grid.col-5 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 850px) {
	header .wrapper div.function-slot {
		display: none;
	}

	header .function-slot-mobile {
		margin-right: 10px;
		align-items: center;
	}

	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 30px;
	}

	.banner nav {
		display: none;
	}

	section {
		padding: 25px 15px;
	}

	p,
	li {
		font-size: 18px;
	}

	ul.columns-2 {
		column-count: 1;
	}
	.visual-list ul.columns-2 {
		grid-template-columns: 1fr;
	}
	.visual-list ul.columns-2 li:nth-child(odd),
	.visual-list ul.columns-2 li:nth-child(even) {
		grid-column: auto;
	}

	section div.inline {
		margin: 25px 0;
		padding: 20px;
	}

	section div.inline.max500 {
		max-width: none;
	}

	.inline.max230.middle.arrow {
		transform: rotate(90deg);
	}

	section div.inline.max230 {
		max-width: none;
	}

	.referenzen .card ul li.title {
		display: block;
	}

	.referenzen .card ul li.title span {
		display: block;
		text-align: left;
		margin-left: 10px;
	}

	.wrapper .float-img, .image-150 .wrapper .float-img, .image-250 .wrapper .float-img {
		float: none;
		width: -webkit-fill-available;
		height: auto;
	}

	.google-grid {
		grid-template-columns: inherit;
	}


	.grid.col-2,
	.grid.col-3,
	.grid.col-4,
	.grid.col-5 {
		grid-template-columns: 1fr;
	}

	.referenzen .google-grid {
		grid-template-columns: 1fr;
	}
	.referenzen .google-grid .card {
		display: block;
		width: 100%;
	}
}

/* animation */
.carousel {
	margin: 0 auto;
	padding: 20px 0;
	overflow: hidden;
	display: flex;
}
.carousel.bg-white {
    background: #fff;
}
.carousel:hover .group {
	animation-play-state: var(--pause-hover, paused);
}

.carousel > a {
	width: 100%;
	color: white;
	border-radius: 24px;
	box-shadow: rgba(0, 0, 0, 10%) 5px 5px 20px 0;
	padding: 20px;
	font-size: xx-large;
	justify-content: center;
	align-items: center;
	min-height: 200px;
}

.group {
	display: flex;
	gap: 20px;
	/* Add padding to the right to create a gap between the last and first card. */
	padding-right: 20px;
	will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
	animation: scrolling var(--duration, 60s) linear infinite;
	animation-direction: var(--direction, normal);
}

#hourly-rate-wrapper {
	border-left: 2px solid var(--dark-grey);
}

#hourly-rate-from {
	font-weight: bold;
	margin-left: 40px;
}

#hourly-rate {
	font-weight: bold;
	font-size: 50px;
	text-align: center;
	background: linear-gradient(to bottom, #127a94, #7021b3);
	color: transparent;
	background-clip: text;
}

@keyframes scrolling {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media only screen and (max-width: 850px) {
	header {
		position: fixed;
		top: 0px;
		z-index: 2000;
		height: 56px;
		align-items: center;
	}

	main.main {
		position: relative;
		margin-top: 56px;
	}

	header .wrapper,
	header nav.menu {
		flex-direction: column;
	}

	header .wrapper div a {
		display: flex;
		align-items: center;
	}

	header .wrapper img {
		height: 40px;
		padding: 0px;
	}

	header nav.menu {
		background: var(--bg-main-dark);
	}

	header nav.menu a {
		padding: 10px 20px;
		padding-right: 19px;
		padding-left: 60px;
		border-bottom: 2px solid var(--txt-main);
		color: var(--light-grey);
	}

	header nav.menu a span {
		width: 100%;
		text-align: start;
		font-size: 16px;
	}

	header .wrapper div {
		display: flex;
		justify-content: space-between;
	}

	header .wrapper div i.menu {
		display: block;
		font-size: 18px;
		line-height: 18px;
		color: var(--light-grey);
		align-self: center;
		padding: 19px;
		cursor: pointer;
	}

	.menu-open main.main:before {
		content: " ";
		background: #9d9d9de6;
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		z-index: 100;
		/* top: 0px; */
	}

	header nav.menu {
		height: 0px;
		opacity: 0;
		width: 0px;
		position: absolute;
		left: -200px;
	}

	body.menu-open header nav.menu {
		display: flex;
		gap: 0px;
		height: auto;
		width: auto;
		opacity: 1;
		transition: all 1s;
		position: relative;
		left: 0px;
	}
	#hourly-rate-wrapper {
		border-left: none;
	}
}

/* content custom styling */
#sw6prices img {
	max-height: 50px;
	filter: brightness(1);
	background: #189ffe;
	padding: 25px;
}



/* twp-flow */

.twp-process {
    width: 80%;
    margin: auto;
    text-align: left;
    padding: 50px 0;
    position: relative;
}

.twp-process h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.twp-steps {
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 1;
}

.twp-step {
    display: flex;
    background: white;
    align-items: center;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    position: relative;
    max-width: 450px;
    width: 450px;
}

@media (max-width: 850px) {
    .twp-step {
        width: calc(100% - 40px);
    }
}

.twp-step:nth-child(even) {
    align-self: flex-end;
}

/* Step Number */
.twp-step-number {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent);
    margin-right: 15px;
}

/* Content Styling */
.twp-step-content h3 {
    font-size: 18px;
    margin: 0;
}

.twp-step-content p {
    font-size: 14px;
    color: #555;
}

/* Curved Line */
.twp-step::after {
    content: "";
    position: absolute;
    width: calc(100% - 150px);
    height: 100%;
    border-left: 5px solid var(--accent);
    border-bottom: 5px solid var(--accent);
    left: 5px;
    top: 90%;
    border-radius: var(--border-radius);
    z-index: -1;
}

/* Alternate positioning for even steps */
.twp-step:nth-child(even)::after {
    right: 5px;
    border-left: 2px solid var(--accent);
    border-right: none;
    left: unset;
    border-right: 5px solid var(--accent);
    border-left: unset;
    height: 100%;
}

/* Remove line from the last element */
.twp-step:last-child::after {
    display: none;
}

/* Reference image shadow */
.reference-image-shadow {
    box-shadow: 0px 0px 14px black;
}

/* Dynamic icon sizing */
.image-type-icon {
    height: var(--icon-size, 150px);
    width: auto;
}

/* SVG star gradient colors */
.star-gradient-orange {
    stop-color: #ffa500;
    stop-opacity: 1;
}

.star-gradient-gray {
    stop-color: #e0e0e0;
    stop-opacity: 1;
}

/* Progress bar width using CSS custom properties */
.yellowline {
    width: var(--bar-width, 0%);
}

/* Contact split layout styles */
.contact-split h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-split-h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-split-text {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

@media (max-width: 560px) {
    .twp-steps {
        padding: 0 10px 0 10px;
    }

    .twp-step {
        margin-bottom: 40px;
    }

    .twp-step::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 100%;
        border-left: 5px solid var(--accent);
        border-top: 5px solid var(--accent);
        border-bottom: 5px solid var(--accent);
        left: -15px;
        top: 85px;
        border-radius: var(--border-radius);
        z-index: -1;
    }

    .twp-step:nth-child(even) {
        align-self: unset;
    }

    .twp-step:nth-child(even)::after {
        right: unset;
        border-left: 2px solid var(--accent);
        border-right: none;
        right: -15px;
        border-left: unset;
        border-right: 5px solid var(--accent);
        height: 100%;
    }
}

