* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Roots */
  :root {
    --black: #000000;
    --white: #FFFFFF;
    --darkgray: #ADADAD; 
    --lightgray: #F8F8F8;
  }
  
  
  /* Basic */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    margin: 50px;
    overflow-x: hidden;
  }

  body.no-scroll {
    overflow: hidden;
}
  
  a {
    text-decoration: none;
  }

  a.link {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--darkgray);
    font-size: 18px;
    font-weight: 600;
  }

  .feathericon {
    width: 30px;
    height: auto;
  }

  .send-feathericon {
    width: 25px;
    height: auto;
  }
  
  li {
 list-style-type: none;
  }

  p {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
  }
  
  h1 {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
  }
  
  h2 {
  display: inline; /* Macht den Button flexibel und anpassbar */
  align-items: center; /* Zentriert den Text und das Icon */
  gap: 8px; /* Abstand zwischen Text und Icon */
  padding: 10px 26px; /* Innenabstand für bessere Lesbarkeit */
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px; /* Macht die abgerundete Form */
  transition: background 0.3s ease-in-out;
  border: none;
  white-space: nowrap; /* Verhindert Umbrüche */
  }

  h3 {
    font-family: 'Inter', sans-serif;
    color: var(--darkgray);
    font-size: 24px;
    font-weight: 600;
    line-height: 115%;
  }
  
  button.nav-burger {
    font-size: 10px;
  }
  

  [data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 1;
  }
  
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }

  
  /* header */
/* Mobile-Navigation standardmäßig ausblenden */
.mobile-navigation-list {
  display: none;
}

nav.mobile-navigation {
  display: none;
}

/* Wenn das Menü geöffnet ist */
.mobile-navigation.expanded .mobile-navigation-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px; /* Abstand zum Header */
  left: 0;
  width: 100%;
  background-color: white;
  padding: 30px 0px;
  height: 100vh;
  overflow: hidden;
  padding: 40px;
  z-index: 9998;
}

/* Hamburger-Buttons standardmäßig verstecken */
.nav-burger {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


header {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
  
.Logo-2 {
width: 300px;
height: auto;
}


/* header */
.Logo {
  width: 70px;
  height: auto;
  }



header ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.link-element {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--darkgray);
}

.contact-button {
  display: inline-flex; /* Macht den Button flexibel und anpassbar */
  align-items: center; /* Zentriert den Text und das Icon */
  gap: 10px; /* Abstand zwischen Text und Icon */
  padding: 10px 26px; /* Innenabstand für bessere Lesbarkeit */
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px; /* Macht die abgerundete Form */
  transition: background 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Verhindert Umbrüche */
}


  /* Hero-Section */
.italic-text {
  font-weight: 600;
}

.bold-text {
  font-weight: 600;
}

div.hero-container {
  display: flex;
  flex-direction: column;
  gap: 65px;
  margin-top: 80px;
  margin-bottom: 120px;
}

.two-images {
  margin-bottom: 60px;
}

.headline-leichtbauarchitektur {
  margin-top: 80px;
  margin-bottom: 65px;
}

div.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  width: 100%;
  height: 90vh;
  background-image: url("../img/home/Hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
}

div.hero-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 30px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  width: 80%;
}

.text-highlight {
  color: var(--darkgray);
}

.home-services {
  margin-bottom: 120px;
}


/* Main */
.floating-phone {
  position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 9999; 
    background-color: var(--black);
    color: white;
    font-size: 24px;
    width: 60px; /* Feste Breite */
    height: 60px; /* Feste Höhe */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/*Benefits*/
.benefits-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 120px;
  gap: 65px;
}

.benefits-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 30px;
}

.benefits-card {
  display: flex;
  flex-direction: column;
  background-color: var(--lightgray);
  border-radius: 40px;
  padding: 40px 50px;
  gap: 90px;
  width: 33%;
}

.benefits-card div {
  padding-top: 25px;
}


/*Services*/
.services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

div.service-content {
  padding: 50px;
  background-image: url("../img/home/alexander-abero-OypnYfdiQgg-unsplash.jpg");
  background-size: cover;
  background-position: bottom;
}

div.outdoor-living-system {
  background-image: url("../img/home/outdoor-living-system.jpg");
}

.outdoor-living-system-2 {
  background-image: none;
}

div.outdoor-living-system-2 {
  background-image: none;
}

div.service-card {
  padding-top: 40px;
  max-width: 500px;
  gap: 35px;
}

.outdoor-living-video-section {
  margin-top: 8px;
}


#background-video {
  position: absolute;
  z-index: 1;
  border-radius: 40px;
  max-width: 100%;
  height: 90vh;
  width: 5000px;
  object-fit: cover;
  overflow: hidden;
}

.row-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.service-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  width: 80%;
}

.service-title {
  font-size: 16px;
}

.first-row-services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 100%;
}


div.services-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  width: 33%;
  height: 450px;
}

div.services-content.first-image {
  background-image: url("../img/home/thirsty-turf-irrigation-cuZEzaryFjE-unsplash.jpg");
}

div.services-content.second-image {
  background-image: url("../img/home/gil-ribeiro-3hO8igCybds-unsplash.jpg");
}

div.services-content.third-image {
  background-image: url("../img/home/claudio-schwarz-a85IYeAXgxU-unsplash.jpg");
}

div.services-content.fourth-image {
  background-image: url("../img/home/sam-loyd-qy27JnsH9sU-unsplash.jpg");
}

div.services-content.fifth-image {
  background-image: url("../img/home/julian-hochgesang-Dkn8-zPIbwo-unsplash.jpg");
}

div.services-content.sixth-image {
  background-image: url("../img/home/filip-mroz-TDiWmXb9-qk-unsplash.jpg");
}

div.services-content.seventh-image {
  background-image: url("../img/leichtbau/Pergola.jpg");
}

div.services-content.eightth-image {
  background-image: url("../img/leichtbau/Carport.jpg");
}

div.services-content.ninth-image {
  background-image: url("../img/leichtbau/tuer.jpg");
  background-position: center;
}

div.services-content.tenth-image {
  background-image: url("../img/leichtbau/Sonnenschutz.jpg");
}

div.services-content.eleventh-image {
  background-image: url("../img/leichtbau/moebel.jpg");
}

div.services-content.twelfth-image {
  background-image: url("../img/leichtbau/Sichtschutz.jpg");
}

.service-card-text {
  font-size: 14px;
  width: 100%;
}

.service-card-title {
  font-size: 13px;
  padding: 8px 20px;
}


div.service-content-card {
  padding-top: 40px;
  gap: 25px;
  height: 175px;
}


.second-row-services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 100%;
}


.two-images {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 100%;
}

.two-images .bild-1 {
  width: 60%;
  border-radius: 40px;
}

.two-images .bild-2 {
  width: 40%;
  height: auto;
  border-radius: 40px;
}



/* Über uns */
/* .portraits-container {
  display: none;
}  */

.special-employee-card {
  display: none;
}

.infotext-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-bottom: 80px;
  margin-top: 80px;
}

.contact-container {
  margin-top: 20px;
}

.infotext-content{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  width: 60%;
}

.infotext-images {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 550px;
}

.img-left {
  width: calc(60% - 15px);
  object-fit: cover;
  margin-right: 30px;
  border-radius: 40px;
}

.img-right {
  width: calc(40% - 15px);
  object-fit: cover;
  border-radius: 40px;
}


footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 65px;
  margin-bottom: 120px;
}

.CTA-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.text-footer {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--darkgray);
}

.nav-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 200%;
  color: var(--darkgray);
}

.nav-footer ul {
  width: 300px;
}

.nav-footer ul li:first-child {
  font-weight: 600;
}

.footer-addition {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
}

.footer-addition a {
  width: 300px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--darkgray);
}

.footer-addition p {
  width: 300px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--darkgray);
}





/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 80px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.employee-big-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 30px;
}

/*Main Employees*/

div.first-employee {
  padding: 50px;
  height: 600px;
}

div.second-employee {
  padding: 50px;
  height: 600px;
}

div.third-employee {
  padding: 50px;
  height: 600px;
}

div.employee-content-card {
  padding: 25px;
  padding-top: 30px;
  gap: 25px;
  height: 150px;
  width: 100%;
}


div.services-content.first-employee {
  background-image: url("../img/about/Dario.jpg");
  background-position: center;
}

div.services-content.second-employee {
  background-image: url("../img/about/Jakov.jpg");
  background-position: center;
}
div.services-content.third-employee {
  background-image: url("../img/about/Valentin.jpg");
  background-position: center;
}

.employee-telefonnumber {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--darkgray);
}

div.services-content.employee-content {
  justify-content: center;
}

.more-employees-first-row {
  width: 100%;
}

.more-employees-second-row {
  width: 100%;
}

/*More Employees*/
.more-employees-card {
  padding: 30px;
  padding-top: 35px;
  gap: 30px;
  height: 175px;
}

.special-employee-card {
  height: 300px;
  background-color: var(--white);
  border-style: solid;
  border-color: var(--lightgray);
  border-width: 2.5px;
}

.employee-title {
  font-size: 13px;
  padding: 8px 20px;
}

.employee-text {
  font-size: 14px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials {
  display: none;
}

.testimonials-card {
  width: 50%;
  gap: 60px;
}

p.testimonials-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
}

p.testimonials-author {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--darkgray);
}

/* Values */
.values-img-left {
  width: calc(40% - 15px);
  object-fit: cover;
  margin-right: 30px;
  border-radius: 40px;
}

.values-img-right {
  width: calc(60% - 15px);
  object-fit: cover;
  border-radius: 40px;
}

.our-values-container {
  gap: 65px;
  margin-bottom: 65px;
}


.values-card {
  height: 225px;
  gap: 70px;
}

.values-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 20px;
}

.about-special-values {
  margin-bottom: 120px;
}

.values-title {
  font-size: 16px;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

a.special-link {
  display: inline-flex;
  text-align: center;
  gap: 5px;
}





/***************** *****************/
/* Neue Seite Kontakt */
/***************** *****************/
/* Layout für die Kontaktsektion */
.hero-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 120px;
  height: 800px;
}

.contact-title {
  width: 450px;
  text-align: center;
  margin-bottom: 50px;
  align-self: center;
}

.hero-contact-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  background: white;
  padding: 20px;
  border-radius: 12px;
}

/* Kontaktformular */
form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.first-information,
.second-information {
  display: flex;
  gap: 20px;
}

.firstname,
.surname,
.email,
.phone {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}



.last-child-label {
  margin-bottom: 10px;
}

input, textarea {
  padding: 20px 20px;
  border: none;
  background-color: var(--lightgray);
  border-radius: 50px;
  font-size: 1rem;
}


textarea {
  min-height: 150px;
  border-radius: 20px;
  resize: none;  /* Verhindert das Vergrößern oder Verkleinern */
}

button.send-contact-button {
  margin-top: 15px;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  width: 150px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button i {
  width: 16px;
  height: 16px;
}

/* Google Maps */
.google-maps {
  flex: 1;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}


div.message {
  display: flex;
  flex-direction: column;
}



/***************** *****************/
/* Neue Seite Datenschutz */
/***************** *****************/

.datenschutz-text {
width: 70%;
text-align: center;
}

.datenschutz-container {
  align-items: center;
}





/*
  * Responsive Styles: 1566px and below
  Laptop
  */

  @media screen and (max-width: 1566px) { 
  /* Basic */
  
  a.link {
    gap: 7px;
    font-size: 16px;
  }
  
 
  p {
    font-size: 16px;
    line-height: 130%;
  }
  
  h1 {
    font-size: 70px;
    line-height: 125%;
  }
  
  h2 {
  gap: 8px; /* Abstand zwischen Text und Icon */
  padding: 8px 22px; /* Innenabstand für bessere Lesbarkeit */
  font-size: 14px;
  }

  h3 {
    font-size: 22px;
  }
  
  
  
.contact-button {
  padding: 8px 24px; /* Innenabstand für bessere Lesbarkeit */
}


  /* Hero-Section */
div.hero-container {
  gap: 40px;
}

.headline-leichtbauarchitektur {
  margin-bottom: 40px;
}

div.hero-content {
  padding: 40px;
  height: 75vh;
  background-position: bottom;
}

div.hero-card {
  padding: 25px;
  max-width: 400px;
  gap: 30px;
}

.hero-text {
  font-size: 23px;
  line-height: 120%;
  width: 75%;
}




/*Benefits*/
.benefits-container {
  gap: 40px;
}

.benefits-content {
  gap: 25px;
}

.benefits-card {
  padding: 30px 40px;
  gap: 70px;
  height: 350px;
}

.benefits-card div {
  padding-top: 20px;
}


/*Services*/
.services-container {
  gap: 25px;
}


div.service-card {
  padding-top: 30px;
  max-width: 400px;
  gap: 30px;
}


.service-text {
  font-size: 19px;
  line-height: 125%;
  width: 75%;
}

.service-title {
  font-size: 14px;
}

.first-row-services {
  gap: 25px;
}


div.services-content {
  padding: 30px;
  height: 350px;
}


.service-card-text {
  font-size: 13px;
  width: 95%;
}



div.service-content-card {
  padding-top: 30px;
  gap: 20px;
  height: 175px;
}


.second-row-services {
  gap: 25px;
}



#background-video {
  height: 75vh;
  width: 4000px;
}

/* Über uns */


.infotext-content{
  width: 70%;
}

.read-more-button {
  font-size: 16px;
  padding: 6px 20px;
}

.infotext-images {
  height: 500px;
}

.img-left {
  margin-right: 25px;
}



/* Footer */
footer {
  margin-bottom: 60px;
}


/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 80px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*Main Employees*/

div.first-employee {
  padding: 40px;
  height: 550px;
}

div.second-employee {
  padding: 40px;
  height: 550px;
}

div.third-employee {
  padding: 40px;
  height: 550px;
}

div.employee-content-card {
  padding: 25px;
  padding-top: 30px;
  gap: 25px;
  height: 160px;
}


.employee-telefonnumber {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--darkgray);
}

div.services-content.employee-content {
  justify-content: center;
}

/*More Employees*/
.more-employees-card {
  padding: 30px;
  padding-top: 35px;
  gap: 30px;
  height: 175px;
}

.employee-title {
  font-size: 13px;
  padding: 8px 20px;
}

.employee-text {
  font-size: 14px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-card {
  width: 50%;
  gap: 60px;
  height: 360px;
}

p.testimonials-card-text {
  font-size: 23px;
}

p.testimonials-author {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--darkgray);
}

/* Values */

.our-values-container {
  gap: 65px;
  margin-bottom: 65px;
}


.values-card {
  height: 275px;
  gap: 50px;
}

.values-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 20px;
}

.values-title {
  font-size: 16px;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

  }







      /*
  * Responsive Styles: 966px and below
  Tablet Landscape
  */


  @media screen and (max-width: 1283px) { 
   
   
 /* Basic */
  
  a.link {
    gap: 5px;
    font-size: 14px;
  }
  
  .feathericon {
    width: 25px;
    height: auto;
  }

  .send-feathericon {
    width: 20px;
    height: auto;
  }
 
  p {
    font-size: 14px;
    line-height: 130%;
  }
  
  h1 {
    font-size: 56px;
  }
  
  h2 {
  gap: 8px; /* Abstand zwischen Text und Icon */
  padding: 6px 14px; /* Innenabstand für bessere Lesbarkeit */
  font-size: 11px;
  }

  h3 {
    font-size: 20px;
  }
  
  
  
.contact-button {
  padding: 5px 18px; /* Innenabstand für bessere Lesbarkeit */
  font-size: 18px;
}

/* header */
.Logo {
width: 55px;
}

.Logo-2 {
  width: 250px;
}

header ul {
gap: 75px;
}

.link-element {
font-size: 18px;
}


  /* Hero-Section */
div.hero-content {
  padding: 40px;
  height: 60vh;
  background-position: bottom;
}

div.hero-card {
  max-width: 350px;
}

.hero-text {
  font-size: 20px;
  line-height: 120%;
  width: 75%;
}




/*Benefits*/
.benefits-card {
  padding: 20px 30px;
  gap: 60px;
  height: 325px;
}

.benefits-card div {
  padding-top: 20px;
}


/*Services*/
div.service-card {
  max-width: 350px;
  gap: 25px;
}


.service-text {
  font-size: 16px;
  line-height: 125%;
  width: 75%;
}

.service-title {
  font-size: 11px;
}

.first-row-services {
  gap: 25px;
}


div.services-content {
  padding: 30px;
  height: 375px;
}


.service-card-text {
  font-size: 11px;
  width: 100%;
}



div.service-content-card {
  padding-top: 30px;
  gap: 20px;
  height: 145px;
  padding: 20px;
  padding-top: 23px;
}


#background-video {
  height: 60vh;
  width: 3500px;
}


/* Über uns */


.infotext-content{
  width: 70%;
}

.read-more-button {
  font-size: 14px;
  padding: 5px 16px;
}

.infotext-images {
  height: 425px;
}


/* Footer */

.nav-footer {
  gap: 40px;
  font-size: 13px;
  line-height: 200%;
}

.nav-footer ul {
  width: 250px;
}


.footer-addition {
  gap: 40px;
}

.footer-addition a {
  width: 250px;
  font-size: 10px;
}

.footer-addition p {
  width: 250px;
  font-size: 10px;
}


/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 80px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*Main Employees*/

div.first-employee {
  padding: 40px;
  height: 450px;
}

div.second-employee {
  padding: 40px;
  height: 450px;
}

div.third-employee {
  padding: 40px;
  height: 450px;
}

div.employee-content-card {
  padding: 20px;
  gap: 25px;
  height: 140px;
}


.employee-telefonnumber {
  font-size: 11px;
}

div.services-content.employee-content {
  justify-content: center;
  padding: 30px;
}

/*More Employees*/
.more-employees-card {
  padding: 25px;
  gap: 25px;
  height: 150px;
}

.employee-title {
  font-size: 11px;
  padding: 6px 14px;
}

.employee-text {
  font-size: 14px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-card {
  width: 50%;
  gap: 50px;
  height: 300px;
}

p.testimonials-card-text {
  font-size: 18px;
}

p.testimonials-author {
  font-size: 16px;
}

/* Values */

.our-values-container {
  gap: 65px;
  margin-bottom: 65px;
}


.values-card {
  height: 180px;
  gap: 35px;
}

.values-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 14px;
}

.values-title {
  font-size: 14px;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}


.contact-title {
  width: 350px;
}
  }











    /*
  * Responsive Styles: 723px and below
  Tablet 
  */
  @media screen and (max-width: 1041px) { 

  /* Basic */
  
  a.link {
    gap: 5px;
    font-size: 14px;
  }
  
 
  p {
    font-size: 12px;
    line-height: 130%;
  }
  
  h1 {
    font-size: 46px;
  }
  
  h2 {
  gap: 8px; /* Abstand zwischen Text und Icon */
  padding: 6px 12px; /* Innenabstand für bessere Lesbarkeit */
  font-size: 9px;
  }

  h3 {
    font-size: 18px;
  }
  
  
  
.contact-button {
  padding: 3px 16px; /* Innenabstand für bessere Lesbarkeit */
  font-size: 15px;
}

/* header */
.Logo {
width: 40px;
}

.Logo-2 {
  width: 200px;
}

header ul {
gap: 40px;
}

.link-element {
font-size: 15px;
}


  /* Hero-Section */
div.hero-content {
  padding: 30px;
  height: 45vh;
  background-position: bottom;
}

div.hero-container {
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 100px;
}

.headline-leichtbauarchitektur {
  margin-top: 60px;
  margin-bottom: 30px;
}

div.hero-card {
  max-width: 300px;
}

.hero-text {
  font-size: 18px;
  line-height: 120%;
  width: 75%;
}




/*Benefits*/
.benefits-container {
  margin-bottom: 100px;
  gap: 30px;
}

.benefits-card {
  padding: 10px 20px;
  gap: 50px;
  height: 310px;
  border-radius: 25px;
}

.benefits-card div {
  padding-top: 15px;
}


/*Services*/
div.service-card {
  max-width: 300px;
  gap: 20px;
}


.service-text {
  font-size: 14px;
  line-height: 125%;
  width: 80%;
}

.service-title {
  font-size: 11px;
}

.first-row-services {
  gap: 25px;
}

div.services-content.first-image {
  background-image: url("../img/home/thirsty-turf-irrigation-cuZEzaryFjE-unsplash.jpg");
  width: 100%;
}

div.services-content.second-image {
  background-image: url("../img/home/gil-ribeiro-3hO8igCybds-unsplash.jpg");
  width: 100%;
}

div.services-content.third-image {
  background-image: url("../img/home/claudio-schwarz-a85IYeAXgxU-unsplash.jpg");
  width: 100%;
}

div.services-content.fourth-image {
  background-image: url("../img/home/sam-loyd-qy27JnsH9sU-unsplash.jpg");
  width: 100%;
}

div.services-content.fifth-image {
  background-image: url("../img/home/julian-hochgesang-Dkn8-zPIbwo-unsplash.jpg");
  width: 100%;
}

div.services-content.sixth-image {
  background-image: url("../img/home/filip-mroz-TDiWmXb9-qk-unsplash.jpg");
  width: 100%;
}

div.services-content.seventh-image {
  background-image: url("../img/leichtbau/Pergola.jpg");
  width: 100%;
}

div.services-content.eightth-image {
  background-image: url("../img/leichtbau/Carport.jpg");
  width: 100%;
}

div.services-content.ninth-image {
  background-image: url("../img/leichtbau/tuer.jpg");
  width: 100%;
}

div.services-content.tenth-image {
  background-image: url("../img/leichtbau/Sonnenschutz.jpg");
  width: 100%;
}

div.services-content.eleventh-image {
  background-image: url("../img/leichtbau/moebel.jpg");
  width: 100%;
}

div.services-content.twelfth-image {
  background-image: url("../img/leichtbau/Sichtschutz.jpg");
  width: 100%;
}

.row-services {
  flex-direction: row;
  gap: 30px;
}

.first-row-services {
  flex-direction: column;
}

.second-row-services {
 flex-direction: column;
}


div.services-content {
  padding: 30px;
  height: 350px;
}


.service-card-text {
  font-size: 11px;
  width: 100%;
}



div.service-content-card {
  padding-top: 30px;
  gap: 20px;
  height: 145px;
  padding: 20px;
  padding-top: 23px;
}



#background-video {
  height: 45vh;
  width: 3000px;
}



/* Über uns */
.infotext-container {
  gap: 50px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.infotext-content{
  width: 75%;
}

.read-more-button {
  font-size: 13px;
  padding: 4px 12px;
}

.infotext-images {
  height: 350px;
}


/* Footer */

.nav-footer {
  gap: 40px;
  font-size: 12px;
  line-height: 200%;
}

.nav-footer ul {
  width: 200px;
}


.footer-addition {
  gap: 40px;
}

.footer-addition a {
  width: 200px;
  font-size: 9px;
}

.footer-addition p {
  width: 200px;
  font-size: 9px;
}


/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 60px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 25px;
}


/*Main Employees*/

.employees-first-row {
  flex-direction: row;
}

div.first-employee {
  padding: 30px;
  height: 375px;
}

div.second-employee {
  padding: 30px;
  height: 375px;
}

div.third-employee {
  padding: 30px;
  height: 375px;
}

div.employee-content-card {
  padding: 18px;
  gap: 20px;
  height: 140px;
}

.employee-title-h2 {
  padding: 6px 12px;
  font-size: 9px;
}


.employee-telefonnumber {
  font-size: 9px;
}

div.services-content.employee-content {
  justify-content: center;
  padding: 20px;
}

/*More Employees*/
.more-employees-card {
  padding: 20px;
  gap: 20px;
  height: 130px;
}

.employee-title {
  font-size: 9px;
  padding: 6px 12px;
}

.employee-text {
  font-size: 11px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-card {
  width: 50%;
  gap: 50px;
  height: 260px;
}

p.testimonials-card-text {
  font-size: 14px;
}

p.testimonials-author {
  font-size: 14px;
}

/* Values */

.our-values-container {
  gap: 65px;
  margin-bottom: 65px;
}


.values-card {
  height: 160px;
  gap: 35px;
}

.values-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 11px;
}

.values-title {
  font-size: 11px;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

a.special-link {
  gap: 3px;
}


.hero-contact {
  flex-direction: column;
  height: 1200px;
}

.contact-title {
  max-width: 300px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}

.hero-contact-container {
  width: 100%;
  flex-direction: column;
}



}

    /*
  * Responsive Styles: 535px and below
  Mobile Landscape
  */
  @media screen and (max-width: 820px) { 
/* Basic */
  
a.link {
  gap: 5px;
  font-size: 14px;
}

.feathericon {
  width: 20px;
  height: auto;
}

.send-feathericon {
  width: 15px;
  height: auto;
}

p {
  font-size: 14px;
  line-height: 130%;
}

h1 {
  font-size: 36px;
}

h2 {
gap: 8px; /* Abstand zwischen Text und Icon */
padding: 6px 16px; /* Innenabstand für bessere Lesbarkeit */
font-size: 12px;
}

h3 {
  font-size: 18px;
}



.contact-button {
padding: 3px 13px; /* Innenabstand für bessere Lesbarkeit */
font-size: 12px;
}

/* header */
.link-element {
font-size: 12px;
}

header ul {
gap: 30px;
}

/* Hero-Section */
div.hero-content {
padding: 20px;
height: 35vh;
background-position: bottom;
}



/*Benefits*/
.benefits-container {
margin-bottom: 100px;
gap: 30px;
}

.benefits-content {
  flex-direction: column;
  gap: 20px;
}

.benefits-card {
padding: 10px 20px;
gap: 50px;
height: 200px;
border-radius: 25px;
width: 100%;
}

.benefits-card div {
padding-top: 15px;
}


/*Services*/

.service-text {
font-size: 14px;
line-height: 125%;
width: 80%;
}

.service-title {
font-size: 11px;
}

.first-row-services {
gap: 25px;
}

.service-card-title {
  padding: 5px 15px;
}


.row-services {
flex-direction: row;
gap: 30px;
}

.first-row-services {
flex-direction: column;
}

.second-row-services {
flex-direction: column;
}


div.services-content {
padding: 20px;
height: 325px;
}


.service-card-text {
font-size: 11px;
width: 100%;
}

div.service-content-card {
padding-top: 30px;
gap: 20px;
height: 145px;
padding: 20px;
padding-top: 23px;
}


#background-video {
  height: 35vh;
  width: 2500px;
}

.two-images {
  gap: 20px;
}

/* Über uns */
.infotext-container {
gap: 100px;
margin-top: 80px;
margin-bottom: 80px;
}

.infotext-content{
width: 85%;
}

.read-more-button {
font-size: 12px;
padding: 4px 10px;
}

.infotext-images {
height: 300px;
}


/* Footer */
footer {
  gap: 40px;
}

.nav-footer {
gap: 30px;
font-size: 10px;
line-height: 200%;
}

.nav-footer ul {
width: 175px;
}


.footer-addition {
gap: 40px;
}

.footer-addition a {
width: 175px;
font-size: 7px;
}

.footer-addition p {
width: 175px;
font-size: 7px;
}

.text-footer {
  font-size: 14px;
}





/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 60px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 25px;
}


/*Main Employees*/

.employees-first-row {
  flex-direction: column;
}

div.first-employee {
  padding: 25px;
  height: 750px;
}

div.second-employee {
  padding: 25px;
  height: 750px;
}

div.third-employee {
  padding: 25px;
  height: 750px;
}

div.employee-content-card {
  padding: 25px;
  padding-top: 30px;
  gap: 25px;
  height: 200px;
}

.employee-title-h2 {
  padding: 8px 14px;
  font-size: 14px;
}

.main-employee-intro-text {
  font-size: 18px;
}

.employee-telefonnumber {
  font-size: 12px;
}

div.services-content.employee-content {
  justify-content: flex-start;
  padding: 20px;
  width: 100%;
}

/*More Employees*/
.employee-big-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.more-employees-first-row {
  width: 100%;
}

.more-employees-second-row {
  width: 100%;
}

.more-employees-card {
  padding: 20px;
  gap: 20px;
  height: 130px;
}

.employee-title {
  font-size: 9px;
  padding: 6px 12px;
}

.employee-text {
  font-size: 11px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-content {
  flex-direction: row;
}

.testimonials-card {
  width: 50%;
  gap: 50px;
  height: 280px;
}

p.testimonials-card-text {
  font-size: 14px;
}

p.testimonials-author {
  font-size: 14px;
}

/* Values */

.our-values-container {
  gap: 45px;
  margin-bottom: 65px;
}


.values-card {
  height: 160px;
  gap: 35px;
}

.values-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 11px;
}

.values-title {
  font-size: 11px;
}

.values-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.values-img-left {
  margin-right: 20px;
}

a.special-link {
  gap: 3px;
}


/* Kontaktformular */
form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.first-information,
.second-information {
  display: flex;
  gap: 20px;
}

.firstname,
.surname,
.email,
.phone {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
}



.last-child-label {
  margin-bottom: 10px;
}

input, textarea {
  padding: 15px 15px;
  border: none;
  background-color: var(--lightgray);
  border-radius: 50px;
  font-size: 1rem;
}


textarea {
  min-height: 150px;
  border-radius: 20px;
}

button.send-contact-button {
  margin-top: 15px;
  padding: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  width: 150px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button i {
  width: 16px;
  height: 16px;
}

/* Google Maps */
.google-maps {
  flex: 1;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}


div.message {
  display: flex;
  flex-direction: column;
}




  }




    /*
  * Responsive Styles: 535px and below
  Mobile
  */
  @media screen and (max-width: 706px) { 
/* Basic */

body {
  margin: 40px;
}
  
a.link {
  gap: 5px;
  font-size: 12px;
}


p {
  font-size: 12px;
  line-height: 130%;
}

h1 {
  font-size: 26px;
}

h2 {
gap: 8px; /* Abstand zwischen Text und Icon */
padding: 6px 16px; /* Innenabstand für bessere Lesbarkeit */
font-size: 12px;
}

h3 {
  font-size: 16px;
}



.contact-button {
padding: 2px 11px; /* Innenabstand für bessere Lesbarkeit */
font-size: 11px;
}

/* header */
.Logo {
width: 35px;
}

.Logo-2 {
  width: 150px;
}

header ul {
  gap: 20px;
}


.link-element {
font-size: 11px;
}


/* Hero-Section */
div.hero-content {
padding: 20px;
height: 32vh;
background-position: center;
}

div.hero-container {
  gap: 20px;
  margin-bottom: 80px;
  margin-top: 50px;
}

.headline-leichtbauarchitektur {
  margin-top: 50px;
  margin-bottom: 20px;
}

div.hero-card {
  max-width: 250px;
  padding: 20px;
  gap: 20px;
}

.hero-text {
  font-size: 16px;
  line-height: 125%;
  width: 85%;
}




/*Benefits*/
.benefits-container {
margin-bottom: 80px;
gap: 20px;
}

.benefits-content {
  gap: 15px;
}

.benefits-card {
height: 200px;
}

.benefits-card div {
padding-top: 15px;
}


/*Services*/
div.service-card2 {
padding-top: 20px;
max-width: 250px;
gap: 15px;
text-align: center;
}


.services-container {
  gap: 20px;
}

.service-text {
font-size: 13px;
line-height: 125%;
width: 90%;
}

.service-title {
font-size: 10px;
padding: 4px 12px;
}

.first-row-services {
gap: 15px;
}

.service-card-title {
  padding: 4px 12px;
}


.row-services {
flex-direction: column;
gap: 30px;
}

.first-row-services {
flex-direction: column;
}

.second-row-services {
flex-direction: column;
}


div.services-content {
padding: 20px;
height: 225px;
}


.service-card-text {
font-size: 10px;
width: 100%;
}


div.service-content-card {
gap: 20px;
height: 120px;
padding: 15px;
padding-top: 15px;
}




#background-video {
  height: 32vh;
  width: 2000px;
}



/* Über uns */
.infotext-container {
gap: 80px;
margin-top: 60px;
margin-bottom: 60px;
}

.infotext-content{
width: 85%;
gap: 10px;
}

.read-more-button {
font-size: 12px;
padding: 4px 10px;
}

.infotext-images {
height: 250px;
}

.img-left {
  margin-right: 15px;
}


/* Footer */
footer {
  gap: 40px;
}

.nav-footer {
gap: 30px;
font-size: 10px;
line-height: 200%;
flex-direction: column;
}

.nav-footer ul {
width: 175px;
}


.footer-addition {
gap: 0px;
}

.footer-addition a {
width: 125px;
font-size: 6px;
}

.footer-addition p {
width: 125px;
font-size: 6px;
}

.text-footer {
  font-size: 14px;
}


/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 50px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 25px;
}


/*Main Employees*/

.employees-first-row {
  flex-direction: column;
}

div.first-employee {
  padding: 30px;
  height: 575px;
}

div.second-employee {
  padding: 30px;
  height: 575px;
}

div.third-employee {
  padding: 30px;
  height: 575px;
}

div.employee-content-card {
  padding: 25px;
  padding-top: 30px;
  gap: 25px;
  height: 175px;
}

.employee-title-h2 {
  padding: 6px 12px;
  font-size: 12px;
}

.main-employee-intro-text {
  font-size: 12px;
}

.employee-telefonnumber {
  font-size: 10px;
}

div.services-content.employee-content {
  justify-content: flex-start;
  padding: 20px;
  width: 100%;
}

/*More Employees*/
.employee-big-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.more-employees-first-row {
  width: 100%;
}

.more-employees-second-row {
  width: 100%;
}

.more-employees-card {
  padding: 20px;
  gap: 20px;
  height: 130px;
}

.employee-title {
  font-size: 9px;
  padding: 6px 12px;
}

.employee-text {
  font-size: 11px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-content {
  flex-direction: row;
}

.testimonials-card {
  width: 50%;
  gap: 50px;
  height: 270px;
}

p.testimonials-card-text {
  font-size: 12px;
}

p.testimonials-author {
  font-size: 12px;
}

/* Values */

.our-values-container {
  gap: 45px;
  margin-bottom: 65px;
}


.values-card {
  height: 160px;
  gap: 35px;
}

.values-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 10px;
}

.values-title {
  font-size: 11px;
}

.values-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.values-img-left {
  margin-right: 20px;
}

a.special-link {
  gap: 3px;
}


  }










      /*
  * Responsive Styles: 535px and below
  Mobile
  */
  @media screen and (max-width: 544px) { 

    header ul {
      justify-content: flex-start;
    }

    nav.mobile-navigation {
      display: flex;
    }

    .Logo-2 {
  width: 130px;
}

    .navigation-container {
      display: none; /* Desktop-Navigation ausblenden */
  }

  .mobile-navigation {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .nav-burger {
      display: block; /* Hamburger-Button sichtbar */
      background-color: var(--lightgray);
      color: var(--black);
      padding: 6px 14px;
      font-size: 12px;
      border-radius: 60px;
  }

  nav.expanded .open {
    display: none;
  }


  nav.mobile-navigation .close {
    display: none;
  }

  nav.expanded .close {
    display: block;
  }


  .cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .container-mobile-nav {
    background-color: var(--lightgray);
    margin: 40px;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    border-radius: 40px;
  }

.container-mobile-nav li a {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
}


.burger-image {
  width: 80%;
  height: 150px;
  object-fit: cover;
  border-radius: 40px;
}



body {
  margin: 30px;
}
  
a.link {
  gap: 5px;
  font-size: 11px;
}


p {
  font-size: 10px;
  line-height: 130%;
}

h1 {
  font-size: 20px;
}

h2 {
gap: 8px; /* Abstand zwischen Text und Icon */
padding: 4px 12px; /* Innenabstand für bessere Lesbarkeit */
font-size: 10px;
}

h3 {
  font-size: 12px;
}



.contact-button {
padding: 4px 10px; /* Innenabstand für bessere Lesbarkeit */
font-size: 10px;
}

.contact-button svg {
  width: 14px;
  height: auto;
}


.link-element {
font-size: 12px;
}


/* Hero-Section */
div.hero-content {
height: 45vh;
background-position: center;
}

div.hero-container {
  gap: 20px;
  margin-bottom: 80px;
  margin-top: 50px;
}


div.hero-card {
  max-width: 200px;
  padding: 15px;
  gap: 20px;
}

.hero-text {
  font-size: 12px;
  line-height: 125%;
  width: 80%;
}





/*Services*/
div.service-card {
padding-top: 15px;
max-width: 200px;
}


.services-container {
  gap: 15px;
}

.service-text {
font-size: 11px;
line-height: 125%;
width: 90%;
}

.service-title {
font-size: 10px;
padding: 4px 12px;
}

.first-row-services {
gap: 15px;
}

.service-card-title {
  padding: 4px 12px;
}


.row-services {
flex-direction: column;
gap: 30px;
}

.first-row-services {
flex-direction: column;
}

.second-row-services {
flex-direction: column;
}


div.services-content {
padding: 20px;
height: 225px;
}


.service-card-text {
font-size: 9px;
width: 100%;
}


div.service-content-card {
gap: 20px;
height: 120px;
padding: 15px;
padding-top: 15px;
}

#background-video {
  height: 45vh;
  width: 2000px;
}

.two-images {
  flex-direction: column;
}

.two-images .bild-1 {
  width: 100%;
  height: auto;
}

.two-images .bild-2 {
  width: 100%;
  height: auto;
}


/* Über uns */
.infotext-container {
gap: 80px;
margin-top: 50px;
margin-bottom: 50px;
}

.infotext-content{
width: 85%;
gap: 10px;
}

.read-more-button {
font-size: 10px;
padding: 3px 8px;
}

.infotext-images {
height: 150px;
}

.img-left {
  margin-right: 15px;
}


/* Footer */
footer {
  gap: 40px;
}

.nav-footer {
gap: 30px;
font-size: 10px;
line-height: 200%;
flex-direction: column;
}

.nav-footer ul {
width: 175px;
}


.footer-addition {
gap: 0px;
}

.footer-addition a {
width: 125px;
font-size: 6px;
}

.footer-addition p {
width: 125px;
font-size: 6px;
}

.text-footer {
  font-size: 14px;
}

/***************** *****************/
/* Neue Seite Über uns */
/***************** *****************/

/* Hero about */
.hero-about-title {
  text-align: center;
  margin: auto;
  margin-top: 50px;
}

.employees {
  display: flex;
  flex-direction: column;
  gap: 25px;
}


/*Main Employees*/

.employees-first-row {
  flex-direction: column;
}


div.first-employee {
  padding: 40px;
  height: 475px;
}

div.second-employee {
  padding: 40px;
  height: 475px;
}

div.third-employee {
  padding: 40px;
  height: 475px;
}

div.employee-content-card {
padding: 20px;
  gap: 20px;
  height: 125px;
  max-width: 275px;
}

.employee-title-h2 {
  padding: 6px 14px;
  font-size: 11px;
}

.main-employee-intro-text {
  font-size: 11px;
}

.employee-telefonnumber {
  font-size: 10px;
}

div.services-content.employee-content {
  justify-content: flex-start;
  padding: 30px;
  width: 100%;
}

/*More Employees*/
.employee-big-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.more-employees-first-row {
  width: 100%;
}

.more-employees-second-row {
  width: 100%;
}

.more-employees-card {
  padding: 20px;
  gap: 20px;
  height: 130px;
}

.employee-title {
  font-size: 9px;
  padding: 6px 12px;
}

.employee-text {
  font-size: 11px;
}

.more-employees-card div {
  padding-top: 0px;
}


/* testimonials */
.testimonials-content {
  flex-direction: column;
}

.testimonials-card {
  width: 100%;
  gap: 30px;
  height: 200px;
}

p.testimonials-card-text {
  font-size: 12px;
}

p.testimonials-author {
  font-size: 12px;
}

/* Values */

.our-values-container {
  gap: 45px;
  margin-bottom: 65px;
}


.values-card {
  height: 140px;
  gap: 30px;
}

.values-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  width: 100%;
}


.values-text {
  font-size: 10px;
}

.values-title {
  font-size: 11px;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.values-img-left {
  margin-right: 20px;
}

a.special-link {
  gap: 3px;
}


/* Kontaktformular */
form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.first-information,
.second-information {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.firstname,
.surname,
.email,
.phone {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 5px;
}



.last-child-label {
  margin-bottom: 10px;
}

input, textarea {
  padding: 15px 15px;
  border: none;
  background-color: var(--lightgray);
  border-radius: 50px;
  font-size: 1rem;
}


textarea {
  min-height: 150px;
  border-radius: 20px;
}

button.send-contact-button {
  margin-top: 15px;
  padding: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  width: 150px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button i {
  width: 16px;
  height: 16px;
}

/* Google Maps */
.google-maps {
  flex: 1;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}


div.message {
  display: flex;
  flex-direction: column;
}



  }
