@charset "UTF-8";
:root {
  --base-font-size:16px !important;
}
html, body {
  max-width: 100vw;
}
#floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: calc(100vw - 4rem);
  z-index: 1000;
  background-color: var(--wp--preset--color--white);
}
#footer-nav {
  --nav--item-font-size: clamp(1rem, 1vw, 1.5rem);
  --subnav--item-font-size: 1rem;
}
#footer-nav > div {
  width: 100%;
}
#footer-nav .uk-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
#footer-nav .uk-nav > li > a {
  --wp--custom--nav--item-font-size: var(--nav--item-font-size);
  margin-bottom: 1.5rem;
}
#footer-nav .uk-nav .uk-nav-sub {
  margin: 0;
  padding: 0;
}
#footer-nav .uk-nav .uk-nav-sub > li > a {
  --wp--custom--nav--item-font-size: var(--subnav--item-font-size);
  margin-bottom: 0.5rem;
}
#desktop-footer-nav strong {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.uk-navbar .menu-item-has-children > a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  font-family: "remixicon" !important;
}
.uk-navbar .menu-item-has-children .uk-navbar-dropdown {
  width: auto;
}
/* Components */
:root {
  /* WICHTIG: Die Werte müssen hier zwingend 'px' als Einheit haben,
     damit CSS sie mit der Bildschirmbreite verrechnen (kürzen) kann! */
  --design-width: 1600px;
  --mobile-width: 640px;
}
.subtitle-dynamic, .title-dynamic {
  --font-size: var(--font-size, inherit);
  /* clamp(MIN, BEVORZUGT, MAX) */
  font-size: clamp(calc(var(--font-size) * (var(--mobile-width) / var(--design-width))), calc(var(--font-size) * (100vw / var(--design-width))), var(--font-size));
  /* --- Wichtig für konstante Zeilenumbrüche --- */
  line-height: 1.1;
  margin: 0;
  /* oder ein relativer Wert in em */
}
.titleitem {
  /* Der Container muss proportional mitwachsen/schrumpfen */
  width: 100%;
  max-width: 100%;
}
/**
 * Fluent Forms ↔ theme.json
 *
 * Erwartete Variablen:
 * settings.custom.fluentforms.*
 */
/*
Theme JSON

"fluentforms": {
        "font-family": "var(--wp--preset--font-family--primary)",
        "font-size": "1rem",
        "line-height": "1.5",
        "text-color": "var(--wp--preset--color--contrast)",
        "label-color": "var(--wp--preset--color--contrast)",
        "placeholder-color": "#6b7280",
        "focus-color": "var(--wp--preset--color--primary)",
        "field": {
          "background": "var(--wp--preset--color--base)",
          "color": "var(--wp--preset--color--contrast)",
          "border-color": "#d1d5db",
          "border-width": "1px",
          "radius": "0.25rem",
          "padding-y": "0.75rem",
          "padding-x": "1rem"
        },
        "button": {
          "background": "var(--wp--preset--color--primary)",
          "background-hover": "var(--wp--preset--color--secondary)",
          "color": "#ffffff",
          "radius": "0.25rem",
          "padding-y": "0.8rem",
          "padding-x": "1.5rem"
        }
      }


 */
/**
 * Fluent Forms ↔ theme.json
 *
 * settings.custom.fluentforms.*
 */
div.fluentform, form.frm-fluent-form {
  --ff-font-family: var(--wp--custom--fluentforms--font-family, inherit);
  --ff-font-size: var(--wp--custom--fluentforms--font-size, 1rem);
  --ff-line-height: var(--wp--custom--fluentforms--line-height, 1.5);
  --ff-text-color: var(--wp--custom--fluentforms--text-color, currentColor);
  --ff-label-color: var(--wp--custom--fluentforms--label-color, currentColor);
  --ff-placeholder-color: var(--wp--custom--fluentforms--placeholder-color, #6b7280);
  --ff-button-color: var(--wp--custom--fluentforms--button--color, currentColor);
  --fluentform-primary: var(--wp--preset--color--primary, #000);
  --fluentform-primary-text: var(--wp--preset--color--primary-text, #fff);
  --fluentform-secondary: var(--wp--preset--color--secondary, #000);
  --ff-field-background: var(--wp--custom--fluentforms--field--background, #fff);
  --ff-field-color: var(--wp--custom--fluentforms--field--color, currentColor);
  --ff-field-border-color: var(--wp--custom--fluentforms--field--border-color, #d1d5db);
  --ff-field-border-width: var(--wp--custom--fluentforms--field--border-width, 1px);
  --ff-field-radius: var(--wp--custom--fluentforms--field--radius, 0);
  --ff-field-padding-y: var(--wp--custom--fluentforms--field--padding-y, 0.75rem);
  --ff-field-padding-x: var(--wp--custom--fluentforms--field--padding-x, 1rem);
  --ff-focus-color: var(
          --wp--custom--fluentforms--focus-color,
          var(--wp--preset--color--primary, #000)
  );
  --ff-focus-shadow: var(
          --wp--custom--fluentforms--focus-shadow,
          0 0 0 3px rgb(0 0 0 / 12%)
  );
  --ff-button-background: var(
          --wp--custom--fluentforms--button--background,
          var(--wp--preset--color--primary, #000)
  );
  --ff-button-color: var(--wp--custom--fluentforms--button--color, #fff);
  --ff-button-background-hover: var(
          --wp--custom--fluentforms--button--background-hover,
          #222
  );
  --ff-button-radius: var(--wp--custom--fluentforms--button--radius, 0);
  --ff-button-padding-y: var(--wp--custom--fluentforms--button--padding-y, 0.8rem);
  --ff-button-padding-x: var(--wp--custom--fluentforms--button--padding-x, 1.5rem);
  --ff-error-color: var(--wp--custom--fluentforms--error-color, #b42318);
  --ff-success-background: var(--wp--custom--fluentforms--success-background, #ecfdf3);
  --ff-success-color: var(--wp--custom--fluentforms--success-color, #067647);
  color: var(--ff-text-color);
  font-family: var(--ff-font-family);
  font-size: var(--ff-font-size);
  line-height: var(--ff-line-height);
}
div.fluentform .ff-el-input--label label, form.frm-fluent-form .ff-el-input--label label {
  color: var(--ff-label-color);
  font: inherit;
  font-weight: 600;
}
div.fluentform .ff-el-form-control, div.fluentform select, form.frm-fluent-form .ff-el-form-control, form.frm-fluent-form select {
  background-color: var(--ff-field-background);
  border: var(--ff-field-border-width) solid var(--ff-field-border-color);
  border-radius: var(--ff-field-radius);
  box-shadow: none;
  color: var(--ff-field-color);
  font: inherit;
  line-height: inherit;
  padding: var(--ff-field-padding-y) var(--ff-field-padding-x);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
div.fluentform .ff-el-form-control::placeholder, div.fluentform select::placeholder, form.frm-fluent-form .ff-el-form-control::placeholder, form.frm-fluent-form select::placeholder {
  color: var(--ff-placeholder-color);
  opacity: 1;
}
div.fluentform .ff-el-form-control:focus, div.fluentform select:focus, form.frm-fluent-form .ff-el-form-control:focus, form.frm-fluent-form select:focus {
  background-color: var(--ff-field-background);
  border-color: var(--ff-focus-color);
  box-shadow: var(--ff-focus-shadow);
  outline: 0;
}
div.fluentform textarea.ff-el-form-control, form.frm-fluent-form textarea.ff-el-form-control {
  min-height: 8rem;
}
div.fluentform input[type="checkbox"], div.fluentform input[type="radio"], form.frm-fluent-form input[type="checkbox"], form.frm-fluent-form input[type="radio"] {
  accent-color: var(--ff-focus-color);
}
div.fluentform .ff-btn-submit:not(.ff_btn_no_style), div.fluentform .ff_submit_btn, div.fluentform .ff-btn-submit, form.frm-fluent-form .ff-btn-submit:not(.ff_btn_no_style), form.frm-fluent-form .ff_submit_btn, form.frm-fluent-form .ff-btn-submit {
  background: var(--ff-button-background);
  border: 1px solid var(--ff-button-background);
  border-radius: var(--ff-button-radius);
  box-shadow: none;
  color: var(--ff-button-color);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  padding: var(--ff-button-padding-y) var(--ff-button-padding-x);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
div.fluentform .ff-btn-submit:not(.ff_btn_no_style):hover, div.fluentform .ff-btn-submit:not(.ff_btn_no_style):focus, div.fluentform .ff_submit_btn:hover, div.fluentform .ff_submit_btn:focus, div.fluentform .ff-btn-submit:hover, div.fluentform .ff-btn-submit:focus, form.frm-fluent-form .ff-btn-submit:not(.ff_btn_no_style):hover, form.frm-fluent-form .ff-btn-submit:not(.ff_btn_no_style):focus, form.frm-fluent-form .ff_submit_btn:hover, form.frm-fluent-form .ff_submit_btn:focus, form.frm-fluent-form .ff-btn-submit:hover, form.frm-fluent-form .ff-btn-submit:focus {
  background: var(--ff-button-background-hover);
  border-color: var(--ff-button-background-hover);
  color: var(--ff-button-color);
}
div.fluentform .text-danger, div.fluentform .error, form.frm-fluent-form .text-danger, form.frm-fluent-form .error {
  color: var(--ff-error-color);
}
div.fluentform .ff-el-is-error .ff-el-form-control, form.frm-fluent-form .ff-el-is-error .ff-el-form-control {
  border-color: var(--ff-error-color);
}
div.fluentform .ff-message-success, form.frm-fluent-form .ff-message-success {
  background: var(--ff-success-background);
  border: 1px solid currentColor;
  color: var(--ff-success-color);
  padding: 1rem;
}
[uk-slider-item="previous"], [uk-slider-item="next"] {
  border: 1px solid currentColor;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
[uk-slider-item="previous"]:first-child, [uk-slider-item="next"]:first-child {
  margin-right: 1rem;
}
[uk-slider-item="previous"].filled, [uk-slider-item="next"].filled {
  border: none;
  background-color: currentColor;
  color: inherit;
}
[uk-slider-item="previous"].filled i, [uk-slider-item="next"].filled i {
  color: currentColor;
  filter: invert(1) brightness(100) invert(0);
}
.scroll-slider-container .slide-overlay {
  background: rgba(255, 255, 255, 0.5) !important;
}
@media (min-width: 968px) {
  .scroll-slider-container .slide-overlay {
    background: none !important;
  }
}
.simple-downloads {
  border-top: 1px solid #000;
}
.simple-downloads .download-item {
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
.simple-downloads .simple-downloads__link {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.toggle-modal-button .bar1 {
  transform: translate(0%, -50%) rotate(0deg);
  top: 33% !important;
}
.toggle-modal-button .bar2 {
  transform: translate(0%, -50%) rotate(0deg);
  top: 50% !important;
}
.toggle-modal-button .bar3 {
  transform: translate(0%, -50%) rotate(0deg);
  top: 67% !important;
}
.toggle-modal-button.open .bar1, .toggle-modal-button[aria-expanded="true"] .bar1 {
  display: none;
}
.toggle-modal-button.open .bar2, .toggle-modal-button[aria-expanded="true"] .bar2 {
  transform: translate(0%, -50%) rotate(45deg);
  top: 50% !important;
}
.toggle-modal-button.open .bar3, .toggle-modal-button[aria-expanded="true"] .bar3 {
  transform: translate(0%, -50%) rotate(-45deg);
  top: 50% !important;
}
/* Styles */
.has-text-special-large-font-size {
  line-height: 1.1111;
}
.has-text-special-x-large-font-size {
  line-height: 1.1111;
}
.text-bolder {
  font-weight: 600;
}
.text-bold {
  font-weight: 700;
}
.text-heavy {
  font-weight: 800;
}
:root {
  --base-font-weight-bold: 700;
  --base-strong-font-weight: 700;
}
:root {
  --h1-min: 2rem;
  --h2-min: 1.25rem;
  --h3-min: 1.2rem;
  --h4-min: 1rem;
  --h5-min: 1rem;
}
.titleitem * {
  hyphens: auto;
}
@media (min-width: 425px) {
  .titleitem * {
    hyphens: none;
  }
}
blockquote {
  font-size: 1.25rem;
  font-style: normal;
  padding-left: 2rem;
  border-left: 2px solid #000;
}
blockquote .citing {
  font-size: 1rem;
}
blockquote .citing:before {
  content: "—";
  margin-right: 0.5rem;
}
@media (max-width: 780px) {
  .panel-cell-style {
    border-right: none !important;
  }
}
/*# sourceMappingURL=https://re4one.de/wp-content/build/scss_library/f717451fa5de35525332312ab77171c0d15eeb3e.css.map */