 :root { --font-family: "Inter", sans-serif; --color-hover: #73c034; --green-rgb: 68,122,24; --error: #a63b3b;  --page-width: 2048px; --header-height: 104px; --header-height-mobile: 64px;  --gap: 2rem; --section-padding-y: 8rem; --spacing: 1.5rem; --slider-arrow-size: 2.5rem; --checkbox-size: 1rem; --border-width: 1px; --border-radius: 0; --border-image: linear-gradient(rgba(var(--green-rgb),0.8) 101%, transparent) 0 fill; --box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);  --transition-duration: 0.5s; --transition: ease var(--transition-duration); --animation-speed: 0.3s; } @media (max-width: 991px) { :root { --header-height: var(--header-height-mobile); } }  @media (max-width: 600px) { body.bricks-is-frontend.admin-bar #brx-header.sticky.scrolling { top: 0; } }  html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); } html, body { font-family: var(--font-family); font-size: 16px; font-weight: 500; line-height: normal; color: var(--color-black); } body { background-color: var(--color-white); overflow-x: clip; } ::selection { background-color: var(--color-brand); color: var(--color-white); } .hidden, [hidden] { display: none!important; opacity: 0; visibility: hidden; } body.bricks-is-frontend :focus-visible { outline: 1px solid var(--color-brand); } * { scrollbar-color: steelblue slategray; scrollbar-width: thin; }  section[data-wpr-lazyrender="1"] { content-visibility: visible; }  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { margin-bottom: 2rem; font-family: var(--font-family); font-weight: 700; line-height: normal; text-transform: uppercase; text-wrap: balance; } h1, .h1 { font-size: 3.5rem; } h2, .h2 { font-size: 3rem; } h3, .h3 { font-size: 2rem; } h4, .h4 { font-size: 1.5rem; } h5, .h5 { font-size: 1.25rem; } h6, .h6 { font-size: 1.1rem; } .brxe-heading.bricks-type-hero { font-size: 5.625rem; } @media (max-width: 991px) { h1, .h1 { font-size: 2.5rem; } h2, .h2 { font-size: 1.75rem; } h3, .h3 { font-size: 1.5rem; } h4, .h4 { font-size: 1.25rem; } h5, .h5 { font-size: 1.15rem; } h6, .h6 { font-size: 1.05rem; } .brxe-heading.bricks-type-hero { font-size: 4rem; } } @media (max-width: 767px) { h1, .h1 { font-size: 1.75rem; } h2, .h2 { font-size: 1.5rem; } h3, .h3 { font-size: 1.25rem; } h4, .h4 { font-size: 1.185rem; } .brxe-heading.bricks-type-hero { font-size: 2.5rem; } } @media (max-width: 478px) { .brxe-heading.bricks-type-hero { font-size: 2rem; } } b, strong { font-weight: 700; } a, a.brxe-text-link .text, a.brxe-text-link .icon { transition: var(--transition); } .brxe-text a:not(.bricks-button), .brxe-text-basic a:not(.bricks-button), label a { text-decoration: underline; color: var(--color-brand); } a.brxe-text-link .icon path { fill: currentColor; } .brxe-text a:not(.bricks-button):is(:hover, :focus), a.brxe-text-link:is(:hover, :focus) :where(.icon, .text) { color: var(--color-hover); } .dsgvo-reference { font-size: 0.8rem; }  section { padding: var(--section-padding-y) 1rem; } section section { padding: 0; } .brxe-container { align-items: center; width: 1420px; } .brxe-container.container--wide { width: 1760px; } .brxe-container.container--narrow { width: 1100px; } .brxe-container.container--left { align-items: flex-start; } header + main, header + .hero { margin-top: var(--header-height); } .brxe-text :where(ul, ol) { padding-left: 1.5em; } .brxe-text :where(ol, ul):first-child { margin-top: 0; } .brxe-text :where(ol, ul):last-child { margin-bottom: 0; } .brxe-text :where(ol, ul):only-child { margin: 0; } .brxe-text :where(ol, ul) li:not(:last-child) { margin-bottom: 0.5em; } .brxe-text ul ::marker { color: var(--color-brand); }  p { margin-bottom: var(--spacing); } p:last-of-type { margin-bottom: 0; } main :where(ul, ol) { margin: var(--spacing) 0; padding-left: 2.5ch; } .brxe-text :where(ul, ol):first-child { margin-top: 0; } .brxe-text :where(ul, ol):last-child { margin-bottom: 0; } .brxe-text :where(ul, ol):only-child { margin: 0; } .brxe-text + :where(h2, h3, h4, h5, h6), :where(p, ul, ol) + :where(h2, h3, h4, h5, h6) { margin-top: 1em; } :where(p, ul, ol, .brxe-text, .brxe-text-basic) + :where(.button-wrapper, .bricks-button) { margin-top: var(--spacing); }  .flex-wrapper { --width-2: calc(50% - var(--gap) / 2); --width-3: calc(33.33% - var(--gap) / 1.5); --width-4: calc(25% - var(--gap) / 1.25); } .text--left { text-align: left; } .text--center { text-align: center; } .text--wide { width: 90ch; } .text--medium { width: 83ch; } .text--narrow { width: 64ch; } .text--brand { color: var(--color-brand); } .mb-0 { margin-bottom: 0; }  header { height: var(--header-height); padding: 2rem 1rem; box-shadow: var(--box-shadow); background-color: var(--color-white); color: var(--color-black);  content-visibility: visible !important; } @media (max-width: 991px) { header { padding-top: 0.5rem; padding-bottom: 0.5rem; } } @media (max-width: 478px) { header { padding-left: 0.5rem; padding-right: 0.5rem; } }  div.brxe-nav-menu .bricks-nav-menu a, div.brxe-nav-menu .bricks-mobile-menu-wrapper li a { position: relative; padding-bottom: 0.5em; color: inherit; line-height: normal; text-decoration: none; } div.brxe-nav-menu .bricks-nav-menu a::after, div.brxe-nav-menu .bricks-mobile-menu-wrapper li a::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background-color: var(--color-brand); opacity: 0; } div.brxe-nav-menu .bricks-nav-menu a:is(:hover, :focus), div.brxe-nav-menu .bricks-mobile-menu-wrapper a:is(:hover, :focus) { color: var(--color-hover); }  .bricks-mobile-menu { padding: var(--header-height) 0 1.5rem; } .bricks-mobile-menu li { padding: 0.5rem 0; }  .brxe-nav-menu a[aria-current="page"], a[aria-current="page"]:not(.bricks-button) { color: var(--color-brand); } .brxe-nav-menu a[aria-current="page"]::after, a[aria-current="page"]:not(.bricks-button)::after { opacity: 1; }  .bricks-button { padding: 1em 1.75em; border: var(--border-width) solid var(--color-brand); background-color: var(--color-brand); font-size: 0.9rem; font-weight: 500; line-height: normal; color: var(--color-white); text-transform: uppercase; cursor: pointer; transition: var(--transition-duration); } .bricks-button.bricks-background-secondary { border-color: var(--color-black); background-color: var(--color-black); } .bricks-button:is(:hover, :focus) { border-color: var(--color-hover); background-color: var(--color-hover); } .bricks-button.bricks-background-secondary:is(:hover, :focus) { border-color: var(--color-brand); background-color: var(--color-brand); }  .bricks-button.outline { background-color: transparent; color: var(--color-brand); } .bricks-button.outline.bricks-color-secondary { border-color: var(--color-black); color: var(--color-black); } .bricks-button.outline:is(:hover, :focus) { background-color: var(--color-hover); color: var(--color-white); } .bricks-button.outline.bricks-color-secondary:is(:hover, :focus) { background-color: var(--color-black); color: var(--color-white); }   .split { --gap: 2rem; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; gap: var(--gap); } .split--reversed { flex-direction: row-reverse; } .split--50-50 .split__img-wrapper, .split--50-50 .split__content { width: calc(50% - var(--gap) / 2); } .split--60-40 .split__img-wrapper { width: calc(40% - var(--gap) / 2); } .split--60-40 .split__content { width: calc(60% - var(--gap) / 2); } .split--70-30 .split__img-wrapper { width: calc(30% - var(--gap) / 2); } .split--70-30 .split__content { width: calc(70% - var(--gap) / 2); } .split .split__img-wrapper:not(.split__img-wrapper--textonly) { max-height: 25rem; } .split__img { width: 100%; height: 100%; max-height: inherit; object-fit: cover; object-position: center center; } @media (max-width: 767px) { .split .split__img-wrapper, .split .split__content { width: 100%; } .split .split__img-wrapper { max-width: 45rem; max-height: 25rem; } }  .brxe-slider-nested .splide__arrow { width: 0.5em; min-width: unset; height: 1em; min-height: unset; font-size: var(--slider-arrow-size); color: var(--color-main); transition: var(--transition); } .brxe-slider-nested .splide__arrow:is(:hover, :focus) { color: var(--color-hover); } .brxe-slider-nested .splide__track--draggable:hover { cursor: grab; } .brxe-slider-nested .splide__track--draggable:active { cursor: grabbing; }  .parallax { width: 100%; max-width: var(--page-width); background-attachment: fixed; } @supports (-webkit-touch-callout: none) { .parallax { background-attachment: scroll; } }  .brxe-form { --_form-padding: 0.5rem; } .brxe-form input:not([type="radio"], [type="checkbox"]), .brxe-form select, .brxe-form textarea { padding: 0.5rem 1rem; box-shadow: var(--box-shadow); line-height: normal; } .brxe-form textarea { min-height: 8rem; max-height: 25rem; resize: vertical; }  .brxe-form select, .brxe-form select option, .variations_form select, .variations_form select option { font-family: var(--font-family), sans-serif; }   .brxe-form ul.options-wrapper li { display: flex; flex-flow: row nowrap; align-items: flex-start; column-gap: 0.5em; } .brxe-form ul.options-wrapper :where(input[type="radio"], input[type="checkbox"]) { width: var(--checkbox-size); min-width: var(--checkbox-size); height: var(--checkbox-size); margin-top: 0.15em; border: var(--border-width) solid var(--color-brand); font-size: var(--checkbox-size); appearance: none; } .brxe-form ul.options-wrapper input[type="radio"] { border-radius: 50%; } .brxe-form ul.options-wrapper :where(input[type="radio"], input[type="checkbox"]):checked { box-shadow: 0 0 0 0.25em var(--color-white) inset; background-color: var(--color-brand); } .brxe-form input[value="datenschutz"] + label { font-size: 0.9em; }  .brxe-form .submit-button-wrapper { display: block; width: 100%; padding: 0 var(--_form-padding); }  footer { padding: 3rem 1rem; background-color: var(--color-brand); } .footer-menu--service .bricks-nav-menu > li:first-child { margin-left: 0; }   @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } @keyframes fade-in-left { from { opacity: 0; transform: translateX(-20%); } to { opacity: 1; transform: translateX(0); } } @keyframes fade-in-right { from { opacity: 0; transform: translateX(20%); } to { opacity: 1; transform: translateX(0); } } @keyframes fade-in-bottom { from { opacity: 0; transform: translateY(20%); } to { opacity: 1; transform: translateY(0); } }  .animation--viewport[animate-vp="true"] .fade-in { animation: fade-in var(--animation-speed) forwards; } .animation--viewport[animate-vp="true"] .fade-bottom { animation: fade-in-bottom var(--animation-speed) forwards; }  .animation--viewport .split > div:first-child, .animation--viewport .split.split--reversed > div:last-child { opacity: 0; transform: translateX(-20%); } .animation--viewport .split > div:last-child, .animation--viewport .split.split--reversed > div:first-child { opacity: 0; transform: translateX(20%); } .animation--viewport[animate-vp="true"] .split > div:first-child, .animation--viewport[animate-vp="true"] .split.split--reversed > div:last-child { animation: fade-in-left var(--animation-speed) forwards; } .animation--viewport[animate-vp="true"] .split > div:last-child, .animation--viewport[animate-vp="true"] .split.split--reversed > div:first-child { animation: fade-in-right var(--animation-speed) forwards; } @media (max-width: 767px) { .animation--viewport .split > div:last-child, .animation--viewport .split.split--reversed > div:first-child { transform: translateX(-20%); } .animation--viewport[animate-vp="true"] .split > div:last-child, .animation--viewport[animate-vp="true"] .split.split--reversed > div:first-child { animation: fade-in-left var(--animation-speed) forwards; } }  .animation--staggered > * { opacity: 0; } .animation--staggered[animate-vp="true"] > * { animation: fade-in var(--animation-speed) forwards; } .animation--staggered > *:nth-child(1) { animation-delay: 0.25s; } .animation--staggered > *:nth-child(2) { animation-delay: 0.5s; } .animation--staggered > *:nth-child(3) { animation-delay: 0.75s; } .animation--staggered > *:nth-child(4) { animation-delay: 1s; } .animation--staggered > *:nth-child(5) { animation-delay: 1.25s; } .animation--staggered > *:nth-child(6) { animation-delay: 1.5s; } .animation--staggered > *:nth-child(7) { animation-delay: 1.75s; } .animation--staggered > *:nth-child(8) { animation-delay: 2s; } .animation--staggered > *:nth-child(9) { animation-delay: 2.25s; } .animation--staggered > *:nth-child(10) { animation-delay: 2.5s; } .animation--staggered > *:nth-child(11) { animation-delay: 2.75s; } .animation--staggered > *:nth-child(12) { animation-delay: 3s; } .animation--staggered > *:nth-child(13) { animation-delay: 3.25s; } .animation--staggered > *:nth-child(14) { animation-delay: 3.5s; } .animation--staggered > *:nth-child(15) { animation-delay: 3.75s; } .animation--staggered > *:nth-child(16) { animation-delay: 4s; } .animation--staggered > *:nth-child(17) { animation-delay: 4.25s; } .animation--staggered > *:nth-child(18) { animation-delay: 4.5s; } .animation--staggered > *:nth-child(19) { animation-delay: 4.75s; } .animation--staggered > *:nth-child(20) { animation-delay: 5s; }  body[data-builder-window="iframe"] :where(.fade-in, .fade-bottom), body[data-builder-window="iframe"] .animation--viewport .split > div:first-child, body[data-builder-window="iframe"] .animation--viewport .split > div:last-child, body[data-builder-window="iframe"] .animation--staggered > * { opacity: 1!important; transform: none!important; }