

@font-face {
    font-family: 'Kabel Book';
    font-style: normal;
    font-weight: normal;
    src: local('Kabel Book'), url('kabel.woff') format('woff');
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

      .top-nav {
          position: sticky;
          top: 0;
          z-index: 1000; /* Sicherstellen, dass die Navigation immer oben bleibt */
          background-color: white; /* Hintergrundfarbe, um die Navigation sichtbar zu halten */
      }

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.header-left {
  flex: 2;
  width: 100% ;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header-left h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: bold;
    font-family: "Kabel Book";
    text-transform: uppercase;
    margin-bottom: 10px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.2;
    font-weight: bold;
    font-family: "Kabel Book";
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-left p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

nav ul {
    list-style-type: none !important;
    padding: 0 !important;
}

nav ul li {
    margin-bottom: 20px;
}




nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
}

nav ul li a:hover {
    color: #007BFF;
    text-decoration: underline;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right img {
    width: 500px;
    max-height: 600px;
}

.page-width{
    max-width: 1300px;
    margin: 0 auto;
}

.chance-card{
  margin-left: 30px;
}

@media screen and (max-width: 768px) {

  .chance-card{
    margin-left: 0px !important;
  }

    h1{
        font-size: 1.9rem !important;
    }

    .header-right {
        justify-content: center;
    }
    
}

.nav-desktop{
    position: absolute;
    top: 25%;
    right: 15%;

}


.clients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px;
    justify-content: center;
}

.client-logo {
    position: relative;
    width: 30%; /* Entspricht 3 Logos pro Zeile */
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriert das Logo vertikal */
    margin-bottom: 40px; /* Abstand nach unten */
    height: 200px; /* Maximale Höhe der Client-Box */
}

.client-logo-img {
    max-width: 100%;
    height: 100px;
    max-height: 100%;
    object-fit: contain; /* Verhindert Verzerrung */
}

.client-product {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.client-logo:hover .client-product {
    opacity: 1; /* Das Produkt wird eingeblendet */
}

.client-logo{
  transition: ease-in 0.3;

}

.client-logo-img{
  transition: ease-in 0.3;

}

.client-logo:hover .client-logo-img {
    scale: 1.5; /* Das Logo wird ausgeblendet */
    transition: ease-in 0.3;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


li{
    margin-bottom: 20px;

}

ul{
    list-style-type: none;
    padding: 0;
    text-align: left;
}

a{
    text-decoration: none;
    font-size: 16px;
    color: #000;
}

.clients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px;
    justify-content: center;
}

.client-logo {
    position: relative;
    width: 30%; /* Entspricht 3 Logos pro Zeile */
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriert das Logo vertikal */
    margin-bottom: 40px; /* Abstand nach unten */
    height: 200px; /* Maximale Höhe der Client-Box */
}

.client-logo-img {
    max-width: 100%;
    height: 100px;
    max-height: 100%;
    object-fit: contain; /* Verhindert Verzerrung */
}

.client-product {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.client-logo:hover .client-product {
    opacity: 1; /* Das Produkt wird eingeblendet */
}



.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .contact-page {
        flex-direction: column; /* Stellt sicher, dass auf mobilen Geräten die Elemente untereinander erscheinen */
        text-align: center;
    }

    .contact-form {
        margin-right: 0; /* Entfernt den rechten Abstand auf kleineren Bildschirmen */
        margin-bottom: 30px; /* Fügt einen Abstand nach unten hinzu */
    }

    .chance-card {
        margin-top: 20px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
  }
  
  .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .navbar li {
    margin: 0 15px;
  }
  
  .navbar a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #f0a500;
  }
  
  /* Burger-Menü */
  .burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }
  
  /* Responsive Design */
  @media (max-width: 2399px) {
    .nav-desktop {
      display: none;
    }
  
    .burger-menu {
      display: flex;
    }
  }



.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: black;
  height: 100px;
  padding: 1em;
}

.menu {
  display: none;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 20;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: black;
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}



#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}



@media (max-width: 2400px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 100px;
    display: block;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: black;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  .menu a{
    text-align: center;
    color: white;
  }
}



.contact-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form, .chance-card {
  flex: 1;
  margin-bottom: 20px;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .contact-page {
      flex-direction: column;
  }

  .chance-card {
      order: 1; /* Bild kommt vor das Kontaktformular */
  }

  .contact-form {
      order: 2; /* Kontaktformular danach */
  }

  .chance-card{
    flex: 0 0 300px !important
  }
}


/* Footer Container */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:black;
  color: white;
  padding: 10px;
  font-size: 14px;
  position: absolute;
  width: 100%;
  margin-top: 20px;
}

footer a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

/* Style für das Impressionen-Element */
.impress_container {
  display: flex;
  justify-content: flex-end; /* Platziert das Element am rechten Rand */
  margin-top: 10%; /* Schiebt es ans Ende des Containers */
  padding: 10px;
}

.impress_right {
  font-size: 20px;
  color: black;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .impress_right {
      font-size: 12px; /* Kleinere Schrift für mobile Geräte */
      padding: 8px; /* Weniger Padding für kleinere Bildschirme */
  }

  footer {
    bottom: unset !important;
      flex-direction: column;
      align-items: flex-start;
      font-size: 12px;
  }

  footer a {
      margin-right: 10px !important;
      margin-bottom: 5px;
  }

  footer {
      align-items: center !important;
      /* justify-content: center; */
      /* margin: 0 auto; */
  }




}

.menu{
  -webkit-box-shadow: 0px 40px 82px -47px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 40px 82px -47px rgba(0,0,0,0.75);
box-shadow: 0px 40px 82px -47px rgba(0,0,0,0.75);
}

#menu-toggle:checked ~ .menu li{
  justify-content: left !important;
  border:none;
  border-bottom: solid 1px lightgray;
}

@media (max-width: 2400px) {
  .menu a {
      color: black;
      width: 100%;
      font-weight: bold;
  }
}

#menu-toggle:checked ~ .menu li {
  justify-content: left !important;
  background: white;
}

@media (max-width: 2400px) {
  .menu > li {
      display: flex
;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: black !important;
      background-color: white; 
  }
}

footer{
  bottom: 0px;
}

.video-card {
  z-index: 1 !important;
}