:root {
  --text-text-action: #322D7F;
  --Primitives-colors-purple-90: #322D7F;
  --text-text-emphasize: #D22F27;
  --text-text-intro-primary: #000;
  --background-bg-intro-elementar: #FEF1D4;
  --background-bg-intro-primar: #DFF5F5;
  --background-bg-surface: #FFF;
  --border-border-s: #CDCDCD;
  --text-text-secondary: #676767;
}


/* Mobile zuerst: Standard-Stile für alle Geräte */




.button {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px; 
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; 
  color: var(--background-bg-surface, #FFF);
  border-radius: var(--radius, 12px);
  background: var(--button-button-bg-primary, #322D7F);
  text-decoration: none;
}

.button:hover {
  background: var(--button-button-bg-primary-hover, #0A0557);
  text-decoration: underline;
}

.button-variant {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px; 
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; 
  color: var(--background-bg-surface, #FFF);
  border-radius: var(--radius, 12px);
  text-decoration: none;
  border: 1px solid var(--border-border-l, #322D7F);
  background: transparent;
  color: var(--text-text-action, #322D7F);
}

a:hover.button-variant {
  background: var(--button-button-bg-primary, #322D7F);
  text-decoration: underline;
  color: var(--text-text-negativ, #FFF);          
}

a:hover.button-variant path {
  fill: var(--background-bg-surface, #FFF);
  stroke: var(--background-bg-surface, #FFF);     
}
  
  
.header-wrapper {
  width: 100%;
  border-bottom: 1px solid var(--border-border-s);
  background: var(--background-bg-surface);
  margin-bottom: 16px;
}

header {
  display: flex;
  height: 60px;
  padding: 0px 16px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px; /* Begrenzung auf 1280px */
  color: var(--text-text-action);
}

.headerleft {
  float: left;
  
}

.headerright {
  float: right;
  position: relative;
}

.headermonster {
  position: absolute;
  left: -50px;
  display: none;
}

.logo-weitblick, .logo-arge-sucht {
  vertical-align: middle;
}

.header_login_button {
  font-size: 14px;
  font-weight: 500;
  padding-top: 4px;
  padding-bottom: 4px;
}

.header_login_button svg {
  display:none
}

.mobile-header-nav {
  background: transparent;
  border: none;
  margin-right: 24px;
}

.logintxt {
  display: none;
}



.intropage .row {
    margin-bottom: 60px;
}

.circle-mask img {
    width: 100%;
    height: auto;
    position: relative;
}

  /* FOOTER */
  .footer-wrapper {
    width: 100%;
    background: var(--background-bg-intro-elementar);
    margin-top: auto;
    display: flex;
    justify-content: center;
    margin-top: auto;
  }



  .primar .footer-wrapper {

    background: var(--background-bg-intro-primar);

  }
  
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 16px;
    width: 100%;
    max-width: 1280px;
    color: var(--text-text-action);
    position: relative;
  }
  
  .footer-left {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    display: flex;
    flex-direction: column;
  }
  
  .footer-right {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
  
  footer a {
    color: var(--text-text-action);
    text-decoration: none;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }

/* ####################################################*/  
/* STARTSEITE */
/* ####################################################*/

.intropage .row {
    margin-top: 24px;
}

.kidsimagewrapper {
    margin-bottom: 8px;
}

a.intro-box-button, a.intro-box-button:hover {
    margin-top: 8px;
    width: 100%;
    text-decoration: none;
}
.hero {
    color: var(--text-text-action);

    /* hero */
    font-family: Figtree;
    font-size: var(--font-size-hero, 40px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--font-size-hero-lineheight, 42px); /* 105% */
    margin-bottom: 10px;
}

.intro-h2 {
    color: var(--text-text-emphasize);

    /* h2 */
    font-family: Figtree;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
    margin-bottom: 10px;
}

div.intro-elementar {
    margin-top: 24px;
}

div.intro-primar {
    margin-top: 36px;
}

.kidsimagewrapper {
    display: flex; /* Flexbox für horizontale Anordnung */
    justify-content: space-between; /* Platzierung links und rechts */
    align-items: center; /* Vertikal ausrichten */
    width: 100%; /* Volle Breite des contents */
    align-items: end;
}

.kidsleft {
    width: 68%; /* Linke Seite 80% */
    display: flex;
    justify-content: flex-start; /* Links ausrichten */
}

.kidsright {
    width: 32%; /* Rechte Seite 20% */
    display: flex;
    justify-content: flex-end; /* Rechts ausrichten */
}

.circle-mask {

    aspect-ratio: 1/1; /* Sicherstellen, dass das Bild quadratisch bleibt */
    background-color: var(--background-bg-intro-elementar); /* Hintergrundfarbe */
    border-radius: 50%; /* Rundes Bild */
    overflow: hidden; /* Bild wird in der runden Maske beschnitten */
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-mask img {
    width: 100%;
    height: auto;
    position: absolute;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.intro-elementar:hover img.intro-img-kids,
.intro-primar:hover img.intro-img-kids {
    width: 105%;
    transform: translateY(-5px);
    
}

.kidsright img {
    width: 100%; /* Bild nimmt volle Breite des contents */
    padding-left: 16%;
}


.intro-primar .circle-mask {
    background-color: #DFF5F5; /* Hintergrundfarbe */
}




.footermonster {
    width: 70px;
    height: auto;
    margin-left: 50px;
    position: absolute;
    bottom: 57px;
}

.footer-crosslink {
  margin-left: 0px;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* Abstand zwischen Text und SVG */
}

.footer-crosslink svg {
  width: 13px;
  height: 13px;
}

input {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;  
  border-radius: 12px;
  border: 1px solid var(--border-border-s, #CDCDCD);
  background: var(--background-bg-surface, #FFF);

  /* box */
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  margin-bottom: 20px;
}

label {

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  margin-bottom: 6px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #007bff; /* Modernes CSS, für Farbe des Häkchens */
    cursor: pointer;
    float: left;
    margin-right: 10px;
}


/* #### Formulare ################################################# */




/* ##################################################################################################################### */
/* #### PUBLIC ######################################################################################################### */
/* ##################################################################################################################### */


.public header {
  margin-top: 42px;
}

.public-header-nav {
  display: none;
}

.left img, .right img {
  width: 100%;
  height: auto;
}



/* ######## Startseite ################################################################################################### */

h1.pagetitle {
  color: var(--text-text-action, #322D7F);

  /* h1-pagetitle */
  font-family: Figtree;
  font-size: var(--font-size-h1-pagetitle, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--font-size-h1-pagetitle-lineheight, 38px); /* 105.556% */
}

.subheadline {
  color: var(--text-text-emphasize, #D22F27);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 125% */
}

.quicklinkswrapper.primar {
  width: 100%;
  background: var(--background-bg-intro-primar);
}

.quicklinkswrapper.elementar {
  width: 100%;
  background: var(--background-bg-intro-elementar);
}

.quicklinks h2 {
  color: var(--text-text-primary, #000);
}

.quicklinks a {
  align-items: center;
  display: inline-flex;
}

.quicklinks a svg {
  margin-left: 6px;
}

.content p {
  margin-bottom: 16px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  position: relative;
  padding-left: 30px; /* Platz für das SVG-Icon */
  margin-bottom: 16px; /* Abstand zwischen den Listeneinträgen */
}

.content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  transform: translateY(-50%);
  width: 24px; /* Größe des Icons */
  height: 24px;
  background-image: url('../images/arrow-right-red.svg'); /* Pfad zum SVG-Icon */
  background-size: contain;
  background-repeat: no-repeat;
}



/* ######## Programm ################################################################################################### */

.downloadwrapper {
  border-radius: 12px;
  border: 1px solid var(--border-border-l, #322D7F);
  padding: 8px;
}

.downloadwrapper h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; 
  margin-bottom: 16px;
}

.downloaditem {
  display:flex;
  color: var(--text-text-action, #322D7F);
}



.downloaditem img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

.downloadmonster {
  width: 114px !important;
  height: auto !important;

}

.quicklinksitem h3 {
  color: var(--text-text-primary, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
}






/* ######## Kontakte ################################################################################################### */


.kontaktecontainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 16px;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.kontaktitem {
  display: inline-flex;
  background: #ffffff;
  min-height: 120px;
  height: 100%;
  width: 100%;
}



.kontaktitem {

  padding: 12px var(--padding-box-h, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--border-border-s, #CDCDCD);
}

.kontaktitem a, .kontaktitem p {
  margin-bottom: 10px;
}

.kontaktitem a {
  display: inline-flex;
  color: var(--text-text-action, #322D7F);
}

.kontakticon {
  margin-right: 8px;
  width: 20px;
  height: auto;
}

.kontaktlogo {
  margin-top: auto;
  padding-top: 12px;
  height: calc(47px + 12px);
  width: auto;
}

.kontaktposition {
  color: var(--text-text-secondary, #676767);
}




/* ##### Impressum / Mispages ################################################################################################# */



.imprintcontet h1, .miscpagecontet h1  {
  color: var(--text-text-action, #322D7F);
  font-size: var(--font-size-h1-pagetitle, 36px);
  font-weight: 700;
  line-height: var(--font-size-h1-pagetitle-lineheight, 38px); /* 105.556% */
  margin-bottom: 24px;
}

.row.imprintcontet p, .row.miscpagecontet p {
  margin-bottom: 24px;
}

.imprintcontet h2, .miscpagecontet h2 {
  margin-bottom: 16px;
  margin-top: 16px;
}

/* ##### NOT FOUND ################################################################################################# */

.notfound-wrapper {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fffdfb;
}

.notfound-container {
  max-width: 600px;
  margin: 0 auto;
}

.notfound-title {
  font-size: 110px;
  line-height: 150px;

  margin: 0;
}

.notfound-subtitle {
  font-size: 32px;  
  line-height: 48px;

  margin-bottom: 2rem;
}

.notfound-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}


.notfound-image {
  max-width: 160px;
  height: auto;
}




/* ##################################################################################################################### 


$$$$$$$$\  $$$$$$\   $$$$$$\                            
\____$$  |$$  __$$\ $$  __$$\                           
    $$  / $$ /  \__|$$ /  $$ |       $$$$$$\  $$\   $$\ 
   $$  /  $$$$$$$\   $$$$$$  |      $$  __$$\ \$$\ $$  |
  $$  /   $$  __$$\ $$  __$$<       $$ /  $$ | \$$$$  / 
 $$  /    $$ /  $$ |$$ /  $$ |      $$ |  $$ | $$  $$<  
$$  /      $$$$$$  |\$$$$$$  |      $$$$$$$  |$$  /\$$\ 
\__/       \______/  \______/       $$  ____/ \__/  \__|
                                    $$ |                
                                    $$ |                
                                    \__|                

##################################################################################################################### */
  @media (min-width: 768px) {


    .public header {
      margin-top: 0;
    }


    .header-wrapper {
      margin-bottom: 32px;
    }

    .header_login_button svg {
        display:block;
    }

    .headermonster {
        display: block;
        width: 43px;
        height: auto;
    }

    .logintxt {
        display: inline;
        margin-right: 8px;
        font-size: 14px;

    }

    .content {
      width: 720px;
    }

    .row {
        justify-content: space-between;
        padding: inherit 16px;
    }

    /* .left und .right Klassen für die gleichmäßige Verteilung beider Flex-Kinder */
    .left, .right {
        flex: 0 0 50%;
        max-width: 47%;
    }



    .intro-elementar, .intro-primar {
        flex: 1;
        max-width: 768px;
    }

   
    .intro-primar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    a.intro-box-button, a:hover.intro-box-button {
       margin-bottom: 16px;
    }


    .intro-primar .kidsimagewrapper {
        order: 4;
        align-items: start;
    }

    .hero {
        font-size: 48px;
        line-height: 50px;
    }
    
    h1 {
      font-size: var(--font-size-h1, 28px);
      line-height: var(--font-size-h1-lineheight, 30px); /* 107.143% */
    }

    .intro-box-button {
        margin-top: 16px;
    }

    .footermonster {
        margin-left: 110px;
    }

  
    .footer-crosslink {
      margin-left: 32px;
    } 

    .footer-left {
      flex-direction: row;
    }

    .footer-right li {
      list-style: none;
      display: inline-block;
    } 

    .footer-right ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 16px; /* Abstand zwischen den Einträgen */
    }


    /* ######## Startseite ################################################################################################### */

    h1.pagetitle {
      font-size: 40px;
      line-height: 42px; /* 105.556% */
    }


    /* ######## Programm ################################################################################################### */

    .downloadwrapper {
      padding: 16px;
      
    }

    .quicklinks
    {
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .quicklinksitem {
      width: 47.6%;
      margin-bottom: 0;
    }



    /* ######## Kontakte ################################################################################################### */

    .kontaktecontainer {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 720px;

    }

    .kontaktitem {
      width: 288px;
    }



  }


/* ##################################################################################################################### 


  $$\   $$$$$$\   $$$$$$\  $$\   $$\                     
$$$$ | $$$ __$$\ $$  __$$\ $$ |  $$ |                    
\_$$ | $$$$\ $$ |\__/  $$ |$$ |  $$ | $$$$$$\  $$\   $$\ 
  $$ | $$\$$\$$ | $$$$$$  |$$$$$$$$ |$$  __$$\ \$$\ $$  |
  $$ | $$ \$$$$ |$$  ____/ \_____$$ |$$ /  $$ | \$$$$  / 
  $$ | $$ |\$$$ |$$ |            $$ |$$ |  $$ | $$  $$<  
$$$$$$\\$$$$$$  /$$$$$$$$\       $$ |$$$$$$$  |$$  /\$$\ 
\______|\______/ \________|      \__|$$  ____/ \__/  \__|
                                     $$ |                
                                     $$ |                
                                     \__|                 

##################################################################################################################### */

  @media (min-width: 1024px) {
    .content {
      width: 960px;
    }

    .headermonster {
        display: block;
        width: 50px;
        height: auto;
    }

    .kidsleft {
        width: 73%;
    }

    .kidsright {
        width: 27%;
    }
    .hero {
        font-size: 64px;
        line-height: 68px;
    }
    
    h1 {
      font-size: var(--font-size-h1, 32px);
      line-height: var(--font-size-h1-lineheight, 38px);
    }


    .intro-box-button {
        margin-top: 16px;
    }
    .footermonster {
        margin-left: 220px;
    }


     /* ##################################################################################################################### */
    /* #### PUBLIC ######################################################################################################### */
    /* ##################################################################################################################### */


    .public-header-nav {
      float: left;
      margin-top: 3px;
      margin-right: 80px;
      display: block;
    }

    .public-header-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 24px;
    }

    .public-header-nav li {
      display: inline;
    }

    .public-header-nav a {
      text-decoration: none;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 16px;
      color: var(--text-text-action);
      padding-bottom: 4px;
      display: inline-block;
      position: relative;
      border-bottom: 4px solid var(--background-bg-surface);
    }

    .public-header-nav a:hover,
    .public-header-nav a:active,
    .public-header-nav li.current a {
      border-bottom: 4px solid var(--text-text-action);
    }



    .close-menu, .mobile-header-nav {
      display: none;
    }

    /* ######## Startseite ################################################################################################### */

    h1.pagetitle {
      font-size: 48px;
      line-height: 50px; /* 105.556% */
    }


    /* ######## Programm ################################################################################################### */

    .quicklinksitem {
      width: 31%;
    }

    .image-container {
      text-align: left !important;
    }

    .image-container img {
      width: auto;
      height: 165px;
    }


    /* ######## Kontakte ################################################################################################### */

    .kontaktecontainer {
      grid-template-columns: repeat(3, 1fr);
      max-width: 960px;
    }


  }





  /* ##################################################################################################################### 


  $$\    $$$$$$\   $$$$$$\   $$$$$$\                      
$$$$ |  $$  __$$\ $$  __$$\ $$$ __$$\                     
\_$$ |  \__/  $$ |$$ /  $$ |$$$$\ $$ | $$$$$$\  $$\   $$\ 
  $$ |   $$$$$$  | $$$$$$  |$$\$$\$$ |$$  __$$\ \$$\ $$  |
  $$ |  $$  ____/ $$  __$$< $$ \$$$$ |$$ /  $$ | \$$$$  / 
  $$ |  $$ |      $$ /  $$ |$$ |\$$$ |$$ |  $$ | $$  $$<  
$$$$$$\ $$$$$$$$\ \$$$$$$  |\$$$$$$  /$$$$$$$  |$$  /\$$\ 
\______|\________| \______/  \______/ $$  ____/ \__/  \__|
                                      $$ |                
                                      $$ |                
                                      \__|                

 ##################################################################################################################### */
  @media (min-width: 1280px) {


  }




  /* #####################################################################################################################
  
  
  $$\   $$$$$$\   $$$$$$\   $$$$$$\                      
$$$$ | $$  __$$\ $$  __$$\ $$$ __$$\                     
\_$$ | $$ /  $$ |\__/  $$ |$$$$\ $$ | $$$$$$\  $$\   $$\ 
  $$ | \$$$$$$$ | $$$$$$  |$$\$$\$$ |$$  __$$\ \$$\ $$  |
  $$ |  \____$$ |$$  ____/ $$ \$$$$ |$$ /  $$ | \$$$$  / 
  $$ | $$\   $$ |$$ |      $$ |\$$$ |$$ |  $$ | $$  $$<  
$$$$$$\\$$$$$$  |$$$$$$$$\ \$$$$$$  /$$$$$$$  |$$  /\$$\ 
\______|\______/ \________| \______/ $$  ____/ \__/  \__|
                                     $$ |                
                                     $$ |                
                                     \__|                


  ##################################################################################################################### */
  @media (min-width: 1920px) {

  }
  
  

/* #####################################################################################################################

                        $$\       $$\ $$\                                     $$\           
                        $$ |      \__|$$ |                                    $$ |          
$$$$$$\$$$$\   $$$$$$\  $$$$$$$\  $$\ $$ | $$$$$$\         $$$$$$\  $$$$$$$\  $$ |$$\   $$\ 
$$  _$$  _$$\ $$  __$$\ $$  __$$\ $$ |$$ |$$  __$$\       $$  __$$\ $$  __$$\ $$ |$$ |  $$ |
$$ / $$ / $$ |$$ /  $$ |$$ |  $$ |$$ |$$ |$$$$$$$$ |      $$ /  $$ |$$ |  $$ |$$ |$$ |  $$ |
$$ | $$ | $$ |$$ |  $$ |$$ |  $$ |$$ |$$ |$$   ____|      $$ |  $$ |$$ |  $$ |$$ |$$ |  $$ |
$$ | $$ | $$ |\$$$$$$  |$$$$$$$  |$$ |$$ |\$$$$$$$\       \$$$$$$  |$$ |  $$ |$$ |\$$$$$$$ |
\__| \__| \__| \______/ \_______/ \__|\__| \_______|       \______/ \__|  \__|\__| \____$$ |
                                                                                  $$\   $$ |
                                                                                  \$$$$$$  |
                                                                                    \______/   
##################################################################################################################### */                                             
                                              
 @media (max-width: 1024px) {
  

  /* #### Mobile Menu ##################################################################################################### */

  .public-header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--Primitives-colors-purple-90);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .public.elementar .public-header-nav {
    background: var(--background-bg-intro-elementar);
    color: var(--text-text-action);
  } 

  .public.elementar .public-header-nav a {
    color: var(--text-text-action);
  } 

  .public.primar .public-header-nav {
    background: var(--background-bg-intro-primar);
    color: var(--text-text-action);
  } 

  .public.primar .public-header-nav a {
    color: var(--text-text-action);
  } 

  .public-header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .public-header-nav li {
    margin: 20px 0;
  }

  .public-header-nav a {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-text-action);
    text-decoration: none;
  }

  .public-header-nav a:hover {
    text-decoration: underline;
  }

  /* Aktives Menü sichtbar machen */
  .public-header-nav.active {
    opacity: 1;
    visibility: visible;
  }

  /* Burger-Button */
  .mobile-header-nav {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
    position: relative;
    margin-right: 26px;
    color: var(--text-text-action);
  }

  /* Menü schließen Button */
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--text-text-action);
    background: none;
    border: none;
    cursor: pointer;
  }


}


/* ##################################################################################################################### */
/* #### Helper ######################################################################################################### */

.clearfix  {
  clear: both;
}

