:root {
  --kr-navy: #102647;

  --kr-green: #7baea1;
  --kr-green-dark: #7baea1;

  --kr-lime: #a9cf62;
  --kr-yellow: #f5f160;

  --kr-turquoise: #43a5d5;
  --kr-turquoise-dark: #3e96c2;

  --kr-violett: #978ac2;
  --kr-grey: #b7b7b7;

  --kr-mint: #f2f8f4;
  --kr-soft: #f7faf8;
  --kr-line: #e7eee9;
  --kr-text: #344054;

  --color-white: #ffffff;

  --bs-border-radius: 0.775rem;

    --transition-base: all 0.3s ease-in-out;
    --transition-bezier: all .25s cubic-bezier(.645,.045,.355,1);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--kr-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
  color: var(--kr-navy);
  letter-spacing: -0.025em;
}

.container {
  max-width: 1260px;
}

.section-pad {
  padding: 2rem 0;
}

.frame-default {
  overflow: visible;
}

form .form-group {
  margin: 12px 0 25px 0;
}

form .form-group label {
  margin-left: 15px;
  margin-bottom: 5px;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--kr-turquoise-dark);
}

.hero .punkt:nth-of-type(1) {
  color:var(--kr-green) ;
}

.hero .punkt:nth-of-type(2) {
  color:var(--kr-turquoise) ;
}

.hero .punkt:nth-of-type(3) {
  color:var(--kr-yellow) ;
}

.eyebrow {
  color: var(--kr-turquoise-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

a {
  color: var(--kr-turquoise-dark);
}

a.more::after {
    font-family: 'Font Awesome 6 Pro';
    content: "\f105";
    margin-left: 5px;
    display: inline-block;
}

a.more {
  color: var(--kr-turquoise-dark);
  font-weight: 600;
  text-decoration: none;
}

.card.start  a.more {
    position: absolute;
    bottom: 20px;
}

.card .ce-bodytext p:last-child{
  margin-top: 40px;

}

img[src$=".svg"].image-embed-item {
    fill: #43a5d5;
}

.news a {
  color: var(--kr-turquoise-dark);
  text-decoration: none;
}

a.more:hover {
  color: var(--kr-navy);
}

main {
  position: relative;
  overflow: hidden;
}

section,
section>div {
  position: relative;
  z-index: 100;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
    overflow: visible;
    margin-bottom: 20px;
}

/* Header */

header.sticky-top .navbar {
    transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.navbar {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.navbar .nav-link {
  color: var(--kr-navy);
  font-weight: 650;
  font-size: .94rem;
  border-top: 2px solid transparent;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--kr-turquoise);
}



.navbar .nav-link:hover {
  border-top-color: var(--kr-turquoise) !important;
}

.navbar .nav-item .dropdown-menu {
  border: 0;
  border-bottom: 2px solid transparent;
}


.navbar .nav-item:hover .dropdown-menu {
  border-bottom-color: var(--kr-grey) !important;
}

.dropdown-menu {
  border-radius: 18px;
  padding: .65rem;
  min-width: 250px;
}

.dropdown-item {
  color: var(--kr-navy);
  font-weight: 650;
  border-radius: 12px;
  padding: .4rem .9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #f1f8f3;
  color: var(--kr-turquoise);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-block;
  flex: 0 0 38px;
}

.brand-mark span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.brand-mark .a {
  left: 0;
  top: 9px;
  background: var(--kr-yellow);
}

.brand-mark .b {
  left: 13px;
  top: 0;
  background: var(--kr-turquoise);
}

.brand-mark .c {
  left: 13px;
  top: 18px;
  background: var(--kr-lime);
}

.brand-name {
  line-height: 1;
  font-weight: 850;
  font-size: 1.32rem;
}

.brand-city {
  display: block;
  font-size: .74rem;
  letter-spacing: .01em;
  margin-top: .3rem;
  font-weight: 700;
}

img.logo {
  max-width: 160px;
}

/* Untermenü am Desktop per Mouseover, auf Touch-Geräten weiterhin per Klick */
@media (min-width: 992px) {

  .navbar .dropdown:hover>.dropdown-menu,
  .navbar .dropdown:focus-within>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown>.dropdown-menu {
    top: 100%;
  }
}

.btn-kita {
  --bs-btn-bg: var(--kr-turquoise);
  --bs-btn-border-color: var(--kr-turquoise);
  --bs-btn-hover-bg: var(--kr-turquoise-dark);
  --bs-btn-hover-border-color: var(--kr-turquoise-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 999px;
  padding: .83rem 1.3rem;
  font-weight: 750;
}

.btn-outline-kita {
  color: var(--kr-turquoise-dark);
  border-color: var(--kr-turquoise);
  border-radius: 999px;
  padding: .78rem 1.25rem;
  font-weight: 750;
}

.btn-outline-kita:hover {
  background: var(--kr-turquoise);
  color: #fff;
  border-color: var(--kr-turquoise);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 60px;
  width: 340px;
  height: 390px;
  background: var(--kr-turquoise);
  border-radius: 40% 55% 35% 65%;
  opacity: .4;
}

.hero>div {
  /* background-image: url(../images/illustration.png); */
  background-size: auto 100%;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.15rem);
  line-height: .97;
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
}

.accent-green {
  color: var(--kr-turquoise);
}

.accent-yellow {
  color: var(--kr-yellow);
}

.accent-turquoise {
  color: var(--kr-turquoise);
}

.hero-media {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 180px 0 0 180px;
  box-shadow: 0 25px 70px rgba(16, 38, 71, .12);
}


.hero-bubble {

  position: absolute;
  right: 35px;
  bottom: -30px;
  width: 150px;
  min-height: 150px;
  border-radius: 50%;
  background: var(--kr-turquoise);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transform: rotate(-4deg);
  font-size: 1.2rem;
  line-height: 1.65;
  box-shadow: 0 16px 40px rgba(50, 150, 158, .2);
  transform: rotate(-18deg);
}

.hero-bubble span {
  font-size: 1rem;
}

.hero-bubble i,
.hero-bubble img {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 500;
  top: 30px;
  font-size: 2rem;
}

.hero-bubble span {
  margin-top: 0;
}

/* Beratung */

#beratung::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 60px;
  width: 340px;
  height: 390px;
  background: var(--kr-yellow);
  border-radius: 40% 55% 35% 65%;
  opacity: .4;
}

/* Events */
.events-wrap {
  background: linear-gradient(110deg, #f3faf5, #fafcfb);
  border: 1px solid #edf3ef;
  border-radius: 34px;
  box-shadow: 0 12px 35px rgba(27, 74, 48, .04);
}

.event-card {
  height: 100%;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(16, 38, 71, 22%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(16, 38, 71, .12);
}

.event-visual {
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-visual::before,
.event-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .8;
}

.event-visual::before {
  width: 150px;
  height: 150px;
  left: -25px;
  bottom: -50px;
  background: rgba(255, 255, 255, .5);
}

.event-visual::after {
  width: 95px;
  height: 95px;
  right: 18px;
  top: 18px;
  background: rgba(255, 255, 255, .35);
}

.event-1 {
  background: linear-gradient(145deg, #43a5d5, #cee2f2);
}

.event-2 {
  background: linear-gradient(145deg, #f5f160, #fcfbd2);

}

.event-3 {
  background: linear-gradient(145deg, #7baea1, #d5e3de);
}

.event-4 {
  background: linear-gradient(145deg, #978ac2, #dad6eb);
}

.event-icon {
  font-size: 4.8rem;
  z-index: 1;
  filter: grayscale(.15);
}

.tag {
  display: inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #edf7ef;
  color: var(--kr-turquoise-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.event-card .card-title {
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 800;
}

.text-link {
  color: var(--kr-turquoise-dark);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: var(--kr-navy);
}


/* Horizontaler Bootstrap-Veranstaltungs-Slider */
.events-carousel {
  position: relative;
background: radial-gradient(circle, #d9d9d9 0%, #FFFFFF 100%);
}

.events-carousel .carousel-inner {
  overflow: hidden;
}

.events-carousel .carousel-item {
  transition: transform .65s ease-in-out;
}

.events-carousel .carousel-item>.row {
  flex-wrap: nowrap;
}

.events-carousel .carousel-control-prev,
.events-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--kr-turquoise);
  opacity: 1;
  box-shadow: 0 10px 25px rgba(47, 137, 64, .22);
}

.events-carousel .carousel-control-prev:hover,
.events-carousel .carousel-control-next:hover {
  background: var(--kr-turquoise-dark);
}

.events-carousel .carousel-control-prev {
  left: -8px;
}

.events-carousel .carousel-control-next {
  right: -8px;
}

.events-carousel .carousel-control-prev-icon,
.events-carousel .carousel-control-next-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.events-carousel .carousel-indicators {
  position: static;
  margin: 2rem 0 0;
  gap: .45rem;
}

.events-carousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: var(--kr-turquoise);
  opacity: .25;
}

.events-carousel .carousel-indicators .active {
  opacity: 1;
}

.slider-hint {
  color: #718096;
  font-size: .88rem;
}

/* Materials */
.material-card {
  height: 100%;
  border: 1px solid var(--kr-line);
  border-radius: 22px;
  padding: 2rem;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(16, 38, 71, .08);
}

.material-symbol {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--kr-mint);
  color: var(--kr-turquoise-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

#materialien::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 60px;
  width: 240px;
  height: 310px;
  z-index: 10;
  background: var(--kr-yellow);
  border-radius: 40% 55% 35% 65%;
  opacity: .6;
}

/* Team */
.team-section {
  position: relative;
  overflow: hidden;
}

#ueber-uns::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 60px;
  width: 240px;
  height: 310px;
  background: var(--kr-green);
  border-radius: 40% 55% 35% 65%;
  opacity: .7;
}

.team-card {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 38, 71, .08);
  position: relative;
  z-index: 1;
}

.portrait-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f2f5f3, #e7efea);
  position: relative;
  overflow: hidden;
}

.initials {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--kr-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 850;
  box-shadow: 0 10px 25px rgba(16, 38, 71, .18);
}

.team-name {
  font-size: 1.24rem;
  font-weight: 850;
}

/* Services */
.service-strip {
  border: 1px solid var(--kr-line);
  border-radius: 30px;
  background: #fbfdfb;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  flex: 0 0 58px;
}

.service-green {
  background: #b8dc7a;
}

.service-blue {
  background: #b7e1e4;
}

.service-yellow {
  background: #ffd65a;
}

.service-mint {
  background: #d8e9ce;
}

/* Contact/footer */
.contact-cta {
  background: var(--kr-navy);
  color: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.contact-cta h2 {
  color: #fff;
}

.contact-cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(85, 184, 191, .18);
}

footer {
  background: #f8faf9;
  border-top: 1px solid var(--kr-line);
}

footer a {
  color: var(--kr-text);
  text-decoration: none;
}

footer a:hover {
  color: var(--kr-turquoise-dark);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 5.3rem 0 3.5rem;
    min-height: auto;
    background: #fff;
  }

  .hero-media {
    min-height: auto;
    margin-top: 2.5rem;
  }

  .hero-photo {
    height: 460px;
    border-radius: 60px 60px 18px 60px;
  }

  .hero-bubble {
    right: 10px;
    width: 220px;
    min-height: 190px;
    font-size: 1rem;
  }

  .section-pad {
    padding: 4.2rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-photo {
    height: 360px;
    border-radius: 42px 42px 16px 42px;
  }

  .hero-bubble {
    width: 175px;
    min-height: 175px;
    padding: 1rem;
    bottom: -140px;
    font-size: .88rem;
  }

  .events-wrap {
    border-radius: 24px;
  }

  .events-carousel {
    padding: 0 2.2rem;
  }

  .events-carousel .carousel-control-prev {
    left: -5px;
  }

  .events-carousel .carousel-control-next {
    right: -5px;
  }
}

.totop {
    position: fixed;
    right: 30px;
    bottom: 22px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    background-color: rgb(228,228,228);
}

.totop.show {
    opacity: 1;
    visibility: visible;
}

.totop span {
    width: 54px;
    height: 54px;
    background: var(--kr-turquoise-dark);
    color: var(--color-white);
    display: inline-block;
    text-align: center;
    line-height: 54px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px var(--kr-turquoise-dark);
    cursor: pointer;
}

/*FAQ TOGGLE*/

.frame-layout-toggle h2{
	font-size: 1rem;
	margin-right: 25px !important; 
	text-transform: none  !important;
  font-weight: 300;
}

.layout-toggle header {
    position: relative;
}


.trigger_active span.toggle:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
	}

    h2 + span.toggle:before {
        display: block;
        position: absolute;
        right:10px;
        top: 10px;
        font-size: 20px;
        cursor: pointer;
    }



.frame-layout-toggle {
	border-bottom: 1px solid #d2d2d2
}

.frame-layout-toggle header.trigger {
	position: relative;
      padding: 0 10px 0 10px;
}

.layout-toggle header  h2 {
        position: relative;
        top: 10px;
}


/* faq  Alphabetical */

.faq a.anchor:target + div{
    background-color:#FDF1E9;
    padding: 5px
  }
  
.faq a.anchor {
      display: block;
    margin-top:-250px;
    position:absolute;
  }
  
  
  .faq > .list {
    width:860px;
    margin:auto
    }
  
  .ln-letters {
    padding-top:35px;
    text-align:center;
    margin:auto;
    }
  
  ul.alphabeticallist li .character {
    font-size: 35px;
      position: absolute;
      margin: 25px 0 0 -40px;
    }
  
  .listNav,
  .ln-letters { overflow: hidden }
  
  .listNavHide { display: none }
  
  .listNavShow { display: block }
  
  .letterCountShow { display: block }
  
  .ln-letters a {
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid silver;
    border-right: none;
    text-decoration: none
  }
  
  .ln-letters .ln-last { border-right: 1px solid silver }
  
  .ln-letters a:hover,
  .ln-letters .ln-selected { background-color: #eaeaea }
  
  .ln-letters .ln-disabled { color: #ccc }
  
  .ln-letter-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.35;
    color: #336699
  }
  
  .row.alphabeticallist {
    margin-top:50px;
    }

    
.faq h3,
.faq h2 {
    margin-top:5px;
    margin-bottom: 10px !important;
    }
    
.faq h2 a,
.faq h3 a,
.faq .description a  {
    border-bottom:none;
    }
  
    
  .faq .alphabeticallist .col-12 {
    padding-top:10px;
    padding-bottom:7px;
    border-bottom:1px solid #CCC;
  }

  .faq-readmore-btn {
    color: #005e72;
    cursor: pointer;
    margin-top: 5px;
    border-bottom: 1px solid #005e72;
    display: inline-block;
  }
  

  .faq .faq-exp-content {
    display: none;
  }


  
  [class*="col-12 ln-"]:before {
    font-size:35px;
    opacity:0.8;
    font-weight:bold;
    content: attr(data-character);
    display:block;
    text-transform: uppercase;
    position:absolute;
    margin:8px 0 0 -40px;
  }
    
  .ln-a ~ .ln-a:before,
  .ln-b ~ .ln-b:before,
  .ln-c ~ .ln-c:before,
  .ln-d ~ .ln-d:before,
  .ln-e ~ .ln-e:before,
  .ln-f ~ .ln-f:before,
  .ln-g ~ .ln-g:before,
  .ln-h ~ .ln-h:before,
  .ln-i ~ .ln-i:before,
  .ln-j ~ .ln-j:before,
  .ln-k ~ .ln-k:before,
  .ln-l ~ .ln-l:before,
  .ln-m ~ .ln-m:before,
  .ln-n ~ .ln-n:before,
  .ln-o ~ .ln-o:before,
  .ln-p ~ .ln-p:before,
  .ln-q ~ .ln-q:before,
  .ln-r ~ .ln-r:before,
  .ln-s ~ .ln-s:before,
  .ln-t ~ .ln-t:before,
  .ln-u ~ .ln-u:before,
  .ln-v ~ .ln-v:before,
  .ln-w ~ .ln-w:before,
  .ln-x ~ .ln-x:before,
  .ln-y ~ .ln-y:before,
  .ln-z ~ .ln-z:before {
    display:none;
    }
  
  
  /* faq  Alphabetical */
  
  
  .ln-letters .ln-last { border-right: 1px solid silver }
  
  .ln-letters a:hover,
  .ln-letters .ln-selected { background-color: #eaeaea }
  
  .ln-letters .ln-disabled { color: #ccc !important}
  
  .ln-letter-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.35;
    color: #005e72;
  }

 
  
  /*   Alphabetical */