.elementor-kit-438{--e-global-color-primary:#F3B457;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-d72d2ed:#E5D2C4;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;background-image:linear-gradient(180deg, #F8F4EE 0%, #F8F4EE 100%);}.elementor-kit-438 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Verhindert horizontales Scrollen der Seite */
html, body {
  overflow-x: hidden; /* Kein horizontales Scrollen */
}

/* Container für den Lauftext */
.marquee-container {
  position: relative;
  overflow: hidden; /* Inhalt außerhalb der Breite ausblenden */
  width: 100%;
  background: #fff; /* Weißer Hintergrund */
  padding: 8px 0; /* Weniger Innenabstand, damit der Bereich schmaler wird */
  border-top: 2px solid #D4B38C; /* Eleganter goldener Rand oben */
  border-bottom: 2px solid #D4B38C; /* Eleganter goldener Rand unten */
}

/* Lauftext */
.marquee {
  display: flex;
  white-space: nowrap; /* Text wird nicht umgebrochen */
  animation: scrollText 60s linear infinite; /* Langsame Animation */
}

.marquee-content {
  display: flex;
  min-width: 200%; /* Breite des Textes größer als der sichtbare Bereich */
}

.marquee span {
  flex-shrink: 0;
  padding: 0 30px; /* Abstand zwischen den Texten */
  font-size: 20px; /* Textgröße */
  font-weight: bold; /* Fettschrift */
  letter-spacing: 1px; /* Buchstabenabstand */
  text-transform: uppercase; /* Text in Großbuchstaben */
  color: #D4B38C; /* Goldene Schriftfarbe */
  background: none; /* Kein Hintergrund */
  box-shadow: none; /* Kein Box-Schatten */
  text-shadow: none; /* Kein Text-Schatten */
}

/* Keyframes für die Animation */
@keyframes scrollText {
  from {
    transform: translateX(0); /* Startet sofort sichtbar */
  }
  to {
    transform: translateX(-100%); /* Läuft komplett nach links */
  }
}

/* Mobilgeräte-Optimierung */
@media (max-width: 768px) {
  .marquee span {
    font-size: 16px; /* Kleinere Schriftgröße für mobile Geräte */
    padding: 0 20px; /* Weniger Abstand zwischen den Texten */
  }

  .marquee {
    animation: scrollText 80s linear infinite; /* Noch langsamere Animation */
  }

  .marquee-container {
    padding: 6px 0; /* Noch schmaler auf Mobilgeräten */
  }
}/* End custom CSS */