header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  padding: 1em 2em;
  z-index: 100;
  transition: background-color 300ms ease;
}
header.scrolled {
  background-color: #fff;
}
header.scrolled:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #edeff5;
}
header.scrolled .mod_navigation .level_1 li,
header.scrolled .mod_navigation .level_1 a,
header.scrolled .mod_navigation .level_1 strong {
  color: #000;
}
header.scrolled .mod_navigation .level_1 a:before {
  background-color: #000;
}
header.scrolled .mod_navigation .level_1 li.active strong:before {
  background-color: #000;
}
header .logo-wrapp {
  display: flex;
}
header .kf-logo {
  width: 40px;
  height: 40px;
}
header .kf-logo path {
  fill: #ff754f;
}
header .nav-icon-wrapp {
  display: none;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  background-color: #ff754f;
  border-radius: 50%;
  cursor: pointer;
}
header .nav-icon-wrapp.open .nav-icon span:nth-child(1) {
  top: 4px;
  left: 3px;
  transform: rotate(45deg);
}
header .nav-icon-wrapp.open .nav-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
header .nav-icon-wrapp.open .nav-icon span:nth-child(3) {
  left: 3px;
  transform: rotate(-45deg);
}
header .nav-icon {
  position: relative;
  width: 18px;
  transform: rotate(0deg);
  transition: 500ms ease-in-out;
}
header .nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 250ms ease-in-out;
}
header .nav-icon span:nth-child(1) {
  top: 5px;
  transform-origin: left center;
}
header .nav-icon span:nth-child(2) {
  top: 11px;
  transform-origin: left center;
}
header .nav-icon span:nth-child(3) {
  top: 17px;
  transform-origin: left center;
}
header .nav-contact-wrapp {
  display: flex;
  flex-grow: 1;
}
header .nav-contact-inner-wrapp {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 4em;
}
header .mod_navigation .level_1 {
  display: flex;
  gap: 2em;
}
header .mod_navigation .level_1 li span,
header .mod_navigation .level_1 a,
header .mod_navigation .level_1 strong {
  font-family: "PlusJakartaSans", helvetica, arial, sans-serif;
  font-size: 0.875em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  font-weight: 500;
  width: fit-content;
  color: #edeff5;
  position: relative;
}
header .mod_navigation .level_1 li.active strong:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  background-color: #edeff5;
}
header .mod_navigation .level_1 a {
  text-decoration: none;
}
header .mod_navigation .level_1 a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  background-color: #edeff5;
  transition: transform 300ms;
  transform: scaleX(0);
}
header .mod_navigation .level_1 a:hover::before {
  transform: scaleX(1);
}
header .btn {
  font-family: "PlusJakartaSans", helvetica, arial, sans-serif;
  font-size: 0.875em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 3rem;
  background-color: #116b7a;
  text-decoration: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease;
  background-color: #ff754f;
  padding: 0.75rem 1.5rem;
  margin-left: auto;
}
header .btn:hover {
  background-color: #0c4e5a;
}
header .btn:hover {
  background-color: #ff5f33;
}
@media only screen and (min-width: 720px) {
  header .btn {
    padding: 0.75rem 1.5rem;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1080px) {
  header {
    padding: 0.5em 1em;
    background-color: #fff;
  }
  header .kf-logo {
    width: 32px;
    height: 32px;
  }
  header .nav-icon-wrapp {
    display: flex;
  }
  header .nav-contact-wrapp {
    position: fixed;
    left: 0;
    top: 56px;
    width: 100%;
    background-color: #fff;
    overflow: hidden auto;
    transform: translateX(-100%);
    transition: all 400ms ease-in-out;
  }
  header .nav-contact-wrapp:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #edeff5;
  }
  header .nav-contact-inner-wrapp {
    flex-direction: column;
    width: 100%;
    padding: 3em 1em 1.5em;
    margin: 0;
  }
  header li,
  header a {
    font-family: "PlusJakartaSans", helvetica, arial, sans-serif;
    font-size: 0.875em;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    font-weight: 500;
    color: #edeff5;
    position: relative;
  }
  header .mod_navigation {
    width: 100%;
    margin-bottom: 3em;
  }
  header .mod_navigation .level_1 {
    flex-direction: column;
    gap: 1.5em;
  }
  header .mod_navigation .level_1 li,
  header .mod_navigation .level_1 a {
    font-family: "PlusJakartaSans", helvetica, arial, sans-serif;
    font-size: clamp(1em, 0.8578em + 0.3922vw, 1.25em);
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    font-weight: 600;
  }
  header .mod_navigation .level_1 li.active:before,
  header .mod_navigation .level_1 a:before {
    background-color: #000;
  }
  header .btn.contact {
    width: 100%;
  }
  header .menu-open {
    transform: translateY(0%);
  }
}

@media only screen and (max-width: 1079.98px) {
  #wrapper {
    padding-top: 3.5em;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22%22%2C%22sources%22%3A%5B%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fvhosts%5C%2Fkf.abnahme-server.de%5C%2Fhttpdocs%5C%2Fpublic%5C%2Fbundles%5C%2Fkfleck%5C%2Fcss%5C%2Ffrontend%5C%2Fheader.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fvhosts%5C%2Fkf.abnahme-server.de%5C%2Fhttpdocs%5C%2Fpublic%5C%2Fbundles%5C%2Fkfleck%5C%2Fcss%5C%2Fincludes%5C%2F_variables.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fvhosts%5C%2Fkf.abnahme-server.de%5C%2Fhttpdocs%5C%2Fpublic%5C%2Fbundles%5C%2Fkfleck%5C%2Fcss%5C%2Fincludes%5C%2F_typography.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fvhosts%5C%2Fkf.abnahme-server.de%5C%2Fhttpdocs%5C%2Fpublic%5C%2Fbundles%5C%2Fkfleck%5C%2Fcss%5C%2Fincludes%5C%2F_mixins.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAEA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%3BEACI%2CkBCFA%3B%3BADIA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkBCTI%3B%3BADaJ%3BAAAA%3BAAAA%3BEAGI%2COCjBR%3B%3BADoBI%3BEACI%2CkBCrBR%3B%3BADwBI%3BEACI%2CkBCzBR%3B%3BAD8BJ%3BEACI%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAEA%3BEACI%2CMClCJ%3B%3BADsCJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkBC7CA%3BED8CA%3BEACA%3B%3BAAGI%3BEACI%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAKZ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAEA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CYCrFJ%3BEDsFI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%3BEACI%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAMR%3BEACI%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAKJ%3BEACI%3BEACA%3B%3BAAEA%3BAAAA%3BAAAA%3BEEZR%2CaD7HW%3BEC8HX%3BEACA%3BEACA%2CaD5HmB%3BEC6HnB%2CODxHI%3BEDoIQ%3BEACA%3BEACA%2COCpIA%3BEDqIA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkBC9IA%3B%3BADiJJ%3BEACI%3B%3BAAEA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkBC1JJ%3BED2JI%3BEACA%3B%3BAAGJ%3BEACI%3B%3BAAMhB%3BEEpDA%2CaD7HW%3BEC8HX%3BEACA%3BEACA%2CaD5HmB%3BEC6HnB%2CODxHI%3BEC6HJ%3BEACA%3BEACA%3BEACA%2CkBD3HO%3BEC4HP%3BEACA%2CODlII%3BECmIJ%3BEACA%3BEACA%3BEAeI%2CkBD9IA%3BEDoKA%3BEACA%3B%3BAEpCJ%3BEACI%2CkBDpIG%3B%3BACkJH%3BEACI%2CkBDhJE%3B%3BAEHV%3BEH2KI%3BIACI%3BIACA%3B%3B%3BAGvKR%3BEHlBJ%3BIA8LQ%3BIACA%2CkBCvLA%3B%3BEDyLA%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAIA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%2CkBCxMR%3BIDyMQ%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%2CkBClNJ%3B%3BEDsNJ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAIR%3BAAAA%3BIE5GJ%2CaD7HW%3BIC8HX%3BIACA%3BIACA%2CaD5HmB%3BIC6HnB%2CODxHI%3BIDmOI%3BIACA%2COClOI%3BIDmOJ%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAEA%3BAAAA%3BIEvLZ%2CaDlEW%3BICmEX%3BIACA%3BIACA%2CaDhEe%3BICiEf%2COD5DI%3BIDkPY%2CaCxPG%3B%3BED2PP%3BAAAA%3BIAEI%2CkBCvPZ%3B%3BED4PA%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3B%3BAGxPR%3BEH8PA%3BIACI%22%7D */