:root {
    --bgc: #fff;
    --mtc: #1b1c1e;
    --spd-rot: #e3000f;
    --spd-dunkel: #bc0010;
    --navbg: #ffffff;
    --thtc: #808080;
    --trennlinie: #d3d3d3;
    --max-w: 1280px;
}


html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-size: clamp(12px, 1.618vw, 18px);
}


body {
    background-color: var(--bgc);
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;


    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

body::-webkit-scrollbar {
    display: none;
}

.qbody {
    max-width: var(--max-w);
    margin: 0 auto;

}

a {
    text-decoration: none;
}

h1 {
    font-size: 27px;
    background-color: var(--navbg);
    border-radius: 7px;
    padding: 5px 0 3px 14px;
}

h2 {
    font-size: 23px;
}

section {
    min-height: calc(80vh - 110px);
    padding: 0 23px 0 23px;
}


#Plakat::before {
    display: none;
    height: 0;
}

.main-grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 80px auto;
    grid-template-rows: repeat(7, auto);
    gap: 27px;
    align-content: center;
    padding: 0 13px;
}

.navbar-grid {
    grid-row: 1 / span 7;
}

.navbar {
    position: sticky;
    top: 35px;
    background-color: var(--navbg);
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);
    height: calc(100vh - 70px);
    border-radius: 7px;
    z-index: 9999;
}

.nav-icons {
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: space-evenly;
    height: 50%;
    margin: 0;
    align-items: center;
    padding: 0 7px;

    text-transform: uppercase;
}

.nav-icons li {
    text-align: center;
}


/* Änderungen ab hier */


  .ortsverein ul {
    list-style-type: none;
    margin-left: -20px;    /*  Bewegen der Texte auf höhe der anderen Texte */

  }

  .ortsverein ul li::before {
    content: "\1405"; /* Unicode-Pfeil-Repräsentation */
    font-size: 1em;
    font-weight: bold;
    color: var(--spd-rot);
    padding-right: 6px;     /*  Abstand zwischen Punkt und text */
    margin-left: -20px;    
  }


hr{
    width: 100%;
    color: var(--trennlinie);
}

.gestrichelte-line{
    margin-top: -30px;
    border: none;
    border-top: dashed;
    border-color: var(--spd-rot);
}

.Übersicht-main {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
    align-content: center;


    padding: 10px;

}


.Übersicht-main img{
height: 90%;
width: 100%;
border-radius: 17px 17px 0 0;
object-fit: cover;


}


.Übersicht-ol {
    grid-row: 1;
    grid-column: 1;
    min-height:  28vh;
    text-align: center;
    color: black;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);



}
.Übersicht-ol:hover {
background-color: var(--spd-rot);
color: white;

}

.Übersicht-or {
    grid-row: 1;
    grid-column: 2;
    min-height:  28vh;
    text-align: center;
    color: black;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);


}

.Übersicht-or:hover {
background-color: var(--spd-rot);
color: white;
}

.Übersicht-ul {
    grid-row: 1;
    grid-column: 3;
    min-height:  28vh;
    text-align: center;
    color: black;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);

}
.Übersicht-ul:hover {
background-color: var(--spd-rot);
color: white;

}

.Übersicht-ur {
    grid-row: 1;
    grid-column: 4;
    min-height:  28vh;
    text-align: center;
    color: black;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);

}

.Übersicht-ur:hover {
background-color: var(--spd-rot);
color: white;

}

.Übersicht-text{
font-size: 1.3141rem;
padding: 5px;
font-family: 'Open Sans', sans-serif;
}


.platzhalter{

background-color: grey;
height: 100%;
width: 100%;

}
.platzhalter2{
background-color: grey;
height: 50vh;
width: 100%;
border-radius: 17px 17px 0 0;


}
.extra
{
display: none;

}



.Thema-Überschirft2{
    width: 100%;
    height: 100%;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);
    padding: 10px;
}

.Thema-Überschirft{
    width: 100%;
    height: 100%;
    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);
    padding: 10px;
    display: flex;
    align-items: center;
     transition: all 0.3s ease;
}
.Thema-Überschirft:hover{

    background-color: var(--spd-rot);
    color: white;
    cursor: pointer;
    padding-left: 20px;
}

.Thema-Überschirft:hover .extra {
    display: flex; /* Das Zitat beim Hover anzeigen */
}


.Thema-main {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 0.5fr);
    gap: 10px;
    align-content: center;

    background-color: var(--bgc);
    border-radius: 17px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);
    font-size: 17px;


    padding: 10px;
    
    margin-bottom: 7vh;

}

.Vorstellung-links
{
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
}

.Vorstellung-rechts
{
    grid-column: 4 / span 3;
    grid-row: 1 / span 2; 

}
.Vorstellung-rechts img
{
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.Thema-main img{
    height: 100%;
    width: 100%;
    object-fit: cover;


}


/* Erster Themen Block */

.Thema-soziales-ol {
    grid-row: 1;
    grid-column: 1 / span 4;
    border-left: solid ;
    border-top: solid;
    border-color: var(--spd-rot);
    padding-left:10px ;
    padding-top: 10px;
    border-radius: 13px 0 0 0;

}

.Thema-soziales-ol img {
    border-radius: 13px 0 0 0;
    max-height: 45vh;
    background-position-x: center;
    background-position-y: top;


}

.Thema-soziales-ul {
    grid-row: 2;
    grid-column: 1 / span 2;
    padding-left:10px ;

}

.Thema-soziales-mu {
    grid-row: 2;
    grid-column: 3 / span 2;

}



.Thema-soziales-or {
    grid-row: 1;
    grid-column: 5 / span 2;

}

.Thema-soziales-ur {
    grid-row: 2;
    grid-column: 5 / span 2;
    border-right: solid;
    border-bottom: solid;
    border-color: var(--spd-dunkel);

    border-radius: 0 0 13px 0;

}



/* Zweiter Themen Block */

.Thema-umwelt-ol {
    grid-row: 1;
    grid-column: 1 / span 2;
    padding-left:10px ;
}

.Thema-umwelt-om {
    grid-row: 1;
    grid-column: 3 / span 2;
}

.Thema-umwelt-or {
    grid-row: 1;
    grid-column: 5 / span 2;
    border-right: solid;
    border-top: solid;
    border-color: var(--spd-rot);

     border-radius: 0 13px 0 0;
}

.Thema-umwelt-ul {
    grid-row: 2;
    grid-column: 1 / span 2;
    padding-left:10px ;
    padding-bottom:10px;
    border-left: solid;
    border-bottom: solid;
    border-color: var(--spd-dunkel);

    border-radius: 0 0 0 13px;
}


.Thema-umwelt-ul img {
    border-radius: 0 0 0 10px;

}

.Thema-umwelt-um {
    grid-row: 2;
    grid-column: 3 / span 2;
}

.Thema-umwelt-ur {
    grid-row: 2;
    grid-column: 5 / span 2;
}

.Thema-umwelt-ur img {
    border-radius: 0 0 10px 0;
}



/* drittest Thema */


/* Erster Themen Block */

.Thema-wirtschaft-ol {
    grid-row: 1;
    grid-column: 1 / span 2;
    border-left: solid ;
    border-top: solid;
    border-color: var(--spd-rot);
    padding-left:10px ;
    padding-top: 10px;
    border-radius: 13px 0 0 0;
}


.Thema-wirtschaft-ul {
    grid-row: 2;
    grid-column: 1 / span 2;
    padding-left:10px ;

}

.Thema-wirtschaft-m {
    grid-row: 1 / span 2;
    grid-column: 3 / span 2;

}

.Thema-wirtschaft-m img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}



.Thema-wirtschaft-or {
    grid-row: 1;
    grid-column: 5 / span 2;

}

.Thema-wirtschaft-ur {
    grid-row: 2;
    grid-column: 5 / span 2;
    border-right: solid;
    border-bottom: solid;
    border-color: var(--spd-dunkel);

    border-radius: 0 0 13px 0;

}



.Thema-bildung-links{
    grid-row: 1 /span 2;
    grid-column: 1 / span 2;  
    padding-left:10px ;
    border-left: solid;
    border-bottom: solid;
    border-color: var(--spd-rot);
    border-radius: 0 0 0 13px;

}

.Thema-bildung-mitte{
    grid-row: 1 /span 2;
    grid-column: 3 / span 2;  
}

.Thema-bildung-mitte img{

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.Thema-bildung-rechts{
    grid-row: 1 /span 2;
    grid-column: 5 / span 2; 
    border-right: solid;
    border-top: solid;
    border-color: var(--spd-dunkel);
    border-radius: 0 13px 0 0;

}


.cookie-button
{
      background-color: #EB272A;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 33px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: 30px;
  box-shadow: 0 0 5px #212121;
  margin-bottom: 25px;
}


/* Änderungen bis hier */





/* Allgemein */

* {
    box-sizing: border-box;
    /* border: 0.33px dashed aqua; */
}

.nod {
    display: none;
}



/*   Navigationsleiste oben   */

#navbartop {
    position: sticky;
    height: 152px;
    left: 0px;
    right: 0px;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #FFFFFF;
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 23px 23px;
}


#navbarbot {
    display: none;
}

#logo {
    position: absolute;
    width: 129px;
    height: 128px;
    left: 23px;
    bottom: 0px;

    background: #E3000F;
}

#logojpg {
    position: absolute;
    width: 129px;
    height: auto;
    left: 23px;
    bottom: 0px;

    background: #E3000F;
}



#tspdlogo {
    position: absolute;
    width: 126px;
    height: 50px;
    left: 5px;
    top: 73px;

    font-family: 'Open Sans', sans-serif;
    font-style: bold;
    font-weight: 900;
    font-size: 60px;
    line-height: 64px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-feature-settings: 'tnum'on, 'lnum'on;
    letter-spacing: -3px;

    color: #FFFFFF;
}

#thachlogo {
    position: absolute;
    width: 121px;
    height: 24px;
    left: 7px;
    top: 7px;

    font-family: 'Open Sans', sans-serif;
    font-style: bold;
    font-weight: 400;
    font-size: 11.7px;
    line-height: 16px;
    display: flex;
    align-items: center;

    font-feature-settings: 'tnum'on, 'lnum'on;


    color: #FFFFFF;
}

.background-nav-map {
    height: 0;
    width: auto;
    filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.0));
    z-index: 1000;
    top: 152px;
    position: sticky;
}

.background-nav-map img {
    position: absolute;
    right: -46px;
    top: -152px;
    height: 222px;
    filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.25));
    aspect-ratio: auto;
}

.front-nav-map {
    height: 0;
    width: auto;
    filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.0));
}

.front-nav-map img {
    position: absolute;
    right: -46px;
    transform: translate(0, -0%);
    height: 222px;
    filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.0));
    aspect-ratio: auto;
}

.navlinks {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    left: 142px;
    right: 180px;
    bottom: 0;
}

.navlinks a {
    margin: 0 10px;
    display: inline-block;
    align-items: center;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    z-index: 1000;
}

.navlinks a:after {
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background: #E3000F;
    transition: 300ms;
}


.navlinks a:hover {
    color: #E3000F;
}

.navlinks a:hover:after {
    width: 100%;
    color: #E3000F;
}

.navlinks img {
    z-index: 999;
}

#rot-map-nav {
    transform: translate(0, -0%);
    z-index: 999;
}

.icon-container {
    position: absolute;
    bottom: 7px;
    right: 44px;
}






.auswahl {
    /*alt: auswahlueberhandy*/

    position: relative;
    height: 93px;
    left: 0px;
    right: 0px;
    top: -23px;
    width: 100%;
    z-index: 8000;
    background: var(--navbg);
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 23px 23px;
}

.wrapper-auswahl {
    position: relative;
    width: 80%;
    height: 42px;
    margin: 0 10%;
    top: 40px;
    background-color: var(--bg-color);
    border-radius: 34px;


    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 300ms ease-in-out;

    display: flex;
    flex-direction: row;
    padding: 5px 9px 7px 9px;
}

.option {
    width: 50%;
    height: 28px;
    position: relative;
    top: 2px;
    left: 0px;
    bottom: 2px;
    right: 2px;
    background: transparent;
}

.input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    appearance: none;
    cursor: pointer;
}

.btn {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.span {
    color: #000;
}

.input:checked + .btn {
    background-color: var(--spd-dunkel);
}

.input:checked + .btn .span {
    color: #fff;
}

.stadtrat {
    display: none;
    margin-bottom: 50px;
}

.vg-rat {
    display: none;
}



/*
----- Datenbank ----------------------------- */

.output-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 27px;
    width: 100%;
    margin-top: 23px;
}

   .zitat {
        display: none;
        position:absolute;
        top: 0;
        left: 0;
        height: 74%;
        width: 100%;
        padding: 10px; /* Anpassen der Innenpolsterung */
        font-style: italic;


flex-direction: column;

justify-content: center;
text-align: center;
    }

.output-ausgabe {
    position: relative;
    background-color: var(--bgc);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);

    width: clamp(100px, 33vw * 1.618, 333px);
    height: auto;
}

.output-ausgabe:hover {

}

.output-ausgabe:hover img {
    opacity: 0.4; /* Opazität des Bildes beim Hover reduzieren */
}

.output-ausgabe:hover .zitat {
    display: flex; /* Das Zitat beim Hover anzeigen */
    background-color: rgba(255, 255, 255, 0.5);
}


.output-ausgabe2 {
    background-color: var(--bgc);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);

    width: clamp(100px, 33vw * 1.618, 333px);
    height: auto;
}

.output-ausgabe img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    object-position: top;
    border-radius: 14px 14px 0 42px;
}

.output-text {
    padding: 0 1rem 1rem 1rem;
    line-height: 161%;
}



.beruf-output {
    font-size: 1rem;

}

.ort-output {
    font-size: 0.809rem;
    opacity: 0.618;
}

.alter-output {
    font-size: 1rem;
    display: inline;
}

.name-alter-container {
    display: block;
    width: calc(100% + 0.618rem);
    align-items: baseline;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.name-output {
    font-size: 1.618rem;
    font-weight: 600;
    display: inline;
}


.kommaincontainer {
    font-size: 1.618rem;
    font-weight: 300;
    margin-right: 0.618vw
}


.lesezeichen {
    position: fixed;
    background-color: var(--spd-rot);
    height: 42px;
    right: 0;
    z-index: 1000001;
    color: #fff;
    font-size: 1.3141rem;
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: center;
    padding-left: 10px;
    opacity: 0;
}


.kandidaten-filter {
    top: 34vh;
    width: 72px;
}

.lesehilfe {
    top: 40vh;
    width: 69px;
}

.lesehilfe a i {
    text-decoration: none;
    color: #fff;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        /* Starte außerhalb des rechten Bildschirmrands */
        opacity: 0;
        /* Optional: Starte unsichtbar */
    }

    100% {
        transform: translateX(0);
        /* Bewege zur Ursprungsposition */
        opacity: 1;
        /* Endet voll sichtbar */
    }
}

#infoIcon {
    animation: slideInFromRight 0.5s ease-out 0.3s forwards;
}

#closeIcon {
    opacity: 1;
}

#anker-lesehilfe:target {
    scroll-margin-top: 250px;
    /* Stellt den gewünschten Abstand von der oberen Kante ein */
}

.vorhang-lesehilfe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    background-color: #0c0c0c;
    opacity: 0.618;
    z-index: 1000000;
    display: none;
}

#commentary-overlay {
    position: absolute;
    display: block;
    width: clamp(100px, 33vw * 1.618, 333px);
    aspect-ratio: 1 / 0.9;
}

.commentary-text {
    color: #fff;
    position: inherit;
    font-family: "Caveat", cursive;
    font-size: 1.314rem;
}

.commentary-pfeil {
    position: inherit;
    content: url(img/lesehilfe.png);
    height: 23px;
    aspect-ratio: auto;
}


#p-bild {
    bottom: 70%;
    left: 13%;
    height: 33px;
    transform: rotate(160deg);

}

#p-ort {
    bottom: -1.618rem;
    left: -1rem;
    transform: rotate(160deg)
}

#p-name {
    bottom: -3.7rem;
    left: -1.618rem;
    height: 33px;

    -moz-transform: rotate(45deg) scaleX(-1);
    -o-transform: rotate(45deg) scaleX(-1);
    -webkit-transform: rotate(45deg) scaleX(-1);
    transform: rotate(45deg) scaleX(-1);

    -ms-filter: "FlipH";
    filter: FlipH;

}

#p-beruf {
    bottom: -5.5rem;
    left: -1rem;

    -moz-transform: rotate(27deg) scaleX(-1);
    -o-transform: rotate(27deg) scaleX(-1);
    -webkit-transform: rotate(27deg) scaleX(-1);
    transform: rotate(27deg) scaleX(-1);

    -ms-filter: "FlipH";
    filter: FlipH;

}

#p-alt {
    bottom: -5.2rem;
    right: 4.3rem;
    transform: rotate(23deg);
    position: absolute;
}

#p-filter {
    top: 34vh;
    right: 80px;
    transform: rotate(150deg);
    height: 33px;
}

#c-text-bild {
    bottom: 78%;
    left: -7%;
    font-size: 1.618rem;
}

#c-text-ort {
    bottom: -0.9rem;
    left: -5.5rem;
}

#c-text-name {
    bottom: -3.5rem;
    left: -5.5rem;
    font-size: 1.618rem;
}

#c-text-beruf {
    bottom: -6rem;
    left: -4.3rem;
}

#c-text-alt {
    bottom: -7.2rem;
    right: 3rem;
}

#c-text-filter {
    top: calc(34vh - 14px);
    right: 123px;
    font-size: 1.618rem;
}






.circle-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto
}

.circle-container .highlight {
    position: relative;
    z-index: 10;
}

.circle-container svg {
    width: 108px;
  position: absolute;
  top: -20px;
  height: 68px;
  left: -20px;
    
}



                
.contmehr {
  display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
  justify-content: space-between;
  gap: 23px;
  width: 100%;
}

.clinks{

    grid-row: 1 ;
    grid-column: 1 / span 2;
}
.cmitte{

    grid-row: 1;
    grid-column: 3;
}
.crechts{

    grid-row: 1;
    grid-column: 4;
}
.link {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: transparent;
  border: 2px solid #E3000F;
  transition: all 0.3s ease;
  text-decoration: none;
  color: black;
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  align-content: flex-start;
}

.link:hover {
  background-color: #E3000F;
  width: 100%;
  color: #fff;
  border-color: #E3000F;
}

.link h2 {
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
  margin-left: 10px;
  position: relative;
  display: flex;
  visibility: visible;
    color: #000;
}

.link i {
  display: flex;
  font-size: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
  z-index: 3;
    align-self: center;
}

.link:hover i {
    display: flex;
   margin: 0 10px;
  font-size: 40px;
    
}

.link:hover h2 {
    color: #fff;
  opacity: 1;
    visibility: visible;
}



.no-scroll {
  overflow: hidden !important;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color:black;
    font-size: 24px;
    cursor: pointer;
}




#Grußwortopen{
    color: var(--spd-rot);
    cursor: pointer;
}

.Grußwortbox {
    position: -webkit-sticky; /* Safari */
       position: sticky;
        width: 100vw;
        top: 0vh;
        height: 100vh;
        z-index: 99999999;
        display: none;
        transform: translate(-5.55%);
        background-image: url(img/background.jpeg);
        background-size: 100vw 100vh;

}


.Grußwortbox-content {
    width: 60vw;
    height: auto;
    max-height: 80vh;
    overflow-y: scroll !important;
    text-align: justify;
  background-color: #fff;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: #212121;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);   
        position: absolute;
        left: 50%;
        top: 50%;
        
        transform: translate(-50%, -50%)
}

.Grußwortbox img {
    max-width: 60%;
    max-height: 60vh; /* Begrenze die Höhe, um Bildschirmüberschreitung zu verhindern */
    align-self: center;
}


.sprechblase {
    width: 60vw;
    margin: 50px 0px 50px 33px; /* Links-Abstand erhöht, um die Sprechblase links zu positionieren */
    background: #efefef;
    padding: 20px;
    border-radius: 5px;
    color: #1b1c1e;
    position: relative;
    text-align: left;
}
/* Vorstellungstext */

.sprechblase:before {
  content: " ";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 80px solid #efefef;
  border-right: 80px solid transparent;
  border-top: 60px solid #efefef;
  border-bottom: 60px solid transparent;
  right: -45px;
  top: 57%;
}

.rounded-image {
    border-radius: 50%;
    overflow: visible;
    width: 23vh;
    height: 23vh;
    margin-left: 67vw;
    margin-top: -40vh; /* Neue margin-top-Einstellung für die höhere Position */
    margin-bottom: 18vh;
    background-size: 120%;
    background-position: center;
    object-fit: cover;
    filter: drop-shadow(7px 7px 17px rgba(0, 0, 0, 0.3));
}

.rounded-image-s {
    border-radius: 50%; 
    overflow: hidden;
    width: 100px; 
    height: 100px; 
     margin-left: 67vw;
     margin-top: -10vh;

}



.wir{
    display: none;
}


.Thema-links-1 {
    grid-row: 1 / span 2;
    grid-column: 1/ span 3;

    border-left: solid;
    border-top: solid;
    border-radius: 13px 0 0 0;
    border-color: var(--spd-rot);
    padding-left: 10px;
    padding-top: 10px;

    z-index: 5;
    background-color: var(--bgco);

    background-size:cover;
    background-repeat: no-repeat;
    background-position-x: center;
}




.Thema-rechts-1 {
    grid-row: 1 / span 2;
    grid-column: 4/ span 3;
    border-radius: 0 0 13px 0;
    border-right: solid;
    border-bottom: solid;
    border-color: var(--spd-dunkel);
    padding-bottom: 10px;
    padding-right: 10px;
}




.Thema-links-2 {
    grid-row: 1 / span 2;
    grid-column: 1/ span 3;
    border-radius: 0 0 0 13px;
    border-left: solid;
    border-bottom: solid;
    border-color: var(--spd-rot);
    padding-left: 10px;

}

.Thema-rechts-2 {
    grid-row: 1 / span 2;
    grid-column: 4/ span 3;
    border-radius: 0 13px 0 0;
    border-right: solid;
    border-top: solid;
    border-color: var(--spd-dunkel);

    padding-top: 10px;
    padding-right: 10px;

    z-index: 5;
    background-color: var(--bgco);



    background-size:cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.Thema-komplett
{
    grid-row: 1 / span 2;
    grid-column: 1/ span 6; 

        border-radius: 0 13px 0 0;
    border-right: solid;
    border-top: solid;
    border-color: var(--spd-dunkel);

    padding-top: 10px;
    padding-right: 10px;

    z-index: 5;
    background-color: var(--bgco);
}

  .wir ul {
    list-style-type: none;
    margin-left: -20px;    /*  Bewegen der Texte auf höhe der anderen Texte */

  }

  .wir ul li::before {
    content: "\1405"; /* Unicode-Pfeil-Repräsentation */
    font-size: 1em;
    font-weight: bold;
    color: var(--spd-rot);
    padding-right:6px;     /*  Abstand zwischen Punkt und text */
     margin-left: -24px; 

}



/* muss ganz unten bleiben
-----------------------------------------------
 Allgemein */

*{
    box-sizing: border-box;
    /* border: 1px dashed aqua; */
}

.nod{
    display: none;
}