/* figtree-regular - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/figtree-v6-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-700 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/figtree-v6-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --fontSize13: 0.722rem;
  --fontSize15: 0.833rem;
  --fontSize16: 0.8888rem;
  --fontSize17: 0.944rem;
  --fontSize18: 1rem;
  --fontSize19: 1.055rem;
  --fontSize21: 1.166rem;
  --fontSize24: 1.33rem;
  --fontSize28: 1.555rem;
  --fontSize29: 1.611rem;
  --fontSize30: 1.666rem;
  --fontSize34: 1.888rem;
  --fontSize50: 2.77rem;
  --fontSize59: 3.27rem;
  --fontSize62: 3.44rem;
  --sideSpacing: 7.9rem;
  --outerSideSpacing: calc(calc(100vw - 1796px) / 2);
  --headerHeight: 10.4rem;
  --headerHeightSmall: 6.4rem;
  --colorBlue: #1F385F;
  --colorWhite: #FFF;
  --colorOrange: #F3D6BE;
  --colorGrey: #6B6668;
  --colorBeige: #F1EFEC;
}
@media only screen and (max-width: 1796px) {
  :root {
    --outerSideSpacing: 0rem;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --sideSpacing: 1.1rem;
    --headerHeight: 6.3rem;
    --headerHeightSmall: 5rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

*:focus:not(:focus-visible) {
  outline: 0;
}

html, body {
  scrollbar-gutter: stable;
}

html {
  font-size: 16.8px;
}
@media only screen and (max-width: 1796px) {
  html {
    font-size: 0.935vw;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 4.6vw;
  }
}

body {
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fontSize18);
  line-height: 1.611;
  -webkit-text-size-adjust: 100%;
  font-family: "Figtree";
  font-weight: 400;
  color: var(--colorGrey);
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 999999;
}

body:not(.wp-admin) .preview {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  height: auto;
  z-index: 999999;
  pointer-events: none;
  opacity: 0.4;
  display: block;
}

.preview_check:checked + .preview {
  display: none;
}

img {
  border: 0;
}

.innerwrapper {
  width: calc(100% - var(--sideSpacing) - var(--sideSpacing));
  margin: 0 auto;
  max-width: 1534px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
header.fixed {
  background-color: rgba(255, 255, 255, 0.8);
}
header.fixed .innerwrapper {
  height: var(--headerHeightSmall);
}
header .innerwrapper {
  height: var(--headerHeight);
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  transition: height 200ms ease-out;
}
header .innerwrapper .logo {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 17.147rem;
}
@media only screen and (max-width: 600px) {
  header .innerwrapper .logo {
    width: 9rem;
  }
}
header .innerwrapper .logo svg {
  width: 100%;
  height: auto;
}
header .innerwrapper .hamburger {
  display: none;
  width: 1.8rem;
  font-size: 0;
  line-height: 0;
}
header .innerwrapper .hamburger svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 600px) {
  header .innerwrapper .hamburger {
    display: block;
    margin-left: auto;
  }
}
header .innerwrapper nav {
  font-weight: 700;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colorBlue);
}
@media only screen and (max-width: 600px) {
  header .innerwrapper nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100dvh;
    z-index: 999;
    background-color: var(--colorBlue);
    width: calc(100% - 4rem);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: 500ms ease-out;
  }
  header .innerwrapper nav.is-active {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
  }
}
header .innerwrapper nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0 4.75rem;
}
@media only screen and (max-width: 600px) {
  header .innerwrapper nav ul {
    flex-direction: column;
    color: var(--colorBeige);
    text-align: left;
    align-items: start;
    height: 100%;
    padding: 2.4rem 2rem;
    gap: 2rem 0;
  }
}
header .innerwrapper nav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .innerwrapper nav ul li a {
  color: inherit;
  display: block;
  text-decoration: none;
}
header .innerwrapper nav ul li a.highlight {
  background-color: var(--colorBlue);
  padding: 0.85em 2.05em;
  color: var(--colorWhite);
}
@media only screen and (max-width: 600px) {
  header .innerwrapper nav ul li a.highlight {
    background-color: var(--colorBeige);
    color: var(--colorBlue);
  }
}
@media (hover: hover) {
  header .innerwrapper nav ul li a:not(.highlight):hover {
    text-decoration: underline;
  }
}

section {
  width: 100%;
  overflow-x: clip;
  scroll-margin-top: var(--headerHeight);
}

.section__start {
  width: 100%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.section__start .innerwrapper {
  display: grid;
  grid-template-columns: 34.4rem 1fr;
  grid-template-rows: auto 1fr;
  position: relative;
  z-index: 5;
  padding-top: calc(var(--headerHeight));
  gap: 0.3rem 0;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.section__start .innerwrapper .content {
  width: calc(100% + 8rem);
  margin-top: 3.5rem;
  font-size: var(--fontSize24);
  color: var(--colorBlue);
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .content {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    margin-top: 1.4rem;
    font-size: var(--fontSize18);
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
  }
  .section__start .innerwrapper .content .cta__button {
    margin-top: 0.5rem;
  }
}
.section__start .innerwrapper .content h1 {
  margin: 0;
  font-size: var(--fontSize62);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--colorBlue);
  letter-spacing: 0.205em;
  line-height: 1.209;
  margin-bottom: 0.45em;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .content h1 {
    font-size: var(--fontSize28);
    text-align: center;
    margin-bottom: 0.4em;
  }
}
.section__start .innerwrapper .content h1 strong {
  font-weight: 700;
}
.section__start .innerwrapper .content h1 span {
  position: relative;
  display: inline-block;
}
.section__start .innerwrapper .content h1 span:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-color: var(--colorOrange);
  width: calc(100% + 0.5em);
  left: -0.25em;
  height: 100%;
}
.section__start .innerwrapper .content p {
  margin: 0.5em 0;
}
.section__start .innerwrapper .content p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .content p {
    margin: 0.2em auto;
    max-width: 17em;
    margin-inline: auto;
  }
}
.section__start .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  grid-column: 2/3;
  grid-row: 1/3;
  opacity: 0;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .image {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    margin-top: 1.3rem;
  }
}
.section__start .innerwrapper .image img {
  width: calc(100% + 2rem);
  height: auto;
  margin-top: -1rem;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .image img {
    width: calc(100% + 3.2rem);
    margin-top: 0;
    margin-left: -1.5rem;
  }
}
.section__start .innerwrapper .sprechzeiten {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: var(--colorOrange);
  padding: 3.1rem 2rem 2.3rem 2rem;
  max-width: 27.8rem;
  color: var(--colorBlue);
  transform: translateY(4.2rem);
  background-repeat: no-repeat;
  background-size: 7.3rem auto;
  background-position: calc(100% - 2.2rem) calc(100% - 3.3rem);
  opacity: 0;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .sprechzeiten {
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    grid-column: unset;
    grid-row: unset;
    max-width: none;
    transform: translateY(0);
    margin-inline: calc(var(--sideSpacing) * -1);
    padding: 3.1rem var(--sideSpacing) 2.3rem var(--sideSpacing);
    background-size: 5rem auto;
    background-position: calc(100% - 1.2rem) calc(100% - 2.5rem);
  }
}
.section__start .innerwrapper .sprechzeiten h3 {
  font-size: var(--fontSize29);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.206;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .sprechzeiten h3 {
    font-size: var(--fontSize21);
  }
}
.section__start .innerwrapper .sprechzeiten .sz__wrapper {
  margin-top: 1.9rem;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .sprechzeiten .sz__wrapper {
    margin-top: 1.6rem;
  }
}
.section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single {
  font-size: var(--fontSize24);
  line-height: 1.625;
  display: grid;
  grid-template-columns: 1.4em 1fr;
  gap: 2em 1.5em;
  padding: 0.65rem 0;
  width: calc(100% + 2rem + 2rem);
  margin-inline: -2rem;
  padding-inline: 2rem;
}
.section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single:has(> span:nth-child(3)) {
  grid-template-columns: 1.4em 1fr 1fr;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single {
    font-size: var(--fontSize18);
    padding: 0.52rem 0;
    grid-template-columns: 1.7em 1fr;
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
    padding-inline: var(--sideSpacing);
  }
  .section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single:has(> span:nth-child(3)) {
    grid-template-columns: 1.7em 1.2fr 1fr;
  }
}
.section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single strong {
  text-transform: uppercase;
}
.section__start .innerwrapper .sprechzeiten .sz__wrapper .sz__single.today {
  background-color: rgba(255, 255, 255, 0.55);
}
.section__start .bg_image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}

.phone {
  display: inline-grid;
  grid-template-columns: 0.75em 1fr;
  gap: 0 0.5em;
  align-items: center;
  font-size: var(--fontSize59);
  letter-spacing: 0.205em;
  text-decoration: none;
  color: inherit;
}
@media only screen and (max-width: 600px) {
  .phone {
    font-size: var(--fontSize34);
  }
}
.phone svg {
  width: 100%;
  height: auto;
}

.mail {
  display: inline-grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0 1.5rem;
  align-items: center;
  font-size: var(--fontSize34);
  letter-spacing: 0.205em;
  text-decoration: none;
  color: inherit;
  margin-top: -0.2rem;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 600px) {
  .mail {
    gap: 0 1.3em;
    font-size: var(--fontSize16);
    grid-template-columns: 1.5em 1fr;
  }
}
.mail svg {
  width: 100%;
  height: auto;
}

.standort {
  display: inline-grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0 1.8rem;
  align-items: center;
  font-size: var(--fontSize24);
  text-decoration: none;
  color: inherit;
  margin-top: 0.2rem;
}
@media only screen and (max-width: 600px) {
  .standort {
    font-size: var(--fontSize17);
    text-align: left;
    width: 17rem;
    grid-template-columns: 1.6rem 1fr;
    gap: 0 1.2rem;
  }
}
.standort svg {
  width: 100%;
  height: auto;
  margin: -2rem 0 0 0.2rem;
}
@media only screen and (max-width: 600px) {
  .standort svg {
    margin-top: -1.5rem;
  }
}
.standort > span > strong {
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .standort > span > strong > span {
    display: none;
  }
}
.standort > span > strong br {
  display: none;
}
@media only screen and (max-width: 600px) {
  .standort > span > strong br {
    display: block;
  }
}
.standort > span > span {
  font-size: var(--fontSize18);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media only screen and (max-width: 600px) {
  .standort > span > span {
    font-size: var(--fontSize16);
  }
}

.cta__button {
  background-color: var(--colorBlue);
  padding: 0.85em 2.05em 0.85em 2.15em;
  color: var(--colorWhite);
  font-weight: 700;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
  text-decoration: none;
  font-size: var(--fontSize18);
}
@media only screen and (max-width: 600px) {
  .cta__button {
    font-size: var(--fontSize13);
    padding: 0.9em 1.75em 0.9em 1.85em;
  }
}

h4 {
  font-size: var(--fontSize19);
  text-transform: uppercase;
  line-height: 1.206;
  letter-spacing: 0.25em;
  margin: 0;
  font-weight: 400;
  color: var(--colorBlue);
  background-color: var(--colorOrange);
  margin-inline: auto;
  padding: 0.2em 0.7em 0.2em 0.9em;
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  h4 {
    font-size: var(--fontSize15);
    letter-spacing: 0.2em;
    padding: 0.2em 0.3em 0.2em 0.5em;
  }
}

h2 {
  margin: 0;
  font-weight: 400;
  font-size: var(--fontSize50);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colorBlue);
  margin-bottom: 0.1em;
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: var(--fontSize30);
  }
}

h4 + h2 {
  margin-top: 0.4em;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
  margin-top: 2.2rem;
}
@media only screen and (max-width: 600px) {
  .slick-dots {
    margin-top: 2rem;
  }
}
.slick-dots li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.slick-dots li button {
  --size: 0.9rem;
  background-color: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  background-color: transparent;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><g fill='none' stroke='%231f385f'><circle cx='8' cy='8' r='8' stroke='none'/><circle cx='8' cy='8' r='7.5'/></g></svg>");
  background-repeat: no-repeat;
  background-size: 98% auto;
}
.slick-dots li button:focus {
  outline: 0;
}
.slick-dots li.slick-active button {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><g fill='%231f385f' stroke='%231f385f'><circle cx='8' cy='8' r='8' stroke='none'/><circle cx='8' cy='8' r='7.5' fill='none'/></g></svg>");
}

section {
  margin: 6.65rem 0;
}
@media only screen and (max-width: 600px) {
  section {
    margin: 2.3rem 0;
  }
}

.slick-arrow {
  --size: 2.444rem;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  display: block;
  border: 0;
  text-indent: -9999px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 98% auto;
  background-position: center;
  width: var(--size);
  height: var(--size);
  position: absolute;
  right: 0;
  top: -3.2rem;
}
.slick-arrow.slick-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><g fill='none' stroke='%231f385f' data-name='Gruppe 517'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m26.768 14.5-8.158 7.215a.324.324 0 0 0 0 .486l8.158 7.219'/><g data-name='Rechteck 38'><path stroke='none' d='M0 0h44v44H0z'/><path d='M.5.5h43v43H.5z'/></g></g></svg>");
  right: calc(var(--sideSpacing) + var(--size) + 1rem);
}
.slick-arrow.slick-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' data-name='Gruppe 518' viewBox='0 0 44 44'><path fill='none' stroke='%231f385f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m17.232 14.5 8.159 7.219a.324.324 0 0 1 0 .486l-8.158 7.219'/><g fill='none' stroke='%231f385f' data-name='Rechteck 38'><path stroke='none' d='M0 0h44v44H0z'/><path d='M.5.5h43v43H.5z'/></g></svg>");
  right: var(--sideSpacing);
}

.section__leistungen {
  margin: 10.5rem 0 6.7rem 0;
  overflow-x: clip;
}
@media only screen and (max-width: 600px) {
  .section__leistungen {
    margin: 2.6rem 0 2.3rem 0;
  }
}
.section__leistungen .innerwrapper {
  display: flex;
  flex-direction: column;
  color: var(--colorGrey);
  position: relative;
}
.section__leistungen .innerwrapper:after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  width: 35.7rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='639' height='639.004' viewBox='0 0 639 639.004'><defs><clipPath id='a'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 67'/></clipPath><clipPath id='b'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 68'/></clipPath><clipPath id='c'><path fill='%23faf0e5' d='M6.242.336c-.026.006-.049.018-.075.024A8.445 8.445 0 0 0 2.03 3.037c-.122.14-.242.279-.354.428-.159.216-.3.442-.444.674s-.252.442-.366.674c-.1.208-.2.413-.279.631a8.2 8.2 0 0 0-.287.92c-.047.179-.1.354-.138.537a8.508 8.508 0 0 0-.159 1.555v.022a8.479 8.479 0 0 0 8.482 8.484c.136 0 .258-.039.393-.043a8.6 8.6 0 0 0 1.382-.153c.147-.033.281-.094.426-.134a8.12 8.12 0 0 0 1.27-.434c.075-.035.143-.081.218-.118a8.377 8.377 0 0 0 1.321-.792c.02-.014.037-.033.055-.045a8.429 8.429 0 0 0 1.238-1.14l.012-.01A8.408 8.408 0 0 0 6.247.338' data-name='Pfad 69'/></clipPath><clipPath id='d'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 70'/></clipPath><clipPath id='e'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 71'/></clipPath><clipPath id='f'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 72'/></clipPath><clipPath id='g'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 73'/></clipPath><clipPath id='h'><path fill='%23faf0e5' d='M0 8.474A8.484 8.484 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.474' data-name='Pfad 74'/></clipPath><clipPath id='i'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 75'/></clipPath><clipPath id='j'><path fill='%23faf0e5' d='M0 8.484A8.484 8.484 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 76'/></clipPath><clipPath id='k'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 77'/></clipPath><clipPath id='l'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 78'/></clipPath><clipPath id='m'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 79'/></clipPath><clipPath id='n'><path fill='%23faf0e5' d='M0 8.478A8.484 8.484 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.478' data-name='Pfad 80'/></clipPath><clipPath id='o'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 81'/></clipPath><clipPath id='p'><path fill='%23faf0e5' d='M0 8.482A8.484 8.484 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 82'/></clipPath><clipPath id='q'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 83'/></clipPath><clipPath id='r'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 84'/></clipPath><clipPath id='s'><path fill='%23faf0e5' d='M8.396.012a8.306 8.306 0 0 0-1.726.2c-.159.035-.307.1-.464.142a8.378 8.378 0 0 0-1.252.442c-.039.018-.09.026-.128.045-.085.041-.147.106-.226.147a8.424 8.424 0 0 0 2.875 15.876 5.8 5.8 0 0 0 .957.1c.018 0 .035.006.053.006h.02a7.5 7.5 0 0 0 .833-.045c.051-.008.094-.043.145-.055a8.395 8.395 0 0 0 5.646-13.588c-.077-.1-.159-.2-.242-.3A8.418 8.418 0 0 0 13.279 1.5c-.016-.012-.029-.026-.043-.037a8.332 8.332 0 0 0-1.918-.934c-.2-.073-.4-.13-.609-.187a8.345 8.345 0 0 0-2.081-.32c-.041 0-.077-.018-.12-.018s-.071.012-.11.012' data-name='Pfad 85'/></clipPath><clipPath id='t'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 86'/></clipPath><clipPath id='u'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 87'/></clipPath><clipPath id='v'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 88'/></clipPath><clipPath id='w'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 89'/></clipPath><clipPath id='x'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 90'/></clipPath><clipPath id='y'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 91'/></clipPath><clipPath id='z'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 92'/></clipPath><clipPath id='A'><path fill='%23faf0e5' d='M-.002 8.476A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.476' data-name='Pfad 93'/></clipPath><clipPath id='B'><path fill='%23faf0e5' d='M0 8.476a8.483 8.483 0 1 0 16.965 0 8.384 8.384 0 0 0-1.254-4.377c-1.637-1.258-3.272-2.518-4.935-3.744A8.375 8.375 0 0 0 8.484.001 8.479 8.479 0 0 0 0 8.477' data-name='Pfad 94'/></clipPath><clipPath id='C'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 95'/></clipPath><clipPath id='D'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 96'/></clipPath><clipPath id='E'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 97'/></clipPath><clipPath id='F'><path fill='%23faf0e5' d='M-.002 8.47A8.483 8.483 0 1 0 8.482-.004 8.481 8.481 0 0 0-.002 8.47' data-name='Pfad 98'/></clipPath><clipPath id='G'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 99'/></clipPath><clipPath id='H'><path fill='%23faf0e5' d='M-.002 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.482' data-name='Pfad 100'/></clipPath><clipPath id='I'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 101'/></clipPath><clipPath id='J'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 102'/></clipPath><clipPath id='K'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 103'/></clipPath><clipPath id='L'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 104'/></clipPath><clipPath id='M'><path fill='%23faf0e5' d='M-.002 8.474A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.474' data-name='Pfad 105'/></clipPath><clipPath id='N'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 106'/></clipPath><clipPath id='O'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0-.002 8.484' data-name='Pfad 107'/></clipPath><clipPath id='P'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 108'/></clipPath><clipPath id='Q'><path fill='%23faf0e5' d='M3.738 1.45A8.479 8.479 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 109'/></clipPath><clipPath id='R'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484.002 8.487 8.487 0 0 0 0 8.484' data-name='Pfad 110'/></clipPath><clipPath id='S'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484-.002 8.484 8.484 0 0 0 0 8.482' data-name='Pfad 111'/></clipPath><clipPath id='T'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 112'/></clipPath><clipPath id='U'><path fill='%23faf0e5' d='M-.002 8.478A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.478' data-name='Pfad 113'/></clipPath><clipPath id='V'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 114'/></clipPath><clipPath id='W'><path fill='%23faf0e5' d='M-.002 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.482' data-name='Pfad 115'/></clipPath><clipPath id='X'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 116'/></clipPath><clipPath id='Y'><path fill='%23faf0e5' d='M3.738 1.45A8.476 8.476 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 117'/></clipPath><clipPath id='Z'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 118'/></clipPath><clipPath id='aa'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 119'/></clipPath><clipPath id='ab'><path fill='%23faf0e5' d='M-.002 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.476' data-name='Pfad 120'/></clipPath><clipPath id='ac'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 121'/></clipPath><clipPath id='ad'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.484' data-name='Pfad 122'/></clipPath><clipPath id='ae'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 123'/></clipPath><clipPath id='af'><path fill='%23faf0e5' d='M3.738 1.45A8.479 8.479 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 124'/></clipPath><clipPath id='ag'><path fill='%23faf0e5' d='M3.738 1.45A8.476 8.476 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 125'/></clipPath><clipPath id='ah'><path fill='%23faf0e5' d='M0 8.484a8.454 8.454 0 0 0 .336 2.235c.051.179.1.348.165.521a8.335 8.335 0 0 0 .918 1.926l.016.031a8.455 8.455 0 0 0 1.452 1.608c.128.114.254.218.389.322a8.58 8.58 0 0 0 1.792 1.1c.02.008.035.024.055.035a8.441 8.441 0 0 0 11.755-6.908l.012-.124c.022-.248.075-.489.075-.743A8.483 8.483 0 1 0 0 8.487' data-name='Pfad 126'/></clipPath><clipPath id='ai'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.484' data-name='Pfad 127'/></clipPath><clipPath id='aj'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 128'/></clipPath><clipPath id='ak'><path fill='%23faf0e5' d='M3.738 1.454A8.479 8.479 0 1 0 8.482.004a8.47 8.47 0 0 0-4.744 1.45' data-name='Pfad 129'/></clipPath><clipPath id='al'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 130'/></clipPath><clipPath id='am'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 131'/></clipPath><clipPath id='an'><path fill='%23faf0e5' d='M3.738 1.448A8.486 8.486 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 132'/></clipPath><clipPath id='ao'><path fill='%23faf0e5' d='M8.484-.001a8.434 8.434 0 0 0-7.407 4.365c-.012.02-.031.037-.043.059a8.382 8.382 0 0 0-.57 1.443c-.057.167-.151.318-.2.493-.037.143-.026.3-.057.444a8.318 8.318 0 0 0-.212 1.682 8.557 8.557 0 0 0 .246 1.95c.045.185.11.356.167.535a8.665 8.665 0 0 0 .495 1.26c.1.191.2.375.3.556a8.583 8.583 0 0 0 .757 1.069c.124.149.236.3.368.444a8.372 8.372 0 0 0 1.356 1.175c.016.012.031.031.047.041s.026.01.039.018a8.348 8.348 0 0 0 1.91.918c.185.065.371.122.566.175a8.466 8.466 0 0 0 2.156.328c.026 0 .047.01.073.01a8.447 8.447 0 0 0 5.994-2.484 8.548 8.548 0 0 0 1.236-1.627 8.376 8.376 0 0 0 1.25-4.369c0-.016-.006-.031-.006-.047a8.362 8.362 0 0 0-.261-1.971c-.018-.067-.043-.128-.061-.2A8.386 8.386 0 0 0 8.484-.001Z' data-name='Pfad 133'/></clipPath><clipPath id='ap'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 134'/></clipPath><clipPath id='aq'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 135'/></clipPath><clipPath id='ar'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 136'/></clipPath><clipPath id='as'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482-.003 8.48 8.48 0 0 0 0 8.479' data-name='Pfad 137'/></clipPath><clipPath id='at'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 138'/></clipPath><clipPath id='au'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.484 0 8.475 8.475 0 0 0 3.74 1.448' data-name='Pfad 139'/></clipPath><clipPath id='av'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 140'/></clipPath><clipPath id='aw'><path fill='%23faf0e5' d='M0 8.47A8.482 8.482 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 141'/></clipPath><clipPath id='ax'><path fill='%23faf0e5' d='M0 8.47A8.482 8.482 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 142'/></clipPath><clipPath id='ay'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 143'/></clipPath><clipPath id='az'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 144'/></clipPath><clipPath id='aA'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 145'/></clipPath><clipPath id='aB'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 146'/></clipPath><clipPath id='aC'><path fill='%23faf0e5' d='M3.738 1.448A8.486 8.486 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 147'/></clipPath><clipPath id='aD'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 148'/></clipPath><clipPath id='aE'><path fill='%23faf0e5' d='M0 8.474A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 149'/></clipPath><clipPath id='aF'><path fill='%23faf0e5' d='M0 8.474A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 150'/></clipPath><clipPath id='aG'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 151'/></clipPath><clipPath id='aH'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 152'/></clipPath><clipPath id='aI'><path fill='%23faf0e5' d='M3.735 1.45A8.479 8.479 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 153'/></clipPath><clipPath id='aJ'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482.002 8.486 8.486 0 0 0 0 8.484' data-name='Pfad 154'/></clipPath><clipPath id='aK'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482-.002 8.483 8.483 0 0 0 0 8.482' data-name='Pfad 155'/></clipPath><clipPath id='aL'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 156'/></clipPath><clipPath id='aM'><path fill='%23faf0e5' d='M0 8.478A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 157'/></clipPath><clipPath id='aN'><path fill='%23faf0e5' d='M0 8.478A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 158'/></clipPath><clipPath id='aO'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 159'/></clipPath><clipPath id='aP'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 160'/></clipPath><clipPath id='aQ'><path fill='%23faf0e5' d='M3.735 1.45A8.476 8.476 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 161'/></clipPath><clipPath id='aR'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 162'/></clipPath><clipPath id='aS'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 163'/></clipPath><clipPath id='aT'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 164'/></clipPath><clipPath id='aU'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 165'/></clipPath><clipPath id='aV'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 166'/></clipPath><clipPath id='aW'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 167'/></clipPath><clipPath id='aX'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 168'/></clipPath><clipPath id='aY'><path fill='%23faf0e5' d='M3.735 1.45A8.479 8.479 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 169'/></clipPath><clipPath id='aZ'><path fill='%23faf0e5' d='M3.735 1.45A8.476 8.476 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 170'/></clipPath><clipPath id='ba'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 171'/></clipPath><clipPath id='bb'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 172'/></clipPath><clipPath id='bc'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 173'/></clipPath><clipPath id='bd'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 174'/></clipPath><clipPath id='be'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 175'/></clipPath><clipPath id='bf'><path fill='%23faf0e5' d='M3.735 1.454A8.479 8.479 0 1 0 8.479.004a8.47 8.47 0 0 0-4.744 1.45' data-name='Pfad 176'/></clipPath><clipPath id='bg'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 177'/></clipPath><clipPath id='bh'><path fill='%23faf0e5' d='M3.735 1.448A8.486 8.486 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 178'/></clipPath><clipPath id='bi'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 179'/></clipPath><clipPath id='bj'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.476' data-name='Pfad 180'/></clipPath><clipPath id='bk'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 181'/></clipPath><clipPath id='bl'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.003 8.48 8.48 0 0 0 0 8.479' data-name='Pfad 182'/></clipPath><clipPath id='bm'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 183'/></clipPath><clipPath id='bn'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 184'/></clipPath><clipPath id='bo'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 185'/></clipPath><clipPath id='bp'><path fill='%23faf0e5' d='M-.001 8.47A8.484 8.484 0 1 0 8.483-.004 8.481 8.481 0 0 0-.001 8.47' data-name='Pfad 186'/></clipPath><clipPath id='bq'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 187'/></clipPath><clipPath id='br'><path fill='%23faf0e5' d='M-.001 8.482A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.482' data-name='Pfad 188'/></clipPath><clipPath id='bs'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 189'/></clipPath><clipPath id='bt'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 190'/></clipPath><clipPath id='bu'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 191'/></clipPath><clipPath id='bv'><path fill='%23faf0e5' d='M3.735 1.448A8.486 8.486 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 192'/></clipPath><clipPath id='bw'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 193'/></clipPath><clipPath id='bx'><path fill='%23faf0e5' d='M-.001 8.474A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.474' data-name='Pfad 194'/></clipPath><clipPath id='by'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 195'/></clipPath><clipPath id='bz'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.479 8.479 0 0 0-.001 8.484' data-name='Pfad 196'/></clipPath><clipPath id='bA'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 197'/></clipPath><clipPath id='bB'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 198'/></clipPath><clipPath id='bC'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.486 8.486 0 0 0 0 8.484' data-name='Pfad 199'/></clipPath><clipPath id='bD'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.483 8.483 0 0 0 0 8.482' data-name='Pfad 200'/></clipPath><clipPath id='bE'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 201'/></clipPath><clipPath id='bF'><path fill='%23faf0e5' d='M-.001 8.478A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.478' data-name='Pfad 202'/></clipPath><clipPath id='bG'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 203'/></clipPath><clipPath id='bH'><path fill='%23faf0e5' d='M-.001 8.482A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.482' data-name='Pfad 204'/></clipPath><clipPath id='bI'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 205'/></clipPath><clipPath id='bJ'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 206'/></clipPath><clipPath id='bK'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 207'/></clipPath><clipPath id='bL'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 208'/></clipPath><clipPath id='bM'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 209'/></clipPath><clipPath id='bN'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.476' data-name='Pfad 210'/></clipPath><clipPath id='bO'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 211'/></clipPath><clipPath id='bP'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.484' data-name='Pfad 212'/></clipPath><clipPath id='bQ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 213'/></clipPath><clipPath id='bR'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 214'/></clipPath><clipPath id='bS'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 215'/></clipPath><clipPath id='bT'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 216'/></clipPath><clipPath id='bU'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.476' data-name='Pfad 217'/></clipPath><clipPath id='bV'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 218'/></clipPath><clipPath id='bW'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.484' data-name='Pfad 219'/></clipPath><clipPath id='bX'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 220'/></clipPath><clipPath id='bY'><path fill='%23faf0e5' d='M3.74 1.454A8.48 8.48 0 1 0 8.484.004a8.472 8.472 0 0 0-4.744 1.45' data-name='Pfad 221'/></clipPath><clipPath id='bZ'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 222'/></clipPath><clipPath id='ca'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 223'/></clipPath><clipPath id='cb'><path fill='%23faf0e5' d='M8.484-.001A8.36 8.36 0 0 0 .139 7.408l-.029.006A8.088 8.088 0 0 0 0 8.485a8.445 8.445 0 0 0 .248 1.95c.045.185.11.356.167.535a8.438 8.438 0 0 0 .495 1.26c.1.191.193.375.3.556a8.427 8.427 0 0 0 .761 1.071c.122.147.232.3.364.442a8.714 8.714 0 0 0 1.366 1.185c.016.008.024.022.039.031a.242.242 0 0 0 .033.016 8.353 8.353 0 0 0 1.916.92c.187.065.373.122.564.175a8.482 8.482 0 0 0 2.158.328c.026 0 .049.01.071.01a8.627 8.627 0 0 0 1.635-.169c.13-.024.252-.071.381-.1a8.369 8.369 0 0 0 1.13-.352c.163-.065.318-.147.474-.222a8.185 8.185 0 0 0 .9-.489c.163-.1.316-.214.47-.326a8.011 8.011 0 0 0 .747-.617 9.24 9.24 0 0 0 .426-.413 8.767 8.767 0 0 0 .607-.737c.12-.159.244-.311.352-.48a8.2 8.2 0 0 0 .478-.884c.079-.165.173-.318.244-.491a8.318 8.318 0 0 0 .405-1.307 8.381 8.381 0 0 0 .232-1.891A8.033 8.033 0 0 0 16.8 6.91c-.006-.045 0-.094-.012-.138a8.656 8.656 0 0 0-.332-1.114c-.006-.014-.006-.031-.012-.047a8.476 8.476 0 0 0-7.96-5.612Z' data-name='Pfad 224'/></clipPath><clipPath id='cc'><path fill='%23faf0e5' d='M0 8.482a8.4 8.4 0 0 0 1.883 5.271c.081.1.163.206.248.305a8.446 8.446 0 0 0 3.634 2.425c.149.051.3.1.45.14a8.366 8.366 0 0 0 10.75-8.142v-.01a8.318 8.318 0 0 0-.228-1.881c-.035-.149-.094-.287-.134-.434a8.572 8.572 0 0 0-.511-1.36c-.057-.114-.12-.22-.181-.33a8.619 8.619 0 0 0-.888-1.327c-.041-.047-.077-.094-.118-.14a8.449 8.449 0 0 0-14.9 5.485' data-name='Pfad 225'/></clipPath><clipPath id='cd'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 226'/></clipPath><clipPath id='ce'><path fill='%23faf0e5' d='M0 8.482a8.441 8.441 0 0 0 2.538 6.04 8.156 8.156 0 0 0 1.2.992c.01.008.022.01.035.018a8.54 8.54 0 0 0 1.908.916c.189.067.379.126.576.179a8.325 8.325 0 0 0 2.113.32c.039 0 .071.016.11.016a8.471 8.471 0 0 0 7.712-5c.029-.063.073-.12.1-.185l.008-.024a8.43 8.43 0 0 0 .66-3.274 8.572 8.572 0 0 0-.161-1.6c-.033-.169-.088-.326-.13-.491a8.285 8.285 0 0 0-.311-1c-.075-.191-.167-.373-.254-.558a8.373 8.373 0 0 0-.428-.788 7.04 7.04 0 0 0-.387-.57 7.135 7.135 0 0 0-.5-.607 7.479 7.479 0 0 0-.523-.556c-.161-.151-.336-.283-.507-.417a8.707 8.707 0 0 0-.7-.529c-.061-.039-.128-.067-.189-.1a8.419 8.419 0 0 0-2.089-.9c-.106-.031-.208-.079-.316-.106v.006A8.4 8.4 0 0 0-.004 8.487' data-name='Pfad 227'/></clipPath><clipPath id='cf'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 228'/></clipPath><clipPath id='cg'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.486 0a8.477 8.477 0 0 0-4.744 1.448' data-name='Pfad 229'/></clipPath><clipPath id='ch'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 230'/></clipPath><clipPath id='ci'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 231'/></clipPath><clipPath id='cj'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 232'/></clipPath><clipPath id='ck'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 233'/></clipPath><clipPath id='cl'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 234'/></clipPath><clipPath id='cm'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 235'/></clipPath><clipPath id='cn'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 236'/></clipPath><clipPath id='co'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 237'/></clipPath><clipPath id='cp'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 238'/></clipPath><clipPath id='cq'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 239'/></clipPath><clipPath id='cr'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 240'/></clipPath><clipPath id='cs'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 241'/></clipPath><clipPath id='ct'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 242'/></clipPath><clipPath id='cu'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 243'/></clipPath><clipPath id='cv'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 244'/></clipPath><clipPath id='cw'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 245'/></clipPath><clipPath id='cx'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 246'/></clipPath><clipPath id='cy'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 247'/></clipPath><clipPath id='cz'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 248'/></clipPath><clipPath id='cA'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 249'/></clipPath><clipPath id='cB'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.473 8.473 0 0 0-4.742 1.448' data-name='Pfad 250'/></clipPath><clipPath id='cC'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 251'/></clipPath><clipPath id='cD'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 252'/></clipPath><clipPath id='cE'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 253'/></clipPath><clipPath id='cF'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 254'/></clipPath><clipPath id='cG'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 255'/></clipPath><clipPath id='cH'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 256'/></clipPath><clipPath id='cI'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 257'/></clipPath><clipPath id='cJ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 258'/></clipPath><clipPath id='cK'><path fill='%23faf0e5' d='M0 8.484v.006a7.485 7.485 0 0 0 .132 1.327 8.635 8.635 0 0 0 .228.983v.014A8.424 8.424 0 0 0 16 12.323a8.349 8.349 0 0 0 .961-3.836v-.006a8.483 8.483 0 1 0-16.965 0' data-name='Pfad 259'/></clipPath><clipPath id='cL'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 260'/></clipPath><clipPath id='cM'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.472 8.472 0 0 0-4.742 1.448' data-name='Pfad 261'/></clipPath><clipPath id='cN'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484.002 8.487 8.487 0 0 0 0 8.484' data-name='Pfad 262'/></clipPath><clipPath id='cO'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.472 8.472 0 0 0-4.742 1.448' data-name='Pfad 263'/></clipPath><clipPath id='cP'><path fill='%23faf0e5' d='M3.74 1.448a8.409 8.409 0 0 0-.654 13.5c.1.083.187.171.289.25.126.1.23.224.364.316.173.116.387.169.57.275a8.826 8.826 0 0 0 1.144.55 8.464 8.464 0 0 0 .808.289 8.28 8.28 0 0 0 2.111.318c.039 0 .069.016.108.016a8.582 8.582 0 0 0 8.482-8.48l-.006-.033a8.46 8.46 0 0 0-.316-2.156 7.869 7.869 0 0 0-.157-.5 8.45 8.45 0 0 0-.867-1.857l-.022-.047a8.555 8.555 0 0 0-1.5-1.718l-.114-.092a8.395 8.395 0 0 0-10.24-.631' data-name='Pfad 264'/></clipPath><clipPath id='cQ'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484 0 8.481 8.481 0 0 0 0 8.47' data-name='Pfad 265'/></clipPath><clipPath id='cR'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 266'/></clipPath><clipPath id='cS'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.448' data-name='Pfad 267'/></clipPath><clipPath id='cT'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 268'/></clipPath><clipPath id='cU'><path fill='%23faf0e5' d='M0 8.484a8.452 8.452 0 0 0 6.108 8.1c.077.024.153.051.234.073a8.346 8.346 0 0 0 2.142.305 8.629 8.629 0 0 0 8.482-8.478c0-.165-.039-.32-.049-.485a8.753 8.753 0 0 0-.122-1.209 8.3 8.3 0 0 0-.383-1.244c-.041-.108-.059-.226-.1-.334A8.482 8.482 0 0 0 0 8.484' data-name='Pfad 269'/></clipPath><clipPath id='cV'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 270'/></clipPath><clipPath id='cW'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.474' data-name='Pfad 271'/></clipPath><clipPath id='cX'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 272'/></clipPath><clipPath id='cY'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484-.002 8.484 8.484 0 0 0 0 8.482' data-name='Pfad 273'/></clipPath><clipPath id='cZ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 274'/></clipPath><clipPath id='da'><path fill='%23faf0e5' d='M7.971.053a8.087 8.087 0 0 0-1.053.106 8.546 8.546 0 0 0-1.122.318c-.1.035-.206.055-.305.094a8.4 8.4 0 0 0-1.268.619A8.468 8.468 0 1 0 16.97 8.483 8.528 8.528 0 0 0 8.488.001c-.175 0-.338.043-.513.053' data-name='Pfad 275'/></clipPath><clipPath id='db'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.478' data-name='Pfad 276'/></clipPath><clipPath id='dc'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 277'/></clipPath><clipPath id='dd'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 278'/></clipPath><clipPath id='de'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 279'/></clipPath><clipPath id='df'><path fill='%23faf0e5' d='M8.423.01a8.41 8.41 0 0 0-2.209.332c-.132.037-.263.063-.393.106a8.451 8.451 0 0 0-1.873.9c-.063.041-.147.057-.208.1-.088.059-.153.141-.236.2a8.561 8.561 0 0 0-1.049.906c-.1.1-.212.189-.307.3a8.543 8.543 0 0 0-.971 1.37c-.11.185-.2.379-.3.572a8.312 8.312 0 0 0-.458 1.171c-.059.187-.132.366-.179.564-.008.037-.024.071-.035.108l.018.022a8.319 8.319 0 0 0 7.714 10.224l.02.024c.151.01.3.037.448.045.024 0 .047.01.071.01a8.482 8.482 0 0 0 8.482-8.486 8.573 8.573 0 0 0-8.482-8.48c-.02 0-.039.01-.059.01' data-name='Pfad 280'/></clipPath><clipPath id='dg'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 281'/></clipPath><clipPath id='dh'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 282'/></clipPath></defs><g data-name='Gruppe 495'><g data-name='Gruppe 62'><g clip-path='url(%23a)' data-name='Gruppe 61' transform='translate(593.76 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 49'/></g></g><g data-name='Gruppe 64'><g clip-path='url(%23b)' data-name='Gruppe 63' transform='translate(565.485 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 50'/></g></g><g data-name='Gruppe 66'><g clip-path='url(%23c)' data-name='Gruppe 65' transform='translate(593.76 141.377)'><path fill='%23faf0e5' d='M-8.32 6.84 10.112-8.321 25.274 10.11 6.84 25.272z' data-name='Rechteck 51'/></g></g><g data-name='Gruppe 68'><g clip-path='url(%23d)' data-name='Gruppe 67' transform='translate(565.485 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 52'/></g></g><g data-name='Gruppe 70'><g clip-path='url(%23e)' data-name='Gruppe 69' transform='translate(593.76 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 53'/></g></g><g data-name='Gruppe 72'><g clip-path='url(%23f)' data-name='Gruppe 71' transform='translate(593.76 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.125-8.323l15.162 18.445L6.841 25.285z' data-name='Rechteck 54'/></g></g><g data-name='Gruppe 74'><g clip-path='url(%23g)' data-name='Gruppe 73' transform='translate(565.485 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 55'/></g></g><g data-name='Gruppe 76'><g clip-path='url(%23h)' data-name='Gruppe 75' transform='translate(622.033 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 56'/></g></g><g data-name='Gruppe 78'><g clip-path='url(%23i)' data-name='Gruppe 77' transform='translate(565.485 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 57'/></g></g><g data-name='Gruppe 80'><g clip-path='url(%23j)' data-name='Gruppe 79' transform='translate(622.033 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 58'/></g></g><g data-name='Gruppe 82'><g clip-path='url(%23k)' data-name='Gruppe 81' transform='translate(537.212 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 59'/></g></g><g data-name='Gruppe 84'><g clip-path='url(%23l)' data-name='Gruppe 83' transform='translate(593.76 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 60'/></g></g><g data-name='Gruppe 86'><g clip-path='url(%23m)' data-name='Gruppe 85' transform='translate(565.485 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 61'/></g></g><g data-name='Gruppe 88'><g clip-path='url(%23n)' data-name='Gruppe 87' transform='translate(622.033 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.126-8.323 25.288 10.12 6.843 25.283z' data-name='Rechteck 62'/></g></g><g data-name='Gruppe 90'><g clip-path='url(%23o)' data-name='Gruppe 89' transform='translate(565.485 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 63'/></g></g><g data-name='Gruppe 92'><g clip-path='url(%23p)' data-name='Gruppe 91' transform='translate(622.033 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 64'/></g></g><g data-name='Gruppe 94'><g clip-path='url(%23q)' data-name='Gruppe 93' transform='translate(537.212 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 65'/></g></g><g data-name='Gruppe 96'><g clip-path='url(%23r)' data-name='Gruppe 95' transform='translate(537.212 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.433L6.84 25.274z' data-name='Rechteck 66'/></g></g><g data-name='Gruppe 98'><g clip-path='url(%23s)' data-name='Gruppe 97' transform='translate(593.735 480.668)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.842 25.274z' data-name='Rechteck 67'/></g></g><g data-name='Gruppe 100'><g clip-path='url(%23t)' data-name='Gruppe 99' transform='translate(565.485 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 68'/></g></g><g data-name='Gruppe 102'><g clip-path='url(%23u)' data-name='Gruppe 101' transform='translate(565.485 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 69'/></g></g><g data-name='Gruppe 104'><g clip-path='url(%23v)' data-name='Gruppe 103' transform='translate(537.212 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 70'/></g></g><g data-name='Gruppe 106'><g clip-path='url(%23w)' data-name='Gruppe 105' transform='translate(537.212 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.122-8.321l15.162 18.445L6.84 25.285z' data-name='Rechteck 71'/></g></g><g data-name='Gruppe 108'><g clip-path='url(%23x)' data-name='Gruppe 107' transform='translate(593.76 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 72'/></g></g><g data-name='Gruppe 110'><g clip-path='url(%23y)' data-name='Gruppe 109' transform='translate(537.212 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 73'/></g></g><g data-name='Gruppe 112'><g clip-path='url(%23z)' data-name='Gruppe 111' transform='translate(480.662 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 74'/></g></g><g data-name='Gruppe 114'><g clip-path='url(%23A)' data-name='Gruppe 113' transform='translate(452.387 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 75'/></g></g><g data-name='Gruppe 116'><g clip-path='url(%23B)' data-name='Gruppe 115' transform='translate(508.937 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 76'/></g></g><g data-name='Gruppe 118'><g clip-path='url(%23C)' data-name='Gruppe 117' transform='translate(537.212 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 77'/></g></g><g data-name='Gruppe 120'><g clip-path='url(%23D)' data-name='Gruppe 119' transform='translate(537.212 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 78'/></g></g><g data-name='Gruppe 122'><g clip-path='url(%23E)' data-name='Gruppe 121' transform='translate(480.662 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 79'/></g></g><g data-name='Gruppe 124'><g clip-path='url(%23F)' data-name='Gruppe 123' transform='translate(452.387 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 80'/></g></g><g data-name='Gruppe 126'><g clip-path='url(%23G)' data-name='Gruppe 125' transform='translate(508.937 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 81'/></g></g><g data-name='Gruppe 128'><g clip-path='url(%23H)' data-name='Gruppe 127' transform='translate(452.387 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 82'/></g></g><g data-name='Gruppe 130'><g clip-path='url(%23I)' data-name='Gruppe 129' transform='translate(508.937 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 83'/></g></g><g data-name='Gruppe 132'><g clip-path='url(%23J)' data-name='Gruppe 131' transform='translate(480.662 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 84'/></g></g><g data-name='Gruppe 134'><g clip-path='url(%23K)' data-name='Gruppe 133' transform='translate(537.212 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.122-8.321l15.161 18.444L6.84 25.283z' data-name='Rechteck 85'/></g></g><g data-name='Gruppe 136'><g clip-path='url(%23L)' data-name='Gruppe 135' transform='translate(480.662 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 86'/></g></g><g data-name='Gruppe 138'><g clip-path='url(%23M)' data-name='Gruppe 137' transform='translate(452.387 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 87'/></g></g><g data-name='Gruppe 140'><g clip-path='url(%23N)' data-name='Gruppe 139' transform='translate(508.937 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.158 18.43-18.43 15.158z' data-name='Rechteck 88'/></g></g><g data-name='Gruppe 142'><g clip-path='url(%23O)' data-name='Gruppe 141' transform='translate(452.387 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 89'/></g></g><g data-name='Gruppe 144'><g clip-path='url(%23P)' data-name='Gruppe 143' transform='translate(508.937 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 90'/></g></g><g data-name='Gruppe 146'><g clip-path='url(%23Q)' data-name='Gruppe 145' transform='translate(424.116 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.109-8.319l15.163 18.434L6.839 25.277z' data-name='Rechteck 91'/></g></g><g data-name='Gruppe 148'><g clip-path='url(%23R)' data-name='Gruppe 147' transform='translate(480.662 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 92'/></g></g><g data-name='Gruppe 150'><g clip-path='url(%23S)' data-name='Gruppe 149' transform='translate(480.662 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 93'/></g></g><g data-name='Gruppe 152'><g clip-path='url(%23T)' data-name='Gruppe 151' transform='translate(480.662 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 94'/></g></g><g data-name='Gruppe 154'><g clip-path='url(%23U)' data-name='Gruppe 153' transform='translate(452.387 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 95'/></g></g><g data-name='Gruppe 156'><g clip-path='url(%23V)' data-name='Gruppe 155' transform='translate(508.937 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 96'/></g></g><g data-name='Gruppe 158'><g clip-path='url(%23W)' data-name='Gruppe 157' transform='translate(452.387 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 97'/></g></g><g data-name='Gruppe 160'><g clip-path='url(%23X)' data-name='Gruppe 159' transform='translate(508.937 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.442-15.16 15.16 18.441-18.442 15.16z' data-name='Rechteck 98'/></g></g><g data-name='Gruppe 162'><g clip-path='url(%23Y)' data-name='Gruppe 161' transform='translate(424.116 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.109-8.319l15.163 18.434L6.839 25.277z' data-name='Rechteck 99'/></g></g><g data-name='Gruppe 164'><g clip-path='url(%23Z)' data-name='Gruppe 163' transform='translate(424.116 367.57)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 100'/></g></g><g data-name='Gruppe 166'><g clip-path='url(%23aa)' data-name='Gruppe 165' transform='translate(480.662 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 101'/></g></g><g data-name='Gruppe 168'><g clip-path='url(%23ab)' data-name='Gruppe 167' transform='translate(452.387 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 102'/></g></g><g data-name='Gruppe 170'><g clip-path='url(%23ac)' data-name='Gruppe 169' transform='translate(508.937 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 103'/></g></g><g data-name='Gruppe 172'><g clip-path='url(%23ad)' data-name='Gruppe 171' transform='translate(452.387 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 104'/></g></g><g data-name='Gruppe 174'><g clip-path='url(%23ae)' data-name='Gruppe 173' transform='translate(508.937 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 105'/></g></g><g data-name='Gruppe 176'><g clip-path='url(%23af)' data-name='Gruppe 175' transform='translate(424.116 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 106'/></g></g><g data-name='Gruppe 178'><g clip-path='url(%23ag)' data-name='Gruppe 177' transform='translate(424.116 480.668)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 107'/></g></g><g data-name='Gruppe 180'><g clip-path='url(%23ah)' data-name='Gruppe 179' transform='translate(480.662 593.768)'><path fill='%23faf0e5' d='M-8.32 6.84 10.124-8.322l15.162 18.445L6.842 25.284z' data-name='Rechteck 108'/></g></g><g data-name='Gruppe 182'><g clip-path='url(%23ai)' data-name='Gruppe 181' transform='translate(452.387 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 109'/></g></g><g data-name='Gruppe 184'><g clip-path='url(%23aj)' data-name='Gruppe 183' transform='translate(508.937 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 110'/></g></g><g data-name='Gruppe 186'><g clip-path='url(%23ak)' data-name='Gruppe 185' transform='translate(424.116 593.768)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 111'/></g></g><g data-name='Gruppe 188'><g clip-path='url(%23al)' data-name='Gruppe 187' transform='translate(480.662 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 112'/></g></g><g data-name='Gruppe 190'><g clip-path='url(%23am)' data-name='Gruppe 189' transform='translate(424.116 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 113'/></g></g><g data-name='Gruppe 192'><g clip-path='url(%23an)' data-name='Gruppe 191' transform='translate(424.116 28.275)'><path fill='%23faf0e5' d='m-8.322 6.841 18.443-15.16 15.16 18.443L6.84 25.284z' data-name='Rechteck 114'/></g></g><g data-name='Gruppe 194'><g clip-path='url(%23ao)' data-name='Gruppe 193' transform='translate(395.841)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 115'/></g></g><g data-name='Gruppe 196'><g clip-path='url(%23ap)' data-name='Gruppe 195' transform='translate(367.566 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 116'/></g></g><g data-name='Gruppe 198'><g clip-path='url(%23aq)' data-name='Gruppe 197' transform='translate(339.291 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.443-15.16 15.16 18.442L6.84 25.28z' data-name='Rechteck 117'/></g></g><g data-name='Gruppe 200'><g clip-path='url(%23ar)' data-name='Gruppe 199' transform='translate(395.841 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 118'/></g></g><g data-name='Gruppe 202'><g clip-path='url(%23as)' data-name='Gruppe 201' transform='translate(339.291 .004)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 119'/></g></g><g data-name='Gruppe 204'><g clip-path='url(%23at)' data-name='Gruppe 203' transform='translate(424.116 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 120'/></g></g><g data-name='Gruppe 206'><g clip-path='url(%23au)' data-name='Gruppe 205' transform='translate(424.116 141.373)'><path fill='%23faf0e5' d='m-8.322 6.841 18.443-15.16 15.16 18.443L6.84 25.284z' data-name='Rechteck 121'/></g></g><g data-name='Gruppe 208'><g clip-path='url(%23av)' data-name='Gruppe 207' transform='translate(367.566 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 122'/></g></g><g data-name='Gruppe 210'><g clip-path='url(%23aw)' data-name='Gruppe 209' transform='translate(339.291 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159L25.27 10.11 6.84 25.266z' data-name='Rechteck 123'/></g></g><g data-name='Gruppe 212'><g clip-path='url(%23ax)' data-name='Gruppe 211' transform='translate(395.841 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 124'/></g></g><g data-name='Gruppe 214'><g clip-path='url(%23ay)' data-name='Gruppe 213' transform='translate(339.291 113.102)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 125'/></g></g><g data-name='Gruppe 216'><g clip-path='url(%23az)' data-name='Gruppe 215' transform='translate(395.841 113.102)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 126'/></g></g><g data-name='Gruppe 218'><g clip-path='url(%23aA)' data-name='Gruppe 217' transform='translate(367.566 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 127'/></g></g><g data-name='Gruppe 220'><g clip-path='url(%23aB)' data-name='Gruppe 219' transform='translate(367.566 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 128'/></g></g><g data-name='Gruppe 222'><g clip-path='url(%23aC)' data-name='Gruppe 221' transform='translate(424.116 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.121-8.32l15.16 18.443L6.84 25.283z' data-name='Rechteck 129'/></g></g><g data-name='Gruppe 224'><g clip-path='url(%23aD)' data-name='Gruppe 223' transform='translate(367.566 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.123-8.322l15.162 18.445L6.84 25.284z' data-name='Rechteck 130'/></g></g><g data-name='Gruppe 226'><g clip-path='url(%23aE)' data-name='Gruppe 225' transform='translate(339.291 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.44-15.158 15.158 18.44-18.44 15.158z' data-name='Rechteck 131'/></g></g><g data-name='Gruppe 228'><g clip-path='url(%23aF)' data-name='Gruppe 227' transform='translate(395.841 282.752)'><path fill='%23faf0e5' d='M-8.317 6.837 10.111-8.321 25.27 10.107 6.84 25.265z' data-name='Rechteck 132'/></g></g><g data-name='Gruppe 230'><g clip-path='url(%23aG)' data-name='Gruppe 229' transform='translate(339.291 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 133'/></g></g><g data-name='Gruppe 232'><g clip-path='url(%23aH)' data-name='Gruppe 231' transform='translate(395.841 226.2)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 134'/></g></g><g data-name='Gruppe 234'><g clip-path='url(%23aI)' data-name='Gruppe 233' transform='translate(311.018 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 135'/></g></g><g data-name='Gruppe 236'><g clip-path='url(%23aJ)' data-name='Gruppe 235' transform='translate(367.566 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 136'/></g></g><g data-name='Gruppe 238'><g clip-path='url(%23aK)' data-name='Gruppe 237' transform='translate(367.566 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.321l15.165 18.448L6.841 25.291z' data-name='Rechteck 137'/></g></g><g data-name='Gruppe 240'><g clip-path='url(%23aL)' data-name='Gruppe 239' transform='translate(367.566 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 138'/></g></g><g data-name='Gruppe 242'><g clip-path='url(%23aM)' data-name='Gruppe 241' transform='translate(339.291 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 139'/></g></g><g data-name='Gruppe 244'><g clip-path='url(%23aN)' data-name='Gruppe 243' transform='translate(395.841 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 140'/></g></g><g data-name='Gruppe 246'><g clip-path='url(%23aO)' data-name='Gruppe 245' transform='translate(339.291 339.299)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 141'/></g></g><g data-name='Gruppe 248'><g clip-path='url(%23aP)' data-name='Gruppe 247' transform='translate(395.841 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 142'/></g></g><g data-name='Gruppe 250'><g clip-path='url(%23aQ)' data-name='Gruppe 249' transform='translate(311.018 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 143'/></g></g><g data-name='Gruppe 252'><g clip-path='url(%23aR)' data-name='Gruppe 251' transform='translate(311.018 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 144'/></g></g><g data-name='Gruppe 254'><g clip-path='url(%23aS)' data-name='Gruppe 253' transform='translate(367.566 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 145'/></g></g><g data-name='Gruppe 256'><g clip-path='url(%23aT)' data-name='Gruppe 255' transform='translate(367.566 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 146'/></g></g><g data-name='Gruppe 258'><g clip-path='url(%23aU)' data-name='Gruppe 257' transform='translate(339.291 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159L25.27 10.11 6.84 25.266z' data-name='Rechteck 147'/></g></g><g data-name='Gruppe 260'><g clip-path='url(%23aV)' data-name='Gruppe 259' transform='translate(395.841 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 148'/></g></g><g data-name='Gruppe 262'><g clip-path='url(%23aW)' data-name='Gruppe 261' transform='translate(339.291 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 149'/></g></g><g data-name='Gruppe 264'><g clip-path='url(%23aX)' data-name='Gruppe 263' transform='translate(395.841 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 150'/></g></g><g data-name='Gruppe 266'><g clip-path='url(%23aY)' data-name='Gruppe 265' transform='translate(311.018 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 151'/></g></g><g data-name='Gruppe 268'><g clip-path='url(%23aZ)' data-name='Gruppe 267' transform='translate(311.018 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.122-8.321l15.162 18.445L6.84 25.285z' data-name='Rechteck 152'/></g></g><g data-name='Gruppe 270'><g clip-path='url(%23ba)' data-name='Gruppe 269' transform='translate(367.566 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 153'/></g></g><g data-name='Gruppe 272'><g clip-path='url(%23bb)' data-name='Gruppe 271' transform='translate(339.291 622.047)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 154'/></g></g><g data-name='Gruppe 274'><g clip-path='url(%23bc)' data-name='Gruppe 273' transform='translate(395.841 622.047)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 155'/></g></g><g data-name='Gruppe 276'><g clip-path='url(%23bd)' data-name='Gruppe 275' transform='translate(339.291 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 156'/></g></g><g data-name='Gruppe 278'><g clip-path='url(%23be)' data-name='Gruppe 277' transform='translate(395.841 565.497)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.16 18.441L6.84 25.28z' data-name='Rechteck 157'/></g></g><g data-name='Gruppe 280'><g clip-path='url(%23bf)' data-name='Gruppe 279' transform='translate(311.018 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 158'/></g></g><g data-name='Gruppe 282'><g clip-path='url(%23bg)' data-name='Gruppe 281' transform='translate(311.018 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 159'/></g></g><g data-name='Gruppe 284'><g clip-path='url(%23bh)' data-name='Gruppe 283' transform='translate(311.018 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 160'/></g></g><g data-name='Gruppe 286'><g clip-path='url(%23bi)' data-name='Gruppe 285' transform='translate(254.469 28.275)'><path fill='%23faf0e5' d='M-8.323 6.841 10.124-8.322l15.163 18.446L6.84 25.288z' data-name='Rechteck 161'/></g></g><g data-name='Gruppe 288'><g clip-path='url(%23bj)' data-name='Gruppe 287' transform='translate(226.194 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.114-8.323 25.275 10.11 6.842 25.271z' data-name='Rechteck 162'/></g></g><g data-name='Gruppe 290'><g clip-path='url(%23bk)' data-name='Gruppe 289' transform='translate(282.743 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 163'/></g></g><g data-name='Gruppe 292'><g clip-path='url(%23bl)' data-name='Gruppe 291' transform='translate(282.743 .004)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 164'/></g></g><g data-name='Gruppe 294'><g clip-path='url(%23bm)' data-name='Gruppe 293' transform='translate(311.018 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 165'/></g></g><g data-name='Gruppe 296'><g clip-path='url(%23bn)' data-name='Gruppe 295' transform='translate(311.018 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 166'/></g></g><g data-name='Gruppe 298'><g clip-path='url(%23bo)' data-name='Gruppe 297' transform='translate(254.469 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 167'/></g></g><g data-name='Gruppe 300'><g clip-path='url(%23bp)' data-name='Gruppe 299' transform='translate(226.194 169.652)'><path fill='%23faf0e5' d='M-8.319 6.838 10.125-8.324l15.16 18.443L6.842 25.281z' data-name='Rechteck 168'/></g></g><g data-name='Gruppe 302'><g clip-path='url(%23bq)' data-name='Gruppe 301' transform='translate(282.743 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 169'/></g></g><g data-name='Gruppe 304'><g clip-path='url(%23br)' data-name='Gruppe 303' transform='translate(226.194 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 170'/></g></g><g data-name='Gruppe 306'><g clip-path='url(%23bs)' data-name='Gruppe 305' transform='translate(282.743 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 171'/></g></g><g data-name='Gruppe 308'><g clip-path='url(%23bt)' data-name='Gruppe 307' transform='translate(254.469 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 172'/></g></g><g data-name='Gruppe 310'><g clip-path='url(%23bu)' data-name='Gruppe 309' transform='translate(254.469 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 173'/></g></g><g data-name='Gruppe 312'><g clip-path='url(%23bv)' data-name='Gruppe 311' transform='translate(311.018 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.11-8.32l15.161 18.43L6.84 25.273z' data-name='Rechteck 174'/></g></g><g data-name='Gruppe 314'><g clip-path='url(%23bw)' data-name='Gruppe 313' transform='translate(254.469 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 175'/></g></g><g data-name='Gruppe 316'><g clip-path='url(%23bx)' data-name='Gruppe 315' transform='translate(226.194 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.443-15.16 15.159 18.44L6.842 25.279z' data-name='Rechteck 176'/></g></g><g data-name='Gruppe 318'><g clip-path='url(%23by)' data-name='Gruppe 317' transform='translate(282.743 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.159L25.27 10.107 6.841 25.265z' data-name='Rechteck 177'/></g></g><g data-name='Gruppe 320'><g clip-path='url(%23bz)' data-name='Gruppe 319' transform='translate(226.194 226.2)'><path fill='%23faf0e5' d='M-8.318 6.838 10.126-8.324l15.16 18.443L6.843 25.281z' data-name='Rechteck 178'/></g></g><g data-name='Gruppe 322'><g clip-path='url(%23bA)' data-name='Gruppe 321' transform='translate(282.743 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 179'/></g></g><g data-name='Gruppe 324'><g clip-path='url(%23bB)' data-name='Gruppe 323' transform='translate(197.921 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 180'/></g></g><g data-name='Gruppe 326'><g clip-path='url(%23bC)' data-name='Gruppe 325' transform='translate(254.469 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 181'/></g></g><g data-name='Gruppe 328'><g clip-path='url(%23bD)' data-name='Gruppe 327' transform='translate(254.469 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 182'/></g></g><g data-name='Gruppe 330'><g clip-path='url(%23bE)' data-name='Gruppe 329' transform='translate(254.469 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 183'/></g></g><g data-name='Gruppe 332'><g clip-path='url(%23bF)' data-name='Gruppe 331' transform='translate(226.194 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.126-8.323 25.288 10.12 6.843 25.283z' data-name='Rechteck 184'/></g></g><g data-name='Gruppe 334'><g clip-path='url(%23bG)' data-name='Gruppe 333' transform='translate(282.743 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 185'/></g></g><g data-name='Gruppe 336'><g clip-path='url(%23bH)' data-name='Gruppe 335' transform='translate(226.194 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 186'/></g></g><g data-name='Gruppe 338'><g clip-path='url(%23bI)' data-name='Gruppe 337' transform='translate(282.743 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.442-15.16 15.16 18.441-18.442 15.16z' data-name='Rechteck 187'/></g></g><g data-name='Gruppe 340'><g clip-path='url(%23bJ)' data-name='Gruppe 339' transform='translate(197.921 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 188'/></g></g><g data-name='Gruppe 342'><g clip-path='url(%23bK)' data-name='Gruppe 341' transform='translate(197.921 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 189'/></g></g><g data-name='Gruppe 344'><g clip-path='url(%23bL)' data-name='Gruppe 343' transform='translate(254.469 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 190'/></g></g><g data-name='Gruppe 346'><g clip-path='url(%23bM)' data-name='Gruppe 345' transform='translate(254.469 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 191'/></g></g><g data-name='Gruppe 348'><g clip-path='url(%23bN)' data-name='Gruppe 347' transform='translate(226.194 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 192'/></g></g><g data-name='Gruppe 350'><g clip-path='url(%23bO)' data-name='Gruppe 349' transform='translate(282.743 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 193'/></g></g><g data-name='Gruppe 352'><g clip-path='url(%23bP)' data-name='Gruppe 351' transform='translate(226.194 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.114-8.323 25.275 10.11 6.842 25.271z' data-name='Rechteck 194'/></g></g><g data-name='Gruppe 354'><g clip-path='url(%23bQ)' data-name='Gruppe 353' transform='translate(282.743 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 195'/></g></g><g data-name='Gruppe 356'><g clip-path='url(%23bR)' data-name='Gruppe 355' transform='translate(197.921 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 196'/></g></g><g data-name='Gruppe 358'><g clip-path='url(%23bS)' data-name='Gruppe 357' transform='translate(197.921 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 197'/></g></g><g data-name='Gruppe 360'><g clip-path='url(%23bT)' data-name='Gruppe 359' transform='translate(254.469 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 198'/></g></g><g data-name='Gruppe 362'><g clip-path='url(%23bU)' data-name='Gruppe 361' transform='translate(226.194 622.047)'><path fill='%23faf0e5' d='M-8.318 6.838 10.125-8.323l15.16 18.443L6.843 25.28z' data-name='Rechteck 199'/></g></g><g data-name='Gruppe 364'><g clip-path='url(%23bV)' data-name='Gruppe 363' transform='translate(282.743 622.047)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 200'/></g></g><g data-name='Gruppe 366'><g clip-path='url(%23bW)' data-name='Gruppe 365' transform='translate(226.194 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 201'/></g></g><g data-name='Gruppe 368'><g clip-path='url(%23bX)' data-name='Gruppe 367' transform='translate(282.743 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 202'/></g></g><g data-name='Gruppe 370'><g clip-path='url(%23bY)' data-name='Gruppe 369' transform='translate(197.921 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 203'/></g></g><g data-name='Gruppe 372'><g clip-path='url(%23bZ)' data-name='Gruppe 371' transform='translate(197.921 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 204'/></g></g><g data-name='Gruppe 374'><g clip-path='url(%23ca)' data-name='Gruppe 373' transform='translate(197.921 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 205'/></g></g><g data-name='Gruppe 376'><g clip-path='url(%23cb)' data-name='Gruppe 375' transform='translate(226.194)'><path fill='%23faf0e5' d='M-8.322 6.841 10.126-8.324 25.29 10.124 6.842 25.288z' data-name='Rechteck 206'/></g></g><g data-name='Gruppe 378'><g clip-path='url(%23cc)' data-name='Gruppe 377' transform='translate(113.098 56.548)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 207'/></g></g><g data-name='Gruppe 380'><g clip-path='url(%23cd)' data-name='Gruppe 379' transform='translate(169.648 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 208'/></g></g><g data-name='Gruppe 382'><g clip-path='url(%23ce)' data-name='Gruppe 381' transform='translate(84.821 84.829)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 209'/></g></g><g data-name='Gruppe 384'><g clip-path='url(%23cf)' data-name='Gruppe 383' transform='translate(197.921 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 210'/></g></g><g data-name='Gruppe 386'><g clip-path='url(%23cg)' data-name='Gruppe 385' transform='translate(197.921 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 211'/></g></g><g data-name='Gruppe 388'><g clip-path='url(%23ch)' data-name='Gruppe 387' transform='translate(141.373 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 212'/></g></g><g data-name='Gruppe 390'><g clip-path='url(%23ci)' data-name='Gruppe 389' transform='translate(113.098 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 213'/></g></g><g data-name='Gruppe 392'><g clip-path='url(%23cj)' data-name='Gruppe 391' transform='translate(169.648 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 214'/></g></g><g data-name='Gruppe 394'><g clip-path='url(%23ck)' data-name='Gruppe 393' transform='translate(113.098 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 215'/></g></g><g data-name='Gruppe 396'><g clip-path='url(%23cl)' data-name='Gruppe 395' transform='translate(169.648 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 216'/></g></g><g data-name='Gruppe 398'><g clip-path='url(%23cm)' data-name='Gruppe 397' transform='translate(141.373 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 217'/></g></g><g data-name='Gruppe 400'><g clip-path='url(%23cn)' data-name='Gruppe 399' transform='translate(141.373 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 218'/></g></g><g data-name='Gruppe 402'><g clip-path='url(%23co)' data-name='Gruppe 401' transform='translate(197.921 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.111-8.321 25.273 10.11 6.84 25.272z' data-name='Rechteck 219'/></g></g><g data-name='Gruppe 404'><g clip-path='url(%23cp)' data-name='Gruppe 403' transform='translate(141.373 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.125-8.323l15.162 18.445L6.841 25.285z' data-name='Rechteck 220'/></g></g><g data-name='Gruppe 406'><g clip-path='url(%23cq)' data-name='Gruppe 405' transform='translate(113.098 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.158 18.43-18.43 15.158z' data-name='Rechteck 221'/></g></g><g data-name='Gruppe 408'><g clip-path='url(%23cr)' data-name='Gruppe 407' transform='translate(169.648 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 222'/></g></g><g data-name='Gruppe 410'><g clip-path='url(%23cs)' data-name='Gruppe 409' transform='translate(113.098 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 223'/></g></g><g data-name='Gruppe 412'><g clip-path='url(%23ct)' data-name='Gruppe 411' transform='translate(169.648 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 224'/></g></g><g data-name='Gruppe 414'><g clip-path='url(%23cu)' data-name='Gruppe 413' transform='translate(141.373 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 225'/></g></g><g data-name='Gruppe 416'><g clip-path='url(%23cv)' data-name='Gruppe 415' transform='translate(141.373 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 226'/></g></g><g data-name='Gruppe 418'><g clip-path='url(%23cw)' data-name='Gruppe 417' transform='translate(141.373 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 227'/></g></g><g data-name='Gruppe 420'><g clip-path='url(%23cx)' data-name='Gruppe 419' transform='translate(113.098 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 228'/></g></g><g data-name='Gruppe 422'><g clip-path='url(%23cy)' data-name='Gruppe 421' transform='translate(169.648 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 229'/></g></g><g data-name='Gruppe 424'><g clip-path='url(%23cz)' data-name='Gruppe 423' transform='translate(113.098 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 230'/></g></g><g data-name='Gruppe 426'><g clip-path='url(%23cA)' data-name='Gruppe 425' transform='translate(169.648 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 231'/></g></g><g data-name='Gruppe 428'><g clip-path='url(%23cB)' data-name='Gruppe 427' transform='translate(84.825 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 232'/></g></g><g data-name='Gruppe 430'><g clip-path='url(%23cC)' data-name='Gruppe 429' transform='translate(141.373 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 233'/></g></g><g data-name='Gruppe 432'><g clip-path='url(%23cD)' data-name='Gruppe 431' transform='translate(113.098 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 234'/></g></g><g data-name='Gruppe 434'><g clip-path='url(%23cE)' data-name='Gruppe 433' transform='translate(169.648 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 235'/></g></g><g data-name='Gruppe 436'><g clip-path='url(%23cF)' data-name='Gruppe 435' transform='translate(113.098 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 236'/></g></g><g data-name='Gruppe 438'><g clip-path='url(%23cG)' data-name='Gruppe 437' transform='translate(169.648 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 237'/></g></g><g data-name='Gruppe 440'><g clip-path='url(%23cH)' data-name='Gruppe 439' transform='translate(84.825 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 238'/></g></g><g data-name='Gruppe 442'><g clip-path='url(%23cI)' data-name='Gruppe 441' transform='translate(169.648 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 239'/></g></g><g data-name='Gruppe 444'><g clip-path='url(%23cJ)' data-name='Gruppe 443' transform='translate(141.373 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 240'/></g></g><g data-name='Gruppe 446'><g clip-path='url(%23cK)' data-name='Gruppe 445' transform='translate(113.098 565.491)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 241'/></g></g><g data-name='Gruppe 448'><g clip-path='url(%23cL)' data-name='Gruppe 447' transform='translate(84.825 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 242'/></g></g><g data-name='Gruppe 450'><g clip-path='url(%23cM)' data-name='Gruppe 449' transform='translate(84.825 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 243'/></g></g><g data-name='Gruppe 452'><g clip-path='url(%23cN)' data-name='Gruppe 451' transform='translate(28.275 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 244'/></g></g><g data-name='Gruppe 454'><g clip-path='url(%23cO)' data-name='Gruppe 453' transform='translate(84.825 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 245'/></g></g><g data-name='Gruppe 456'><g clip-path='url(%23cP)' data-name='Gruppe 455' transform='translate(56.552 113.098)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 246'/></g></g><g data-name='Gruppe 458'><g clip-path='url(%23cQ)' data-name='Gruppe 457' transform='translate(56.55 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 247'/></g></g><g data-name='Gruppe 460'><g clip-path='url(%23cR)' data-name='Gruppe 459' transform='translate(28.275 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 248'/></g></g><g data-name='Gruppe 462'><g clip-path='url(%23cS)' data-name='Gruppe 461' transform='translate(84.825 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.122-8.321l15.161 18.444L6.84 25.283z' data-name='Rechteck 249'/></g></g><g data-name='Gruppe 464'><g clip-path='url(%23cT)' data-name='Gruppe 463' transform='translate(28.275 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 250'/></g></g><g data-name='Gruppe 466'><g clip-path='url(%23cU)' data-name='Gruppe 465' transform='translate(0 226.196)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.323l15.164 18.446L6.842 25.287z' data-name='Rechteck 251'/></g></g><g data-name='Gruppe 468'><g clip-path='url(%23cV)' data-name='Gruppe 467' transform='translate(0 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 252'/></g></g><g data-name='Gruppe 470'><g clip-path='url(%23cW)' data-name='Gruppe 469' transform='translate(56.55 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 253'/></g></g><g data-name='Gruppe 472'><g clip-path='url(%23cX)' data-name='Gruppe 471' transform='translate(56.55 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 254'/></g></g><g data-name='Gruppe 474'><g clip-path='url(%23cY)' data-name='Gruppe 473' transform='translate(28.275 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 255'/></g></g><g data-name='Gruppe 476'><g clip-path='url(%23cZ)' data-name='Gruppe 475' transform='translate(28.275 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 256'/></g></g><g data-name='Gruppe 478'><g clip-path='url(%23da)' data-name='Gruppe 477' transform='translate(0 395.843)'><path fill='%23faf0e5' d='M-8.323 6.842 10.124-8.322 25.29 10.126 6.842 25.29z' data-name='Rechteck 257'/></g></g><g data-name='Gruppe 480'><g clip-path='url(%23db)' data-name='Gruppe 479' transform='translate(56.55 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 258'/></g></g><g data-name='Gruppe 482'><g clip-path='url(%23dc)' data-name='Gruppe 481' transform='translate(0 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 259'/></g></g><g data-name='Gruppe 484'><g clip-path='url(%23dd)' data-name='Gruppe 483' transform='translate(56.55 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 260'/></g></g><g data-name='Gruppe 486'><g clip-path='url(%23de)' data-name='Gruppe 485' transform='translate(84.825 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 261'/></g></g><g data-name='Gruppe 488'><g clip-path='url(%23df)' data-name='Gruppe 487' transform='translate(56.552 508.943)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 262'/></g></g><g data-name='Gruppe 490'><g clip-path='url(%23dg)' data-name='Gruppe 489' transform='translate(56.55 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 263'/></g></g><g data-name='Gruppe 492'><g clip-path='url(%23dh)' data-name='Gruppe 491' transform='translate(84.825 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 264'/></g></g></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  right: -22rem;
  top: 1.8rem;
  z-index: -1;
}
@media only screen and (max-width: 600px) {
  .section__leistungen .innerwrapper:after {
    width: 19.7rem;
    right: -13.6rem;
    top: 1.3rem;
  }
}
.section__leistungen .innerwrapper .content {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 600px) {
  .section__leistungen .innerwrapper .content {
    font-size: var(--fontSize16);
  }
}
.section__leistungen .innerwrapper .content p {
  max-width: 32em;
  margin-inline: auto;
}
.section__leistungen .innerwrapper .leistungen__wrapper {
  --width: 75.5rem;
  margin-inline: auto;
  width: var(--width);
  margin-top: 3.8rem;
}
@media only screen and (max-width: 600px) {
  .section__leistungen .innerwrapper .leistungen__wrapper {
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
  }
}
.section__leistungen .innerwrapper .leistungen__wrapper .slick-list {
  overflow: visible;
}
.section__leistungen .innerwrapper .leistungen__wrapper .single__teaser {
  padding: 0 2rem;
  display: grid !important;
  grid-template-columns: 100%;
}
@media only screen and (max-width: 600px) {
  .section__leistungen .innerwrapper .leistungen__wrapper .single__teaser {
    padding: 0;
  }
}
.section__leistungen .innerwrapper .leistungen__wrapper .single__teaser .image {
  font-size: 0;
  line-height: 0;
  width: 100%;
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
.section__leistungen .innerwrapper .leistungen__wrapper .single__teaser .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
}
.section__leistungen .innerwrapper .leistungen__wrapper .single__teaser .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 606/409;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__leistungen .innerwrapper .leistungen__wrapper .single__teaser span {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: var(--fontSize19);
  text-transform: uppercase;
  line-height: 1.206;
  letter-spacing: 0.25em;
  margin: 0;
  font-weight: 400;
  color: var(--colorWhite);
  position: relative;
  z-index: 9;
  text-align: center;
  margin-top: auto;
  margin-bottom: 2.7rem;
}
@media only screen and (max-width: 600px) {
  .section__leistungen .innerwrapper .leistungen__wrapper .single__teaser span {
    font-size: var(--fontSize15);
    margin-bottom: 1.5rem;
    max-width: 19em;
    margin-inline: auto;
    line-height: 1.4;
  }
}

.section__content-image-full {
  background-color: var(--colorBeige);
}
.section__content-image-full .innerwrapper {
  display: grid;
  grid-template-columns: 45.6rem 1fr;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper {
    grid-template-columns: 100%;
  }
}
.section__content-image-full .innerwrapper .content {
  padding: 6.7rem 0 6.4rem 0;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .content {
    padding: 3.1rem 0 3.2rem 0;
    text-align: center;
    font-size: var(--fontSize16);
  }
}
.section__content-image-full .innerwrapper .content p:last-child {
  margin-bottom: 0;
}
.section__content-image-full .innerwrapper .content .icons_vorteile {
  display: flex;
  max-width: 36.3rem;
  justify-content: space-between;
  margin-top: 2.2rem;
  color: var(--colorBlue);
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .content .icons_vorteile {
    flex-direction: column;
    max-width: none;
    gap: 2rem 0;
    margin-bottom: 2.3rem;
  }
}
.section__content-image-full .innerwrapper .content .icons_vorteile > span {
  display: inline-flex;
  flex-direction: column;
  font-weight: 700;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .content .icons_vorteile > span {
    font-size: var(--fontSize16);
  }
}
.section__content-image-full .innerwrapper .content .icons_vorteile > span svg {
  width: 100%;
  height: auto;
  margin-inline: auto;
  max-width: 5.3rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .content .icons_vorteile > span svg {
    max-width: 5.1rem;
  }
}
.section__content-image-full .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .image {
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
  }
}
.section__content-image-full .innerwrapper .image img {
  width: calc(100% + var(--sideSpacing) + var(--outerSideSpacing));
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 600px) {
  .section__content-image-full .innerwrapper .image img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 393/282;
  }
}

.section__content-image .innerwrapper {
  display: grid;
  grid-template-columns: 45.6rem 1fr;
  gap: 0 5.5rem;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .section__content-image .innerwrapper {
    grid-template-columns: 100%;
  }
}
.section__content-image .innerwrapper .content {
  padding-top: 1rem;
}
@media only screen and (max-width: 600px) {
  .section__content-image .innerwrapper .content {
    order: 1;
    text-align: center;
    font-size: var(--fontSize16);
  }
  .section__content-image .innerwrapper .content h2 {
    margin-bottom: 0.9em;
  }
}
.section__content-image .innerwrapper .content .cta__button {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 600px) {
  .section__content-image .innerwrapper .content .cta__button {
    margin-top: 0.5rem;
  }
}
.section__content-image .innerwrapper .image {
  font-size: 0;
  line-height: 0;
}
@media only screen and (max-width: 600px) {
  .section__content-image .innerwrapper .image {
    order: 2;
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
    margin-top: 3.7rem;
  }
}
.section__content-image .innerwrapper .image img {
  width: 100%;
  height: auto;
}

.section__two-images .innerwrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .section__two-images .innerwrapper {
    flex-direction: column;
    gap: 2.8rem 0;
  }
}
.section__two-images .innerwrapper .image {
  font-size: 0;
  line-height: 0;
}
.section__two-images .innerwrapper .image img {
  width: 100%;
  height: auto;
}
.section__two-images .innerwrapper .image:first-child {
  margin-left: 6rem;
  width: 33.6rem;
}
@media only screen and (max-width: 600px) {
  .section__two-images .innerwrapper .image:first-child {
    margin-left: auto;
    width: 14rem;
    margin-inline: auto;
    margin-top: 0.6rem;
  }
}
.section__two-images .innerwrapper .image:last-child {
  width: 45.6rem;
  margin-bottom: -2rem;
}
@media only screen and (max-width: 600px) {
  .section__two-images .innerwrapper .image:last-child {
    margin-bottom: 0;
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
  }
}

.section__team {
  margin-bottom: 0;
}
.section__team .innerwrapper .team__wrapper {
  /*
  width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
  margin-inline: calc(var(--sideSpacing) * -1);
  */
  width: calc(100% + var(--sideSpacing) + var(--sideSpacing) + var(--outerSideSpacing) + var(--outerSideSpacing));
  margin-inline: calc((var(--sideSpacing) + var(--outerSideSpacing)) * -1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 600px) {
  .section__team .innerwrapper .team__wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 4.6rem;
  }
  .section__team .innerwrapper .team__wrapper .slick-arrow {
    top: 0.5rem;
  }
  .section__team .innerwrapper .team__wrapper .slick-dots {
    position: absolute;
    bottom: -2.8rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section__team .innerwrapper .team__wrapper .single__team {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1/2;
}
.section__team .innerwrapper .team__wrapper .single__team > span {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
  text-align: center;
  color: var(--colorWhite);
  margin-bottom: 3.4rem;
  gap: 0.3rem 0;
}
@media only screen and (max-width: 600px) {
  .section__team .innerwrapper .team__wrapper .single__team > span {
    font-size: var(--fontSize16);
  }
}
.section__team .innerwrapper .team__wrapper .single__team > span > strong {
  text-transform: uppercase;
  font-size: var(--fontSize19);
  font-weight: 400;
  display: block;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 600px) {
  .section__team .innerwrapper .team__wrapper .single__team > span > strong {
    font-size: var(--fontSize15);
  }
}
.section__team .innerwrapper .team__wrapper .single__team .image {
  font-size: 0;
  line-height: 0;
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
.section__team .innerwrapper .team__wrapper .single__team .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
}
.section__team .innerwrapper .team__wrapper .single__team .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 384/627;
  -o-object-fit: cover;
     object-fit: cover;
}

.section__team-detail {
  margin: 0;
  background-color: var(--colorBeige);
  --contentSize: 34.4rem;
  padding-top: 6.7rem;
  padding-bottom: 6.7rem;
}
@media only screen and (max-width: 600px) {
  .section__team-detail {
    padding-top: 5.7rem;
    padding-bottom: 4.7rem;
  }
  .section__team-detail + .section__team-detail {
    padding-top: 1rem;
  }
}
.section__team-detail .innerwrapper {
  display: grid;
  grid-template-columns: 1fr var(--contentSize);
  gap: 0 5.5rem;
  align-items: start;
  padding-right: 5.6rem;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper {
    grid-template-columns: 100% !important;
    padding-right: 0 !important;
    gap: 1.8rem 0;
  }
}
.section__team-detail .innerwrapper .content {
  font-size: var(--fontSize21);
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content {
    order: 2 !important;
    text-align: center;
    font-size: var(--fontSize16);
  }
}
.section__team-detail .innerwrapper .content ul {
  padding-left: 1.1em;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content ul {
    text-align: left;
  }
}
.section__team-detail .innerwrapper .content h2 {
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content h2 {
    margin-bottom: 0.8em;
  }
}
.section__team-detail .innerwrapper .content .accordion__wrapper {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content .accordion__wrapper {
    margin-top: 1.5rem;
  }
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion {
  border-bottom: 1px solid var(--colorBlue);
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-header {
  display: grid;
  grid-template-columns: 1fr auto;
  color: var(--colorBlue);
  padding: 1.32rem 0;
  padding-right: 0.5rem;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-header {
    padding-right: 0;
    text-align: left;
  }
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-header h3 {
  margin: 0;
  font-size: var(--fontSize19);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-header h3 {
    font-size: var(--fontSize15);
  }
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-header svg {
  width: 1rem;
  height: auto;
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-content {
  display: none;
  color: var(--colorBlue);
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-content {
    text-align: left;
  }
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-content p:first-child {
  margin-top: 0;
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion .accordion-content p:last-child {
  margin-bottom: 0;
}
.section__team-detail .innerwrapper .content .accordion__wrapper .single__accordion.is-active .accordion-header svg {
  transform: rotate(180deg);
}
.section__team-detail .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  width: 33.4rem;
  margin-left: auto;
  margin-right: 6.7rem;
}
@media only screen and (max-width: 600px) {
  .section__team-detail .innerwrapper .image {
    order: 1 !important;
    width: 14.2rem !important;
    margin-inline: auto !important;
  }
}
.section__team-detail .innerwrapper .image img {
  width: 100%;
  height: auto;
}
.section__team-detail.reversed .innerwrapper {
  grid-template-columns: var(--contentSize) 1fr;
  padding-right: 0;
}
.section__team-detail.reversed .innerwrapper .content {
  order: 1;
}
.section__team-detail.reversed .innerwrapper .image {
  order: 2;
}

.section__image-content-with-list {
  --contentSize: 34.4rem;
  position: relative;
}
.section__image-content-with-list .innerwrapper {
  display: grid;
  grid-template-columns: 1fr var(--contentSize);
  gap: 0 5.5rem;
  align-items: center;
  padding-right: 5.6rem;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper {
    grid-template-columns: 100% !important;
    justify-content: center;
    text-align: center;
    padding-top: 0.6rem;
  }
}
.section__image-content-with-list .innerwrapper:after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  width: 35.7rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='639' height='639.004' viewBox='0 0 639 639.004'><defs><clipPath id='a'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 67'/></clipPath><clipPath id='b'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 68'/></clipPath><clipPath id='c'><path fill='%23faf0e5' d='M6.242.336c-.026.006-.049.018-.075.024A8.445 8.445 0 0 0 2.03 3.037c-.122.14-.242.279-.354.428-.159.216-.3.442-.444.674s-.252.442-.366.674c-.1.208-.2.413-.279.631a8.2 8.2 0 0 0-.287.92c-.047.179-.1.354-.138.537a8.508 8.508 0 0 0-.159 1.555v.022a8.479 8.479 0 0 0 8.482 8.484c.136 0 .258-.039.393-.043a8.6 8.6 0 0 0 1.382-.153c.147-.033.281-.094.426-.134a8.12 8.12 0 0 0 1.27-.434c.075-.035.143-.081.218-.118a8.377 8.377 0 0 0 1.321-.792c.02-.014.037-.033.055-.045a8.429 8.429 0 0 0 1.238-1.14l.012-.01A8.408 8.408 0 0 0 6.247.338' data-name='Pfad 69'/></clipPath><clipPath id='d'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 70'/></clipPath><clipPath id='e'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 71'/></clipPath><clipPath id='f'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 72'/></clipPath><clipPath id='g'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 73'/></clipPath><clipPath id='h'><path fill='%23faf0e5' d='M0 8.474A8.484 8.484 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.474' data-name='Pfad 74'/></clipPath><clipPath id='i'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 75'/></clipPath><clipPath id='j'><path fill='%23faf0e5' d='M0 8.484A8.484 8.484 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 76'/></clipPath><clipPath id='k'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 77'/></clipPath><clipPath id='l'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 78'/></clipPath><clipPath id='m'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 79'/></clipPath><clipPath id='n'><path fill='%23faf0e5' d='M0 8.478A8.484 8.484 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.478' data-name='Pfad 80'/></clipPath><clipPath id='o'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 81'/></clipPath><clipPath id='p'><path fill='%23faf0e5' d='M0 8.482A8.484 8.484 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 82'/></clipPath><clipPath id='q'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 83'/></clipPath><clipPath id='r'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 84'/></clipPath><clipPath id='s'><path fill='%23faf0e5' d='M8.396.012a8.306 8.306 0 0 0-1.726.2c-.159.035-.307.1-.464.142a8.378 8.378 0 0 0-1.252.442c-.039.018-.09.026-.128.045-.085.041-.147.106-.226.147a8.424 8.424 0 0 0 2.875 15.876 5.8 5.8 0 0 0 .957.1c.018 0 .035.006.053.006h.02a7.5 7.5 0 0 0 .833-.045c.051-.008.094-.043.145-.055a8.395 8.395 0 0 0 5.646-13.588c-.077-.1-.159-.2-.242-.3A8.418 8.418 0 0 0 13.279 1.5c-.016-.012-.029-.026-.043-.037a8.332 8.332 0 0 0-1.918-.934c-.2-.073-.4-.13-.609-.187a8.345 8.345 0 0 0-2.081-.32c-.041 0-.077-.018-.12-.018s-.071.012-.11.012' data-name='Pfad 85'/></clipPath><clipPath id='t'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 86'/></clipPath><clipPath id='u'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 87'/></clipPath><clipPath id='v'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 88'/></clipPath><clipPath id='w'><path fill='%23faf0e5' d='M3.74 1.45A8.481 8.481 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 89'/></clipPath><clipPath id='x'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 90'/></clipPath><clipPath id='y'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 91'/></clipPath><clipPath id='z'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 92'/></clipPath><clipPath id='A'><path fill='%23faf0e5' d='M-.002 8.476A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.476' data-name='Pfad 93'/></clipPath><clipPath id='B'><path fill='%23faf0e5' d='M0 8.476a8.483 8.483 0 1 0 16.965 0 8.384 8.384 0 0 0-1.254-4.377c-1.637-1.258-3.272-2.518-4.935-3.744A8.375 8.375 0 0 0 8.484.001 8.479 8.479 0 0 0 0 8.477' data-name='Pfad 94'/></clipPath><clipPath id='C'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 95'/></clipPath><clipPath id='D'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 96'/></clipPath><clipPath id='E'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 97'/></clipPath><clipPath id='F'><path fill='%23faf0e5' d='M-.002 8.47A8.483 8.483 0 1 0 8.482-.004 8.481 8.481 0 0 0-.002 8.47' data-name='Pfad 98'/></clipPath><clipPath id='G'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 99'/></clipPath><clipPath id='H'><path fill='%23faf0e5' d='M-.002 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.482' data-name='Pfad 100'/></clipPath><clipPath id='I'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 101'/></clipPath><clipPath id='J'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 102'/></clipPath><clipPath id='K'><path fill='%23faf0e5' d='M3.74 1.448A8.486 8.486 0 1 0 8.482 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 103'/></clipPath><clipPath id='L'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 104'/></clipPath><clipPath id='M'><path fill='%23faf0e5' d='M-.002 8.474A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.474' data-name='Pfad 105'/></clipPath><clipPath id='N'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 106'/></clipPath><clipPath id='O'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0-.002 8.484' data-name='Pfad 107'/></clipPath><clipPath id='P'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 108'/></clipPath><clipPath id='Q'><path fill='%23faf0e5' d='M3.738 1.45A8.479 8.479 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 109'/></clipPath><clipPath id='R'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484.002 8.487 8.487 0 0 0 0 8.484' data-name='Pfad 110'/></clipPath><clipPath id='S'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484-.002 8.484 8.484 0 0 0 0 8.482' data-name='Pfad 111'/></clipPath><clipPath id='T'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 112'/></clipPath><clipPath id='U'><path fill='%23faf0e5' d='M-.002 8.478A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0-.002 8.478' data-name='Pfad 113'/></clipPath><clipPath id='V'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 114'/></clipPath><clipPath id='W'><path fill='%23faf0e5' d='M-.002 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.482' data-name='Pfad 115'/></clipPath><clipPath id='X'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 116'/></clipPath><clipPath id='Y'><path fill='%23faf0e5' d='M3.738 1.45A8.476 8.476 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 117'/></clipPath><clipPath id='Z'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 118'/></clipPath><clipPath id='aa'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 119'/></clipPath><clipPath id='ab'><path fill='%23faf0e5' d='M-.002 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.476' data-name='Pfad 120'/></clipPath><clipPath id='ac'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 121'/></clipPath><clipPath id='ad'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.484' data-name='Pfad 122'/></clipPath><clipPath id='ae'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 123'/></clipPath><clipPath id='af'><path fill='%23faf0e5' d='M3.738 1.45A8.479 8.479 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 124'/></clipPath><clipPath id='ag'><path fill='%23faf0e5' d='M3.738 1.45A8.476 8.476 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 125'/></clipPath><clipPath id='ah'><path fill='%23faf0e5' d='M0 8.484a8.454 8.454 0 0 0 .336 2.235c.051.179.1.348.165.521a8.335 8.335 0 0 0 .918 1.926l.016.031a8.455 8.455 0 0 0 1.452 1.608c.128.114.254.218.389.322a8.58 8.58 0 0 0 1.792 1.1c.02.008.035.024.055.035a8.441 8.441 0 0 0 11.755-6.908l.012-.124c.022-.248.075-.489.075-.743A8.483 8.483 0 1 0 0 8.487' data-name='Pfad 126'/></clipPath><clipPath id='ai'><path fill='%23faf0e5' d='M-.002 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0-.002 8.484' data-name='Pfad 127'/></clipPath><clipPath id='aj'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 128'/></clipPath><clipPath id='ak'><path fill='%23faf0e5' d='M3.738 1.454A8.479 8.479 0 1 0 8.482.004a8.47 8.47 0 0 0-4.744 1.45' data-name='Pfad 129'/></clipPath><clipPath id='al'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 130'/></clipPath><clipPath id='am'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 131'/></clipPath><clipPath id='an'><path fill='%23faf0e5' d='M3.738 1.448A8.486 8.486 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 132'/></clipPath><clipPath id='ao'><path fill='%23faf0e5' d='M8.484-.001a8.434 8.434 0 0 0-7.407 4.365c-.012.02-.031.037-.043.059a8.382 8.382 0 0 0-.57 1.443c-.057.167-.151.318-.2.493-.037.143-.026.3-.057.444a8.318 8.318 0 0 0-.212 1.682 8.557 8.557 0 0 0 .246 1.95c.045.185.11.356.167.535a8.665 8.665 0 0 0 .495 1.26c.1.191.2.375.3.556a8.583 8.583 0 0 0 .757 1.069c.124.149.236.3.368.444a8.372 8.372 0 0 0 1.356 1.175c.016.012.031.031.047.041s.026.01.039.018a8.348 8.348 0 0 0 1.91.918c.185.065.371.122.566.175a8.466 8.466 0 0 0 2.156.328c.026 0 .047.01.073.01a8.447 8.447 0 0 0 5.994-2.484 8.548 8.548 0 0 0 1.236-1.627 8.376 8.376 0 0 0 1.25-4.369c0-.016-.006-.031-.006-.047a8.362 8.362 0 0 0-.261-1.971c-.018-.067-.043-.128-.061-.2A8.386 8.386 0 0 0 8.484-.001Z' data-name='Pfad 133'/></clipPath><clipPath id='ap'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 134'/></clipPath><clipPath id='aq'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 135'/></clipPath><clipPath id='ar'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 136'/></clipPath><clipPath id='as'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482-.003 8.48 8.48 0 0 0 0 8.479' data-name='Pfad 137'/></clipPath><clipPath id='at'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.482 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 138'/></clipPath><clipPath id='au'><path fill='%23faf0e5' d='M3.738 1.448A8.483 8.483 0 1 0 8.484 0 8.475 8.475 0 0 0 3.74 1.448' data-name='Pfad 139'/></clipPath><clipPath id='av'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 140'/></clipPath><clipPath id='aw'><path fill='%23faf0e5' d='M0 8.47A8.482 8.482 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 141'/></clipPath><clipPath id='ax'><path fill='%23faf0e5' d='M0 8.47A8.482 8.482 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 142'/></clipPath><clipPath id='ay'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 143'/></clipPath><clipPath id='az'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 144'/></clipPath><clipPath id='aA'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 145'/></clipPath><clipPath id='aB'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 146'/></clipPath><clipPath id='aC'><path fill='%23faf0e5' d='M3.738 1.448A8.486 8.486 0 1 0 8.482 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 147'/></clipPath><clipPath id='aD'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 148'/></clipPath><clipPath id='aE'><path fill='%23faf0e5' d='M0 8.474A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 149'/></clipPath><clipPath id='aF'><path fill='%23faf0e5' d='M0 8.474A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 150'/></clipPath><clipPath id='aG'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 151'/></clipPath><clipPath id='aH'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 152'/></clipPath><clipPath id='aI'><path fill='%23faf0e5' d='M3.735 1.45A8.479 8.479 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 153'/></clipPath><clipPath id='aJ'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482.002 8.486 8.486 0 0 0 0 8.484' data-name='Pfad 154'/></clipPath><clipPath id='aK'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482-.002 8.483 8.483 0 0 0 0 8.482' data-name='Pfad 155'/></clipPath><clipPath id='aL'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 156'/></clipPath><clipPath id='aM'><path fill='%23faf0e5' d='M0 8.478A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 157'/></clipPath><clipPath id='aN'><path fill='%23faf0e5' d='M0 8.478A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 158'/></clipPath><clipPath id='aO'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 159'/></clipPath><clipPath id='aP'><path fill='%23faf0e5' d='M0 8.482A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 160'/></clipPath><clipPath id='aQ'><path fill='%23faf0e5' d='M3.735 1.45A8.476 8.476 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 161'/></clipPath><clipPath id='aR'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 162'/></clipPath><clipPath id='aS'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 163'/></clipPath><clipPath id='aT'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 164'/></clipPath><clipPath id='aU'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 165'/></clipPath><clipPath id='aV'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 166'/></clipPath><clipPath id='aW'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 167'/></clipPath><clipPath id='aX'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 168'/></clipPath><clipPath id='aY'><path fill='%23faf0e5' d='M3.735 1.45A8.479 8.479 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 169'/></clipPath><clipPath id='aZ'><path fill='%23faf0e5' d='M3.735 1.45A8.476 8.476 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.45' data-name='Pfad 170'/></clipPath><clipPath id='ba'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 171'/></clipPath><clipPath id='bb'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 172'/></clipPath><clipPath id='bc'><path fill='%23faf0e5' d='M0 8.476A8.482 8.482 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 173'/></clipPath><clipPath id='bd'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 174'/></clipPath><clipPath id='be'><path fill='%23faf0e5' d='M0 8.484A8.482 8.482 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 175'/></clipPath><clipPath id='bf'><path fill='%23faf0e5' d='M3.735 1.454A8.479 8.479 0 1 0 8.479.004a8.47 8.47 0 0 0-4.744 1.45' data-name='Pfad 176'/></clipPath><clipPath id='bg'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.476 8.476 0 0 0-4.744 1.448' data-name='Pfad 177'/></clipPath><clipPath id='bh'><path fill='%23faf0e5' d='M3.735 1.448A8.486 8.486 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 178'/></clipPath><clipPath id='bi'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 179'/></clipPath><clipPath id='bj'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.476' data-name='Pfad 180'/></clipPath><clipPath id='bk'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.482 8.482 0 0 0 0 8.476' data-name='Pfad 181'/></clipPath><clipPath id='bl'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.003 8.48 8.48 0 0 0 0 8.479' data-name='Pfad 182'/></clipPath><clipPath id='bm'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 183'/></clipPath><clipPath id='bn'><path fill='%23faf0e5' d='M3.735 1.448A8.483 8.483 0 1 0 8.479 0a8.475 8.475 0 0 0-4.744 1.448' data-name='Pfad 184'/></clipPath><clipPath id='bo'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 185'/></clipPath><clipPath id='bp'><path fill='%23faf0e5' d='M-.001 8.47A8.484 8.484 0 1 0 8.483-.004 8.481 8.481 0 0 0-.001 8.47' data-name='Pfad 186'/></clipPath><clipPath id='bq'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.48 8.48 0 0 0 0 8.47' data-name='Pfad 187'/></clipPath><clipPath id='br'><path fill='%23faf0e5' d='M-.001 8.482A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.482' data-name='Pfad 188'/></clipPath><clipPath id='bs'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 189'/></clipPath><clipPath id='bt'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 190'/></clipPath><clipPath id='bu'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 191'/></clipPath><clipPath id='bv'><path fill='%23faf0e5' d='M3.735 1.448A8.486 8.486 0 1 0 8.479 0a8.473 8.473 0 0 0-4.744 1.448' data-name='Pfad 192'/></clipPath><clipPath id='bw'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.482' data-name='Pfad 193'/></clipPath><clipPath id='bx'><path fill='%23faf0e5' d='M-.001 8.474A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.474' data-name='Pfad 194'/></clipPath><clipPath id='by'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 195'/></clipPath><clipPath id='bz'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.479 8.479 0 0 0-.001 8.484' data-name='Pfad 196'/></clipPath><clipPath id='bA'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 197'/></clipPath><clipPath id='bB'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 198'/></clipPath><clipPath id='bC'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.486 8.486 0 0 0 0 8.484' data-name='Pfad 199'/></clipPath><clipPath id='bD'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.483 8.483 0 0 0 0 8.482' data-name='Pfad 200'/></clipPath><clipPath id='bE'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 201'/></clipPath><clipPath id='bF'><path fill='%23faf0e5' d='M-.001 8.478A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.478' data-name='Pfad 202'/></clipPath><clipPath id='bG'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.478' data-name='Pfad 203'/></clipPath><clipPath id='bH'><path fill='%23faf0e5' d='M-.001 8.482A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.482' data-name='Pfad 204'/></clipPath><clipPath id='bI'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 205'/></clipPath><clipPath id='bJ'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 206'/></clipPath><clipPath id='bK'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 207'/></clipPath><clipPath id='bL'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 208'/></clipPath><clipPath id='bM'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 209'/></clipPath><clipPath id='bN'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.476' data-name='Pfad 210'/></clipPath><clipPath id='bO'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 211'/></clipPath><clipPath id='bP'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.484' data-name='Pfad 212'/></clipPath><clipPath id='bQ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 213'/></clipPath><clipPath id='bR'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 214'/></clipPath><clipPath id='bS'><path fill='%23faf0e5' d='M3.74 1.45A8.48 8.48 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.45' data-name='Pfad 215'/></clipPath><clipPath id='bT'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.484' data-name='Pfad 216'/></clipPath><clipPath id='bU'><path fill='%23faf0e5' d='M-.001 8.476A8.484 8.484 0 1 0 8.483 0 8.482 8.482 0 0 0-.001 8.476' data-name='Pfad 217'/></clipPath><clipPath id='bV'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.476' data-name='Pfad 218'/></clipPath><clipPath id='bW'><path fill='%23faf0e5' d='M-.001 8.484A8.484 8.484 0 1 0 8.483 0 8.48 8.48 0 0 0-.001 8.484' data-name='Pfad 219'/></clipPath><clipPath id='bX'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 220'/></clipPath><clipPath id='bY'><path fill='%23faf0e5' d='M3.74 1.454A8.48 8.48 0 1 0 8.484.004a8.472 8.472 0 0 0-4.744 1.45' data-name='Pfad 221'/></clipPath><clipPath id='bZ'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.478 8.478 0 0 0 3.74 1.448' data-name='Pfad 222'/></clipPath><clipPath id='ca'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 223'/></clipPath><clipPath id='cb'><path fill='%23faf0e5' d='M8.484-.001A8.36 8.36 0 0 0 .139 7.408l-.029.006A8.088 8.088 0 0 0 0 8.485a8.445 8.445 0 0 0 .248 1.95c.045.185.11.356.167.535a8.438 8.438 0 0 0 .495 1.26c.1.191.193.375.3.556a8.427 8.427 0 0 0 .761 1.071c.122.147.232.3.364.442a8.714 8.714 0 0 0 1.366 1.185c.016.008.024.022.039.031a.242.242 0 0 0 .033.016 8.353 8.353 0 0 0 1.916.92c.187.065.373.122.564.175a8.482 8.482 0 0 0 2.158.328c.026 0 .049.01.071.01a8.627 8.627 0 0 0 1.635-.169c.13-.024.252-.071.381-.1a8.369 8.369 0 0 0 1.13-.352c.163-.065.318-.147.474-.222a8.185 8.185 0 0 0 .9-.489c.163-.1.316-.214.47-.326a8.011 8.011 0 0 0 .747-.617 9.24 9.24 0 0 0 .426-.413 8.767 8.767 0 0 0 .607-.737c.12-.159.244-.311.352-.48a8.2 8.2 0 0 0 .478-.884c.079-.165.173-.318.244-.491a8.318 8.318 0 0 0 .405-1.307 8.381 8.381 0 0 0 .232-1.891A8.033 8.033 0 0 0 16.8 6.91c-.006-.045 0-.094-.012-.138a8.656 8.656 0 0 0-.332-1.114c-.006-.014-.006-.031-.012-.047a8.476 8.476 0 0 0-7.96-5.612Z' data-name='Pfad 224'/></clipPath><clipPath id='cc'><path fill='%23faf0e5' d='M0 8.482a8.4 8.4 0 0 0 1.883 5.271c.081.1.163.206.248.305a8.446 8.446 0 0 0 3.634 2.425c.149.051.3.1.45.14a8.366 8.366 0 0 0 10.75-8.142v-.01a8.318 8.318 0 0 0-.228-1.881c-.035-.149-.094-.287-.134-.434a8.572 8.572 0 0 0-.511-1.36c-.057-.114-.12-.22-.181-.33a8.619 8.619 0 0 0-.888-1.327c-.041-.047-.077-.094-.118-.14a8.449 8.449 0 0 0-14.9 5.485' data-name='Pfad 225'/></clipPath><clipPath id='cd'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.476' data-name='Pfad 226'/></clipPath><clipPath id='ce'><path fill='%23faf0e5' d='M0 8.482a8.441 8.441 0 0 0 2.538 6.04 8.156 8.156 0 0 0 1.2.992c.01.008.022.01.035.018a8.54 8.54 0 0 0 1.908.916c.189.067.379.126.576.179a8.325 8.325 0 0 0 2.113.32c.039 0 .071.016.11.016a8.471 8.471 0 0 0 7.712-5c.029-.063.073-.12.1-.185l.008-.024a8.43 8.43 0 0 0 .66-3.274 8.572 8.572 0 0 0-.161-1.6c-.033-.169-.088-.326-.13-.491a8.285 8.285 0 0 0-.311-1c-.075-.191-.167-.373-.254-.558a8.373 8.373 0 0 0-.428-.788 7.04 7.04 0 0 0-.387-.57 7.135 7.135 0 0 0-.5-.607 7.479 7.479 0 0 0-.523-.556c-.161-.151-.336-.283-.507-.417a8.707 8.707 0 0 0-.7-.529c-.061-.039-.128-.067-.189-.1a8.419 8.419 0 0 0-2.089-.9c-.106-.031-.208-.079-.316-.106v.006A8.4 8.4 0 0 0-.004 8.487' data-name='Pfad 227'/></clipPath><clipPath id='cf'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.477 8.477 0 0 0 3.74 1.448' data-name='Pfad 228'/></clipPath><clipPath id='cg'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.486 0a8.477 8.477 0 0 0-4.744 1.448' data-name='Pfad 229'/></clipPath><clipPath id='ch'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 230'/></clipPath><clipPath id='ci'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 231'/></clipPath><clipPath id='cj'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.482-.004 8.479 8.479 0 0 0 0 8.47' data-name='Pfad 232'/></clipPath><clipPath id='ck'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 233'/></clipPath><clipPath id='cl'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 234'/></clipPath><clipPath id='cm'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 235'/></clipPath><clipPath id='cn'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 236'/></clipPath><clipPath id='co'><path fill='%23faf0e5' d='M3.74 1.448A8.483 8.483 0 1 0 8.484 0 8.474 8.474 0 0 0 3.74 1.448' data-name='Pfad 237'/></clipPath><clipPath id='cp'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 238'/></clipPath><clipPath id='cq'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 239'/></clipPath><clipPath id='cr'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.474' data-name='Pfad 240'/></clipPath><clipPath id='cs'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 241'/></clipPath><clipPath id='ct'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.477 8.477 0 0 0 0 8.484' data-name='Pfad 242'/></clipPath><clipPath id='cu'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482.002 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 243'/></clipPath><clipPath id='cv'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482-.002 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 244'/></clipPath><clipPath id='cw'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 245'/></clipPath><clipPath id='cx'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 246'/></clipPath><clipPath id='cy'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.478' data-name='Pfad 247'/></clipPath><clipPath id='cz'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 248'/></clipPath><clipPath id='cA'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.482' data-name='Pfad 249'/></clipPath><clipPath id='cB'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.473 8.473 0 0 0-4.742 1.448' data-name='Pfad 250'/></clipPath><clipPath id='cC'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 251'/></clipPath><clipPath id='cD'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 252'/></clipPath><clipPath id='cE'><path fill='%23faf0e5' d='M0 8.476A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.476' data-name='Pfad 253'/></clipPath><clipPath id='cF'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 254'/></clipPath><clipPath id='cG'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 255'/></clipPath><clipPath id='cH'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 256'/></clipPath><clipPath id='cI'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.478 8.478 0 0 0 0 8.484' data-name='Pfad 257'/></clipPath><clipPath id='cJ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.482 0 8.483 8.483 0 0 0 0 8.484' data-name='Pfad 258'/></clipPath><clipPath id='cK'><path fill='%23faf0e5' d='M0 8.484v.006a7.485 7.485 0 0 0 .132 1.327 8.635 8.635 0 0 0 .228.983v.014A8.424 8.424 0 0 0 16 12.323a8.349 8.349 0 0 0 .961-3.836v-.006a8.483 8.483 0 1 0-16.965 0' data-name='Pfad 259'/></clipPath><clipPath id='cL'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 260'/></clipPath><clipPath id='cM'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.472 8.472 0 0 0-4.742 1.448' data-name='Pfad 261'/></clipPath><clipPath id='cN'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484.002 8.487 8.487 0 0 0 0 8.484' data-name='Pfad 262'/></clipPath><clipPath id='cO'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.472 8.472 0 0 0-4.742 1.448' data-name='Pfad 263'/></clipPath><clipPath id='cP'><path fill='%23faf0e5' d='M3.74 1.448a8.409 8.409 0 0 0-.654 13.5c.1.083.187.171.289.25.126.1.23.224.364.316.173.116.387.169.57.275a8.826 8.826 0 0 0 1.144.55 8.464 8.464 0 0 0 .808.289 8.28 8.28 0 0 0 2.111.318c.039 0 .069.016.108.016a8.582 8.582 0 0 0 8.482-8.48l-.006-.033a8.46 8.46 0 0 0-.316-2.156 7.869 7.869 0 0 0-.157-.5 8.45 8.45 0 0 0-.867-1.857l-.022-.047a8.555 8.555 0 0 0-1.5-1.718l-.114-.092a8.395 8.395 0 0 0-10.24-.631' data-name='Pfad 264'/></clipPath><clipPath id='cQ'><path fill='%23faf0e5' d='M0 8.47A8.483 8.483 0 1 0 8.484 0 8.481 8.481 0 0 0 0 8.47' data-name='Pfad 265'/></clipPath><clipPath id='cR'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.485 8.485 0 0 0 0 8.484' data-name='Pfad 266'/></clipPath><clipPath id='cS'><path fill='%23faf0e5' d='M3.736 1.448A8.482 8.482 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.448' data-name='Pfad 267'/></clipPath><clipPath id='cT'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.482' data-name='Pfad 268'/></clipPath><clipPath id='cU'><path fill='%23faf0e5' d='M0 8.484a8.452 8.452 0 0 0 6.108 8.1c.077.024.153.051.234.073a8.346 8.346 0 0 0 2.142.305 8.629 8.629 0 0 0 8.482-8.478c0-.165-.039-.32-.049-.485a8.753 8.753 0 0 0-.122-1.209 8.3 8.3 0 0 0-.383-1.244c-.041-.108-.059-.226-.1-.334A8.482 8.482 0 0 0 0 8.484' data-name='Pfad 269'/></clipPath><clipPath id='cV'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.482 0 8.481 8.481 0 0 0 0 8.474' data-name='Pfad 270'/></clipPath><clipPath id='cW'><path fill='%23faf0e5' d='M0 8.474A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.474' data-name='Pfad 271'/></clipPath><clipPath id='cX'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.479 8.479 0 0 0 0 8.484' data-name='Pfad 272'/></clipPath><clipPath id='cY'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484-.002 8.484 8.484 0 0 0 0 8.482' data-name='Pfad 273'/></clipPath><clipPath id='cZ'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.484' data-name='Pfad 274'/></clipPath><clipPath id='da'><path fill='%23faf0e5' d='M7.971.053a8.087 8.087 0 0 0-1.053.106 8.546 8.546 0 0 0-1.122.318c-.1.035-.206.055-.305.094a8.4 8.4 0 0 0-1.268.619A8.468 8.468 0 1 0 16.97 8.483 8.528 8.528 0 0 0 8.488.001c-.175 0-.338.043-.513.053' data-name='Pfad 275'/></clipPath><clipPath id='db'><path fill='%23faf0e5' d='M0 8.478A8.483 8.483 0 1 0 8.484 0 8.482 8.482 0 0 0 0 8.478' data-name='Pfad 276'/></clipPath><clipPath id='dc'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.482 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 277'/></clipPath><clipPath id='dd'><path fill='%23faf0e5' d='M0 8.482A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.482' data-name='Pfad 278'/></clipPath><clipPath id='de'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 279'/></clipPath><clipPath id='df'><path fill='%23faf0e5' d='M8.423.01a8.41 8.41 0 0 0-2.209.332c-.132.037-.263.063-.393.106a8.451 8.451 0 0 0-1.873.9c-.063.041-.147.057-.208.1-.088.059-.153.141-.236.2a8.561 8.561 0 0 0-1.049.906c-.1.1-.212.189-.307.3a8.543 8.543 0 0 0-.971 1.37c-.11.185-.2.379-.3.572a8.312 8.312 0 0 0-.458 1.171c-.059.187-.132.366-.179.564-.008.037-.024.071-.035.108l.018.022a8.319 8.319 0 0 0 7.714 10.224l.02.024c.151.01.3.037.448.045.024 0 .047.01.071.01a8.482 8.482 0 0 0 8.482-8.486 8.573 8.573 0 0 0-8.482-8.48c-.02 0-.039.01-.059.01' data-name='Pfad 280'/></clipPath><clipPath id='dg'><path fill='%23faf0e5' d='M0 8.484A8.483 8.483 0 1 0 8.484 0 8.48 8.48 0 0 0 0 8.484' data-name='Pfad 281'/></clipPath><clipPath id='dh'><path fill='%23faf0e5' d='M3.736 1.45A8.48 8.48 0 1 0 8.478 0a8.469 8.469 0 0 0-4.742 1.45' data-name='Pfad 282'/></clipPath></defs><g data-name='Gruppe 495'><g data-name='Gruppe 62'><g clip-path='url(%23a)' data-name='Gruppe 61' transform='translate(593.76 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 49'/></g></g><g data-name='Gruppe 64'><g clip-path='url(%23b)' data-name='Gruppe 63' transform='translate(565.485 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 50'/></g></g><g data-name='Gruppe 66'><g clip-path='url(%23c)' data-name='Gruppe 65' transform='translate(593.76 141.377)'><path fill='%23faf0e5' d='M-8.32 6.84 10.112-8.321 25.274 10.11 6.84 25.272z' data-name='Rechteck 51'/></g></g><g data-name='Gruppe 68'><g clip-path='url(%23d)' data-name='Gruppe 67' transform='translate(565.485 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 52'/></g></g><g data-name='Gruppe 70'><g clip-path='url(%23e)' data-name='Gruppe 69' transform='translate(593.76 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 53'/></g></g><g data-name='Gruppe 72'><g clip-path='url(%23f)' data-name='Gruppe 71' transform='translate(593.76 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.125-8.323l15.162 18.445L6.841 25.285z' data-name='Rechteck 54'/></g></g><g data-name='Gruppe 74'><g clip-path='url(%23g)' data-name='Gruppe 73' transform='translate(565.485 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 55'/></g></g><g data-name='Gruppe 76'><g clip-path='url(%23h)' data-name='Gruppe 75' transform='translate(622.033 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 56'/></g></g><g data-name='Gruppe 78'><g clip-path='url(%23i)' data-name='Gruppe 77' transform='translate(565.485 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 57'/></g></g><g data-name='Gruppe 80'><g clip-path='url(%23j)' data-name='Gruppe 79' transform='translate(622.033 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 58'/></g></g><g data-name='Gruppe 82'><g clip-path='url(%23k)' data-name='Gruppe 81' transform='translate(537.212 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 59'/></g></g><g data-name='Gruppe 84'><g clip-path='url(%23l)' data-name='Gruppe 83' transform='translate(593.76 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 60'/></g></g><g data-name='Gruppe 86'><g clip-path='url(%23m)' data-name='Gruppe 85' transform='translate(565.485 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 61'/></g></g><g data-name='Gruppe 88'><g clip-path='url(%23n)' data-name='Gruppe 87' transform='translate(622.033 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.126-8.323 25.288 10.12 6.843 25.283z' data-name='Rechteck 62'/></g></g><g data-name='Gruppe 90'><g clip-path='url(%23o)' data-name='Gruppe 89' transform='translate(565.485 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 63'/></g></g><g data-name='Gruppe 92'><g clip-path='url(%23p)' data-name='Gruppe 91' transform='translate(622.033 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 64'/></g></g><g data-name='Gruppe 94'><g clip-path='url(%23q)' data-name='Gruppe 93' transform='translate(537.212 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 65'/></g></g><g data-name='Gruppe 96'><g clip-path='url(%23r)' data-name='Gruppe 95' transform='translate(537.212 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.433L6.84 25.274z' data-name='Rechteck 66'/></g></g><g data-name='Gruppe 98'><g clip-path='url(%23s)' data-name='Gruppe 97' transform='translate(593.735 480.668)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.842 25.274z' data-name='Rechteck 67'/></g></g><g data-name='Gruppe 100'><g clip-path='url(%23t)' data-name='Gruppe 99' transform='translate(565.485 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 68'/></g></g><g data-name='Gruppe 102'><g clip-path='url(%23u)' data-name='Gruppe 101' transform='translate(565.485 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 69'/></g></g><g data-name='Gruppe 104'><g clip-path='url(%23v)' data-name='Gruppe 103' transform='translate(537.212 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 70'/></g></g><g data-name='Gruppe 106'><g clip-path='url(%23w)' data-name='Gruppe 105' transform='translate(537.212 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.122-8.321l15.162 18.445L6.84 25.285z' data-name='Rechteck 71'/></g></g><g data-name='Gruppe 108'><g clip-path='url(%23x)' data-name='Gruppe 107' transform='translate(593.76 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 72'/></g></g><g data-name='Gruppe 110'><g clip-path='url(%23y)' data-name='Gruppe 109' transform='translate(537.212 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 73'/></g></g><g data-name='Gruppe 112'><g clip-path='url(%23z)' data-name='Gruppe 111' transform='translate(480.662 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 74'/></g></g><g data-name='Gruppe 114'><g clip-path='url(%23A)' data-name='Gruppe 113' transform='translate(452.387 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 75'/></g></g><g data-name='Gruppe 116'><g clip-path='url(%23B)' data-name='Gruppe 115' transform='translate(508.937 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 76'/></g></g><g data-name='Gruppe 118'><g clip-path='url(%23C)' data-name='Gruppe 117' transform='translate(537.212 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 77'/></g></g><g data-name='Gruppe 120'><g clip-path='url(%23D)' data-name='Gruppe 119' transform='translate(537.212 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 78'/></g></g><g data-name='Gruppe 122'><g clip-path='url(%23E)' data-name='Gruppe 121' transform='translate(480.662 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 79'/></g></g><g data-name='Gruppe 124'><g clip-path='url(%23F)' data-name='Gruppe 123' transform='translate(452.387 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 80'/></g></g><g data-name='Gruppe 126'><g clip-path='url(%23G)' data-name='Gruppe 125' transform='translate(508.937 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 81'/></g></g><g data-name='Gruppe 128'><g clip-path='url(%23H)' data-name='Gruppe 127' transform='translate(452.387 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 82'/></g></g><g data-name='Gruppe 130'><g clip-path='url(%23I)' data-name='Gruppe 129' transform='translate(508.937 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 83'/></g></g><g data-name='Gruppe 132'><g clip-path='url(%23J)' data-name='Gruppe 131' transform='translate(480.662 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 84'/></g></g><g data-name='Gruppe 134'><g clip-path='url(%23K)' data-name='Gruppe 133' transform='translate(537.212 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.122-8.321l15.161 18.444L6.84 25.283z' data-name='Rechteck 85'/></g></g><g data-name='Gruppe 136'><g clip-path='url(%23L)' data-name='Gruppe 135' transform='translate(480.662 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 86'/></g></g><g data-name='Gruppe 138'><g clip-path='url(%23M)' data-name='Gruppe 137' transform='translate(452.387 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 87'/></g></g><g data-name='Gruppe 140'><g clip-path='url(%23N)' data-name='Gruppe 139' transform='translate(508.937 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.158 18.43-18.43 15.158z' data-name='Rechteck 88'/></g></g><g data-name='Gruppe 142'><g clip-path='url(%23O)' data-name='Gruppe 141' transform='translate(452.387 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 89'/></g></g><g data-name='Gruppe 144'><g clip-path='url(%23P)' data-name='Gruppe 143' transform='translate(508.937 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 90'/></g></g><g data-name='Gruppe 146'><g clip-path='url(%23Q)' data-name='Gruppe 145' transform='translate(424.116 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.109-8.319l15.163 18.434L6.839 25.277z' data-name='Rechteck 91'/></g></g><g data-name='Gruppe 148'><g clip-path='url(%23R)' data-name='Gruppe 147' transform='translate(480.662 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 92'/></g></g><g data-name='Gruppe 150'><g clip-path='url(%23S)' data-name='Gruppe 149' transform='translate(480.662 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 93'/></g></g><g data-name='Gruppe 152'><g clip-path='url(%23T)' data-name='Gruppe 151' transform='translate(480.662 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 94'/></g></g><g data-name='Gruppe 154'><g clip-path='url(%23U)' data-name='Gruppe 153' transform='translate(452.387 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 95'/></g></g><g data-name='Gruppe 156'><g clip-path='url(%23V)' data-name='Gruppe 155' transform='translate(508.937 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 96'/></g></g><g data-name='Gruppe 158'><g clip-path='url(%23W)' data-name='Gruppe 157' transform='translate(452.387 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 97'/></g></g><g data-name='Gruppe 160'><g clip-path='url(%23X)' data-name='Gruppe 159' transform='translate(508.937 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.442-15.16 15.16 18.441-18.442 15.16z' data-name='Rechteck 98'/></g></g><g data-name='Gruppe 162'><g clip-path='url(%23Y)' data-name='Gruppe 161' transform='translate(424.116 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.109-8.319l15.163 18.434L6.839 25.277z' data-name='Rechteck 99'/></g></g><g data-name='Gruppe 164'><g clip-path='url(%23Z)' data-name='Gruppe 163' transform='translate(424.116 367.57)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 100'/></g></g><g data-name='Gruppe 166'><g clip-path='url(%23aa)' data-name='Gruppe 165' transform='translate(480.662 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 101'/></g></g><g data-name='Gruppe 168'><g clip-path='url(%23ab)' data-name='Gruppe 167' transform='translate(452.387 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 102'/></g></g><g data-name='Gruppe 170'><g clip-path='url(%23ac)' data-name='Gruppe 169' transform='translate(508.937 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 103'/></g></g><g data-name='Gruppe 172'><g clip-path='url(%23ad)' data-name='Gruppe 171' transform='translate(452.387 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 104'/></g></g><g data-name='Gruppe 174'><g clip-path='url(%23ae)' data-name='Gruppe 173' transform='translate(508.937 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 105'/></g></g><g data-name='Gruppe 176'><g clip-path='url(%23af)' data-name='Gruppe 175' transform='translate(424.116 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 106'/></g></g><g data-name='Gruppe 178'><g clip-path='url(%23ag)' data-name='Gruppe 177' transform='translate(424.116 480.668)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 107'/></g></g><g data-name='Gruppe 180'><g clip-path='url(%23ah)' data-name='Gruppe 179' transform='translate(480.662 593.768)'><path fill='%23faf0e5' d='M-8.32 6.84 10.124-8.322l15.162 18.445L6.842 25.284z' data-name='Rechteck 108'/></g></g><g data-name='Gruppe 182'><g clip-path='url(%23ai)' data-name='Gruppe 181' transform='translate(452.387 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 109'/></g></g><g data-name='Gruppe 184'><g clip-path='url(%23aj)' data-name='Gruppe 183' transform='translate(508.937 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 110'/></g></g><g data-name='Gruppe 186'><g clip-path='url(%23ak)' data-name='Gruppe 185' transform='translate(424.116 593.768)'><path fill='%23faf0e5' d='m-8.322 6.841 18.43-15.16L25.27 10.113 6.84 25.273z' data-name='Rechteck 111'/></g></g><g data-name='Gruppe 188'><g clip-path='url(%23al)' data-name='Gruppe 187' transform='translate(480.662 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 112'/></g></g><g data-name='Gruppe 190'><g clip-path='url(%23am)' data-name='Gruppe 189' transform='translate(424.116 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 113'/></g></g><g data-name='Gruppe 192'><g clip-path='url(%23an)' data-name='Gruppe 191' transform='translate(424.116 28.275)'><path fill='%23faf0e5' d='m-8.322 6.841 18.443-15.16 15.16 18.443L6.84 25.284z' data-name='Rechteck 114'/></g></g><g data-name='Gruppe 194'><g clip-path='url(%23ao)' data-name='Gruppe 193' transform='translate(395.841)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 115'/></g></g><g data-name='Gruppe 196'><g clip-path='url(%23ap)' data-name='Gruppe 195' transform='translate(367.566 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 116'/></g></g><g data-name='Gruppe 198'><g clip-path='url(%23aq)' data-name='Gruppe 197' transform='translate(339.291 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.443-15.16 15.16 18.442L6.84 25.28z' data-name='Rechteck 117'/></g></g><g data-name='Gruppe 200'><g clip-path='url(%23ar)' data-name='Gruppe 199' transform='translate(395.841 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 118'/></g></g><g data-name='Gruppe 202'><g clip-path='url(%23as)' data-name='Gruppe 201' transform='translate(339.291 .004)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 119'/></g></g><g data-name='Gruppe 204'><g clip-path='url(%23at)' data-name='Gruppe 203' transform='translate(424.116 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.121-8.319l15.163 18.446L6.839 25.289z' data-name='Rechteck 120'/></g></g><g data-name='Gruppe 206'><g clip-path='url(%23au)' data-name='Gruppe 205' transform='translate(424.116 141.373)'><path fill='%23faf0e5' d='m-8.322 6.841 18.443-15.16 15.16 18.443L6.84 25.284z' data-name='Rechteck 121'/></g></g><g data-name='Gruppe 208'><g clip-path='url(%23av)' data-name='Gruppe 207' transform='translate(367.566 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 122'/></g></g><g data-name='Gruppe 210'><g clip-path='url(%23aw)' data-name='Gruppe 209' transform='translate(339.291 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159L25.27 10.11 6.84 25.266z' data-name='Rechteck 123'/></g></g><g data-name='Gruppe 212'><g clip-path='url(%23ax)' data-name='Gruppe 211' transform='translate(395.841 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 124'/></g></g><g data-name='Gruppe 214'><g clip-path='url(%23ay)' data-name='Gruppe 213' transform='translate(339.291 113.102)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 125'/></g></g><g data-name='Gruppe 216'><g clip-path='url(%23az)' data-name='Gruppe 215' transform='translate(395.841 113.102)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 126'/></g></g><g data-name='Gruppe 218'><g clip-path='url(%23aA)' data-name='Gruppe 217' transform='translate(367.566 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 127'/></g></g><g data-name='Gruppe 220'><g clip-path='url(%23aB)' data-name='Gruppe 219' transform='translate(367.566 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 128'/></g></g><g data-name='Gruppe 222'><g clip-path='url(%23aC)' data-name='Gruppe 221' transform='translate(424.116 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.121-8.32l15.16 18.443L6.84 25.283z' data-name='Rechteck 129'/></g></g><g data-name='Gruppe 224'><g clip-path='url(%23aD)' data-name='Gruppe 223' transform='translate(367.566 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.123-8.322l15.162 18.445L6.84 25.284z' data-name='Rechteck 130'/></g></g><g data-name='Gruppe 226'><g clip-path='url(%23aE)' data-name='Gruppe 225' transform='translate(339.291 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.44-15.158 15.158 18.44-18.44 15.158z' data-name='Rechteck 131'/></g></g><g data-name='Gruppe 228'><g clip-path='url(%23aF)' data-name='Gruppe 227' transform='translate(395.841 282.752)'><path fill='%23faf0e5' d='M-8.317 6.837 10.111-8.321 25.27 10.107 6.84 25.265z' data-name='Rechteck 132'/></g></g><g data-name='Gruppe 230'><g clip-path='url(%23aG)' data-name='Gruppe 229' transform='translate(339.291 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 133'/></g></g><g data-name='Gruppe 232'><g clip-path='url(%23aH)' data-name='Gruppe 231' transform='translate(395.841 226.2)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 134'/></g></g><g data-name='Gruppe 234'><g clip-path='url(%23aI)' data-name='Gruppe 233' transform='translate(311.018 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 135'/></g></g><g data-name='Gruppe 236'><g clip-path='url(%23aJ)' data-name='Gruppe 235' transform='translate(367.566 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 136'/></g></g><g data-name='Gruppe 238'><g clip-path='url(%23aK)' data-name='Gruppe 237' transform='translate(367.566 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.321l15.165 18.448L6.841 25.291z' data-name='Rechteck 137'/></g></g><g data-name='Gruppe 240'><g clip-path='url(%23aL)' data-name='Gruppe 239' transform='translate(367.566 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 138'/></g></g><g data-name='Gruppe 242'><g clip-path='url(%23aM)' data-name='Gruppe 241' transform='translate(339.291 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 139'/></g></g><g data-name='Gruppe 244'><g clip-path='url(%23aN)' data-name='Gruppe 243' transform='translate(395.841 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 140'/></g></g><g data-name='Gruppe 246'><g clip-path='url(%23aO)' data-name='Gruppe 245' transform='translate(339.291 339.299)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 141'/></g></g><g data-name='Gruppe 248'><g clip-path='url(%23aP)' data-name='Gruppe 247' transform='translate(395.841 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 142'/></g></g><g data-name='Gruppe 250'><g clip-path='url(%23aQ)' data-name='Gruppe 249' transform='translate(311.018 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 143'/></g></g><g data-name='Gruppe 252'><g clip-path='url(%23aR)' data-name='Gruppe 251' transform='translate(311.018 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 144'/></g></g><g data-name='Gruppe 254'><g clip-path='url(%23aS)' data-name='Gruppe 253' transform='translate(367.566 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 145'/></g></g><g data-name='Gruppe 256'><g clip-path='url(%23aT)' data-name='Gruppe 255' transform='translate(367.566 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 146'/></g></g><g data-name='Gruppe 258'><g clip-path='url(%23aU)' data-name='Gruppe 257' transform='translate(339.291 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159L25.27 10.11 6.84 25.266z' data-name='Rechteck 147'/></g></g><g data-name='Gruppe 260'><g clip-path='url(%23aV)' data-name='Gruppe 259' transform='translate(395.841 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 148'/></g></g><g data-name='Gruppe 262'><g clip-path='url(%23aW)' data-name='Gruppe 261' transform='translate(339.291 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 149'/></g></g><g data-name='Gruppe 264'><g clip-path='url(%23aX)' data-name='Gruppe 263' transform='translate(395.841 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 150'/></g></g><g data-name='Gruppe 266'><g clip-path='url(%23aY)' data-name='Gruppe 265' transform='translate(311.018 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 151'/></g></g><g data-name='Gruppe 268'><g clip-path='url(%23aZ)' data-name='Gruppe 267' transform='translate(311.018 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.122-8.321l15.162 18.445L6.84 25.285z' data-name='Rechteck 152'/></g></g><g data-name='Gruppe 270'><g clip-path='url(%23ba)' data-name='Gruppe 269' transform='translate(367.566 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 153'/></g></g><g data-name='Gruppe 272'><g clip-path='url(%23bb)' data-name='Gruppe 271' transform='translate(339.291 622.047)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 154'/></g></g><g data-name='Gruppe 274'><g clip-path='url(%23bc)' data-name='Gruppe 273' transform='translate(395.841 622.047)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.159 18.44L6.84 25.28z' data-name='Rechteck 155'/></g></g><g data-name='Gruppe 276'><g clip-path='url(%23bd)' data-name='Gruppe 275' transform='translate(339.291 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.159 15.157 18.429L6.84 25.266z' data-name='Rechteck 156'/></g></g><g data-name='Gruppe 278'><g clip-path='url(%23be)' data-name='Gruppe 277' transform='translate(395.841 565.497)'><path fill='%23faf0e5' d='M-8.318 6.838 10.123-8.321l15.16 18.441L6.84 25.28z' data-name='Rechteck 157'/></g></g><g data-name='Gruppe 280'><g clip-path='url(%23bf)' data-name='Gruppe 279' transform='translate(311.018 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 158'/></g></g><g data-name='Gruppe 282'><g clip-path='url(%23bg)' data-name='Gruppe 281' transform='translate(311.018 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 159'/></g></g><g data-name='Gruppe 284'><g clip-path='url(%23bh)' data-name='Gruppe 283' transform='translate(311.018 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 160'/></g></g><g data-name='Gruppe 286'><g clip-path='url(%23bi)' data-name='Gruppe 285' transform='translate(254.469 28.275)'><path fill='%23faf0e5' d='M-8.323 6.841 10.124-8.322l15.163 18.446L6.84 25.288z' data-name='Rechteck 161'/></g></g><g data-name='Gruppe 288'><g clip-path='url(%23bj)' data-name='Gruppe 287' transform='translate(226.194 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.114-8.323 25.275 10.11 6.842 25.271z' data-name='Rechteck 162'/></g></g><g data-name='Gruppe 290'><g clip-path='url(%23bk)' data-name='Gruppe 289' transform='translate(282.743 56.552)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 163'/></g></g><g data-name='Gruppe 292'><g clip-path='url(%23bl)' data-name='Gruppe 291' transform='translate(282.743 .004)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 164'/></g></g><g data-name='Gruppe 294'><g clip-path='url(%23bm)' data-name='Gruppe 293' transform='translate(311.018 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 165'/></g></g><g data-name='Gruppe 296'><g clip-path='url(%23bn)' data-name='Gruppe 295' transform='translate(311.018 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 166'/></g></g><g data-name='Gruppe 298'><g clip-path='url(%23bo)' data-name='Gruppe 297' transform='translate(254.469 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 167'/></g></g><g data-name='Gruppe 300'><g clip-path='url(%23bp)' data-name='Gruppe 299' transform='translate(226.194 169.652)'><path fill='%23faf0e5' d='M-8.319 6.838 10.125-8.324l15.16 18.443L6.842 25.281z' data-name='Rechteck 168'/></g></g><g data-name='Gruppe 302'><g clip-path='url(%23bq)' data-name='Gruppe 301' transform='translate(282.743 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 169'/></g></g><g data-name='Gruppe 304'><g clip-path='url(%23br)' data-name='Gruppe 303' transform='translate(226.194 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 170'/></g></g><g data-name='Gruppe 306'><g clip-path='url(%23bs)' data-name='Gruppe 305' transform='translate(282.743 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 171'/></g></g><g data-name='Gruppe 308'><g clip-path='url(%23bt)' data-name='Gruppe 307' transform='translate(254.469 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 172'/></g></g><g data-name='Gruppe 310'><g clip-path='url(%23bu)' data-name='Gruppe 309' transform='translate(254.469 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 173'/></g></g><g data-name='Gruppe 312'><g clip-path='url(%23bv)' data-name='Gruppe 311' transform='translate(311.018 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.11-8.32l15.161 18.43L6.84 25.273z' data-name='Rechteck 174'/></g></g><g data-name='Gruppe 314'><g clip-path='url(%23bw)' data-name='Gruppe 313' transform='translate(254.469 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 175'/></g></g><g data-name='Gruppe 316'><g clip-path='url(%23bx)' data-name='Gruppe 315' transform='translate(226.194 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.443-15.16 15.159 18.44L6.842 25.279z' data-name='Rechteck 176'/></g></g><g data-name='Gruppe 318'><g clip-path='url(%23by)' data-name='Gruppe 317' transform='translate(282.743 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.159L25.27 10.107 6.841 25.265z' data-name='Rechteck 177'/></g></g><g data-name='Gruppe 320'><g clip-path='url(%23bz)' data-name='Gruppe 319' transform='translate(226.194 226.2)'><path fill='%23faf0e5' d='M-8.318 6.838 10.126-8.324l15.16 18.443L6.843 25.281z' data-name='Rechteck 178'/></g></g><g data-name='Gruppe 322'><g clip-path='url(%23bA)' data-name='Gruppe 321' transform='translate(282.743 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 179'/></g></g><g data-name='Gruppe 324'><g clip-path='url(%23bB)' data-name='Gruppe 323' transform='translate(197.921 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 180'/></g></g><g data-name='Gruppe 326'><g clip-path='url(%23bC)' data-name='Gruppe 325' transform='translate(254.469 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 181'/></g></g><g data-name='Gruppe 328'><g clip-path='url(%23bD)' data-name='Gruppe 327' transform='translate(254.469 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 182'/></g></g><g data-name='Gruppe 330'><g clip-path='url(%23bE)' data-name='Gruppe 329' transform='translate(254.469 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 183'/></g></g><g data-name='Gruppe 332'><g clip-path='url(%23bF)' data-name='Gruppe 331' transform='translate(226.194 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.126-8.323 25.288 10.12 6.843 25.283z' data-name='Rechteck 184'/></g></g><g data-name='Gruppe 334'><g clip-path='url(%23bG)' data-name='Gruppe 333' transform='translate(282.743 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 185'/></g></g><g data-name='Gruppe 336'><g clip-path='url(%23bH)' data-name='Gruppe 335' transform='translate(226.194 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 186'/></g></g><g data-name='Gruppe 338'><g clip-path='url(%23bI)' data-name='Gruppe 337' transform='translate(282.743 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.442-15.16 15.16 18.441-18.442 15.16z' data-name='Rechteck 187'/></g></g><g data-name='Gruppe 340'><g clip-path='url(%23bJ)' data-name='Gruppe 339' transform='translate(197.921 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 188'/></g></g><g data-name='Gruppe 342'><g clip-path='url(%23bK)' data-name='Gruppe 341' transform='translate(197.921 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 189'/></g></g><g data-name='Gruppe 344'><g clip-path='url(%23bL)' data-name='Gruppe 343' transform='translate(254.469 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 190'/></g></g><g data-name='Gruppe 346'><g clip-path='url(%23bM)' data-name='Gruppe 345' transform='translate(254.469 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 191'/></g></g><g data-name='Gruppe 348'><g clip-path='url(%23bN)' data-name='Gruppe 347' transform='translate(226.194 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 192'/></g></g><g data-name='Gruppe 350'><g clip-path='url(%23bO)' data-name='Gruppe 349' transform='translate(282.743 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 193'/></g></g><g data-name='Gruppe 352'><g clip-path='url(%23bP)' data-name='Gruppe 351' transform='translate(226.194 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.114-8.323 25.275 10.11 6.842 25.271z' data-name='Rechteck 194'/></g></g><g data-name='Gruppe 354'><g clip-path='url(%23bQ)' data-name='Gruppe 353' transform='translate(282.743 452.397)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 195'/></g></g><g data-name='Gruppe 356'><g clip-path='url(%23bR)' data-name='Gruppe 355' transform='translate(197.921 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 196'/></g></g><g data-name='Gruppe 358'><g clip-path='url(%23bS)' data-name='Gruppe 357' transform='translate(197.921 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 197'/></g></g><g data-name='Gruppe 360'><g clip-path='url(%23bT)' data-name='Gruppe 359' transform='translate(254.469 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 198'/></g></g><g data-name='Gruppe 362'><g clip-path='url(%23bU)' data-name='Gruppe 361' transform='translate(226.194 622.047)'><path fill='%23faf0e5' d='M-8.318 6.838 10.125-8.323l15.16 18.443L6.843 25.28z' data-name='Rechteck 199'/></g></g><g data-name='Gruppe 364'><g clip-path='url(%23bV)' data-name='Gruppe 363' transform='translate(282.743 622.047)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 200'/></g></g><g data-name='Gruppe 366'><g clip-path='url(%23bW)' data-name='Gruppe 365' transform='translate(226.194 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.431-15.16 15.16 18.43-18.431 15.16z' data-name='Rechteck 201'/></g></g><g data-name='Gruppe 368'><g clip-path='url(%23bX)' data-name='Gruppe 367' transform='translate(282.743 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 202'/></g></g><g data-name='Gruppe 370'><g clip-path='url(%23bY)' data-name='Gruppe 369' transform='translate(197.921 593.768)'><path fill='%23faf0e5' d='M-8.322 6.841 10.111-8.321l15.163 18.434L6.84 25.275z' data-name='Rechteck 203'/></g></g><g data-name='Gruppe 372'><g clip-path='url(%23bZ)' data-name='Gruppe 371' transform='translate(197.921 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 204'/></g></g><g data-name='Gruppe 374'><g clip-path='url(%23ca)' data-name='Gruppe 373' transform='translate(197.921 28.275)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 205'/></g></g><g data-name='Gruppe 376'><g clip-path='url(%23cb)' data-name='Gruppe 375' transform='translate(226.194)'><path fill='%23faf0e5' d='M-8.322 6.841 10.126-8.324 25.29 10.124 6.842 25.288z' data-name='Rechteck 206'/></g></g><g data-name='Gruppe 378'><g clip-path='url(%23cc)' data-name='Gruppe 377' transform='translate(113.098 56.548)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 207'/></g></g><g data-name='Gruppe 380'><g clip-path='url(%23cd)' data-name='Gruppe 379' transform='translate(169.648 56.552)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 208'/></g></g><g data-name='Gruppe 382'><g clip-path='url(%23ce)' data-name='Gruppe 381' transform='translate(84.821 84.829)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 209'/></g></g><g data-name='Gruppe 384'><g clip-path='url(%23cf)' data-name='Gruppe 383' transform='translate(197.921 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.111-8.321l15.165 18.436L6.84 25.28z' data-name='Rechteck 210'/></g></g><g data-name='Gruppe 386'><g clip-path='url(%23cg)' data-name='Gruppe 385' transform='translate(197.921 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.123-8.321l15.163 18.446L6.84 25.287z' data-name='Rechteck 211'/></g></g><g data-name='Gruppe 388'><g clip-path='url(%23ch)' data-name='Gruppe 387' transform='translate(141.373 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 212'/></g></g><g data-name='Gruppe 390'><g clip-path='url(%23ci)' data-name='Gruppe 389' transform='translate(113.098 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 213'/></g></g><g data-name='Gruppe 392'><g clip-path='url(%23cj)' data-name='Gruppe 391' transform='translate(169.648 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 214'/></g></g><g data-name='Gruppe 394'><g clip-path='url(%23ck)' data-name='Gruppe 393' transform='translate(113.098 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 215'/></g></g><g data-name='Gruppe 396'><g clip-path='url(%23cl)' data-name='Gruppe 395' transform='translate(169.648 113.102)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 216'/></g></g><g data-name='Gruppe 398'><g clip-path='url(%23cm)' data-name='Gruppe 397' transform='translate(141.373 84.823)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 217'/></g></g><g data-name='Gruppe 400'><g clip-path='url(%23cn)' data-name='Gruppe 399' transform='translate(141.373 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 218'/></g></g><g data-name='Gruppe 402'><g clip-path='url(%23co)' data-name='Gruppe 401' transform='translate(197.921 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.111-8.321 25.273 10.11 6.84 25.272z' data-name='Rechteck 219'/></g></g><g data-name='Gruppe 404'><g clip-path='url(%23cp)' data-name='Gruppe 403' transform='translate(141.373 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.125-8.323l15.162 18.445L6.841 25.285z' data-name='Rechteck 220'/></g></g><g data-name='Gruppe 406'><g clip-path='url(%23cq)' data-name='Gruppe 405' transform='translate(113.098 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.43-15.16 15.158 18.43-18.43 15.158z' data-name='Rechteck 221'/></g></g><g data-name='Gruppe 408'><g clip-path='url(%23cr)' data-name='Gruppe 407' transform='translate(169.648 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 222'/></g></g><g data-name='Gruppe 410'><g clip-path='url(%23cs)' data-name='Gruppe 409' transform='translate(113.098 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 223'/></g></g><g data-name='Gruppe 412'><g clip-path='url(%23ct)' data-name='Gruppe 411' transform='translate(169.648 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 224'/></g></g><g data-name='Gruppe 414'><g clip-path='url(%23cu)' data-name='Gruppe 413' transform='translate(141.373 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 225'/></g></g><g data-name='Gruppe 416'><g clip-path='url(%23cv)' data-name='Gruppe 415' transform='translate(141.373 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 226'/></g></g><g data-name='Gruppe 418'><g clip-path='url(%23cw)' data-name='Gruppe 417' transform='translate(141.373 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.113-8.322l15.163 18.434L6.84 25.276z' data-name='Rechteck 227'/></g></g><g data-name='Gruppe 420'><g clip-path='url(%23cx)' data-name='Gruppe 419' transform='translate(113.098 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 228'/></g></g><g data-name='Gruppe 422'><g clip-path='url(%23cy)' data-name='Gruppe 421' transform='translate(169.648 395.847)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 229'/></g></g><g data-name='Gruppe 424'><g clip-path='url(%23cz)' data-name='Gruppe 423' transform='translate(113.098 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 230'/></g></g><g data-name='Gruppe 426'><g clip-path='url(%23cA)' data-name='Gruppe 425' transform='translate(169.648 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 231'/></g></g><g data-name='Gruppe 428'><g clip-path='url(%23cB)' data-name='Gruppe 427' transform='translate(84.825 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 232'/></g></g><g data-name='Gruppe 430'><g clip-path='url(%23cC)' data-name='Gruppe 429' transform='translate(141.373 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 233'/></g></g><g data-name='Gruppe 432'><g clip-path='url(%23cD)' data-name='Gruppe 431' transform='translate(113.098 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 234'/></g></g><g data-name='Gruppe 434'><g clip-path='url(%23cE)' data-name='Gruppe 433' transform='translate(169.648 508.947)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 235'/></g></g><g data-name='Gruppe 436'><g clip-path='url(%23cF)' data-name='Gruppe 435' transform='translate(113.098 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 236'/></g></g><g data-name='Gruppe 438'><g clip-path='url(%23cG)' data-name='Gruppe 437' transform='translate(169.648 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 237'/></g></g><g data-name='Gruppe 440'><g clip-path='url(%23cH)' data-name='Gruppe 439' transform='translate(84.825 480.668)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 238'/></g></g><g data-name='Gruppe 442'><g clip-path='url(%23cI)' data-name='Gruppe 441' transform='translate(169.648 565.497)'><path fill='%23faf0e5' d='m-8.318 6.838 18.443-15.16 15.16 18.442L6.841 25.28z' data-name='Rechteck 239'/></g></g><g data-name='Gruppe 444'><g clip-path='url(%23cJ)' data-name='Gruppe 443' transform='translate(141.373 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 240'/></g></g><g data-name='Gruppe 446'><g clip-path='url(%23cK)' data-name='Gruppe 445' transform='translate(113.098 565.491)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 241'/></g></g><g data-name='Gruppe 448'><g clip-path='url(%23cL)' data-name='Gruppe 447' transform='translate(84.825 537.218)'><path fill='%23faf0e5' d='M-8.324 6.843 10.123-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 242'/></g></g><g data-name='Gruppe 450'><g clip-path='url(%23cM)' data-name='Gruppe 449' transform='translate(84.825 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 243'/></g></g><g data-name='Gruppe 452'><g clip-path='url(%23cN)' data-name='Gruppe 451' transform='translate(28.275 197.923)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 244'/></g></g><g data-name='Gruppe 454'><g clip-path='url(%23cO)' data-name='Gruppe 453' transform='translate(84.825 141.373)'><path fill='%23faf0e5' d='M-8.322 6.841 10.11-8.32l15.162 18.432L6.839 25.273z' data-name='Rechteck 245'/></g></g><g data-name='Gruppe 456'><g clip-path='url(%23cP)' data-name='Gruppe 455' transform='translate(56.552 113.098)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 246'/></g></g><g data-name='Gruppe 458'><g clip-path='url(%23cQ)' data-name='Gruppe 457' transform='translate(56.55 169.652)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 247'/></g></g><g data-name='Gruppe 460'><g clip-path='url(%23cR)' data-name='Gruppe 459' transform='translate(28.275 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.113-8.322l15.165 18.437L6.841 25.28z' data-name='Rechteck 248'/></g></g><g data-name='Gruppe 462'><g clip-path='url(%23cS)' data-name='Gruppe 461' transform='translate(84.825 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.122-8.321l15.161 18.444L6.84 25.283z' data-name='Rechteck 249'/></g></g><g data-name='Gruppe 464'><g clip-path='url(%23cT)' data-name='Gruppe 463' transform='translate(28.275 254.473)'><path fill='%23faf0e5' d='M-8.321 6.84 10.113-8.323l15.162 18.434L6.84 25.273z' data-name='Rechteck 250'/></g></g><g data-name='Gruppe 466'><g clip-path='url(%23cU)' data-name='Gruppe 465' transform='translate(0 226.196)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.323l15.164 18.446L6.842 25.287z' data-name='Rechteck 251'/></g></g><g data-name='Gruppe 468'><g clip-path='url(%23cV)' data-name='Gruppe 467' transform='translate(0 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 252'/></g></g><g data-name='Gruppe 470'><g clip-path='url(%23cW)' data-name='Gruppe 469' transform='translate(56.55 282.752)'><path fill='%23faf0e5' d='m-8.317 6.837 18.442-15.16 15.158 18.44-18.442 15.16z' data-name='Rechteck 253'/></g></g><g data-name='Gruppe 472'><g clip-path='url(%23cX)' data-name='Gruppe 471' transform='translate(56.55 226.2)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 254'/></g></g><g data-name='Gruppe 474'><g clip-path='url(%23cY)' data-name='Gruppe 473' transform='translate(28.275 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.125-8.322 25.29 10.126 6.841 25.292z' data-name='Rechteck 255'/></g></g><g data-name='Gruppe 476'><g clip-path='url(%23cZ)' data-name='Gruppe 475' transform='translate(28.275 367.57)'><path fill='%23faf0e5' d='M-8.322 6.841 10.125-8.322l15.163 18.446L6.841 25.288z' data-name='Rechteck 256'/></g></g><g data-name='Gruppe 478'><g clip-path='url(%23da)' data-name='Gruppe 477' transform='translate(0 395.843)'><path fill='%23faf0e5' d='M-8.323 6.842 10.124-8.322 25.29 10.126 6.842 25.29z' data-name='Rechteck 257'/></g></g><g data-name='Gruppe 480'><g clip-path='url(%23db)' data-name='Gruppe 479' transform='translate(56.55 395.847)'><path fill='%23faf0e5' d='m-8.319 6.839 18.431-15.16 15.16 18.43L6.841 25.27z' data-name='Rechteck 258'/></g></g><g data-name='Gruppe 482'><g clip-path='url(%23dc)' data-name='Gruppe 481' transform='translate(0 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 259'/></g></g><g data-name='Gruppe 484'><g clip-path='url(%23dd)' data-name='Gruppe 483' transform='translate(56.55 339.299)'><path fill='%23faf0e5' d='m-8.318 6.838 18.43-15.16 15.16 18.43-18.43 15.16z' data-name='Rechteck 260'/></g></g><g data-name='Gruppe 486'><g clip-path='url(%23de)' data-name='Gruppe 485' transform='translate(84.825 311.02)'><path fill='%23faf0e5' d='M-8.324 6.843 10.11-8.32l15.164 18.436L6.84 25.278z' data-name='Rechteck 261'/></g></g><g data-name='Gruppe 488'><g clip-path='url(%23df)' data-name='Gruppe 487' transform='translate(56.552 508.943)'><path fill='%23faf0e5' d='M-8.322 6.841 10.124-8.322l15.163 18.446L6.84 25.287z' data-name='Rechteck 262'/></g></g><g data-name='Gruppe 490'><g clip-path='url(%23dg)' data-name='Gruppe 489' transform='translate(56.55 452.397)'><path fill='%23faf0e5' d='M-8.319 6.839 10.124-8.322l15.16 18.443L6.842 25.28z' data-name='Rechteck 263'/></g></g><g data-name='Gruppe 492'><g clip-path='url(%23dh)' data-name='Gruppe 491' transform='translate(84.825 424.118)'><path fill='%23faf0e5' d='M-8.324 6.843 10.122-8.32l15.164 18.447L6.84 25.29z' data-name='Rechteck 264'/></g></g></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  right: -22rem;
  top: 3.8rem;
  z-index: -1;
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper:after {
    width: 19.7rem;
    right: -13.6rem;
    top: 1.3rem;
  }
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper .content {
    font-size: var(--fontSize16);
    order: 1 !important;
  }
}
.section__image-content-with-list .innerwrapper .content h2 {
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper .content h2 {
    margin-bottom: 1.1em;
  }
}
.section__image-content-with-list .innerwrapper .content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 3.5rem;
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper .content ul {
    margin-top: 1.3rem;
  }
}
.section__image-content-with-list .innerwrapper .content ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: var(--colorBlue);
  padding: 1.32rem 0;
  font-size: var(--fontSize19);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--colorBlue);
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper .content ul li {
    font-size: var(--fontSize15);
  }
}
.section__image-content-with-list .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  width: 33.4rem;
  margin-left: auto;
  margin-right: 6.7rem;
}
.section__image-content-with-list .innerwrapper .image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .section__image-content-with-list .innerwrapper .image {
    order: 2 !important;
    width: calc(100% - 5.4rem);
    margin-inline: auto;
    margin-top: 3rem;
  }
}
.section__image-content-with-list.reversed .innerwrapper {
  grid-template-columns: var(--contentSize) 1fr;
  padding-right: 0;
}
.section__image-content-with-list.reversed .innerwrapper .content {
  order: 1;
}
.section__image-content-with-list.reversed .innerwrapper .image {
  order: 2;
}

footer {
  background-color: var(--colorBeige);
  overflow-x: clip;
  margin-top: 10rem;
}
@media only screen and (max-width: 600px) {
  footer {
    margin-top: 4rem;
  }
}
footer .main__footer {
  overflow-x: clip;
}
footer .main__footer .innerwrapper {
  display: grid;
  grid-template-columns: 53.5rem 1fr;
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper {
    grid-template-columns: 100%;
  }
}
footer .main__footer .innerwrapper.not-portrait {
  gap: 3.5rem;
  grid-template-columns: 47rem 1fr;
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper.not-portrait {
    grid-template-columns: 100%;
  }
}
footer .main__footer .innerwrapper.not-portrait .image {
  margin-top: 0;
}
footer .main__footer .innerwrapper.not-portrait .image img {
  width: calc(100% + var(--sideSpacing) + var(--outerSideSpacing));
  margin-left: calc((var(--sideSpacing) + var(--outerSideSpacing)) * -1);
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper.not-portrait .image img {
    width: calc(100% + var(--sideSpacing) + var(--sideSpacing));
    margin-inline: calc(var(--sideSpacing) * -1);
  }
}
footer .main__footer .innerwrapper .image {
  order: 1;
  font-size: 0;
  line-height: 0;
  margin-top: -3.3rem;
}
footer .main__footer .innerwrapper .image img {
  width: calc(100% + 37.5rem);
  height: auto;
  margin-left: -34.6rem;
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper .image img {
    width: calc(100% + 17.5rem);
    margin-left: -13rem;
  }
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper .image {
    order: 2;
    margin-top: 1.7rem;
  }
}
footer .main__footer .innerwrapper .content {
  order: 2;
  padding-top: 7rem;
  color: var(--colorBlue);
}
@media only screen and (max-width: 600px) {
  footer .main__footer .innerwrapper .content {
    order: 1;
    text-align: center;
    padding-top: 3.2rem;
  }
}
footer .main__footer .innerwrapper .content .phone {
  margin-top: 1.9rem;
}
footer .main__footer .innerwrapper .content .cta__button {
  margin-top: 2.5rem;
}
footer .generic {
  background-color: var(--colorBlue);
}
footer .generic .innerwrapper {
  font-size: var(--fontSize18);
  color: var(--colorWhite);
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
@media only screen and (max-width: 600px) {
  footer .generic .innerwrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: var(--fontSize16);
    gap: 1.5rem 0;
    padding: 1.3rem 0;
  }
  footer .generic .innerwrapper > span {
    max-width: 17em;
    margin-inline: auto;
  }
}
footer .generic .innerwrapper a {
  color: inherit;
  text-decoration: none;
}
footer .generic .innerwrapper ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
  margin-left: auto;
  display: flex;
  gap: 0 4rem;
}
@media only screen and (max-width: 600px) {
  footer .generic .innerwrapper ul {
    margin-right: auto;
  }
}
footer .generic .innerwrapper ul li {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.section__default-page {
  margin: 0;
}
.section__default-page .innerwrapper {
  padding-top: calc(var(--headerHeight) + 1rem);
}
.section__default-page .innerwrapper a {
  color: inherit;
}
.section__default-page .innerwrapper h1 {
  margin: 0;
  font-size: var(--fontSize62);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--colorBlue);
  letter-spacing: 0.205em;
  line-height: 1.209;
  margin-bottom: 0.45em;
}
@media only screen and (max-width: 600px) {
  .section__default-page .innerwrapper h1 {
    font-size: var(--fontSize28);
    text-align: center;
    margin-bottom: 0.4em;
  }
}
.section__default-page .innerwrapper h2 {
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1em;
}
.section__default-page .innerwrapper h3 {
  margin: 0;
  font-weight: 400;
  font-size: var(--fontSize30);
  line-height: 1.2;
  color: var(--colorBlue);
  margin-bottom: 0.1em;
  margin-top: 1em;
}
@media only screen and (max-width: 600px) {
  .section__default-page .innerwrapper h3 {
    font-size: var(--fontSize24);
  }
}
