@charset "UTF-8";
body {
  font-family: "Poppins", Arial, sans-serif;
}

:root {
  --primary: #3a415c;
  --accent: #FCFAF1;
  --light-green: #00B200;
  --white: #fff;
  --heading-font: "Poppins";
  --body-font: "Poppins";
  --secondary: var(--accent);
  --foreground: var(--black);
  --background: var(--white);
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.light-green {
  color: var(--light-green);
}

.body-font {
  font-family: var(--body-font);
}

.heading-font {
  font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 1rem 0;
  padding: 0;
  line-height: 1.2;
  z-index: 1;
}
@media screen and (max-width: 749px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0.4rem 0 0.4rem;
  }
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.85rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
  transition: all 100ms linear;
}
a:hover, a:focus {
  color: var(--foreground);
  text-decoration: none;
}

p,
li {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

ul li {
  margin: 0 0 0.3rem;
}

ol li {
  list-style: decimal;
  list-style-type: decimal;
  margin: 0 0 0.3rem;
}

@media screen and (max-width: 749px) {
  br {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  h1 br,
  h3 br,
  h4 br,
  p br {
    display: block;
  }
}

.f500 {
  font-weight: 500;
}

.f600 {
  font-weight: 600;
}

.post {
  text-align: left !important;
  align-items: start !important;
}
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--body-font);
  font-size: 1.6rem;
  margin-top: 2rem;
}
.post ul li {
  margin: 0 0 0.3rem;
  list-style: devanagari !important;
  padding-left: 0.75rem;
}
@media screen and (max-width: 749px) {
  .post ul li {
    padding-left: 0.25rem;
    margin-left: -1rem;
  }
}

* {
  box-sizing: border-box;
}

body,
html {
  background: #fff;
  color: var(--foreground);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--body-font), sans-serif;
  scroll-behavior: smooth;
}

main {
  position: relative;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.base {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

iframe {
  outline: 1px solid black;
  border-radius: 6px;
  margin-bottom: 2rem;
}

img.circle {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}

hr {
  height: 0;
  border: none;
  border-bottom: 4px solid var(--accent);
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .desktop {
    display: inline-block;
  }
}

.not-desktop {
  display: none;
}
@media screen and (max-width: 1023px) {
  .not-desktop {
    display: inline-block;
  }
}

.download {
  padding: 3rem 0 2.5rem !important;
}
.download * {
  align-self: flex-start;
  justify-self: center;
}
.download svg {
  height: 80px;
  width: auto;
}
.download svg#android {
  height: 100px;
  margin-top: -7.5px;
}

.row-reverse {
  flex-direction: row-reverse;
}

section {
  width: 100%;
}
section * {
  z-index: 1;
}
section > video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  max-width: 100%;
  height: 113vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}
section.top {
  margin-top: 4rem;
  padding-bottom: 0;
}
section.top h1 {
  z-index: 1000;
}

header {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 112px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 749px) {
  header {
    height: 80px;
  }
}
header img {
  height: 45px;
}
@media screen and (max-width: 749px) {
  header img {
    height: 35px;
  }
}
header span {
  height: 45px;
}
header.transparent {
  background-color: transparent;
  box-shadow: none;
  padding: 0rem 2rem;
}
header.transparent .main-nav ul li a {
  color: white;
}
header.transparent .main-nav ul li a:hover {
  color: rgb(0, 221, 0);
}
header.transparent .main-nav .logo-light {
  display: block;
}
header.transparent .main-nav .logo-dark {
  display: none;
}
header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0rem 2rem;
}
header.scrolled .main-nav ul li a {
  color: #222;
}
header.scrolled .main-nav ul li a:hover {
  color: #3ca050;
}
header.scrolled .main-nav .logo-light {
  display: none;
}
header.scrolled .main-nav .logo-dark {
  display: block;
}

.main-nav {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 749px) {
  .main-nav {
    padding: 0.5rem 0rem;
  }
}
.main-nav .main-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.main-nav .logo {
  display: flex;
  align-items: center;
}
.main-nav .logo span {
  height: 45px;
}
.main-nav .desktop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .desktop-nav li {
  margin: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.main-nav .desktop-nav li a {
  transition: color 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .main-nav .desktop-nav {
    display: none;
  }
}

.mobile-nav {
  display: none;
}
@media screen and (max-width: 1023px) {
  .mobile-nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
  }
  .mobile-nav .sidebarIconToggle {
    position: relative;
    height: 22px;
    width: 22px;
    cursor: pointer;
    z-index: 1000;
  }
  .mobile-nav .spinner {
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.125s ease-in-out;
  }
  .mobile-nav input[type=checkbox] {
    display: none;
  }
  .mobile-nav #sidebarMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.125s ease;
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .mobile-nav input[type=checkbox]:checked ~ #sidebarMenu {
    transform: translateX(0%);
  }
  .mobile-nav .mobile-logo {
    padding: 2rem 1.5rem 1rem;
    flex-shrink: 0;
  }
  .mobile-nav .mobile-logo .logo-dark {
    display: block;
  }
  .mobile-nav .sidebar-scroll-area {
    overflow-y: auto;
    flex-grow: 1;
    padding: 0 1.5rem 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .mobile-nav .sidebarMenuInner {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .mobile-nav .sidebarMenuInner li {
    margin-bottom: 1rem;
  }
  .mobile-nav .sidebarMenuInner li a {
    color: #000 !important;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--light-green);
  }
  .mobile-nav .sidebarMenuInner li a:hover {
    color: var(--light-green) !important;
  }
}

.burger-icon .spinner {
  background-color: #fff;
}

header.scrolled .burger-icon .spinner {
  background-color: #000;
}

input[type=checkbox]:checked ~ .burger-icon .spinner {
  background-color: #000 !important;
}

.mobile-logo {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mobile-logo .logo-dark {
  display: block !important;
  height: 45px;
}
.mobile-logo .logo-dark img {
  height: 100%;
  width: auto;
}

.btn {
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, fill 0.25s ease, stroke 0.25s ease, text-decoration-color 0.25s ease;
}

.btn-green {
  border-color: rgb(0, 221, 0);
  background-color: rgb(0, 221, 0);
  color: rgb(0, 0, 0);
}
.btn-green:hover {
  border-color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgb(255, 255, 255);
}
.btn-outline-white:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  color: #fff;
  width: 100%;
}

/*footer download app */
#download-app {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding: 6rem 2rem;
  background-color: rgb(26, 26, 26);
  width: 100%;
}
@media screen and (max-width: 749px) {
  #download-app .left img {
    width: 350px;
  }
}
@media screen and (max-width: 1023px) {
  #download-app {
    flex-direction: column;
  }
}
@media screen and (max-width: 749px) {
  #download-app {
    gap: 5rem;
  }
}
#download-app .download-app-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  #download-app .download-app-content {
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 749px) {
  #download-app .download-app-content .headline-02 {
    text-align: center;
    font-size: 1.5rem;
  }
}
#download-app .download-app-content div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#download-app .download-app-content #apple-store {
  height: 50px;
}
#download-app .download-app-content #android-store {
  height: 65px;
}

/*footer contact */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  padding: 6rem 0 4rem 0;
  background-color: #000;
  width: 100%;
  padding: 0 1rem;
}
#contact .content {
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  #contact .content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
#contact .left-container,
#contact .mid-container,
#contact .right-container {
  flex: 1 1 0%;
  min-width: 0;
}
#contact .left-container span,
#contact .mid-container span,
#contact .right-container span {
  color: #fff;
  font-size: 0.875rem;
}

#faq .faq-item {
  border-bottom: 1px solid #444;
  padding: 0.5rem 0;
}
#faq .faq-item .faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-weight: 400;
}
#faq .faq-item .faq-answer {
  font-size: 0.875rem;
  color: #ccc;
  padding: 3px 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  will-change: max-height;
}
#faq .faq-item.active .faq-answer {
  max-height: 200px;
}

.left-container {
  order: 1;
}

.mid-container {
  order: 2;
}
.mid-container form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}
.mid-container .contact-mail-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  padding-bottom: 1rem;
}
.mid-container .contact-mail-phone a {
  color: #fff;
  font-size: 0.875rem;
}
.mid-container .contact-mail-phone a:hover {
  color: var(--primary);
}
.mid-container textarea {
  width: 100%;
  min-height: 200px;
  resize: none;
}
.mid-container .input.invalid {
  border-color: #e53935;
}
.mid-container .input.valid {
  border-color: #4caf50;
}
.mid-container .error-label {
  display: none;
  color: #e53935;
  font-size: 0.75rem;
  margin-top: 4px;
}
@media screen and (max-width: 1023px) {
  .mid-container {
    order: 3;
  }
}

.right-container {
  order: 3;
}
.right-container .description {
  display: block;
  font-size: 0.875rem !important;
  text-align: justify;
}
@media screen and (max-width: 1023px) {
  .right-container {
    order: 2;
  }
}

.btn-green:hover {
  background-color: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.impressum {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.cookie .shadow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30rem;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.cookie .shadow.visible {
  display: block;
}
.cookie .outer {
  position: fixed;
  top: 10vh;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.cookie .outer.visible {
  display: flex;
}
.cookie .banner {
  padding: 0 2rem 1rem;
  background-color: #fff;
  border-radius: 2rem;
  display: none;
  box-shadow: var(--box-shadow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  max-width: 500px;
  margin: 2rem;
}
.cookie .banner.visible {
  display: flex;
}
.cookie .banner p {
  font-size: 1.1rem;
  text-align: center;
}
.cookie .row {
  width: 100%;
}
.cookie .button-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cookie .btn {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}
.cookie .btn.grey {
  background-color: #ccc;
}

#teaser-container {
  height: 100vh;
  position: relative;
}
#teaser-container figure {
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
#teaser-container figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 75%);
  z-index: 1;
  pointer-events: none;
}
#teaser-container figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  z-index: 0;
}
#teaser-container figure figcaption {
  display: none;
}

.teaser-text-container {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.teaser-text-container .teaser-headline {
  font-size: 5rem;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .teaser-text-container .teaser-headline {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .teaser-text-container .teaser-headline {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .teaser-text-container .teaser-headline {
    font-size: 3rem;
  }
}
@media screen and (max-width: 749px) {
  .teaser-text-container .teaser-headline {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .teaser-text-container {
    padding: 1.5rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 749px) {
  .teaser-text-container {
    padding: 1rem;
    gap: 1rem;
    max-width: 90%;
  }
}

.teaser-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  .teaser-btn-container {
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 749px) {
  .teaser-btn-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  padding: 0rem 2rem;
}
@media screen and (max-width: 749px) {
  .section {
    padding: 0rem 1rem;
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0rem;
  width: 100%;
  flex-direction: column;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 749px) {
  .content {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 0;
  }
}

.headline-subline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  flex-direction: column;
  margin: 1rem 0;
  flex-direction: column;
  color: #3a415c;
  text-align: center;
}
.headline-subline p {
  font-size: 1.25rem;
  color: var(--light-green);
}
.headline-subline h2 {
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.005em;
  font-size: 2.3rem;
  margin: 0.25rem 0 0;
}
@media screen and (max-width: 749px) {
  .headline-subline h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 749px) {
  .headline-subline {
    padding: 0;
  }
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 6px;
  align-items: stretch;
  margin-top: 2.5rem;
  width: 100%;
  overflow: hidden;
}
.slide-container h4 {
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .slide-container {
    flex-direction: column;
    align-items: center;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.input-container {
  width: 100%;
}

#action-dates-container img {
  width: 80px;
}

#hubspotForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
}
#hubspotForm label {
  display: none;
}

.input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease-in-out, border-radius 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}
.input:focus {
  border-color: var(--light-green);
  outline: none;
}

input,
textarea {
  font-family: "Poppins", sans-serif;
}

/* Autocomplete Container */
.autocomplete-container {
  position: relative;
  width: 100%;
  z-index: 1000;
}

/* Dropdown für Adressvorschläge */
#address-suggestions {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 400px;
  z-index: 1050;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  overflow-y: auto;
  max-height: 200px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Dropdown-Einträge */
#address-suggestions li {
  padding: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  background: white;
}
#address-suggestions li:hover {
  background: #f0f0f0;
}

/* Entfernt den unteren Border-Radius, wenn Vorschläge sichtbar sind */
.autocomplete-container.active input,
#address.open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: none !important;
}

/* Checkbox */
.agree-privacy-policy {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
  font-size: 0.75rem;
}
.agree-privacy-policy label {
  display: block !important;
  cursor: pointer;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 20px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}
input[type=checkbox]:checked {
  background-color: #4caf50;
  border-color: #4caf50;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree-privacy-policy span {
  margin-left: 50px;
  font-size: 14px;
}

.agree-privacy-policy a {
  color: #2E7D32;
}

.agree-privacy-policy a:visited {
  color: #2E7D32;
}

/* Service-Description */
#service .content {
  gap: 0;
}

.hidden {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.active {
  position: relative;
  width: 100%;
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

#sustainability-descriptions-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-direction: column;
  width: 100%;
  color: #3a415c;
  margin-top: 1rem;
}
#sustainability-descriptions-container .sustainability-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text {
    align-items: center;
    gap: 0.5rem;
  }
}
#sustainability-descriptions-container .sustainability-content-text h3 {
  font-weight: 600;
  line-height: 1.4;
  font-size: 2rem;
  margin: 0rem;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text h3 {
    font-size: 1.5rem;
  }
}
#sustainability-descriptions-container .sustainability-content-text p {
  color: rgba(0, 10, 7, 0.6196078431);
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text p {
    font-size: 1rem;
    text-align: center;
  }
}
#sustainability-descriptions-container #service-image {
  transition: transform 0.3s ease-in-out;
}
#sustainability-descriptions-container #sustainability-descriptions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}
#sustainability-descriptions-container #sustainability-descriptions img {
  width: clamp(290px, 35vw, 480px);
  height: clamp(390px, 40vw, 530px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container #sustainability-descriptions img {
    width: calc(100vw - 5rem);
    height: 250px;
  }
}
#sustainability-descriptions-container #sustainability-descriptions #sustainability {
  display: flex;
  justify-content: flex-start;
  height: 100%;
  gap: 1rem;
}
#sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
  height: 100%;
  display: flex;
  gap: 8rem;
  margin-top: 1rem;
}
#sustainability-descriptions-container #sustainability-descriptions .sustainability-container .sustainability {
  margin-bottom: 1rem;
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  #sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
    gap: 3rem;
  }
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

#professional .content {
  margin-bottom: 1rem;
}
#professional .professional-image-container {
  height: clamp(350px, 60vw, 600px);
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
#professional .professional-image-container figure {
  margin: 0;
  height: 100%;
  width: 100%;
}
#professional .professional-image-container figure img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
#professional .professional-image-container figure figcaption {
  display: none;
}
#professional .professional-description-cards {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: absolute;
  height: 100%;
  width: 100%;
}

#customers {
  padding: 0 0 4rem 0;
}
#customers .content {
  margin-bottom: 1rem;
}
#customers a {
  margin-top: 2rem !important;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  padding: 6px;
}

.swiper-slide {
  width: 400px !important;
  flex-shrink: 0 !important;
}
@media (max-width: 1279px) {
  .swiper-slide {
    width: 360px !important;
  }
}

.swiper-pagination {
  position: static !important;
  margin-top: 0.5rem;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  opacity: 1;
  margin: 0 0.3rem !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--light-green) !important;
}

#comparison {
  background-color: #f3f3f3;
}
#comparison .comparison-table {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  #comparison .comparison-table {
    font-size: 0.875rem;
  }
}
#comparison .comparison-table .table-row {
  display: contents;
}
#comparison .comparison-table .table-row div {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 749px) {
  #comparison .comparison-table .table-row div {
    padding: 0.5rem;
  }
}
#comparison .comparison-table .table-row div:nth-child(1) {
  font-weight: 500;
  background-color: #f9f9f9;
}
#comparison .comparison-table .table-row div:nth-child(3) {
  color: var(--light-green);
}
#comparison .comparison-table .table-row.table-header div {
  background-color: rgba(0, 178, 0, 0.1019607843);
  font-weight: bold;
}

#contact {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact .impressum {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  #contact .impressum {
    flex-direction: column;
    font-size: 0.875rem;
  }
}
#contact a {
  color: white;
  text-decoration: underline;
}

.card {
  color: #000;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}
.card h4 {
  font-weight: 600;
}
.card .card-image-container {
  display: flex;
}
.card .card-image-container .card-image {
  width: 100%;
  height: 290px;
  display: flex;
}
.card .card-image-container .card-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (min-width: 1024px) {
  .card {
    width: 360px !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  .card {
    width: 650px !important;
  }
}
@media screen and (max-width: 749px) {
  .card {
    width: 360px !important;
  }
}

.card-borderless {
  color: #000;
  background-color: transparent;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  width: 400px;
  box-shadow: none;
}
.card-borderless .card-image-container {
  display: flex;
}
.card-borderless .card-image-container .card-image {
  width: 100%;
  height: 290px;
  display: flex;
}
.card-borderless .card-image-container .card-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 1.25rem;
}
.card-borderless .card-content {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
}
@media screen and (max-width: 1023px) {
  .card-borderless .card-content {
    padding-top: 1rem !important;
  }
}

.card-border {
  border: 1px solid #e5e7eb;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2.5rem 1.75rem;
}
.card-content h4,
.card-content span {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .card-content {
    align-items: center;
  }
}

#customers .card {
  width: 400px !important;
}
@media (max-width: 1279px) {
  #customers .card {
    width: 360px !important;
  }
}
@media screen and (max-width: 749px) {
  #customers .card {
    width: 360px !important;
  }
}

#city {
  padding-bottom: 5rem;
}
#city .card-content {
  padding-bottom: 1rem !important;
}
#city h4 {
  font-weight: 400;
}
#city .card-image {
  width: 488px;
}
@media screen and (max-width: 749px) {
  #city .card-image {
    width: 360px !important;
  }
}
#city .card-image img {
  width: 488px;
}
@media screen and (max-width: 749px) {
  #city .card-image img {
    width: 360px !important;
  }
}
#city .swiper-slide {
  width: 488px !important;
  flex-shrink: 0 !important;
}
@media screen and (max-width: 749px) {
  #city .swiper-slide {
    width: 360px !important;
  }
}

/*# sourceMappingURL=main.css.map */