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

body {
font-family:Tahoma,Helvetica,sans-serif;   
font-family: 'MyCustomFont', 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: 5px;
    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;
    height: 100%;
    }
.map-container {
    position:inherit;
    border-style: solid;
    text-align: left;
    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{
    height: 100%;
 }
#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;
}

.all{
    height: 100%;
    width: 100%;   
}

#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 */
}

.con1 {
    width: 100%;
    height: 250px;
    background-color: #fff;
    z-index: 1;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5em;
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 55px;
    color: #4f4f4f;
}

.cta-button {
    background-color: #35c63b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45a049;
}
#con2 {
    width: 100%;
    height: 575px;
    background-color: #F5F5F5;
    text-align: center;
}
#con2 h2 {
    font-size: 2.5em;
         background-image:linear-gradient(to bottom, #4CAF50, #008CBA);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

.service-container {
  display: flex;
  justify-content: space-between; /* Platz zwischen den Containern verteilen */
}

.service {
  width: 17%; /* Ändern Sie diese Breite nach Bedarf */
  height: 400px;
  padding: 20px;
  margin-top: 5px;    
  margin-bottom: 20px; /* Abstand zwischen den Containern */
  background-color: #26d22e;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3),
            -2px -2px 5px rgba(0, 0, 0, 0.3); 
}

.service h3{
  font-size: 20px;
  font-weight: 600;
  color: #535353;
  margin-top: 0;
}

.service ul {
  list-style-type: none;
  padding: 0;
}

.service li {
  margin-bottom: 9%;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service li:hover {
  transform: translateY(-5px); /* Verschiebe das Element nach oben */
  color: blue; /* Ändere die Textfarbe */
}
.wp,
.wp2,
.wp3 {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

/* Abstand für den ersten Container */
.service:first-child {
  margin-left: 8%; /* Anpassen Sie den gewünschten Abstand nach links */
}

/* Abstand für den letzten Container */
.service:last-child {
  margin-right: 8%; /* Anpassen Sie den gewünschten Abstand nach rechts */
}

.container {
    width: 100%;
    display: flex;
}
#con3 {
    width: 60%;
    height: 540px;
    background-color: #fff;
}

#con32 {
    width: 40%;
    height: 540px;
    background-color: #fff;
    display: flex;
    flex-direction: row; /* Horizontale Ausrichtung */
}

.img32 {
    margin-top: 20%;
    margin-left: 11%;
    height: 56%;
    width: 80%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2),
               -2px -2px 6px  rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease; /* Übergangseffekt für den Schatten */
}

.img32:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Schatten vergrößern und dunkler machen beim Hover */
}

#con3 h2 {
    font-size: 2.5em;
    margin-left: 72%;
    margin-bottom: 30px;
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tc{
display: block;   
    }

.slogan {
    font-family: Montserrat;
    font-size: 2em;
    font-weight: 600;
    color: #4f4f4f;
    margin-top: 5px;
    margin-left: 4%;
}

.slogan2 {
    font-family: Montserrat;
    font-size: 1.8em;
    font-weight: 600;
    color: #4f4f4f;
    margin-top: 5px;
    margin-left: 11%;
}

.con3-text {
    font-size: 16px;
    color: #4f4f4f;
    margin-top: 50px;
    margin-bottom: 100px;
    margin-left: 5%;
}

.con3-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-left: -3.5%;
}

.cta-button3 {
    background-color: #35c63b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-left: 72%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button3:hover {
    background-color: #45a049;
}
#con4 {
    width: 100%;
    height: 540px;
    background-color: #F5F5F5;
    text-align: center;
}
.header-content2 {
    align-items: center;
}
#con4 h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: -5px;
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#con4 p {
    font-size: 1.3em;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #4f4f4f;   
}

/* Slideshow container */
.mySlides {
  display: none;
}
img {
  vertical-align: middle;
  width: 100%; /* Füge die Breite hier hinzu */
}

.slideshow-container {
  width: 550px;
  position: relative;
  margin: auto;
 box-shadow: 2px 2px 1px 	#DCDCDC,
             -2px -2px 1px 	#DCDCDC;
}

.dot-container {
  display: flex;
  justify-content: center;
}

.dot {
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 0 7px; /* Hier kannst du den Abstand zwischen den Dots einstellen */
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
/* Fading animation */
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1.5; }
}

/* Füge die Animation zur fade-Klasse hinzu */
.fade {
    animation: fade 1.5s ease-in-out;
}

 #con5 {
    width: 100%;
    height: 1230px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glowing-text {
    font-size: 3em;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 40px;
    margin-top: 5px;
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#anrede-buttons {
    display: flex;
    align-items: center;
    margin-left: 120px;
    margin-bottom: 15px;
}

#anrede-buttons input[type="radio"] {
    display: none;
}

#anrede-buttons label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 40px;
    padding-left: 40px; /* Platz für den Kreis */
    line-height: 30px; /* Vertikale Ausrichtung */
    transition: background-color 0.3s; /* Hover-Effekt */
}

#anrede-buttons label:hover {
    background-color: #f0f0f0; /* Hintergrundfarbe beim Überfahren */
}

#anrede-buttons label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
}

#anrede-buttons input[type="radio"]:checked + label::before {
    background: linear-gradient(to bottom, #4CAF50, #008CBA);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); /* Leichter 3D-Effekt */
}
#anrede-buttons label span {
    margin-left: 5px;
}
.eigene-anrede{
    display: none;
}

.radio-input {
    display: none;
}

.radio-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

.radio-label input[type="radio"]:checked + .radio-label::before {
    border-color: #4CAF50; /* Farbe für ausgewählten Kreis */
    background: linear-gradient(to bottom, #4CAF50, #008CBA); /* Farbverlauf für den ausgewählten Kreis */
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.2); /* Leichter Schatten um den Kreis */
}

@keyframes checkedEffect {
    0% {
        transform: scale(1); /* Anfangsgröße */
    }
    50% {
        transform: scale(1.2); /* Größenzunahme */
    }
    100% {
        transform: scale(1); /* Endgröße */
    }
}

#contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#contact-form input,
#contact-form textarea {
    width: calc(100% - 22px); /* Adjusted to accommodate border width */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten */
    transition: border-color 0.3s, box-shadow 0.3s;
}
#contact-form textarea {
    width: calc(100% - 22px); /* Adjusted to accommodate border width */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten */
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 200px; /* Neue Höhe für den Textbereich */
    resize: none; /* Verhindert das Ändern der Größe */
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #4CAF50; /* Farbe ändern bei Fokus */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#contact-form button {
    background-color: #4CAF50; /* Farbverlauf */
    background-image: linear-gradient(to bottom, #4CAF50, #008CBA);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #45a049;
}

.required {
    color: red;
}
   .confirmation-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .confirmation-popup p {
        margin: 0;
    }
#contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Style für das Dropdown-Menü */
#production-time {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#production-time:focus {
    border-color: #4CAF50;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

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 */
}

.hbl{
  width:105px;
}

         @media not all and (min-resolution:.001dpcm) { @media {
    #production-time {
        -webkit-appearance: none; /* Entfernt das Standard-Styling von Dropdown-Menüs in Safari */
    }