/* Webfont: LatoLatin-Regular */
@font-face {
  font-family: "LatoLatin";
  font-display: block;
  src: url("./fonts/LatoLatin-Regular.woff2") format("woff2"), url("./fonts/LatoLatin-Regular.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
/* Webfont: ./fonts/LatoLatin-Italic */
@font-face {
  font-family: "./fonts/LatoLatin";
  font-display: block;
  src: url("./fonts/LatoLatin-Italic.woff2") format("woff2"), url("./fonts/LatoLatin-Italic.woff") format("woff"); /* Modern Browsers */
  font-style: italic;
  font-weight: normal;
}
/* Webfont: ./fonts/LatoLatinSemBd-Regular */
@font-face {
  font-family: "./fonts/LatoLatin";
  font-display: block;
  src: url("./fonts/LatoLatin-Semibold.woff2") format("woff2"), url("./fonts/LatoLatin-Semibold.woff") format("woff");
  font-style: normal;
  font-weight: bold;
}
/* Webfont: ./fonts/LatoLatinSemBd-Italic */
@font-face {
  font-family: "./fonts/LatoLatin";
  font-display: block;
  src: url("./fonts/LatoLatin-Semibold.woff2") format("woff2"), url("./fonts/LatoLatin-Semibold.woff") format("woff");
  font-style: italic;
  font-weight: bold;
}
:root {
  --select-border: rgba(85, 182, 81, 1);
  --select-focus: rgba(85, 182, 81, 1);
  --select-arrow: var(--select-border);
  --gruen: #3b7737;
  --gruen-dunkler: #32652F;
  --gruen-rgb: 59, 119, 55;
  --gruen-heller: #55b651;
  --rot: #810202;
  --energierot: #b10000;
  --text-color: #333;
  --primary: #3b7737;
  --secondary: #810202;
  --color1: #954936;
  --color2: #682B08;
  --color3: #B9A26A;
  --color4: #80804A;
  --color5: #51646A;
  --color6: #584550;
  --color7: #887438;
  --black: #000000;
  --grey: #666666;
  --lightgrey: #999999;
  --lightestgrey: #c4c4c4;
  --darkwhite: #e7e7e7;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

/* Reset 13 ******************* */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
fieldset,
form,
label,
legend,
img,
button,
body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

ol,
ul {
  list-style-type: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: LatoLatin, sans-serif;
}

/*Special styles for homepage **********************************************************/
/* CONTAINER  */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  max-width: 100%;
}

.list-inline {
  display: block;
  width: 100%;
}

.list-inline li {
  display: inline-block;
}

/* Formularformatierungen ********************************* */
fieldset {
  margin-bottom: 2rem;
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

legend {
  width: 100%;
  font-size: 1.5rem;
  color: var(--rot);
}

label {
  display: block;
  font-weight: normal;
}

#angebotAnfordern h3 {
  margin-bottom: 0.5rem;
}

#angebotAnfordern p.formInput {
  width: 100%;
  padding-left: 0.625%;
  padding-right: 0.625%;
}

#angebotAnfordern select {
  font-size: 1rem;
  height: 30px;
}

#angebotAnfordern input[type=radio] + label, #angebotAnfordern input[type=checkbox] + label {
  display: inline-block;
  padding-left: 0.4rem;
}

#angebotAnfordern .longRow {
  width: 100%;
  line-height: 1.8;
}

#angebotAnfordern input[type=checkbox] + .long-label {
  display: inline;
}

#angebotAnfordern p.formInput input[type=text], #angebotAnfordern p.formInput input[type=email] {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 1rem;
}

#angebotAnfordern input[type=number] {
  height: 30px;
  line-height: 30px;
  font-size: 1rem;
}

#angebotAnfordern input[type=submit] {
  background-color: var(--energierot);
  color: #fff;
  font-size: 1.3rem;
  padding: 0.5rem;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
}
#angebotAnfordern input[type=submit]:hover, #angebotAnfordern input[type=submit]:active {
  background-color: var(--gruen-dunkler);
  -webkit-box-shadow: 3px 3px 4px lightgrey;
  -moz-box-shadow: 3px 3px 4px lightgrey;
  box-shadow: 3px 3px 4px lightgrey;
}

#angebotAnfordern p.formInputLast {
  clear: both;
}

#angebotAnfordern textarea {
  width: 100%;
  height: 200px;
  font-size: 1.6rem;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.box {
  margin: 0 0 10px 0;
  padding: 5px 12px;
}

.border-box {
  border: 1px solid #363636;
}

.info-box {
  background: #EFEFEB;
}

figure figcaption {
  padding: 2.5px 0;
}

.img-wrapper {
  position: relative;
}
.img-wrapper img {
  max-width: 100%;
  height: auto;
}

img.full-width {
  width: 100%;
}

img.responsive {
  max-width: 100%;
  height: auto;
}

.bildLinks {
  float: left;
  margin: 10px 10px 10px 0;
}

.bildRechts {
  float: right;
  margin: 10px 0 10px 1rem;
}

.inText {
  max-width: 40%;
  height: auto;
}

table.contentable {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
}

table.contenttable th {
  text-align: left;
  width: 20%;
  background-color: #c9e5c8;
  color: #000;
}

table.contenttable th:last-child {
  width: 40%;
}

table.contenttable tbody tr {
  vertical-align: top;
}

table.contenttable tbody tr span {
  display: block;
}

table.contenttable tbody tr:nth-child(odd) {
  background: #ebf6ea;
}

table.contenttable tbody tr:hover {
  background: #c9e5c8;
}

table.contenttable tbody td {
  padding: 0.4rem;
  border-right: 1px solid #c9e5c8;
}

table.contenttable tbody td:last-child {
  border-right: none;
}

table.contenttable a:link,
table.contenttable a:visited {
  text-decoration: underline;
}

table.contenttable a:active,
table.contenttable a:hover {
  text-decoration: none;
}

#map {
  min-height: 700px;
  max-width: 100%;
}

.colorLegend {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.lboBG {
  background-color: #3b7737;
}

.grennwallBG {
  background-color: #682B08;
}

.kokowallBG {
  background-color: #B9A26A;
}

.plantaBG {
  background-color: #51646A;
}

.soundkillerBG {
  background-color: #584550;
}

.andereBG {
  background-color: #ABBDE0;
}

.site-header {
  background: transparent;
  color: #363636;
  flex-direction: row;
}

.site-header .infoHeader {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header #pq {
  display: none;
}

#headerSlogan {
  display: none;
}

#social {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  /*  .instalink:hover {
      background-color: #fe0276;
    }*/
  /*  .facebooklink:hover {
      background-color: #0a67ff;
    }*/
}
#social .instalink {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: transparent;
}
#social .instalink svg {
  width: 20px;
  height: 20px;
}
#social .instalink path {
  fill: #fff;
}
#social .facebooklink {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: transparent;
}
#social .facebooklink svg {
  width: 20px;
  height: 20px;
}
#social .facebooklink path {
  fill: #fff;
}

/* Nav Brand combination */
#nav-brand-wrapper {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.8);
}

.is-sticky #nav-brand-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding-top: 0;
  z-index: 90;
}

.nav-brand-wrapper-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
}

.site-brand {
  /* width: 50%;*/
  width: 40%;
  margin-top: 0;
  transition: all 300ms ease-in-out;
}

.is-sticky .site-brand {
  margin-top: 1rem;
  width: 30%;
}

.nav-primary {
  background: #ffffff;
}

.homepage .nav-primary {
  background: transparent;
}

#mainImage {
  overflow: hidden;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-meta {
  margin-top: 20px;
  margin-right: 1.25%;
}

.nav-breadcrumb {
  width: 66.66667%;
  background: #fff;
}

.nav-breadcrumb > ul {
  padding: 5px 0 10px 0;
}

.contentWrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 1rem 40px 1rem;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px 10px 0 0;
  gap: 2rem;
}

.site-main {
  width: 100%;
  padding-right: 1rem;
  /*  hyphens: auto;*/
}

#site-sideBar {
  width: 100%;
  /* padding-left: 1rem;
   padding-right: 1rem;*/
  border-top: 1px dashed var(--energierot);
  margin-top: 1rem;
  padding-top: 1rem;
}
#site-sideBar img {
  max-width: 100%;
  height: auto;
}

.datum + h2 {
  margin-top: 0;
}

.single-column .site-main {
  width: 100%;
  padding-right: 0;
}

.single-column .contentWrapper {
  display: block;
}

.single-column #site-sideBar {
  display: none;
}

.main-content-wrapper {
  width: 100%;
}

.text-content-sidebar img {
  width: 100%;
  height: auto;
}

#mainImage img {
  object-fit: cover;
  width: 100%;
  max-height: 250px;
}

.businessite-link {
  text-align: right;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.5rem;
  margin-top: 0;
}

.businessite-link a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 2px 1rem 0;
  transition: all 300ms ease-in-out;
}
.businessite-link a svg {
  width: 17px;
  height: 17px;
}
.businessite-link a path {
  fill: var(--gruen);
}
.businessite-link a:hover {
  background-color: var(--gruen);
  text-decoration: none;
  color: white;
}
.businessite-link a:hover path {
  fill: white;
}

/* Customers voices *************************************************/
#customersVoices {
  margin-top: 1rem;
  padding-top: 1rem;
}

.customers-voices-wrapper {
  border-bottom: 1px solid var(--lightgrey);
  margin-bottom: 2rem;
}

.homepage #customersVoices {
  margin-top: 0;
  padding-top: 1rem;
  column-count: unset;
}

.customers-voice {
  margin-top: 0;
  padding: 1rem;
  border: 1px solid var(--darkwhite);
  margin-bottom: 1rem;
  break-inside: avoid;
}
.customers-voice h2 {
  font-size: 1.1rem;
}

.homepage .customers-voice {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Ansprechpartner *************************************************/
/* Bottom SLider ************************************************** */
.sliderWrapper {
  margin: 2rem 0 1rem;
}

.sliderThumbsWrapper img {
  cursor: pointer;
  padding: 0 2px;
}

/* FOOTER **************************************************************/
.site-footer {
  background-color: var(--rot);
}
.site-footer nav {
  padding-top: 7px;
}

.footerInner {
  margin: 0;
  padding: 1rem 1rem 10px;
  display: flex;
  flex-direction: column;
}

.site-contact {
  color: #ffffff;
  margin-top: 1rem;
}

#partner {
  color: white;
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 1rem;
  z-index: 1000;
  background-color: rgba(var(--gruen-rgb), 0.8);
  width: 30px;
  height: auto;
  padding: 3px;
  border-radius: 0;
  border: 1px solid var(--text-color);
  text-align: center;
  line-height: 1;
  opacity: 1;
}

#scrollTop:hover {
  background-color: rgba(var(--gruen-rgb), 1);
}

#scrollTop.hidden {
  opacity: 0;
}

#scrollTop {
  transition: opacity 300ms ease;
  display: block;
}

#scrollTop path {
  fill: white;
}

/* Kalkulator ********************************************************** */
#calculator {
  background: rgb(208, 242, 206);
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}
#calculator #products {
  width: 100%;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#calculator #products:focus-within {
  outline: 2px solid var(--select-focus);
}
#calculator #products-select {
  margin: 0;
  width: 100%;
  font-family: inherit;
  min-width: 15ch;
  border: none;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: transparent;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
#calculator label {
  display: block;
  margin: 0.5rem 0;
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.25rem;
}
#calculator .inputs {
  width: 100%;
  padding-right: 0;
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--rot);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#calculator .inputs > div {
  margin-top: 0.5rem;
}
#calculator .results {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#calculator .resultsInner {
  background-color: rgb(208, 242, 206);
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#calculator .resultlabel {
  font-size: 1.25rem;
  opacity: 0;
}
#calculator #preis-text {
  font-size: 0.8rem;
}
#calculator #gross-price-result {
  font-weight: bold;
}
#calculator .resultlabel.show {
  animation: fadeIn 0.3s ease-in-out forwards;
}
#calculator .calculator-inputs-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}
#calculator .calculator-inputs {
  color: var(--text-color);
  font-size: 1.25rem;
}
#calculator select {
  line-height: 1.5;
  font-size: 1.25rem;
}
#calculator input[type=text] {
  line-height: 1.5;
  font-size: 1.25rem;
  max-width: 50%;
}
#calculator input[type=text].error {
  border: 1px solid red;
}
#calculator #error-message {
  color: red;
  font-size: 1.25rem;
  opacity: 0;
}
#calculator #error-message.show {
  animation: fadeIn 500ms ease-in-out forwards;
}
#calculator #calculate-button {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: white;
  color: var(--gruen);
  border: 1px solid var(--gruen);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  align-self: flex-start;
}
#calculator #calculate-button:hover, #calculator #calculate-button:focus {
  background-color: var(--gruen);
  color: white;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.textBelow {
  margin-top: 2rem;
}
.textBelow ul {
  list-style-type: disc;
  margin: 0.5rem 0 1rem 1rem;
}

/* FAQs */
.singleFaq {
  margin-bottom: 2rem;
}
.singleFaq .faqSwitch {
  cursor: pointer;
}
.singleFaq .faqSwitch:hover {
  color: var(--rot);
}
video {
  margin-top: 2rem;
  max-width: 100%;
  height: auto;
}

.small-videoplayer video {
  margin-top: 1rem;
  max-width: 100%;
  height: auto;
}

/* Cards on Productpages */
.subpages-listview-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section-card {
  width: 100%;
  padding: 0;
  border: 1px solid var(--lightgrey);
  box-shadow: var(--darkwhite) 0 0 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section-card:hover, .section-card:focus {
  box-shadow: var(--lightestgrey) 3px 3px 0.5rem;
}
.section-card h2 {
  padding: 0.5rem 1rem;
}
.section-card .card-image-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.section-card .card-image-container {
  width: calc(50% - 2px);
  position: relative;
}
.section-card .card-image-container img {
  width: 100%;
  height: auto;
}
.section-card .card-image-overlay-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: white;
  padding: 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 0;
}
.section-card .card-image-overlay {
  background-color: var(--rot);
  width: 100%;
  padding: 0.3rem 0.5rem;
}
.section-card .card-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}
.section-card .card-content {
  padding: 0.5rem 1rem;
}
.section-card .readOn-button-wrapper {
  padding: 0.5rem 1rem;
}

/* Images on product detail page*/
.product-image-wrapper {
  max-width: 800px;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.product-image-wrapper .product-image-container {
  width: calc(50% - 2px);
  position: relative;
}
.product-image-wrapper .product-image-overlay-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: white;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 0;
}
.product-image-wrapper .product-image-overlay {
  width: calc(50% - 2px);
  background-color: var(--rot);
  padding: 0.3rem 0.3rem 0.6rem;
}
.product-image-wrapper img {
  width: 100%;
  height: auto;
}

/* Media Queries ********************************************************/
@media only screen and (min-width: 500px) {
  .site-brand {
    padding-top: 0;
    width: 30%;
  }
  #customersVoices {
    /* flex-direction: row;
     align-items: stretch;*/
    column-count: 2;
    gap: 1rem;
  }
  .ansprechpartner-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2rem;
  }
  .ansprechpartner {
    max-width: calc(50% - 1rem);
  }
  .ansprechpartner img {
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 594px) {
  .site-header .infoHeader {
    justify-content: flex-end;
  }
  .product-groups {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  }
  .product-group {
    width: calc(50% - 1rem);
  }
  .items-2 .section-card {
    width: calc(50% - 1rem);
  }
  .footerInner {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }
  .site-contact {
    color: #ffffff;
    margin-top: 0;
  }
}
@media screen and (min-width: 730px) {
  .site-main {
    width: calc(70% - 1rem);
    margin-bottom: 10px;
    padding-right: 2rem;
  }
  .single-column .site-main {
    width: 100%;
  }
  #site-sideBar {
    width: calc(30% - 1rem);
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  #site-sideBar section {
    width: 100%;
  }
  /* Formular */
  #angebotAnfordern p.formInput {
    width: 50%;
    padding-left: 0.625%;
    padding-right: 0.625%;
  }
  #angebotAnfordern p.longRow {
    width: 100%;
  }
  .homepage .customers-voice {
    width: 100%;
  }
  .lang-text {
    max-width: 80ch;
    hyphens: auto;
  }
}
@media (min-width: 870px) {
  .site-header .infoHeader {
    justify-content: flex-end;
  }
  .site-header #headerSlogan {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: calc(50% - 170px);
    display: block;
    font-size: 1.5rem;
    color: var(--gruen);
    width: 25%;
  }
  .site-brand {
    padding-top: 0;
    width: 20%;
    margin-top: 0;
  }
  .is-sticky .site-brand {
    margin-top: 1rem;
    width: 14%;
  }
  .site-header #siteLogo {
    width: 25%;
  }
  .site-header .nav-primary {
    width: 100%;
    padding-top: 10px;
    background-color: #fff;
  }
  /*  .site-header .nav-primary.sticky {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
    }*/
  .site-header #partner {
    display: block;
  }
  .site-header #pq {
    position: absolute;
    right: 10em;
    top: 70px;
    z-index: 1010;
    display: block;
  }
  #mainImage img {
    max-height: 400px;
  }
  .main-content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  .text-content {
    width: calc(60% - 1rem);
  }
  .text-content-sidebar {
    width: calc(40% - 1rem);
  }
  #calculator .inputs {
    width: 50%;
    padding-right: 1rem;
    padding-bottom: 0;
    border-right: 1px dotted var(--rot);
    border-bottom: none;
  }
  #calculator .results {
    width: 50%;
    padding: 0 1rem;
  }
  #calculator .calculator-inputs-wrapper {
    display: block;
  }
  #calculator #calculate-button {
    font-size: 1rem;
  }
  .small-videoplayer video {
    margin-top: 1rem;
    max-width: 100%;
    height: auto;
  }
  .items-3 .section-card {
    width: calc(33% - 1rem);
  }
  #customersVoices {
    column-count: 3;
  }
}
@media (min-width: 1000px) {
  #nav-brand-wrapper {
    align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  /*
    .customers-voice {
      width: calc(33% - 1rem);
    }*/
  .homepage .customers-voice {
    width: 100%;
  }
}
/* Homepage with media queries */
body.homepage {
  min-height: 100vh;
}
body.homepage #site-header {
  position: absolute;
  height: 79px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.8);
}
body.homepage.is-sticky #site-header {
  background-color: transparent;
}
body.homepage .businessite-link {
  background-color: transparent;
}
body.homepage .infoHeader {
  background-color: transparent;
}
body.homepage .site-header #slogan {
  opacity: 0;
  display: none;
}
body.homepage #nav-brand-wrapper {
  position: absolute;
  top: 79px;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.8);
}
body.homepage.is-sticky #nav-brand-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 0;
  z-index: 90;
}
body.homepage .site-brand {
  margin-top: -30px;
}
body.homepage.is-sticky .site-brand {
  margin-top: 1rem;
}
body.homepage .contentWrapper {
  position: relative;
  margin-top: -10vh;
  background-color: #fff;
}

#hero {
  position: relative;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hero > img {
  object-fit: cover;
  object-position: 50% 0;
  width: 100%;
  height: 100vh;
  /* position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: -1;*/
}

:root {
  --min-width: 300px;
  --max-width: 550px;
  --min-width-width: 90vw;
  --max-width-width: 30vw;
}

.homepage #slogan {
  position: absolute;
  width: clamp(300px, 70%, 500px);
  bottom: 30%;
  left: 5%;
  z-index: 80;
  opacity: 0;
}
.homepage #slogan img {
  width: 100%;
}

/*@media only screen and (min-width: 500px) {
  #slogan {
    position: absolute;
    width: 80%;
    bottom: 30%;
    left: 5%;


  }
}
@media only screen and (min-width: 768px) {
  #slogan {
    position: absolute;
    width: 70%;
    bottom: 25%;
    left: 5%;


  }
}*/
/*@import "nav";*/
/* ========================================================
  Smartmenus
  Custom Theme========================================================== */
.mainnav {
  width: calc(100% - 2rem);
  height: 6rem;
  padding-top: 30px;
  text-align: center;
  position: absolute;
  bottom: -50px;
  right: 1rem;
  left: 1rem;
}

.mainnav {
  padding-top: 0;
}

.is-sticky .mainnav {
  top: auto;
  bottom: -50px;
}

/* General */
/* Responsive state ################################ */
.main-menu-btn {
  position: absolute;
  display: block;
  width: 28px;
  height: 38px;
  right: 0;
  top: 36px;
  margin: 8px 0 0 0;
  text-indent: 28px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.main-menu-btn {
  top: 0;
  margin-top: 0;
}

/* hamburger icon */
.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: var(--gruen);
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: "";
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: "";
  top: 7px;
  left: 0;
}

/* x icon */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  transform: rotate(45deg);
}

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* hide the menu in mobile view */
#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}

#main-menu-state:checked ~ #main-menu {
  display: block;
}

@media (max-width: 999px) {
  /* Small Screens -> Mobile first */
  .sm-clean {
    background: white;
    padding: 0;
    margin-top: 44px;
    -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
    border-color: var(--lightgrey);
    border-width: 1px 1px 0;
    border-style: solid;
    /* height: 0;
     opacity: 0;*/
    overflow: hidden;
  }
  .homepage .sm-clean {
    margin-top: 44px;
  }
  .sm-clean a:link,
  .sm-clean a:hover,
  .sm-clean a:focus,
  .sm-clean a:active {
    padding: 13px 20px;
    /* make room for the toggle button (sub indicator) */
    padding-right: 58px;
    color: var(--gruen);
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
  }
  .sm-clean a:link,
  .sm-clean a:visited {
    color: var(--gruen);
    background-color: white;
    transition: all 200ms;
  }
  .sm-clean a:hover,
  .sm-clean a:focus,
  .sm-clean a:active {
    color: var(--rot);
    background-color: var(--darkwhite);
  }
  .sm-clean li.active > a {
    color: var(--rot);
    background-color: white;
  }
  /* Sub Arrow (+) */
  .sm-clean a .sub-arrow {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: auto;
    right: 4px;
    width: 34px;
    height: 34px;
    overflow: hidden;
    font: bold 1rem/34px monospace !important;
    text-align: center;
    text-shadow: none;
    background: var(--darkwhite);
    border-radius: 3px;
  }
  .sm-clean a .sub-arrow::before {
    content: "+";
    font-size: 1.5rem;
  }
  .sm-clean a:hover .sub-arrow, .sm-clean a:active .sub-arrow, .sm-clean a:focus .sub-arrow, .sm-clean a.highlighted .sub-arrow {
    background-color: white;
  }
  .sm-clean a.highlighted .sub-arrow::before {
    content: "-";
  }
  /* Optional Bottom and TOP Border radius

  .sm-clean > li:first-child > a,
  .sm-clean > li:first-child > :not(ul) a {
    border-radius: 3px 3px 0 0;
  }
  .sm-clean > li:last-child > a,
  .sm-clean > li:last-child > *:not(ul) a,
  .sm-clean > li:last-child > ul,
  .sm-clean > li:last-child > ul > li:last-child > a,
  .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a,
  .sm-clean > li:last-child > ul > li:last-child > ul,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
    border-radius: 0 0 3px 3px;
  }

  .sm-clean > li:last-child > a.highlighted,
  .sm-clean > li:last-child > *:not(ul) a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted,
  .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
    border-radius: 0;
  }
  Optional border Radius End */
  /* Separator lines */
  .sm-clean li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-left: 6px solid transparent;
  }
  .sm-clean ul {
    background: rgba(179, 179, 179, 0.1);
  }
  /* Styling Sub-levels mobile */
  .sm-clean ul a:link,
  .sm-clean ul a:visited,
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active {
    font-size: 1rem;
    border-left: 12px solid transparent;
    background-color: transparent;
    color: var(--gruen);
  }
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active {
    font-size: 1rem;
    border-left: 12px solid transparent;
    background-color: white;
    color: var(--rot);
  }
  /* Lower levels indent */
  .sm-clean ul ul a:link,
  .sm-clean ul ul a:visited,
  .sm-clean ul ul a:hover,
  .sm-clean ul ul a:focus,
  .sm-clean ul ul a:active {
    border-left: 16px solid transparent;
  }
  .sm-clean ul ul ul a:link,
  .sm-clean ul ul ul a:visited,
  .sm-clean ul ul ul a:hover,
  .sm-clean ul ul ul a:focus,
  .sm-clean ul ul ul a:active {
    border-left: 24px solid transparent;
  }
  .sm-clean ul ul ul ul a:link,
  .sm-clean ul ul ul ul a:visited,
  .sm-clean ul ul ul ul a:hover,
  .sm-clean ul ul ul ul a:focus,
  .sm-clean ul ul ul ul a:active {
    border-left: 32px solid transparent;
  }
  .sm-clean ul ul ul ul ul a:link,
  .sm-clean ul ul ul ul ul a:visited,
  .sm-clean ul ul ul ul ul a:hover,
  .sm-clean ul ul ul ul ul a:focus,
  .sm-clean ul ul ul ul ul a:active {
    border-left: 40px solid transparent;
  }
}
/* Large Screen */
@media (min-width: 1000px) {
  /* Switch to desktop layout -> set breakpoint above */
  /* General Styles for Mainnav */
  .mainnav {
    width: calc(100% - 2rem);
    height: auto;
    padding-top: 30px;
    text-align: center;
    position: static;
  }
  .homepage .mainnav {
    padding-top: 20px;
  }
  .homepage .is-sticky .mainnav {
    top: auto;
    bottom: -50px;
  }
  /* Switch button */
  .main-menu-btn, .homepage .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: table;
    width: 100%;
    margin: 0 auto;
  }
  .sm-clean {
    text-align: center;
  }
  /*
  -----------------------------------------------------------------------------------------------------------
  These transform the menu tree from
  collapsible to desktop (navbar + dropdowns)
  ----------------------------------------------- */
  /* start... (it's not recommended editing these rules) */
  /* hide the button in desktop view */
  .sm-clean ul {
    position: absolute;
    width: 12em;
  }
  .sm-clean ul li,
  .sm-clean.sm-vertical li {
    float: none;
  }
  .sm-clean a {
    white-space: nowrap;
  }
  .sm-clean ul a,
  .sm-clean.sm-vertical a {
    white-space: normal;
  }
  .sm-clean .sm-nowrap > li > a,
  .sm-clean .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }
  /* ...end */
  ul.sm-clean {
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin: 0;
    display: table;
    box-shadow: none;
  }
  /* First Level */
  .sm-clean > li {
    float: none;
    display: table-cell;
    text-align: center;
    table-layout: fixed;
    border-spacing: 5px;
    margin: 0;
    padding: 0;
    border-top: 0;
    height: auto;
    white-space: nowrap;
    background-color: transparent;
    border-bottom-width: 0;
    position: relative;
    /*    a.has-submenu {
          padding-right: 26px;
        }*/
  }
  .sm-clean > li a {
    display: inline-block;
  }
  .sm-clean > li a:link,
  .sm-clean > li a:visited {
    margin: 0 0;
    padding: 8px 8px 0;
    border-radius: 0 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gruen);
    background-color: transparent;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
  }
  .sm-clean > li a:hover,
  .sm-clean > li a:focus,
  .sm-clean > li a:active,
  .sm-clean > li a.highlighted {
    color: var(--rot);
  }
  .sm-clean > li.active a {
    color: var(--rot);
  }
  .home #main-menu > li {
    border-bottom-width: 6px;
  }
  /* Sub indicator in desktop mode by border */
  .sm-clean a .sub-arrow {
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid dashed dashed dashed;
    border-color: var(--gruen) transparent transparent transparent;
    background: transparent;
    border-radius: 0;
    display: inline-block;
    margin-left: 4px;
    margin-top: 6px;
  }
  .sm-clean > li > a:hover .sub-arrow,
  .sm-clean > li > a:active .sub-arrow,
  .sm-clean > li > a:focus .sub-arrow,
  .sm-clean > li:hover > a .sub-arrow {
    border-color: var(--rot) transparent transparent transparent;
  }
  .sm-clean > li.active > a .sub-arrow {
    border-color: var(--rot) transparent transparent transparent;
  }
  .sm-clean a .sub-arrow::before {
    display: none;
  }
  /* Second level */
  .sm-clean ul {
    border: 1px solid #bbbbbb;
    padding: 0 0 1rem;
    background: #fff;
    border-radius: 5px !important;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  }
  .sm-clean ul a:link,
  .sm-clean ul a:visited {
    margin: 8px 8px 0;
    font-weight: 400;
    color: var(--gruen);
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active {
    color: var(--rot);
  }
  .sm-clean ul li.active > a {
    font-weight: 700;
    color: var(--rot);
  }
  .sm-clean ul a:hover .sub-arrow,
  .sm-clean ul a:active .sub-arrow,
  .sm-clean ul a:focus .sub-arrow,
  .sm-clean ul li:hover a .sub-arrow,
  .sm-clean ul li.active > a .sub-arrow {
    border-color: var(--rot) transparent transparent transparent;
  }
  .sm-clean > li:nth-of-type(2) > ul::before, .sm-clean:nth-of-type(2) > li > ul::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 30px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 9px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #bbbbbb transparent;
  }
  .sm-clean > li:nth-of-type(2) > ul::after {
    top: -16px;
    left: 31px;
    border-width: 8px;
    border-color: transparent transparent #fff transparent;
  }
  .sm-clean > li:last-of-type > ul::before, .sm-clean > li:last-of-type > ul::after {
    right: 30px;
  }
  .sm-clean > li:last-of-type > ul::after {
    right: 31px;
  }
}
/*   site-footer nav *************************************** */
.site-footer nav li {
  margin-bottom: 1rem;
  display: block;
}

.site-footer nav a {
  padding: 0 1rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.site-footer nav a:hover,
.site-footer nav li.active > a {
  text-decoration: underline;
}

.product1 {
  background-color: var(--color1);
}

.product2 {
  background-color: var(--color2);
}

.product3 {
  background-color: var(--color3);
}

.product4 {
  background-color: var(--color4);
}

.product5 {
  background-color: var(--color5);
}

.product6 {
  background-color: var(--color6);
}

.product7 {
  background-color: var(--color7);
}

/* LINKS */
a {
  text-decoration: none;
}

a:link {
  color: #3b7737;
}

a:hover {
  color: #4c9a47;
  text-decoration: underline;
}

a:active {
  color: #2a5427;
  text-decoration: underline;
}

a:visited {
  color: #2a5427;
}

/* HEadlines */
h1,
.page-title {
  font-weight: bold;
  color: var(--gruen);
  font-size: 1.9rem;
}

h2,
.title {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gruen);
}

h1 + h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

h1 + p {
  margin-top: 1rem;
}

.contRefTab h2 {
  background-color: #3b7737;
  color: #ffffff;
  padding: 0.5rem;
}

ul.vorteile {
  list-style-type: none;
}
ul.vorteile li {
  list-style-image: url("/layoutbilder/thumbs-up.svg");
}

#site-sideBar h2 {
  color: var(--rot);
  margin-top: 0;
  font-size: 1.2rem;
}

#site-sideBar a:link, #site-sideBar a:visited {
  color: var(--rot);
  text-decoration: none;
}

#site-sideBar a:hover, #site-sideBar a:active, #site-sideBar a:focus {
  text-decoration: underline;
}

#site-sideBar a.linkIcon:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url(../layoutbilder/link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 3px;
}

/* SideBar Navlist*/
#sidebarNav {
  margin-top: 0.7rem;
}

#site-sideBar .sidebar-nav-list {
  margin-top: 1rem;
}
#site-sideBar .sidebar-nav-list li {
  margin-bottom: 1rem;
  padding-left: 1.1rem;
}
#site-sideBar .sidebar-nav-list li.current {
  font-weight: bold;
  color: var(--rot);
  padding-left: 0;
}
#site-sideBar .sidebar-nav-list li.current::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  display: inline-block;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--rot);
  margin-right: 0.2rem;
  transform: rotate(45deg);
  position: relative;
  top: 0;
}
#site-sideBar .sidebar-nav-list a:link, #site-sideBar .sidebar-nav-list a:visited {
  color: var(--gruen);
  text-decoration: none;
  font-weight: bold;
}
#site-sideBar .sidebar-nav-list a:hover, #site-sideBar .sidebar-nav-list a:active, #site-sideBar .sidebar-nav-list a:focus {
  text-decoration: underline;
}

.site-main h3 {
  color: var(--gruen);
  margin-top: 2rem;
}

.customers-voice h3 {
  color: var(--gruen);
  margin-top: 0;
}

p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

h3,
h4 {
  font-size: 1.1rem;
}

.site-main {
  /* LINKS */
}
.site-main a {
  text-decoration: underline;
}
.site-main a:link {
  color: #3b7737;
  text-decoration: underline;
}
.site-main a:hover {
  color: #4c9a47;
  text-decoration: none;
}
.site-main a:active {
  color: #2a5427;
  text-decoration: none;
}
.site-main a:visited {
  color: #2a5427;
}
.site-main ul {
  list-style-type: disc;
  margin-left: 1rem;
  padding-left: 0.5rem;
}
.site-main li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.site-main a:link.readOn-button, .site-main a:visited.readOn-button {
  color: white;
  background-color: var(--gruen);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 0;
  transition: all 200ms ease-in-out;
}
.site-main a:hover.readOn-button, .site-main a:active.readOn-button, .site-main a:focus.readOn-button {
  color: var(--gruen);
  background-color: var(--lightestgrey);
}

#site-sideBar .datum {
  color: dimgray;
  font-size: 0.9rem;
}

/* CLasses */
.lead {
  font-size: 1.6rem;
  line-height: 140%;
}

.font-small,
#site-sideBar p,
figure figcaption,
.site-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.font-xsmall,
.nav-meta a,
.site-header #partner,
.site-header #pq {
  font-size: 0.8rem;
  line-height: 125%;
}

/* Convenience classes */
.mb-xs {
  margin-bottom: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: 4rem;
}

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