body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
*,
*::before,
*::after {
  /* Use a more intuitive box-sizing model */
  box-sizing: border-box;
  /* https://www.youtube.com/watch?v=cH8VbLM1958 */
  min-width: 0;
  /* Remove all margins and padding */
  margin: 0;
  padding: 0;

}

/* Only show focus outline when the user is tabbing (not when clicking) */
/* Except for input and textarea */
*:focus:not(:is(input, textarea)) {
  outline: none;
}

*:focus-visible {
  outline: 1px solid blue;
}

html {
  /* Allow percentage-based heights */
  /* Setting width: 100% isn't required because it is a default for block-level elements (html and body are block level) */
  height: 100%;

  /* Sets font-size to 16px. 
  Percent units are used to ensure font will scale if user has a custom font-size browser setting (for ally).
  Using 10px as the base to make it easy to set font sizes in elements. Example: for 16px, use 1.6rem, for 32px, use 3.2rem, ...  */
  font-size: 16px;
  line-height: 1.5;
  /* Prevent the browser from synthesizing missing typefaces */
  font-synthesis: none;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  /* Prevent mobile browsers increasing font-size */
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;

  color: black;
}

body {
  height: 100%;

  /* Prevent the rubber band effect when the user scrolls to the top or bottom of the page (WebKit only) */
  overscroll-behavior: none;

  /* UI controls color (example: range input) */
  accent-color: black;

  /* Because overscroll-behavior: none only works on WebKit, a background color is set that will show when overscroll occurs  */
  background: white;
}

p {
  /* Prevents orphans (ensures the final line of text has at least two words). */
  text-wrap: pretty;
  /* Avoid text overflow */
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  /* Stronger effect than 'pretty'. Attempts to make each line of text the same length */
  text-wrap: balance;
}

strong {
  overflow-wrap: break-word;
}

/* Remove unintuitive behaviour such as gaps around media elements.  */
img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
}

input,
textarea,
button,
button:disabled {
  font: inherit;
  color: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

fieldset {
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:root {
  --color-primary: #FD922A;
  --color-secondary: #6BA4D2;
  --color-background: #072034;
  --color-footer: #0C3F68;
}

body {
  background-color: var(--color-background);
  height: 100vh;
  color: white;
  position: relative;
}

#container {
  padding: 0 16px;
  flex-grow: 1;
}

#wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

h1 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  margin-bottom: 40px;
  line-height: 1;
  hyphens: auto;
  text-transform: uppercase;
}

h2 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 30px;
}

h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}


p{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23px;
  margin: 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
}

#article-7 .buttons,
#article-26 .buttons,
#article-53 .buttons {
  margin-bottom: 50px;
}

.page-content .content-image {
  display: none;
}

.button a {
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
  white-space: nowrap;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  height: 53px;
}

.button-primary a {
  background-color: var(--color-primary);
  border-radius: 50px 0 50px 0;
  color: var(--color-background);
}


.button-secondary a {
  background-color: var(--color-background);
  border: 3.5px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
}

.mod_navigation {
  padding: 30px 30px 0 30px;
}

.mod_navigation.open {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10;
  background-color: var(--color-background);
}

.mod_navigation.open .nav-mobile {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.mod_navigation .nav-mobile {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mod_navigation ul {
  display: none;
}

.mod_navigation.open ul {
  display: block;
}

.mod_customnav ul li {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
}

.mod_navigation ul li {
  font-size: 32px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--color-secondary);
  margin-top: 60px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.mod_navigation ul li .active {
  color: var(--color-primary);
}


.menu-toggle {
  height: 30px;
  margin: 18.5px 0;
}

.menu-toggle .fa-bars {
  font-size: 30px;
}

.nav-main .logo-desktop {
  display: none;
}

.mod_navigation .menu-toggle,
.mod_navigation a {
  cursor: pointer;
}

.content-text h2 {
  margin-bottom: 20px;
}

.nav-mobile-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.handorgel__header__button__mail {
  font-weight: 400;
}
.handorgel__header__button .title-wrapper {
  display: flex;
  align-items: center;

}
.handorgel__header__button .title-wrapper img {
  height: 50px;
  width: 50px;
  margin-right: 6px;
}


footer {
  background-color: var(--color-footer);
  margin-top: 50px;
}

footer .inside {
  padding: 50px 35px;
}

.footer-content {
  display: grid;
  gap: 50px;
}

.footer-content a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.mod_customnav ul {
  display: grid;
  gap: 20px;
}

footer figure {
  display: flex;
}

footer figure img {
  max-width: 400px;
}

.team figure {
  display: flex;

}

.team img {
  width: 100%;
  height: auto;
}


#article-4,#article-22,#article-57 {
  display: grid;
  gap: 100px;
}

.ce_rsce_team {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.ce_rsce_team img {
  max-width: 321px;
  width: 100%;
  border-radius: 100%;
}

.ce_rsce_team .img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ce_rsce_team .img-container h3 {
  margin-top: 20px;
}

.mod_navigation .logo-mobile,
.mod_navigation .nav-mobile-title {
  display: inline-block;
}

.mod_navigation.open .logo-mobile,
.mod_navigation.open .nav-mobile-title {
  display: block;
}

.handorgel__header__button .icon-wrapper {
  width: 25px;
  display: block;
  flex-grow: 1;
}


.handorgel__header__button .fa-arrow-right {
  font-size: 25px;
}

.mod_changelanguage {
  display: flex;
  margin-top: 50px;
  color: #fff;
  --pipe-gap: .75rem;
  --pipe-w: 2px;
}

.mod_changelanguage ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mod_changelanguage ul > li {
  display: flex;
  align-items: center;
}

/* Pipe zwischen Items */
.mod_changelanguage ul > li + li {
  border-left: var(--pipe-w) solid currentColor;
  margin-left: var(--pipe-gap);
  padding-left: var(--pipe-gap);
}

/* Typografie */
.mod_changelanguage ul li a,
.mod_changelanguage ul li span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  color: inherit;
}

/* Nicht-aktive Links etwas leichter */
.mod_changelanguage ul li a {
  font-weight: 700;
}

/* Aktive Sprache fett (span ist meist die aktuelle Sprache) */
.mod_changelanguage ul li span,
.mod_changelanguage ul li a[aria-current="page"],
.mod_changelanguage ul li.active > a {
  font-weight: 900;
}

/* Optional: leichte Interaktion */
.mod_changelanguage ul li a:hover,
.mod_changelanguage ul li a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}


@media (min-width: 1024px) {
  #container {
    padding: 0 50px;
  }
  footer .inside{
    padding: 50px 50px 50px;
  }
  .ce_rsce_team {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1536px) {
  h3 {
    font-size: 25px;
    line-height: 27px;
  }

  h4 {
    font-size: 25px;
    line-height: 27px;
  }

  p,
  #article-15 ul li,
   #mithelfen ul li {
    font-size: 22px;
    line-height: 27px;
  }

  .buttons {
    flex-direction: row;
    gap: 50px;
    margin-top: 100px;
  }
  #article-7 .buttons, 
  #article-26 .buttons  {
    margin-bottom: 100px;
  }
  .button a {
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 25px;
    line-height: 27px;
    font-weight: 900;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    height: 75px;
  }

  .button-primary a {
    padding: 0 44px;
  }

  .button-secondary a {
    padding: 0 34px;
  }

    #container {
    padding: 0 100px;
  }


  .mod_navigation {
    padding: 15px 146px 15px 100px;
    margin-bottom: 100px;
  }

.mod_navigation.open .nav-mobile,
.mod_navigation .nav-mobile {
    display: none;
  }

  .nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-main .logo-desktop {
    display: block;
  }


  .mod_navigation ul {
    display: flex;
    gap: 50px;
    justify-content: end;
  }

  .mod_navigation ul li {
    font-size: 25px;
    line-height: 27px;
    color: #fff;
    margin-top: 0;
    text-align: center;
    text-transform: unset;
  }
  .mod_customnav ul {
    display: grid;
    gap: 27px;
  }

  footer .inside {
   padding: 100px 100px 50px;
  }
  
  .footer-content {
    display: grid;
    gap: 50px;
  }

  .footer-content a,
  .footer-content span {
    font-size: 25px;
    line-height: 27px;
    color: #fff;
  }

  #mithelfen .content-accordion .handorgel__header  {
    padding: 12px 0;
  }

  #mithelfen .content-accordion .title-wrapper img {
    height: 80px;
    width: 80px;
  }
  .mod_changelanguage {
    justify-content: end;
  }

  .mod_changelanguage ul li span,
  .mod_changelanguage ul li a {
    font-size: 25px;
    line-height: 27px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  footer {
    height: 500px;
    display: flex;
    align-items: center;
  }


  footer .inside {
    height: 100%;
    width: 100%;
  }

  .ce_rsce_team {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px;
  }
  .page-content .content-text {
    flex-shrink: 1;
    width: 100%;
  }

  .page-content .content-image {
    display: flex;
    align-items: center;
  }
}

.container,
footer .inside  {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}



.handorgel__header__button,
.handorgel__content {
  background-color: transparent;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 28px;
  height: 28px;
}
#article-15 ul,
#mithelfen ul {
  list-style: inside;
  list-style-type: disc;
}
#article-15 ul li,
#mithelfen ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23px;
}

#mithelfen .content-accordion {
  margin-top: 100px;
  border: 0;
}

#mithelfen .content-accordion .handorgel__header {
  padding: 25px 0;
}

#mithelfen .content-accordion .handorgel__container:last-of-type {
  border-bottom: none;
}

#mithelfen .content-accordion .handorgel__container {
  border-bottom: 3px solid white;
}

#mithelfen .content-accordion .handorgel__header__button {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 25px;
  align-items: center;
  hyphens: auto;
  gap: 20px;
  border: 0;
  width: 100%;
}

#mithelfen .content-accordion .handorgel__content--open {
  border: 0px;
}

#mithelfen .content-accordion .handorgel__content__inner {
  padding: 0 0 25px 0;
}

button {
  font-weight: inherit;
}

#mithelfen .content-accordion .fa-arrow-right {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  /* zeigt nach rechts */
}

#mithelfen .content-accordion .handorgel__header--open .fa-arrow-right {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  /* zeigt nach unten */
}

#rocket {
  position: fixed;
  right: 0px;
  bottom: 20px;
  width: 100px;
  height: 160px;
  scale: 0.4;
  cursor: pointer;
  z-index: 1000;
}

.rocket-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

#rakete,
#flame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none; /* wichtig: nicht klickbar */
}

#flame {
    bottom: -45px;
  transform-origin: top center;
}

@keyframes flameGrow {
  0% {
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    transform: translateX(-50%) translateY(-25px) scaleY(2.5);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }
}

.flame-animate {
  animation: flameGrow 1s ease-out;
}

