.all {
width:1040px;
height:1000px;
background:#f6f6f6;
font-family:Tahoma,Helvetica,sans-serif;
font-size:16px; }

body {
font-family:Tahoma,Helvetica,sans-serif;    
margin: 0;
padding: 0;
font-size:16px;    
}

header {
    background:#f5f5f5;
    padding: 0px;
    display: flex; /* Flexbox verwenden */
    justify-content: space-between; /* Elemente gleichmäßig auf der Zeile verteilen */
    align-items: center; /* Zentriert die Elemente vertikal */
    height: 85px;
    width: 100%;
    position: relative; /* Positionierung des Headers ändern */
}

.logo {
    text-align: left;
    width: 170px; /* Größere Abmessungen */
    height: 80px; /* Größere Abmessungen */
    margin-top: 23px;
    margin-left: 20px;
    position: relative; /* Positionierung des Logos ändern */

}

html {
    scroll-behavior: smooth; /* Smooth-Scrolling-Effekt aktivieren */
    font-size: 100%;
}

.border {
    text-align: right;
    margin-right: 5px; /* Platz zwischen der Navigationsleiste und dem Rand des Headers */
}

/* Beispielstil für die Navigationsleiste */
.border ul {
    list-style-type: none;
    padding: 0;
}

.border ul li {
    display: inline;
    margin-right: 25px; /* Abstand zwischen den Navigationslinks */
}

.border ul li a {
    color: #111; /* Standardfarbe */
    text-decoration: none;
    padding: 8px 10px; /* Abstand um den Text herum */
    border-radius: 3px; /* Abrundung der Ecken */
    transition: background-color 0.3s, box-shadow 0.3s; /* Übergangseffekte für Hintergrundfarbe und Schatten */
    position: relative; /* Relative Position für Pseudoelement */
    font-size:16px;
}

.border ul li a::after {
    content: ''; /* Pseudoelement für den unteren Rand */
    position: absolute; /* Absolute Position innerhalb des Links */
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s; /* Übergangseffekt für die Breite */
}

.border ul li a:hover {
    background-color: rgba(76, 175, 80, 0.9); /* Farbe bei Hover mit reduzierter Transparenz */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Schatten bei Hover */
}

.border ul li a:hover::after {
    width: 100%; /* Breite auf 100% bei Hover */
}

.mobile-trigger , .mobile-nav{
    display: none;
    }
.mobile {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-out;
    color: aqua;
}

#off-canvas-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

#off-canvas-menu a:hover {
    color: #e44d26;
}

#off-canvas-menu .dropdown {
    position: relative;
}

#off-canvas-menu .dropdown-content {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #333;
    display: none;
}

#off-canvas-menu .dropdown:hover .dropdown-content {
    display: block;
}


#chatbotToggle {
    position: fixed; /* Positioniert das Bild fest auf dem Bildschirm */
    bottom: 35px; /* Abstand vom unteren Rand des Viewports */
    right: 20px; /* Abstand vom rechten Rand des Viewports */
    width: 75px; /* Breite des Bildes */
    height: auto; /* Automatische Höhe, um das Seitenverhältnis beizubehalten */
    cursor: pointer; /* Zeigt den Mauszeiger als Zeigefinger, um anzuzeigen, dass es anklickbar ist */
}

#chatbotToggle:hover {
    transform: scale(1.2); /* Vergrößert das Bild um 20% bei Hover */
}

/* Stil für den Iframe */
#iframeChatbot {
    position: fixed; /* Damit der Chatbot über allem schwebt */
    bottom: 15px; /* Abstand vom unteren Rand des Viewports */
    right: 15px; /* Abstand vom rechten Rand des Viewports */
    z-index: 9999; /* Stellt sicher, dass der Chatbot über allem anderen Inhalt liegt */
}

/* Stil für den Iframe-Inhalt */
#iframeChatbot iframe {
    width: 40vw; /* 50% der Bildschirmbreite */
    height: auto; /* Automatische Höhe, um das Seitenverhältnis beizubehalten */
    max-width: 250px; /* Maximale Breite des Iframe */
    border: none; /* Kein Rahmen um den Iframe */
}
#iframeContainer {
    display: none; /* Versteckt den Iframe-Container standardmäßig */
}


/* Beispielstil für Abschnitte */
section {
    padding: 100px 0;
    text-align: center;
}

.container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1),
                   -2px -2px 8px rgba(0, 0, 0, 0.1); 
        color: #383838;
    }
    h1 {
        text-align: center;
            background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }
    strong2 {
            background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        font-size:18px;
        font-weight: 600;
    }
    .contact-info {
        margin-bottom: 20px;
    }
    .contact-info h3 {
           background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }
    .contact-info p {
        margin: 5px 0;
    }
    .acknowledgement {
        margin-top: 20px;
    }
  .eu-dispute {
        margin-top: 20px;
    }
    .eu-dispute p {
        margin: 5px 0;
    }
    a {
        color: #535353;
        text-decoration: none;
        margin-bottom: 15px;
    }
  a:hover {
        text-decoration: underline;
    }
    .a3 {
        color: #00609e;

    }
  a3:hover {
        text-decoration: underline;
    }
 .a2 {
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
     
    }

footer {
    background-color: #929292;
    color: #fff;
    padding: 30px 15px; /* Ändern Sie die Polsterung nach Bedarf */
    height: 160px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Elemente oben ausrichten */
    max-width: 100%;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.footer-logo {
    width: 175px;
    height: auto;
    margin-bottom: 20px;
}

.footer-section2 { /* Änderung hier */
    flex: 1;
    margin: 0 10px;
}
/* Stil für den Zeilenumbruch */
.break {
    flex-basis: 100%; /* Füllt die gesamte Breite der Zeile */
    height: 0; /* Unsichtbare Höhe */
    margin-top: 10px; /* Abstand zwischen den Zeilen */
}

/* Zusätzliche Stile für Links */
.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section2 .technologies { /* Änderung hier */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 45px;
}

.footer-section2 .technologies img { /* Änderung hier */
    width: 50px; /* Standardbreite für die Logos */
    margin-right: 20px; /* Platz zwischen den Logos */
}
.social-media-icons {
    display: flex;
    align-items: center;
}


.social-media-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Um das Bild rund zu machen */
    margin-right: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animationseffekte hinzufügen */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten hinzufügen */
}

.social-media-icons img:hover {
    transform: scale(1.2); /* Vergrößern des Icons beim Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten vergrößern beim Hover */
}

.social-media-icons a:last-child img {
    margin-right: 0; /* Um den Abstand nach dem letzten Icon zu entfernen */
}
         @media not all and (min-resolution:.001dpcm) { @media {
    #production-time {
        -webkit-appearance: none; /* Entfernt das Standard-Styling von Dropdown-Menüs in Safari */
    }