@charset "UTF-8";
/* inter-regular - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v12-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-regular - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/barlow-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-600 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/barlow-v12-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/barlow-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --fontSize14: 0.636rem;
  --fontSize16: 0.72rem;
  --fontSize18: 0.8181rem;
  --fontSize20: 0.909rem;
  --fontSize22: 1rem;
  --fontSize24: 1.09rem;
  --fontSize25: 1.136rem;
  --fontSize32: 1.45rem;
  --fontSize34: 1.545rem;
  --fontSize25: 1.136rem;
  --fontSize46: 2.09rem;
  --colorGreen: #009640;
  --colorGreyLight: #F2F2F2;
  --colorBlack: #000000;
  --colorWhite: #FFFFFF;
  --sideSpacing: 1rem;
  --innerSideSpacing: 5.5rem;
  --topHeaderHeight: 1.7rem;
  --headerHeight: 3.2rem;
  --banderoleHeight: 6.4rem;
}
@media only screen and (max-width: 768px) {
  :root {
    --innerSideSpacing: 0;
    --topHeaderHeight: 1.45rem;
    --headerHeight: 3.3rem;
    --sideSpacing: 0.7rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

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

*:focus:not(:focus-visible) {
  outline: 0;
}

html, body {
  scrollbar-gutter: stable;
}

html {
  font-size: 22px;
}
@media only screen and (max-width: 1450px) {
  html {
    font-size: 1.54vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 5.65vw;
  }
}

body {
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.45;
  font-family: "Inter";
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: var(--fontSize16);
  }
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 9999999999999;
}

body:not(.wp-admin) .preview {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 97.4rem;
  height: auto;
  z-index: 9999999999999;
  pointer-events: none;
  opacity: 0.4;
  display: none;
  max-width: 1440px;
}

.preview_check:checked + .preview {
  display: block;
}

img {
  border: 0;
}

.innerwrapper {
  width: calc(100% - var(--sideSpacing) - var(--sideSpacing));
  margin: 0 auto;
  max-width: 1400px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999999;
}
header .top__header {
  background-color: var(--colorWhite);
}
header .top__header .innerwrapper {
  height: var(--topHeaderHeight);
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  header .top__header .innerwrapper {
    justify-content: center;
  }
}
header .main__header {
  background-color: var(--colorGreen);
}
header .main__header .innerwrapper {
  display: grid;
  grid-template-columns: 12rem 1fr;
  height: 3.2rem;
  align-items: center;
  height: var(--headerHeight);
}
@media only screen and (max-width: 768px) {
  header .main__header .innerwrapper {
    grid-template-columns: 9rem auto;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  header .main__header .innerwrapper nav {
    position: fixed;
    left: 0;
    top: calc(var(--topHeaderHeight) + var(--headerHeight));
    height: calc(100dvh - var(--topHeaderHeight) - var(--headerHeight));
    width: 100%;
    z-index: 99999;
    background-color: rgba(0, 150, 64, 0.95);
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    transition: all 300ms ease-out;
  }
  header .main__header .innerwrapper nav.is-active {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
header .main__header .innerwrapper nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 0 1.5rem;
}
@media only screen and (max-width: 768px) {
  header .main__header .innerwrapper nav ul {
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(6, 1fr);
  }
}
header .main__header .innerwrapper nav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: var(--colorWhite);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  header .main__header .innerwrapper nav ul li {
    border-top: 1px solid var(--colorWhite);
    display: flex;
  }
}
header .main__header .innerwrapper nav ul li.current a {
  text-decoration: underline;
}
header .main__header .innerwrapper nav ul li a {
  color: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  header .main__header .innerwrapper nav ul li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: var(--fontSize25);
  }
}

.outerwrapper {
  padding-top: calc(var(--topHeaderHeight) + var(--headerHeight));
}

.phone {
  display: grid;
  grid-template-columns: 1.2em auto;
  align-items: center;
  gap: 0 0.5em;
  color: var(--colorGreen);
  text-decoration: none;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .phone {
    font-size: var(--fontSize18);
  }
}
.phone svg {
  width: 100%;
  height: auto;
}

.logo {
  display: block;
  font-size: 0;
  line-height: 0;
}
.logo svg {
  width: 100%;
  height: auto;
}

section {
  width: 100%;
  scroll-margin-top: var(--headerHeight);
}

.image {
  font-size: 0;
  line-height: 0;
}
.image img,
.image video {
  width: 100%;
  height: auto;
}

.cta__button {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  text-decoration: none;
  font-size: var(--fontSize16);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.27rem;
  padding: 0 0.8em;
  gap: 0 1em;
  transition: background-color 300ms ease-out;
}
@media only screen and (max-width: 768px) {
  .cta__button {
    height: 2.4rem;
    padding: 0 1.2em;
  }
}
.cta__button.phonenumber {
  background-color: transparent;
  color: var(--colorGreen);
  font-size: var(--fontSize34);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .cta__button.phonenumber {
    font-size: var(--fontSize24);
  }
}
.cta__button.phonenumber svg path[fill="#fff"] {
  fill: var(--colorGreen);
}
.cta__button:not(.phonenumber):hover {
  background-color: var(--colorBlack);
}
.cta__button svg {
  width: 1.7em;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .cta__button svg {
    width: 1.9em;
  }
}

.section__hero {
  position: relative;
}
.section__hero .innerwrapper {
  height: calc(100vh - var(--headerHeight) - var(--topHeaderHeight) - var(--banderoleHeight));
  position: relative;
  z-index: 5;
  color: var(--colorWhite);
  display: flex;
  align-items: center;
  min-height: 28rem;
  max-height: 57rem;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper {
    height: auto;
    color: var(--colorBlack);
    min-height: 0;
    max-height: none;
  }
}
.section__hero .innerwrapper .content {
  font-family: "Barlow";
  font-size: var(--fontSize25);
  line-height: 1.2;
  margin-left: var(--innerSideSpacing);
  max-width: 19em;
  padding-top: 4rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper .content {
    font-size: var(--fontSize20);
    padding-top: 0.8rem;
    max-width: none;
    display: flex;
    flex-direction: column;
  }
  .section__hero .innerwrapper .content ul {
    order: 4;
  }
  .section__hero .innerwrapper .content .button__holder {
    order: 5;
  }
  .section__hero .innerwrapper .content h1 {
    order: 1;
  }
  .section__hero .innerwrapper .content p {
    order: 2;
    max-width: 14em;
  }
}
.section__hero .innerwrapper .content h1,
.section__hero .innerwrapper .content ul,
.section__hero .innerwrapper .content > p,
.section__hero .innerwrapper .content .cta__button {
  opacity: 0;
}
.section__hero .innerwrapper .content h1 {
  font-size: var(--fontSize46);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Barlow";
  margin-bottom: -0.2em;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper .content h1 {
    color: var(--colorGreen);
    font-size: var(--fontSize32);
    line-height: 1.1875;
  }
  .section__hero .innerwrapper .content h1 br {
    display: none;
  }
}
.section__hero .innerwrapper .content .button__holder {
  display: flex;
  justify-content: flex-start;
  margin: 1.7rem auto;
  padding-left: 3.8rem;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper .content .button__holder {
    padding-left: 0;
    margin: 1.4rem auto;
  }
}
.section__hero .innerwrapper .content .button__holder p {
  margin: 0;
}
.section__hero .innerwrapper .content ul {
  display: grid;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 800;
  font-size: var(--fontSize16);
  font-family: "Barlow";
  gap: 0.2em 1em;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper .content ul {
    font-size: var(--fontSize14);
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.section__hero .innerwrapper .content ul li {
  display: grid;
  grid-template-columns: 1.8em 1fr;
  min-height: 2.4em;
  align-items: center;
  gap: 0 0.7em;
}
@media only screen and (max-width: 768px) {
  .section__hero .innerwrapper .content ul li {
    gap: 0 0.3em;
  }
}
.section__hero .innerwrapper .content ul li:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'><circle cx='14.518' cy='14.518' r='14.518' fill='%23009640'/><path stroke='%23fff' stroke-linecap='round' stroke-width='3' d='m7.26 13.711 6.13 6.453 9.194-9.679'/></svg>");
  background-repeat: no-repeat;
  background-size: 98% auto;
  background-position: center center;
}
.section__hero .image {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .section__hero .image {
    position: relative;
    height: 17.5rem;
  }
}
.section__hero .image img,
.section__hero .image video {
  width: 120%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 45%;
     object-position: center 45%;
}
@media only screen and (max-width: 768px) {
  .section__hero .image img,
  .section__hero .image video {
    width: 100%;
  }
}

.badge {
  position: absolute;
  right: 1rem;
  bottom: -0.6rem;
  font-size: 0;
  line-height: 0;
  width: 9.8rem;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .badge {
    position: absolute;
    right: -0.3rem;
    bottom: auto;
    font-size: 0;
    line-height: 0;
    width: 6.7rem;
    top: -4.2rem;
  }
}
.badge svg {
  width: 100%;
  height: auto;
}

.section__banderole {
  background-color: var(--colorWhite);
}
.section__banderole .logo__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--banderoleHeight);
  overflow: hidden;
}
.section__banderole .logo__wrapper > span {
  padding: 0 2rem;
}
@media only screen and (max-width: 768px) {
  .section__banderole .logo__wrapper > span {
    padding: 0 1rem;
  }
}
.section__banderole .logo__wrapper > span img {
  width: auto;
  height: 3.2rem;
  max-width: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media only screen and (max-width: 768px) {
  .section__banderole .logo__wrapper > span img {
    height: 2.5rem;
    max-width: 7rem;
  }
}

.section__angebot {
  overflow: hidden;
}
.section__angebot .innerwrapper {
  padding-top: 3.2rem;
  display: grid;
  grid-template-columns: 31.2rem;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section__angebot .innerwrapper {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section__angebot .innerwrapper .content {
    font-size: var(--fontSize16);
  }
}
.section__angebot .innerwrapper .content h3 {
  margin-top: 2.6em;
  font-size: var(--fontSize24);
  font-weight: 700;
  line-height: 1.333;
  margin-bottom: -0.5em;
}
@media only screen and (max-width: 768px) {
  .section__angebot .innerwrapper .content h3 {
    font-size: var(--fontSize18);
  }
}
.section__angebot .innerwrapper .content h3:first-child,
.section__angebot .innerwrapper .content p:first-child {
  margin-top: 0;
}
.section__angebot .innerwrapper .content .signatur {
  font-size: var(--fontSize16);
  font-weight: 700;
  text-align: center;
  margin: 1.8rem 0 0 0;
}
.section__angebot .innerwrapper .content .signatur p {
  margin: 0 auto;
}
.section__angebot .innerwrapper .content .signatur img {
  margin: 0 auto;
  width: 10em;
  height: auto;
}
.section__angebot .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  width: calc(100% + 9.6rem);
  margin: -9rem 0 0 -19.3rem;
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .section__angebot .innerwrapper .image {
    margin-left: -26rem;
    margin-right: 0;
    width: calc(100% + 34rem);
    margin-top: -22.5rem;
    opacity: 0.1;
  }
}
.section__angebot .innerwrapper .image img {
  width: 100%;
  height: auto;
}

.intro {
  font-size: var(--fontSize22);
  line-height: 1.18;
  margin: 0 auto;
  text-align: center;
  width: 32rem;
}
@media only screen and (max-width: 768px) {
  .intro {
    width: 100%;
    text-align: left;
    font-size: var(--fontSize18);
  }
}
.intro h2 {
  font-size: var(--fontSize34);
  line-height: 1.205;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .intro h2 {
    font-size: var(--fontSize24);
  }
}
.intro p {
  margin: 0.8em 0;
}
.intro p:last-child {
  margin-bottom: 0;
}

.section__questions {
  overflow: hidden;
  /*
  &#faq {

  	.innerwrapper {
  		.column__container {
  			grid-template-columns: 43.3% 1fr;

  			.content {
  				order: 2;
  				padding-left: 0;
  				padding-right: var(--innerSideSpacing);
  			}

  			.image {
  				order: 1;
  				margin-right: 0;
  				margin-left: calc(var(--sideSpacing) * -1);

  			}

  			.question__wrapper {
  				margin-left: 0;
  				margin-right: -1.2rem;	
  			}
  		}
  	}

  }
  */
}
.section__questions .innerwrapper {
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper {
    padding-top: 2rem;
  }
}
.section__questions .innerwrapper .intro {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper .intro {
    margin-bottom: 1.2rem;
  }
}
.section__questions .innerwrapper .column__container {
  display: grid;
  grid-template-columns: 1fr 43.3%;
  gap: 0 3.7rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper .column__container {
    margin-top: 1.2rem;
  }
}
.section__questions .innerwrapper .column__container .content {
  padding-left: var(--innerSideSpacing);
  padding-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper .column__container .content {
    padding-top: 0;
  }
}
.section__questions .innerwrapper .column__container .image {
  width: calc(100% + var(--sideSpacing));
  margin-right: calc(var(--sideSpacing) * -1);
}
.section__questions .innerwrapper .column__container.without-image {
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper .column__container.without-image {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section__questions .innerwrapper .column__container {
    grid-template-columns: 100%;
  }
  .section__questions .innerwrapper .column__container .content {
    order: 2;
  }
  .section__questions .innerwrapper .column__container .image {
    order: 1;
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-right: calc(var(--sideSpacing) * -1);
    margin-left: calc(var(--sideSpacing) * -1);
  }
}
.section__questions .innerwrapper .bottom__content {
  margin-top: 2rem;
}

.bottom__content {
  text-align: center;
}

.question__wrapper {
  width: calc(100% + 1.2rem);
  margin-left: -1.2rem;
}
@media only screen and (max-width: 768px) {
  .question__wrapper {
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-left: calc(var(--sideSpacing) * -1);
  }
  .question__wrapper:last-child .single__question:last-child {
    border-bottom: 1px solid var(--colorGreen);
  }
}
.question__wrapper .single__question {
  padding-left: 1.2rem;
  border-top: 1px solid var(--colorGreen);
}
@media only screen and (max-width: 768px) {
  .question__wrapper .single__question {
    padding-left: var(--sideSpacing);
  }
}
.question__wrapper .single__question .question {
  display: grid;
  grid-template-columns: 1fr 2.3rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .question__wrapper .single__question .question {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.question__wrapper .single__question .question .text {
  font-weight: 400;
  font-size: var(--fontSize18);
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .question__wrapper .single__question .question .text {
    font-size: var(--fontSize16);
  }
}
.question__wrapper .single__question .question .text p {
  margin: 0;
}
.question__wrapper .single__question .question .text h3 {
  margin: 0;
  font-size: var(--fontSize25);
  font-weight: 700;
  line-height: 1.2;
  color: var(--colorGreen);
  margin-bottom: 0.3em;
  font-family: "Barlow";
}
@media only screen and (max-width: 768px) {
  .question__wrapper .single__question .question .text h3 {
    font-size: var(--fontSize20);
  }
}
.question__wrapper .single__question .question svg {
  width: 100%;
  height: auto;
}
.question__wrapper .single__question .question svg path {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.question__wrapper .single__question.is-active .question svg path {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.question__wrapper .single__question .answer {
  display: none;
  font-size: var(--fontSize18);
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .question__wrapper .single__question .answer {
    padding-right: var(--sideSpacing);
  }
}
.question__wrapper .single__question .answer ul {
  padding-left: 0.9em;
}
.question__wrapper .single__question .answer ul li {
  padding-left: 0.5em;
}
.question__wrapper .single__question .answer ul li::marker {
  color: var(--colorGreen);
  content: "✓";
}
.question__wrapper .single__question .answer p:first-child {
  margin-top: 0;
}

.section__three-teaser .innerwrapper {
  padding-top: 3.8rem;
}
@media only screen and (max-width: 768px) {
  .section__three-teaser .innerwrapper {
    padding-top: 3rem;
  }
}
.section__three-teaser .innerwrapper .teaser__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 1rem;
  margin-top: 2.3rem;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .section__three-teaser .innerwrapper .teaser__wrapper {
    grid-template-columns: 100%;
    margin-top: 0.8rem;
    gap: 1rem 0;
  }
}
.section__three-teaser .innerwrapper .teaser__wrapper .teaser .content {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  text-align: center;
  font-size: var(--fontSize18);
  line-height: 1.388;
  padding: 1.6rem 0 1.2rem 0;
}
@media only screen and (max-width: 768px) {
  .section__three-teaser .innerwrapper .teaser__wrapper .teaser .content {
    font-size: var(--fontSize16);
    text-align: left;
    padding: 1.3rem var(--sideSpacing) 1rem var(--sideSpacing);
  }
}
.section__three-teaser .innerwrapper .teaser__wrapper .teaser .content p {
  margin: 0.5em 0;
}
.section__three-teaser .innerwrapper .teaser__wrapper .teaser .content p:last-child {
  margin-bottom: 0;
}
.section__three-teaser .innerwrapper .teaser__wrapper .teaser .content h4 {
  margin: 0;
  font-size: var(--fontSize25);
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .section__three-teaser .innerwrapper .teaser__wrapper .teaser .content h4 {
    font-size: var(--fontSize18);
  }
}
.section__three-teaser .innerwrapper .teaser__wrapper .teaser .image {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .section__circle {
    position: relative;
  }
}
.section__circle > .innerwrapper {
  padding-top: 5rem;
  padding-bottom: 2.3rem;
}
@media only screen and (max-width: 768px) {
  .section__circle > .innerwrapper {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
.section__circle .circle__wrapper {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper {
    position: static;
  }
}
.section__circle .circle__wrapper .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section__circle .circle__wrapper .image .panel_centered {
  pointer-events: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  top: 54%;
  width: 29rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper .image .panel_centered {
    display: none;
  }
}
.section__circle .circle__wrapper .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__circle .circle__wrapper > .innerwrapper {
  position: relative;
  z-index: 9;
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding-left: var(--innerSideSpacing);
  padding-right: var(--innerSideSpacing);
  gap: 2.2rem 0;
  padding-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper > .innerwrapper {
    grid-template-columns: 100%;
    padding-top: 0;
    gap: 1.3rem 0;
    padding-bottom: 2.5rem;
  }
}
.section__circle .circle__wrapper > .innerwrapper .single__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--fontSize18);
  font-family: "Barlow";
  font-weight: 400;
  line-height: 1.388;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper > .innerwrapper .single__block {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1rem;
    text-align: left;
    align-items: start;
  }
  .section__circle .circle__wrapper > .innerwrapper .single__block .icon {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media only screen and (min-width: 769px) {
  .section__circle .circle__wrapper > .innerwrapper .single__block:first-child {
    grid-column: 4/6;
    grid-row: 1/2;
  }
  .section__circle .circle__wrapper > .innerwrapper .single__block:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .section__circle .circle__wrapper > .innerwrapper .single__block:nth-child(3) {
    grid-column: 7/9;
    grid-row: 2/3;
  }
  .section__circle .circle__wrapper > .innerwrapper .single__block:nth-child(4) {
    grid-column: 2/4;
    grid-row: 3/4;
    margin-top: 4rem;
  }
  .section__circle .circle__wrapper > .innerwrapper .single__block:nth-child(5) {
    grid-column: 6/8;
    grid-row: 3/4;
    margin-top: 4rem;
  }
}
.section__circle .circle__wrapper > .innerwrapper .single__block p {
  margin: 0.5em 0;
}
.section__circle .circle__wrapper > .innerwrapper .single__block .icon {
  font-size: 0;
  line-height: 0;
  margin: 0 auto;
  width: 4.3rem;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper > .innerwrapper .single__block .icon {
    width: 100%;
  }
}
.section__circle .circle__wrapper > .innerwrapper .single__block .icon img {
  width: 100%;
  height: auto;
}
.section__circle .circle__wrapper > .innerwrapper .single__block h4 {
  margin: 0;
  font-weight: 700;
  font-size: var(--fontSize18);
  font-family: "Barlow";
  position: relative;
  --lineWidth: 0em;
}
.section__circle .circle__wrapper > .innerwrapper .single__block h4:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + 0.1em);
  width: var(--lineWidth);
  height: 0.15em;
  background-color: var(--colorGreen);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .section__circle .circle__wrapper > .innerwrapper .single__block h4:after {
    left: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.section__cta {
  background-color: #f1f1f1;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .section__cta {
    margin-top: 2.5rem;
  }
}
.section__cta .innerwrapper {
  padding: 8.2rem 0;
}
@media only screen and (max-width: 768px) {
  .section__cta .innerwrapper {
    padding: 3rem 0;
  }
}
.section__cta .innerwrapper .cta__button {
  margin-top: 0.5rem;
}

footer {
  background-color: var(--colorGreen);
}
footer .innerwrapper {
  color: var(--colorWhite);
  display: grid;
  grid-template-columns: 12.5rem 12.5rem 1fr;
  gap: 0 8.7rem;
  padding: 2.5rem var(--innerSideSpacing) 2.2rem var(--innerSideSpacing);
  font-size: var(--fontSize22);
  font-family: "Barlow";
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  footer .innerwrapper {
    padding-top: 2.1rem;
    gap: 2rem 0;
    font-size: var(--fontSize16);
  }
}
footer .innerwrapper a {
  color: inherit;
}
@media only screen and (max-width: 768px) {
  footer .innerwrapper {
    grid-template-columns: 100%;
  }
}
footer .innerwrapper .footer__logo {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 100%;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 768px) {
  footer .innerwrapper .footer__logo {
    margin-top: 0;
    width: 12.8rem;
    margin: 0 auto;
  }
}
footer .innerwrapper .footer__logo svg {
  width: 100%;
  height: auto;
}
footer .innerwrapper .column:not(:last-child) {
  width: calc(100% + 4rem);
}
@media only screen and (max-width: 768px) {
  footer .innerwrapper .column:not(:last-child) {
    width: 100%;
  }
}
footer .innerwrapper .column h3 {
  font-size: var(--fontSize25);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: "Barlow";
}
@media only screen and (max-width: 768px) {
  footer .innerwrapper .column h3 {
    font-size: var(--fontSize22);
  }
}
footer .innerwrapper .column p {
  margin: 0.3em 0;
}

.formular__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  width: calc(100% + 10rem);
  margin-left: -5rem;
  text-align: left;
  margin-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .formular__wrapper {
    grid-template-columns: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.formular__wrapper > .single__row {
  grid-column: 1/3;
}
@media only screen and (max-width: 768px) {
  .formular__wrapper > .single__row {
    grid-column: 1/2;
  }
}
.formular__wrapper input[type=text],
.formular__wrapper input[type=email],
.formular__wrapper textarea,
.formular__wrapper select {
  display: block;
  width: 100%;
  max-width: 450px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--colorBlack);
  padding: 5px 10px;
  border: 1px solid #8d92a0;
}
.formular__wrapper input[type=checkbox] {
  margin: 0;
  margin-top: 0.09rem;
}
.formular__wrapper textarea {
  max-width: 10000px;
  width: calc(100% - 40px);
  height: 140px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .formular__wrapper textarea {
    width: 100%;
  }
}
.formular__wrapper select {
  margin: 0;
}
.formular__wrapper .wpcf7-submit {
  background-color: var(--colorGreen);
  color: #FFFFFF;
  border: 0;
  padding: 0;
  font-family: "Inter";
  font-weight: 700;
  font-size: var(--fontSize18);
  line-height: 1.2rem;
  text-transform: uppercase;
  padding: 0.5em 1em;
}
.formular__wrapper .wpcf7-submit[disabled] {
  opacity: 0.5;
}
.formular__wrapper .single__row.submit__row > p {
  display: flex;
  justify-content: flex-end;
}
.formular__wrapper .single__row.submit__row > p .wpcf7-form-control {
  order: 2;
}
.formular__wrapper .single__row.submit__row > p .wpcf7-spinner {
  order: 1;
}
.formular__wrapper .single__row label {
  display: block;
  font-size: var(--fontSize16);
}
.formular__wrapper .single__row .wpcf7-acceptance label {
  font-size: var(--fontSize14);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.5rem;
  align-items: start;
  line-height: 1.4;
}
.formular__wrapper .single__row .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
  display: block;
}
.formular__wrapper .single__row .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
.formular__wrapper .single__row .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: block;
  margin: 0;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  display: none;
  font-size: 0;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
	   * Slider
	   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.section__default .innerwrapper {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.section__default .innerwrapper .content {
  text-align: left;
}
.section__default .innerwrapper .content h1 {
  font-size: var(--fontSize46);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Barlow";
  color: var(--colorGreen);
}
@media only screen and (max-width: 768px) {
  .section__default .innerwrapper .content h1 {
    color: var(--colorGreen);
    font-size: var(--fontSize32);
    line-height: 1.1875;
  }
}
.section__default .innerwrapper .content h2 {
  font-size: var(--fontSize34);
  line-height: 1.205;
  font-weight: 700;
  margin: 0;
  margin-top: 2em;
}
@media only screen and (max-width: 768px) {
  .section__default .innerwrapper .content h2 {
    font-size: var(--fontSize24);
  }
}
.section__default .innerwrapper .content a {
  color: inherit;
}
