/*navbar */
body {
  padding-top: 100px;
}


.projects {
  width: 100%;
  padding: 5vw;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.image-grid-item {
  display: flex;
  flex-direction: column;
  width: 32%;
  max-height: 400px;
  margin-bottom: 1rem;
  justify-content: space-between;
}



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

  .image-grid-item {
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  .image-grid-item {
    width: 95%;
  }

  .u-section-8 .u-image-2 {
    height: 0;
    min-height: 0;
  }

  .u-section-8 .u-image-1 {
    height: 0;
    min-height: 0;
  }

  .u-section-8 .u-image-3 {
    height: 0;
    min-height: 0;
  }

  .u-section-8 .u-image-4 {
    height: 0;
    min-height: 0;
  }

  .u-section-8 .u-sheet-1 {
    min-height: 0;
    padding-bottom: 60px;
  }

}

.project-location {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 4px;
  font-weight: 400;
  text-transform: none;
}

.image-grid img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: auto;

}


.bouncing-image {
  cursor: pointer;
  animation: bounce 1s infinite;
  display: inline-block;
  transition: transform 0.2s;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Optional hover effect */
.bouncing-image:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}




.clickable-image {
  cursor: pointer;
  animation: pulse 1s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

/* Optional hover effect */
.clickable-image:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}




/* Hide all slides by default */
.slides img {
  display: none;
  height: 100%;
  margin: 0;
  max-width: 500px;
}

/* Make the first slide visible */
.slides img:first-child {
  display: block;
}

.slideshow-container{
  margin-bottom:65px;
}

.slides-wrapper {
  /* background-color: rgba(0, 0, 0, 0.1); */
  display: flex;
  justify-content: center;
  height: 400px;
  width: 700px;

  max-width: 90%;
}

nav {
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
  background-color: #e76118;


  top: 0;
  position: fixed;
  width: 100%;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  max-height: 80px;
  width: auto;
  margin-right: 10px;
}

nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 100%;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {

  background-color: #f5f5f5;

}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: fixed;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}

.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
  }
}



/* 

align footer to bottom

*/

/* 
html, body {
  height: 100%;
  margin: 0;
} */

body {
  display: flex;
  flex-direction: column;
}

.main-content-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
}


.main-content {
  flex: 1;
}













/*footer */
.footer {
  background: #10182F;
  border-radius: .5rem .5rem 0 0;
}

.footer img {
  max-height: 20px;
  margin-left: 5px;
  margin-right: 5px;
}

.footer a {
  color: white;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-row .footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #bfbfbf;
}

.footer-col .links li a:hover {
  color: #fff;
}

.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489C6;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: #ccc;
}

.footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #cecccc;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: #afb6c7;
}

.footer-col .icons i:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}




.google-maps {
  width: 50%;
  max-width: 500px;
}

.contact_form {
  border: 3px solid #e76118;
  padding: 1rem;
  max-width: 400px;
  border-radius: .8rem;

}

.google-maps-row {
  display: flex;
}


.contact-row {
  display: flex;
}

.contact-row .item {
  margin: 0 auto;
  flex: 1
}

@media (max-width: 1000px){
  .contact-row{
    flex-direction: column;
  }

  .contact-row .item {
    margin: none;
    flex: 1
  }

  .contact-row img {
    width: 100%;
  }

}


.product-list-more-infos {
  margin-top: auto !important;
}

.leistungs-icon {
  margin-left: auto;
  margin-top: auto;
}

.leistungs-icon img {
  height: 10rem;
}

.kontaktieren-row {
  display: flex;
  justify-content: space-between;

}

.kontaktieren-row img {
  height: 10rem;
  filter: brightness(0) invert(1);
}






.swiper {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 60px 173px 0 auto;
  margin-top: 40px;
  z-index: 0;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}