/* Start custom CSS for html, class: .elementor-element-364eace *//* Container Styling */
#scroll-container {
    text-align: center;
    padding: 50px 20px;
    overflow: hidden;
}

/* Logo Styling */
.logo-container img {
    width: 200px;
    margin: 30px auto; /* Abstand nach oben und unten */
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

/* Text Styling */
.slide-in-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out 0.3s;
}

/* Active Klassen für die Animation */
.logo-container.active img,
.slide-in-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Anpassung für Tablets */
@media (max-width: 1024px) {
    .slide-in-text {
        font-size: 28px; /* Tablet-Schriftgröße für Überschrift */
    }
    .text-container p {
        font-size: 16px; /* Kleinere Schriftgröße für die Beschreibung */
        line-height: 1.5; /* Bessere Lesbarkeit */
    }
    .logo-container img {
        max-width: 120px; /* Logo anpassen */
    }
}

/* Responsive Anpassung für Handys */
@media (max-width: 768px) {
    .slide-in-text {
        font-size: 22px; /* Handy-Schriftgröße für Überschrift */
    }
    .text-container p {
        font-size: 14px; /* Noch kleinere Schriftgröße für die Beschreibung */
        line-height: 1.4; /* Geringere Zeilenhöhe */
    }
    .logo-container img {
        max-width: 100px; /* Logo kleiner */
        margin-bottom: 10px; /* Weniger Abstand */
    }
    #scroll-container {
        padding: 10px; /* Weniger Padding für mehr Platz */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1eec97c *//* Preloader Container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.loader-content {
  text-align: center;
  color: #aaa;
  font-family: "Poppins", sans-serif;
}

.loader-content p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f6a812;
}

.logos {
  position: relative;
  height: 100px; /* Erhöhte Höhe des Containers */
  width: 100px; /* Breite für zentrierte Logos */
  overflow: hidden;
}

.logos img {
  position: absolute;
  width: auto;
  height: 100%; /* Skaliert die Höhe auf den Container */
  max-width: 100%; /* Begrenzt die Breite */
  object-fit: contain; /* Sorgt dafür, dass das gesamte Logo sichtbar bleibt */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0; /* Standardmäßig unsichtbar */
  animation: logoAnimation 8s infinite; /* Animation für die Logos */
}

/* Animation für Logos */
@keyframes logoAnimation {
  0% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  10% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  25% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  35% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
}

/* Verzögerung für die Logos */
.logos img:nth-child(1) {
  animation-delay: 0s;
}

.logos img:nth-child(2) {
  animation-delay: 2s;
}

.logos img:nth-child(3) {
  animation-delay: 4s;
}

.logos img:nth-child(4) {
  animation-delay: 6s;
}/* End custom CSS */