body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #f0f0f0;
    font-weight: 300;
}

hr{
  border: 1px solid #1a1818;
}

.box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

img {
  /* transition: transform 0.3s; */
  width: 100%;
  height: 100%;
}

/* img:hover {
  transform: scale(1.1);
}
*/

.fixed-top-bar{
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #0c3a76;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar {
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0;
  background-color: #0c3a76;
  z-index: 9999;
}

.bottom-bar {
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #0c3a76;
  z-index: 9999;
  line-height: 2.0;

  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.space{
  display: flex;
  padding: 0.75% 0;
  gap: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #0c3a76;
}

.space1{
  display: flex;
  gap: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
}

.slideshow {
  position: relative;
  width: 100vw;          
  height: 400px;         
  overflow: hidden;
  /* outline: 3px solid rgb(109, 129, 143); */
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease; 
}

.slideshow img.active {
  opacity: 1;
}

.firma {
  display: inline-flex;
  align-items: center;
  gap: 4px; 
  font-weight: bold;
}

.logo {
  width: 45px;
  height: 35px;
}

.subline {
  display: block;
  font-size: 0.4em;
  font-weight: normal;
  margin-top: 5px;
}

.hover-blau {
  transition: color 0.3s ease,
  transform 0.3s ease;
  display: inline-block;
  color: inherit;
}

.hover-blau:hover {
  color: rgb(111, 214, 190);
  transform: scale(1.3);
}

.ueberschriftH{
  text-align: center;
  font-size: 19px;
  color: #000000;
  font-weight: bold;
}

.ueberschriftH a {
  color: inherit;
  text-decoration: none;
}

/* gallerie */
.gallery {
    display: grid;   
    grid-template-columns: repeat(3, 1fr);       
    gap: 40px;  
    padding: 40px;                 
    color: #1a1919; 
  }

.gallery-item {
    text-align: center;   
  }

.gallery-item img {
    width: 100%;           
    aspect-ratio: 4 / 4;   
    object-fit: cover;
    display: block;
    border-radius: 8px;     
  }

.gallery-item span {
    display: block;
    margin-top: 8px;       
    font-weight: bold;
  }

/* suchbar */
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%; 
  margin: 10px auto;
  color: #a7a7a7;
}

.search-input,
.search-select {
  padding: 10px 14px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-size: 14px;
  color: #979696;
  flex: 1;
}

.search-input:focus,
.search-select:focus {
  outline: none;
  border: 2px solid #979696;
}

.search-select {
  cursor: pointer;
}

.search-select option {
  color: #979696;      
}
.search-button {
  padding: 10px 20px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.search-button:hover {
  background: #0056b3;
}

/* Products-Allg */


/* Contact Seite */
.section {
  margin-bottom: 20px;
  color: #000000;
  font-size: 20px;
  padding-left: 20px;
}

.label {
  font-weight: bold;
}

.btn {
  background-color: #1a73e8;
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 10px;
  font-size: 16px;
}

/* more button */
.MoreButton{
  padding: 15px 35px;
  margin: 20px auto;
  border: none;
  background: #a7b4c2;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
  display: block;
  text-decoration: none;
}

.MoreButton:hover {
  background: #87c1ff;
}