* {
  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;

  --actions-S: 0.875rem;
  --actions-M: 1rem;
  --actions-L: 1.125rem;
  
  
  --color-black: #122F34;
  --color-white: #f1e8d8;
  
  --color-red: #C72A33;
  --color-lila: #63498C;
  --color-yellow: #E9B12C;

  --color-accent: #00717F;

  --color-text: var(--color-black);
  --color-headline: var(--color-black);

  --color-background: #ECB630;

  --opacity-inactive: 76%;
  --opacity-active: 100%;
  --font-family-sans: Rubik, Helvetica Neue, Helvetica, 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;
}

header {
    position: absolute;
    display: flex; 
    width: 100%;  
    justify-content: flex-start;
    align-items: center;
    padding: var(--padding-XL);
    box-sizing: border-box;
}
.logo{
    height: 4rem;
    width: auto;
    display: block;
}
@media screen and (max-width: 45rem) {
header {
  padding: var(--padding-M);
}
}

section {
  padding: var(--padding-XL);
}
@media screen and (max-width: 45rem) {
section {
  padding: var(--padding-M);
}
}


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: 500;
  line-height: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: var(--padding-S) var(--padding-M);
  margin-top: var(--padding-S);
  width: fit-content;
  background: var(--color-accent);
  border: 1px;
  border-style: solid;
  border-color: #63498C;
  box-shadow: inset 0 0 3px #63498C;
  box-shadow: inset 0 -4px 4px #63498C;
  border-radius:100rem;
  color: var(--color-white);
  cursor: pointer;
}

.button:hover {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  box-shadow: inset 0 0 1px #63498C;
  box-shadow: inset 0 -1px 1px #63498C;
  background: var(--color-lila);
}


  /* Button Tablet*/

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

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

strong, b {
  font-weight: 500;
}
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: var(--font-family-sans);
    font-weight: 700;
    font-style: normal;

    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-left: -4px;
  }
  
  h2 {
    font-family: var(--font-family-sans);
    font-weight: 700;
    font-style: normal;

    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin-left: -3px;
  }
  
  h3, h4, h5, h6 {
    font-family: var(--font-family-sans);
    font-weight: 700;
    font-style: normal;

    font-size: 2rem;
    line-height: 1.2;
  }

  /* Headlines Tablet*/

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

    /* Body Text*/

  .bodytext_small {
    font-size: 1rem;
    line-height: 1.4;
    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: var(--font-family-sans);
  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-XS);
}

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);
}


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

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