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;

}@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}.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);
  }
}.clickable-image:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}.slides img {
  display: none;
  height: 100%;
  margin: 0;
  max-width: 500px;
}.slides img:first-child {
  display: block;
}.slideshow-container{
  margin-bottom:65px;
}.slides-wrapper {
  
  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 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;
  }}body {
  display: flex;
  flex-direction: column;
}.main-content-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
}.main-content {
  flex: 1;
}.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 p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}.footer-adresse p {
  margin: 12px 0 0;
  line-height: 1.7;
  max-width: 26rem;
}.footer-adresse a {
  white-space: nowrap;
}@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;
  }}.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;
}.kontaktieren-row {
  display: flex;
  justify-content: space-between;

}.kontaktieren-row img {
  height: 10rem;
  filter: brightness(0) invert(1);
}.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Gleiche Einrueckung wie die Eingabefelder: die bekommen ueber
   .u-form-spacing-19 ein padding-left von 19px (nicepage.css). Ohne
   das klebten Datenschutz-Zeile, Pflichtfeld-Hinweis und Status am
   orangen Rahmen. */
.form-datenschutz,
.form-pflichtfeld-hinweis,
.form-status {
  padding-left: 19px;
  padding-right: 19px;
}

.form-datenschutz {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: .75rem 0 .25rem;
  font-size: .875rem;
  line-height: 1.4;
}.form-datenschutz input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .1rem;
  accent-color: #e76118;
}.form-datenschutz a {
  color: #e76118;
  text-decoration: underline;
}.form-pflichtfeld-hinweis {
  margin: .25rem 0 .75rem;
  font-size: .8125rem;
  color: #666;
}#kontaktformular.abgeschickt input:invalid,
#kontaktformular.abgeschickt textarea:invalid {
  border-color: #d32f2f;
  background-color: #fff6f6;
}#kontaktformular button[type="submit"] {
  cursor: pointer;
  font: inherit;
}.form-status {
  margin: .75rem 0 0;
  font-size: .9375rem;
  min-height: 1.2em;
}.form-status.ok {
  color: #2e7d32;
  font-weight: 600;
}.form-status.fehler {
  color: #d32f2f;
  font-weight: 600;
}:where(img[width][height]) {
  width: auto;
  height: auto;
}