* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 0rem;
  --padding-XS: 0.5rem;
  --padding-S: 1rem;
  --padding-M: 2rem;
  --padding-L: 2.5rem;
  --padding-XL: 4rem;
  --padding-XXL: 5rem;

  --radius-S: 0.25rem;
  --radius-M: 0.5rem;
  --radius-Full: 100rem;

  --bodytext-S: 0.875rem;
  --bodytext-Default: 1rem;
  --bodytext-L: 1.25rem;
  @media screen and (max-width: 45rem) {
    --bodytext-L: 1rem;
  }

  --actions-S: 0.875rem;
  --actions-M: 1rem;
  --actions-L: 1.125rem;
  
  
  --color-black: #2D2D2D;
  --color-white: #fff;
  --color-deepgreen: #235B3C;
  --color-freshgreen: #8CD98E;
  --color-freshgreen-hover: #83d186;

  --color-lightsage: #F5F6F2;
  --color-warmlinen: #F3EFE7;
  --color-cloudgrey: #E9EDF0;
  --color-palesage: #ECF0E1;

  --color-accent: #F8E382;

  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-headline: var(--color-deepgreen);
  --color-headlinelight: var(--color-freshgreen);

  --color-background: #ffffff;

  --opacity-inactive: 76%;
  --opacity-active: 100%;
  --font-family-sans: Helvetica Neue, Helvetice, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}


html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
body {
  padding: var(--padding);
  max-width: 80rem;
  margin: 0 auto;
}
li {
  font-size: var(--bodytext-L);
  line-height: 1.5;
  letter-spacing: 0.1px;
  list-style: none;
  margin-bottom: var(--padding-XS);
  padding-left: var(--padding-M);
}
li::before {
  position: absolute;
  content: "•"; /* Insert content that looks like bullets */
  margin-left: -16px;
  color: var(--color-deepgreen)
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--padding-XS);    
  font-size: var(--actions-M);
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  width: fit-content;
  padding: var(--padding-S) var(--padding-M);
  background: var(--color-freshgreen);
  border: 1px;
  border-style: solid;
  border-color: #76C678;
  box-shadow: inset 0 0 3px #9DDF9F;
  box-shadow: inset 0 -4px 4px #76C678;
  border-radius:100rem;
  color: var(--color-deepgreen);
  cursor: pointer;
}

.button:hover {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  box-shadow: inset 0 0 1px #9DDF9F;
  box-shadow: inset 0 -1px 1px #76C678;
  background: var(--color-freshgreen-hover);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--padding-XS);
  font-size: var(--actions-M);
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  width: fit-content;
  padding: var(--padding-S) var(--padding-M);
  background: var(--color-white);
  border: 1px;
  border-style: solid;
  border-color: #E4E4E4;
  box-shadow: inset 0 0 3px #F9F9F9;
  box-shadow: inset 0 -4px 4px #E4E4E4;
  border-radius:100rem;
  color: var(--color-deepgreen);
  cursor: pointer;
}
.button-secondary:hover {
  background: var(--color-lightsage);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  box-shadow: inset 0 0 1px #F9F9F9;
  box-shadow: inset 0 -1px 1px #E4E4E4;
}

  /* Button Tablet*/

  @media screen and (max-width: 45rem) {
.button-secondary {
  width: 100%;
}
  }

.buttongroup {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: var(--padding-S);
  margin-top: var(--padding-M);
}

strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}



/* Headlines Desktop*/

  h1 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-left: -4px;

    color: var(--color-headline);
  }
  
  h2 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-left: -3px;

    color: var(--color-headline);
  }
  
  h3, h4, h5, h6 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 2rem;
    line-height: 1.3;
    margin-left: -3px;

    color: var(--color-headline);
  }

  /* Headlines Tablet*/

  @media screen and (max-width: 45rem) {
    h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      letter-spacing: -1.5px;
      margin-left: -4px;
    }
    
    h2 {
      font-size: 2.5rem;
      line-height: 1.2;
      letter-spacing: -0.3px;
    }
    
    h3, h4, h5, h6 {
      font-size: 1.5rem;
      line-height: 1.3;
    }
  
  }

    /* Lead Text*/
  .lead_medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin-bottom: var(--padding-M);

    opacity: 0.8;
  }

    .lead_small {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.3px;

    opacity: 0.8;
  }

    @media screen and (max-width: 45rem) {
    .lead_medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin-bottom: var(--padding-S);

    opacity: 0.8;
  }
  
  }

      /* Body Text*/

  .bodytext_small {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    margin-bottom: var(--padding-S);

    opacity: 0.8;
  }

  .bodytext_medium {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0px;
    margin-bottom: var(--padding-S);

    opacity: 0.8;
  }

  .bodytext_large {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: var(--padding-S);

    opacity: 0.8;
  }


p {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  font-size: var(--bodytext-L);
  line-height: 1.5;
  letter-spacing: 0.1px;

  margin-bottom: var(--padding-S);
}

a {
  color: currentColor;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}


.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5;
}

figcaption {
  font-size: var(--bodytext-S);
  line-height: 1rem;
  padding-top: 0.5rem;
  color: var(--color-black);
}

.footer {
  display: flex;
  padding: var(--padding-M) var(--padding-XL);
  gap: var(--padding-M);
}
@media screen and (max-width: 45rem) {
  .footer {
    padding: var(--padding-M) var(--padding-M);
  }
}



.footer ul,
.footer p {
  color: var(--color-black);
}
.footer p {
  font-size: var(--bodytext-Default);
  padding-top: 8px;
  margin-bottom: 0px;
  max-width: 320px;
}
.footer a {
  font-size: var(--bodytext-Default);
  text-decoration: none;
  opacity: 0.8;
}
.footer a:hover {
  text-decoration: underline;
  opacity: 1;
}


.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 45rem) {
  body {
    --padding: 0rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}


.icon {
  display: inline-flex;
  align-items: center;
}

.icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;     /* verhindert Zusammenquetschen */
}
