:root {
  /* Kundenfarben */
  --grau: #7A7E7C;
  --gruen1: #EDFAD4;
  --gruen2:#DEF3A4;
  --gruen3:#93CD0C;
  --gruen4:#57AC16;
  /* Allgemeine Farben */
  --darkgray: #5B5B5B;
  --middlegray: #dee2e6;
  --lightgray: #F8F9FA;
  --white: #ffffff;
  --black: #000000;
  --anthrazitgrau: #293133;

  --mainfontcolor: #4D4D4D;
  --mainfontsize: 19px;
  --mainfont: 'Fira Sans', sans-serif;
  --mainfont-headline: 'Fira Sans', sans-serif;
  --maincolor: var(--gruen3);
  --maincolor2: var(--gruen4);  

  /* Hauptnavigation */
  --mainnav-bg: var(--white);
  --mainnav-bg-sticky: var(--white);
  --mainnav-bg-mobil: var(--gruen4);
  --mainnavbutton-bg1: none;
  --mainnavbutton-txt1: var(--mainfontcolor);
  --mainnavbutton-bg2: var(--gruen2);
  --mainnavbutton-txt2: var(--gruen4);
  --mainnavbutton-bg3: var(--gruen4);
  --mainnavbutton-txt3: var(--white);

  --subnavbutton-bg1: var(--white);
  --subnavbutton-txt1: var(--mainfontcolor);
  --subnavbutton-bg2: var(--gruen2);
  --subnavbutton-txt2: var(--maincolor2);
  --subnavbutton-border: var(--maincolor2);
  --subnavbutton-content-bg: var(--white);


  /* Bereiche */
  --bgfooter: var(--gruen4);
  --headline1: var(--grau);
  --href: var(--gruen4);
  --box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); /* für Boxen wie News, Maps, Youtube etc. */
  --box-shadow2: 0 0 5px rgba(0, 0, 0, 0.3); /* für Boxen wie News, Maps, Youtube etc. */

  --cookiebutton-bg1: var(--gruen2);
  --cookiebutton-txt1: var(--gruen4);
  --cookiebutton-bg2: var(--gruen4);
  --cookiebutton-txt2: var(--white);

  --button-bg1: var(--gruen4);
  --button-txt1: var(--white);
  --button-bg2: var(--gruen3);
  --button-txt2: var(--white);    
}

*, *:after, *::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
  border: none;
  color: var(--mainfontcolor);
  font-family: var(--mainfont);
  font-size: var(--mainfontsize);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--href);
}

a:hover {
  text-decoration: underline;
}

#datenschutz a {
  word-wrap: break-word;
}

hr {
  height: 1px;
  background: none;
  border-top: 1px solid var(--middlegray);
  margin: 2rem 0;
}

h1, h2, h3 {
  font-family: var(--mainfont-headline);
  padding: 0;
}

h1 {
  color: var(--headline1);
  font-size: 1.95rem;
  font-weight: 500;
  font-style: normal;
  margin: 2rem 0 2rem;
  text-transform: normal;
  border-left: 5px solid var(--maincolor2);
  padding-left: 0.75rem;
  line-height: 1;
}

.h1spacer {
  color: var(--headline1);
  font-size: 1.95rem;
  font-weight: 500;
  font-style: normal;
  margin: 2rem 0 2rem;
  text-transform: normal;
  line-height: 1;
}

h2 {
  color: #000;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 1.7rem 0 0.6rem;
}

h3 {
  color: #000;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 1.25rem 0 0.5rem;
}

h4 {
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.25rem 0 0rem;
}

h1 + h2 {
  margin-top: 0;
}

p {
  margin: 0;
  padding: 0;
}

em, .em {
  font-style: italic;
}

strong, .strong {
  font-weight: 600;
}

small, .small {
  font-size: 0.8em;
}

sub, sup {
  font-size: 0.8rem;
  line-height: 1;
}

sub {
  vertical-align: sub; /* Positioniert den Text nach unten */
}

sup {
  vertical-align: super; /* Positioniert den Text nach oben */
}

img {
  border: 0;
}

.red {color: red;}

/*-------------------------------------------------------------------
-------------------------------------------------------------------*/

img.imagebild {
  display: block;
  width: 100%;
}

img.imagebild_r {
  display: block;
  float: right;
  width: 40%;
  margin: 0 0 1rem 1rem;
}

img.imagebild_l {
  display: block;
  float: left;
  width: 40%;
  margin: 0 1rem 1rem 0;
}

@media screen and (max-width: 730px), (max-device-width: 730px) {  
  img.imagebild_r,
  img.imagebild_l {
    float: none;
    width: 100%;
    margin: 1rem 0;
  }
}

img.imagebildborder {
  border: 1px solid var(--gruen3);
  border-radius: 5px;
}

/* ------------------------------------------------------------ */



ol, ul {
  font-weight: normal;
  list-style-position: outside;
  margin: 15px 0 20px 20px;
  padding: 0;
  text-align: left;
}

ol {
  list-style-type: decimal;
}

ul {
  list-style-type: square;
}

li {
  padding: 0 0 8px 0;
}

li:last-child {
  padding-bottom: 0!important;
}

ul.noul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  text-indent: -1rem;

}

ul.noul li {
  padding: 0;
}

ul.noul li::before {
  content: "» ";
}



ul.check, ul.arrow {
  padding: 0;
  list-style: none;
  margin: 0 0 2rem 0;
}

ul.arrow {
  padding: 0;
  list-style: none;
  margin: 0 0 2rem 1rem;
}


ul.check li::before {
  content: "✓";
  font-family: 'Dingbats';
  font-weight:  bold;	
	font-size: 80%;
	color: var(--maincolor2);
  position: absolute;
  left: 0; /* Symbol an den Anfang */
  top: 5px; /* Symbol vertikal ausrichten */
  line-height: 1; /* Gleiche Höhe wie Text */
}

ul.arrow li::before {
  content: "➔";
  font-family: 'Dingbats';
  font-weight:  bold;	
	font-size: 80%;
	color: var(--maincolor2);
  position: absolute;
  left: 0; /* Symbol an den Anfang */
  top: 6px; /* Symbol vertikal ausrichten */
  line-height: 1; /* Gleiche Höhe wie Text */
}

ul.check li, ul.arrow li {
  position: relative;
  padding-left: 25px;  
}

ul.checkbig li {
  padding-bottom:1rem;
  font-size: 1.3rem;
}

span.green {
  color: var(--maincolor2);
}


.clear {
  clear: both;
  float: none;
}

.bg-darkgray {
  background: var(--darkgray);
}

.bg-light {
  background: var(--lightgray);
}


.headline.center:after {
  margin: 1rem auto;
}

.noborder {
  border: none!important;
}

.border-t-dark {      border-top: 1px solid var(--anthrazitgrau);}
.border-t-darkgray {  border-top: 1px solid var(--darkgray);}
.border-t-light {     border-top: 1px solid var(--middlegray);}
.border-t-dark {      border-bottom: 1px solid var(--anthrazitgrau);}
.border-t-darkgray {  border-bottom: 1px solid var(--darkgray);}
.border-t-light {     border-bottom: 1px solid var(--middlegray);}

.mb-0 {  margin-bottom: 0rem!important;}
.mb-1 {  margin-bottom: 1rem!important;}
.mb-2 {  margin-bottom: 2rem!important;}
.mt-0 {  margin-top: 0rem!important;}
.mt-1 {  margin-top: 1rem!important;}
.mt-2 {  margin-top: 2rem!important;}

.center {
  text-align: center!important;
}

.fail  {
  padding: 1rem;
  border: 1px solid red;
}

.responsive-iframe {
  height: 0;
  overflow: hidden;
  padding-bottom: 90%;
  padding-top: 0px;
  position: relative;
  border: 5px solid #fff;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.responsive-video iframe,
.responsive-video video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.responsive-video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
/* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0px;
  position: relative;
  border: 5px solid #fff;
  box-shadow: var(--box-shadow);
}

.responsive-iframe iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}



/*-------------------------------------------------------------------
-------------------------------------------------------------------*/

#logo {
  width: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1rem 2rem 1rem;
}

#logo img {
  width: 100%;
  max-width: 380px;
}

#navigation {
  width: 100%;
  display: flex;
  flex-direction: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--mainnav-bg);
  z-index: 9995;
  padding: 0 1rem;
}

@media screen and (max-width: 1135px), (max-device-width: 1135px) {
  #navigation {
  justify-content: flex-end;
  }
}

#navigation.sticky {
  top: 0;
  position: fixed;
  z-index: 9995;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  background-color: var(--mainnav-bg-sticky);
}

#navigation-in {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: wrap;
}


#head {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/head.jpg");
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px rgba(0,0,0,0.4);
  border-bottom: 4px solid var(--maincolor2);
}

#head-in {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2rem; 
  padding: 2rem 1rem; 
}

.head-txt1 {
  width: 100%;
  font-size: 3.0rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,1);
}

.head-txt2 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,1);
}

@media screen and (max-width: 850px), (max-device-width: 850px) {
  .head-txt {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 670px), (max-device-width: 670px) {
  .head-txt {
    font-size: 1.9rem;
  }
}

.head-img {
  width: calc(50% - 1rem);
}

.head-img img {
  width: 100%;
  max-width: 528px;
}

@media screen and (max-width: 700px), (max-device-width: 700px) {
  #head-in {
    flex-direction: column;
  }

  .head-txt {
    width: 100%;
    font-size: 2.6rem;
    text-align: center;
    order: 2;
    line-height: 1;

  }

  .head-img {
    width: 100%;
    text-align: center;
    order: 1;
  }
  
}





/* -------------------- */










/* -------------------------- */

.bg-image {
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  width: 100%;
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  border-bottom: 1px solid var(--middlegray);
}

@media screen and (max-width: 850px), (max-device-width: 850px) {
  .bg-image {
    background-attachment: scroll;
  }
}

.bg-image-top {     background-position: center top; }
.bg-image-bottom {  background-position: center bottom; }

.bg-image50vh {
  height: 50vh;
}
/* -------------------------- */
.content {
  padding: 4.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1110px) {
  .content {
  padding: 4.81rem 1rem;
  }
}

.content:nth-of-type(even) {
  background-color: var(--lightgray)
}

.content-in {
  max-width: 1200px;
  width: 100%;
}

.content-in + .content-in {
  margin-top: 3rem;
}

.w80 {  width: 80%;}
.w60 {  width: 60%;}
.w50 {  width: 50%;}
.w40 {  width: 40%;}

@media screen and (max-width:1100px) {
  .w80 {    width: 100%;  }
  .w60 {    width: 100%;  }
  .w50 {    width: 100%;  }
  .w40 {    width: 100%;  }
}

.box-group {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.box-group5050 > div                    {  width: calc(50% - (3rem / 2)); }
.box-group6040 > div:nth-of-type(odd)   {  width: calc(60% - (3rem / 2)); }
.box-group6040 > div:nth-of-type(even)  {  width: calc(40% - (3rem / 2)); }
.box-group7030 > div:nth-of-type(odd)   {  width: calc(70% - (3rem / 2)); }
.box-group7030 > div:nth-of-type(even)  {  width: calc(30% - (3rem / 2)); }
.box-group3070 > div:nth-of-type(odd)   {  width: calc(30% - (3rem / 2)); }
.box-group3070 > div:nth-of-type(even)  {  width: calc(70% - (3rem / 2)); }
.box-group4060 > div:nth-of-type(odd)   {  width: calc(40% - (3rem / 2)); }
.box-group4060 > div:nth-of-type(even)  {  width: calc(60% - (3rem / 2)); }
.box-group4555 > div:nth-of-type(odd)   {  width: calc(45% - (3rem / 2)); }
.box-group4555 > div:nth-of-type(even)  {  width: calc(55% - (3rem / 2)); }

@media screen and (max-width: 650px), (max-device-width: 650px) {
  .box-group5050 > div                {    width: 100%;  }
  .box-group6040 > div:nth-of-type(n) {    width: 100%;  }
  .box-group4060 > div:nth-of-type(n) {    width: 100%;  }
  .box-group4555 > div:nth-of-type(n) {    width: 100%;  }
  .box-group7030 > div:nth-of-type(n) {    width: 100%;  }
  .box-group3070 > div:nth-of-type(n) {    width: 100%;  }
}

#footer {
  padding: 3rem 1rem;
  background-color: var(--bgfooter);
}

#footer-in {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-daten {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

#footer-daten > div {
  width: calc(25% - 2.25rem);
}

#footer-daten h3 {
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}

#footer-daten a {
  text-decoration: none;
}

#footer-daten a:hover {
  text-decoration: underline;
}

#footer-daten div * {
  color: #fff!important;
}

#footer-daten div button:hover {
  color: #fff!important;
  text-decoration: underline;
}

#footer-daten div ul {
  margin-top: 0;
  margin-bottom: 0;
}

#footer-datendiv li {
  padding-bottom: 0;
}

@media screen and (max-width: 970px), (max-device-width: 970px) {
  #footer-daten  > div {
    width: 100%;
    text-align: center;
  }

  #footer-daten ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
}

#footer-logo {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--white);
}

#footer-logo > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#footer-logo img {
  max-width: 350px;
}


/* -------------------------- */

.newsShortBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.newsShortBox > div {
  width: calc(33.3% - (2 * 2rem / 3));
  background: #fff;
  box-shadow: var(--box-shadow);
}

@media screen and (max-width:1000px) {
  .newsShortBox > div {
    width: calc(50% - (2rem / 2));
  }
}

@media screen and (max-width:700px) {
  .newsShortBox > div {
    width: 100%;
  }
}

.newsShortBox > div > div.thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.newsShortBox > div img {
  display: block;
  margin: 0 auto 1rem;
  width: 100%;
  transition: transform .2s;
}

.newsShortBox > div:hover img {
  transform: scale(1.05);
}

.newsShortBox h2 {
  border-bottom: 1px solid var(--maincolor);
  margin: 1.5rem;
  padding: 0 0 1rem;
}

.newsShortBox.angebote h2 {
  border-bottom: 0px solid var(--maincolor);
  margin: 1.5rem;
  padding: 0 0 0rem;
  text-align: center;
}

.newsShortBox h2 a {
  text-decoration: none;
}

.newsShortBox p {
  padding: 0 1.5rem 1.5rem;
}

.newsShortBox .presse-start h2 {
  margin: 0rem 0rem 1.5rem 0;
}

.newsShortBox .presse-start {
  padding: 1.5rem;
}

.newsLargeBox .datum {
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: var(--middlegray);
}

.newsLargeBox p {
  margin-bottom: 1rem;
}

.newsLargeBox figure {
  float: right;
  margin: 0 0 1em 1em;
  text-align: center;
  width: 450px;
}

@media screen and (max-width:850px) {
  .newsLargeBox figure {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
}

@media screen and (max-width:500px) {
  .newsLargeBox figure {
    width: 100%;
  }
}

.newsLargeBox figure a {
  line-height: 0!important;
  display: block;
}

.newsLargeBox figure img {
  border: 1px solid var(--darkred);
  width: 100%;
}

.newsLargeBox figcaption {
  font-size: .9rem;
  text-align: center;
  text-align: left;
  background: var(--darkred);
  color: #fff;
  padding: 0.25rem 0.5rem;
}

.newsgalerie {
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0;
  gap: 1rem;
}

.newsgalerie > div a {
  line-height: 0!important;
  display: block;
}

.newsgalerie > div img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--maincolor);
}

.button {
  background-color: var(--button-bg1);
  color: var(--button-txt1);
  transition: all 0.2s ease-in;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-decoration: none;
  margin: 1rem 0;
  cursor: pointer;
}

.button:hover {
  background-color: var(--button-bg2);
  color: var(--button-txt2);
  text-decoration: none;
}

/*------------------------------- */

.pagination {
  background: var(--maincolor);
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pagination a {
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
}

.pagination a.active {
  background: var(--maincolor2);
  color: white;
}

/*------------------------------- */

.accordionBox {
  margin: 1rem 0;
}

.accordionBox .accordion {
  background-color:var(--lightgray);
  color: var(--maincolor);
  border-bottom: 1px solid #fff;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid var(--maincolor2)
}

.accordionBox .active {
  background-color: var(--lightgray);
}

.accordionBox .accordion:hover {
  background-color: var(--gruen1);
}

.accordionBox .accordion:after {
  content: '\002B';
  color: var(--maincolor);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordionBox .active:after {
  content: "\2212";
}

.accordionBox .panel {
  padding: 0 5px;
  background-color: none;
  max-height: 0;  /* Anfangszustand, wenn das Panel geschlossen ist */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  visibility: hidden;  /* Panel wird anfangs unsichtbar */
}

.accordionBox .panel.open {
  visibility: visible;  /* Beim Öffnen sichtbar machen */
}

.accordionBox .panel > div {
  padding: 1rem 0;
}

.accordionBox .panel > div p {
  margin: 0 0 1rem 0;
}

.accordionBox .panel > div ul {
  margin: 1rem 0 1rem 1rem;
}

.accordionBox button {
  margin: 0;
  padding:0;
  line-height: 1;
}

.accordionBox button h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: inline;
}

button.btn-accordion {
  font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	padding: 0.75rem;
	text-align: center;
	text-decoration: none;
  cursor: pointer;
  background: var(--mainnavbutton-bg3);
	color: var(--mainnavbutton-txt3);
  float: right;
}

button.btn-accordion:hover {
  background: var(--mainnavbutton-bg2);
	color: var(--mainnavbutton-txt2);
}


/* ------------------------------------------------------------ */

.minigalerie {
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0;
  gap: 1px;
}

.minigalerie > div  {
  width: calc(33.3% - 0.66px);
}

.minigalerie > div a {
  line-height: 0!important;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: auto;
}

.minigalerie > div img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------ */

.hightlight-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;  
  width: 100%;
}

.hightlight-box > div {
  background-color: var(--lightgray);
  padding: 1.5rem;
   width: calc(33.3% - 0.66rem);
}

.hightlight-box  h3 {
  margin-top: 0;
}

@media screen and (max-width: 1010px), (max-device-width: 1010px) {
  .hightlight-box > div {
    width: calc(50% - .5rem);
  }

  .hightlight-box > div:nth-of-type(3) {
    width: 100%;
  }
}

@media screen and (max-width: 740px), (max-device-width: 740px) {
  .hightlight-box > div {
    width: 100%;
  }
}

/* ------------------------------------------------------------ */

table.kontakt {
  border-collapse: collapse;
}

table.kontakt td:first-child {
  padding-right: 1rem;
}



/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */

/* -------------------------- */

table.overview {
   border-collapse: collapse;
}

table.overview tr th,
table.overview tr td {
   border: 1px solid var(--anthrazitgrau);
   padding: 1rem;
   text-align: left;
}

table.overview tr th,
table.overview tr td:first-child {
   background-color: var(--lightgray);
   font-weight: 500;
}

table.overviewApp {
  width: 100%;
}

table.overviewApp tr td {
  color: var(--gruen4);
  font-weight: 600;
  text-align: center;
  font-size: 1.3rem;
}

table.overviewApp tr td span {
  font-size: 1.8rem;
}

table.overviewApp tr.vertical th > div {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: left;

  transform: rotate(180deg);
  white-space: nowrap;
  min-height: 100px;
}

/*
@media screen and (min-width: 1321px) {
  table.overviewApp tr.vertical th > div  {
    display: inline;
    writing-mode: initial;
    text-orientation: initial;
    transform: none;
    white-space: wrap;
    min-height: auto;
    
  }
}
  */


@media screen and (max-width:800px) {
  table.overview tr th,
  table.overview tr td {
    padding: 0.3rem;
    font-size: .93rem!important;
    line-height: 1;
}

table.overviewApp tr td span {
  font-size: 1rem;
}

/*Umbruch ausblenden */
table.overview tr th br {
  display: none;
}



}





/* -------------------------- */

table.speci {
   border-collapse: collapse;
}

table.speci th, table.speci td {
   border: 1px solid var(--anthrazitgrau);
   padding: 0.25rem 1rem;
   text-align: left;
}

table.speci th {
   background-color: var(--gruen4);
   font-weight: 500;
   color: #fff;
}

@media screen and (max-width:550px) {
  table.speci th, table.speci td {
    padding: 0.25rem .25rem;
    font-size: 1rem;
 }
}

/* -------------------------- */

table.priceCalculation
  {
  border-collapse: collapse;
  }

table.priceCalculation th, table.priceCalculation td {
  border: 1px solid var(--anthrazitgrau);
  padding: 0.25rem 1rem;
  text-align: left;
}

table.priceCalculation th {
  background-color: var(--gruen4);
  font-weight: 500;
  color: #fff;
  padding: 1rem;
}  

table.priceCalculation td.result {
  background-color: var(--gruen2);
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
}  

/* -------------------------- */

.contentTab {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.tab {
  display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tab button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.5s;
  font-size: var(--mainfontsize);
  font-weight: 400;
	font-style: normal;
  background-color: var(--lightgray);
  color: var(--mainfontcolor)
}


@media screen and (max-width:622px) {
  .tab button {
    width: calc(50% - 0.5rem);
  }
}

.tab button:hover {
  background-color: var(--mainnavbutton-bg2);
  color: var(--mainnavbutton-txt2);
}

.tab button.active {
  background-color:var(--mainnavbutton-bg3);
  color: var(--mainnavbutton-txt3);
}

/*------------------------------- */

.referenzen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.referenzen > a  {
  flex: 0 0 calc((100% - 3 * 2rem) / 4);  /* 4spaltig */
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3 / 2;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  color: var(--mainfontcolor);
}
.referenzen  img {
  width: 90%;
  height: auto;
  transition: transform .2s;
}

.referenzen a:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 980px) {
  .referenzen > a {    flex: 0 0 calc((100% - 2 * 2rem) / 3); /* 3spaltig */  }
}

@media screen and (max-width: 650px) {
  .referenzen > a {   flex: 0 0 calc((100% - 1 * 2rem) / 2); /* 2spaltig */  }
}

/*------------------------------- */
.quote-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
}

.quote-container::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--gruen4);
  position: absolute;
  top: 0;
  left: 1rem;
}

.quote-text {
  font-style: italic;

}

.quote-author {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
}

/*------------------------------- */

.distributorsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 2rem;
}

.distributorsBox > div {
  flex: 0 0 calc((100% - 2 * 2rem) / 3); /* 3spaltig */
  background: #fff;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

@media screen and (max-width:1200px) {
  .distributorsBox > div {
    flex: 0 0 calc((100% - 1 * 2rem) / 2); /* 2spaltig */
  }
}

@media screen and (max-width:790px) {
  .distributorsBox > div {
    flex: 100%;
  }
}

.distributorsBox > div > div.thumb {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distributorsBox > div img {
  display: block;
  margin: 0 auto 1rem;
  width: 100%;
}

/*------------------------------- */
/*------------------------------- */
.flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.flexBox > div {
  background: #fff;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.flexBox > div > div > div.thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 2px solid var(--maincolor2);
}

.flexBox > div > div img {
  display: block;
  margin: 0 auto 1rem;
  width: 100%;
  transition: transform .2s;
}

.flexBox > div > div:hover img {
  transform: scale(1.05);
}

.flexBox h2 {
  margin: 1.5rem;
  color: var(--maincolor2);
}

.flexBox h3 {
  margin: 1.5rem;
  color: var(--maincolor2);
}

.flexBox ul {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.flexBox h2 a {
  text-decoration: none;
}

.flexBox p {
  padding: 0 1.5rem 1.5rem;
}

.flexBoxJustifyLeft {
  justify-content: left;
}

.flexBoxRow2 > div {
  flex: 0 0 calc((100% - 1 * 2rem) / 2); /* 2spaltig */
}

.flexBoxRow3 > div {
  flex: 0 0 calc((100% - 2 * 2rem) / 3); /* 3spaltig */
}

.flexBoxRow4 {
  gap: 1rem;
}

.flexBoxRow4 > div {
  flex: 0 0 calc((100% - 3 * 1rem) / 4);  /* 4spaltig */
}


@media screen and (max-width:1200px) {
  .flexBoxRow4 {
    gap: 2rem;
  }

  .flexBoxRow4 > div {
    flex: 0 0 calc((100% - 2 * 2rem) / 3); /* 3spaltig */
  }
}

@media screen and (max-width:1000px) {
  .flexBoxRow3 > div {
    flex: 0 0 calc((100% - 1 * 2rem) / 2); /* 2spaltig */
  }

  .flexBoxRow4 > div {
    flex: 0 0 calc((100% - 1 * 2rem) / 2); /* 2spaltig */
  }
}

@media screen and (max-width:700px) {
  .flexBoxRow2 > div {
    flex: 100%;
  }

  .flexBoxRow3 > div {
    flex: 100%;
  }

  .flexBoxRow4 > div {
    flex: 100%;
  }
}

/*------------------------------- */


.flexBoxArrow {
  gap: 2rem; /* Abstand für den Pfeil */
  position: relative;
}

.flexBoxArrow > div {
  position: relative;
  flex: 0 0 calc((100% - 4 * 2rem) / 4);  /* 4spaltig */
}


.flexBoxArrow > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.6rem; /* Abstand zwischen den Boxen */
  transform: translateY(-50%);  
  border-top: 3rem solid transparent;
  border-bottom: 3rem solid transparent;
  border-left: 1.6rem solid var(--gruen4); /* Farbe des Pfeils */
}


@media screen and (max-width:1000px) {
  .flexBoxArrow > div {
    flex: 0 0 calc((100% - 2 * 2rem) / 2); /* 2spaltig */
  }
}

@media screen and (max-width:700px) {
  .flexBoxArrow > div {
    flex: 100%;
  }

  .flexBoxArrow > div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%; /* direkt unter dem Container */
    left: 50%; /* horizontal zentriert */
    transform: translateX(-50%);  
    border-left: 1.6rem solid transparent;
    border-right: 1.6rem solid transparent;
    border-top: 1.6rem solid var(--gruen4); /* Farbe des Pfeils */
  }
}

/*------------------------------- */

.flexBoxStart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.flexBoxStart > a {
  background: #fff;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.flexBoxStart > a:hover {
  background: #fff;
  box-shadow: var(--box-shadow2);
}

.flexBoxStart > a > div > div.thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 2px solid var(--maincolor2);
}

.flexBoxStart > a > div img {
  display: block;
  margin: 0 auto 1rem;
  width: 100%;
  transition: transform .2s;
}

.flexBoxStart > a:hover > div img {
  transform: scale(1.05);
}

.flexBoxStart h2 {
  margin: 1.5rem;
  color: var(--maincolor2);
}

.flexBoxStart p {
  padding: 0 1.5rem 1.5rem;
  color: var(--mainfontcolor);
}

.flexBoxStart > a {
  flex: 0 0 calc((100% - 1 * 4rem) / 2); /* 2spaltig */
}


@media screen and (max-width:700px) {
  .flexBoxStart > a {
  flex: 100%;
}
}

/*------------------------------- */
/*------------------------------- */
/*------------------------------- */
/* Button "MORE" */
  
a.btn-details {
  background-color: var(--maincolor2);
  color: #fff;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  line-height: 1;
}

a.btn-details:hover {
  background-color: var(--maincolor);
  color: #fff;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  line-height: 1;
}
/*------------------------------- */
/*------------------------------- */

