/* Allgemeine Stile */

body {
    width:95%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    line-height: 1.0;


}
:root {
    --navbar-height: 100px; /* Höhe der Navigation */
}

section[id] {
    scroll-margin-top: var(--navbar-height); /* Offset für Ankerpunkte */
}
/* info */
.info {
    font-size: 6px;
    border-bottom: 1px solid #ddd;
	background-color:  #022c70 !important;
    color: #fff;
    margin:-1px;
	width:100%;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
	margin-left: 5px;
}
.info i {
    font-size: 7px;
}
	#gnom img {
    width: 70px; /* Größe des Bildes anpassen */
    height: auto;
}
 #gnom {
        display: block;
    }
/* Navigation */

.navbar {
    margin-top: 40px; /* Höhe der Info-Leiste */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
	font-size: 1.2rem;
	line-height: 1;
    letter-spacing: 0px;
    font-weight: 100;

}
.navbar img {
    height: 50px; /* Optional: Setze eine maximale Höhe für das Bild */
    object-fit: contain; /* Sorgt dafür, dass das Bild korrekt innerhalb des Containers bleibt */
}
.navbar.scrolled {

    background-color: #fff;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.nav-link.active {

    color: #022c70 !important;

}

.nav-link:hover {

    color: #0056b3 !important;
	font-weight: 400;

}

/* Hero Section */

#hero {
    
    font-family: 'Poppins', sans-serif;

    font-weight: 400;

    font-size: 16px;

    position: relative;

    width: 100%;

    height: 100vh;

    background-image: url('img/lasercut.jpg');

    background-size: cover;

    background-position: center;

}

.overlay {
    
    position: absolute;

    top: 0%;

    left: 0;

    width: 100%;

    height: 100%;
	font-size: 14px;
    background-color: rgba(2, 44, 112, 0.7);
    clip-path: polygon(20% 0, 60% 0, 90% 100%, 50% 100%);
}
.headline {
	margin-top: 40%;
	margin-left: 7%;
    width: 80%;
}
.banner {
	display: flex;
	margin-top: 80px;
	height:100px;
	width: 80%;
    background: rgba(0,0,0,0.5);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7);
	justify-content: center; /* Horizontale Zentrierung */
	margin-left:50px;
}
    .banner img {
	margin-top: 7%;
	width: 120px !important;
    height: 70px !important;
    object-fit: cover; /* Bild wird beschnitten, um den Bereich zu füllen */
    cursor: pointer; /* Zeigt an, dass das Bild klickbar ist */
    }
h1 {
  font-family: "Teko";
  font-size: 14px;
    line-height: 1;
    letter-spacing: 0px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
}
h2 {
  font-family: "Teko";
  color: #007bff;
  font-size: 10px;
}	
h3 {
  font-family: "Teko";
  font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    font-weight: 500;
    font-style: normal;
}

/*Symbole */
.fas {
    color: #4a90e2 !important; /* Heller Blauton */
}

/* Rechteck um h2 */

.rectangle {
  
  width: 200px;

  height: 20px;

  background-color: light-white;

  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
	margin: 20px; /* optional, Abstand zum H2 */
  display: inline-block; /* Damit das Rechteck auch zentriert wird */
  margin: 5px;

}
/* Über uns*/
.about-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center;    /* Vertikale Zentrierung */
    text-align: center;     /* Zentriert den Text innerhalb der Elemente */
    flex-wrap: wrap;        /* Inhalte umbrechen lassen, falls nötig */
}

.about-text {
    flex: 2;
    font-family: Arial, sans-serif;

}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.about-head{
    display: flex;
    justify-content: center;  /* Horizontal zentrieren */
    align-items: center;      /* Vertikal zentrieren */
	width: 100%;              /* Volle Breite des Viewports */
}
.about-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center; /* Horizontale Zentrierung der Inhalte in der Karte */
    align-items: center;     /* Vertikale Zentrierung der Inhalte in der Karte */
    text-align: center;      /* Zentriert den Text */
    flex-wrap: wrap;         /* Falls der Inhalt zu breit wird, wird er umgebrochen */
}


/* Projektzähler */


#projectCount {
    font-size: 100px;
    font-weight: bold;
    color: #007bff;
	justify-content: center; /* Horizontale Zentrierung der Inhalte in der Karte */
    align-items: center;     /* Vertikale Zentrierung der Inhalte in der Karte */
	height: 240px;
}


.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 10;
}

.carousel-control.prev {
    left: 20px;
}
.carousel-control-prev-icon {
	height:10px !important;
	width:10px !important;
}
.carousel-control.next {
    right: 20px;
}
.carousel-control-next-icon {
	height:10px !important;
	width:10px !important;
}
.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Service Cards */

.service-card {

    border: 1px solid #ddd;

    border-radius: 8px;

    transition: transform 0.3s ease;
	
	height: 200px;
    
	
}

.service-card:hover {

    transform: translateY(-10px);

}




/* Kontaktformular */

/* Kontaktformular */
#contact {
  display: flex;               /* Flexbox aktivieren */
  justify-content: center;     /* Horizontal zentrieren */
  align-items: center;         /* Vertikal zentrieren */
  width: 100%;
}

#contact form .form-control {

    margin-bottom: 15px;

}
.contact-container {
  display: flex;
  flex-direction: column;      /* Inhalte im Container werden untereinander angezeigt */
  align-items: center;         /* Zentriert die Inhalte horizontal */
  justify-content: center;     /* Zentriert die Inhalte vertikal */
  background-color: #fff;      /* Weißer Hintergrund für das Formular */
  border-radius: 8px;          /* Ecken abrunden */
  padding: 80px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Schatteneffekt */
  width: 95%;                 /* Flexibilität bei der Breite */
}


/* AOS-Animation */

[data-aos] {

    opacity: 0;

    transform: translate3d(0, 20px, 0);

    transition: opacity 0.4s ease, transform 0.4s ease;

}

[data-aos].aos-animate {

    opacity: 1;

    transform: translate3d(0, 0, 0);

}
/* Modal Impressum */
/* Das Modal wird standardmäßig unsichtbar sein */
.modal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed; /* Fest positioniert */
    z-index: 1000; /* Modal über anderen Inhalten */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Abgedunkelter Hintergrund */
}

/* Modal-Inhalt */
.modal-content {
    background-color: white;
	color: black;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}

/* Das "Schließen"-Symbol */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
	

.top5 {
    display: none;
}
	