@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-semibold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-lightitalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-mediumitalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-bold.ttf') format("truetype"), url('../fonts/opensans-extrabold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-bolditalic.ttf') format("truetype"), url('../fonts/opensans-extrabolditalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: snasnepo;
  src: url('../fonts/opensans-semibolditalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --weiß: #fff;
  --white: white;
  --schwarz: #000;
  --hellgrün: #026469;
  --logo-grün: #026469;
  --highlight: #96c11f;
  --pistazie: #deedea;
  --aqua: #5ca595;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
  font-weight: 300;
}

a {
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

li {
  font-weight: 300;
}

.navbar-logo-left {
  z-index: 9999;
  background-color: var(--weiß);
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: 0;
  margin-right: 0;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--schwarz);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: var(--hellgrün);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  color: var(--schwarz);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 1.5em;
}

.nav-dropdown-toggle:hover {
  color: var(--hellgrün);
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  z-index: 9999;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  border-radius: 0;
  flex-direction: column;
  display: block;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 1.4em;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link.w--current {
  color: var(--hellgrün);
}

.nav-link-accent {
  color: var(--schwarz);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

.nav-link-accent:hover {
  color: var(--hellgrün);
}

.mobile-margin-top-10 {
  margin-left: 26px;
}

.button-primary {
  background-color: var(--hellgrün);
  transform: scale3d(1none, 1none, 1none);
  color: var(--weiß);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform-style: preserve-3d;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: all .2s;
  display: flex;
}

.button-primary:hover {
  background-color: var(--logo-grün);
  color: var(--weiß);
  transform: scale(1.03);
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary._30px {
  color: #fff;
  margin-top: 30px;
}

.button-primary._30px.dark {
  background-color: var(--logo-grün);
  color: var(--weiß);
}

.button-primary.fix {
  width: 177.766px;
}

.button-primary.en {
  width: 100%;
}

.button-primary.white {
  background-color: var(--white);
  color: var(--hellgrün);
}

.body {
  color: var(--weiß);
  padding-left: 0%;
  padding-right: 0%;
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.hero {
  height: 100vh;
  margin-top: 0;
  padding-top: 83px;
  overflow: hidden;
}

.text-block {
  color: var(--schwarz);
  font-weight: 300;
}

.hero-h1 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
}

.hero-h1.white {
  color: #fff;
  line-height: 1.2em;
}

.hero-h1.white.middle {
  color: var(--logo-grün);
  text-align: center;
}

.hero-h1.white.lesitungen {
  color: var(--hellgrün);
  text-align: center;
  display: inline-flex;
}

.hero-h1.white.center {
  text-align: center;
}

.hero-h1.center {
  text-align: center;
  line-height: 1.3em;
}

.hero-heading {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.3em;
}

.hero-heading.mittig {
  color: #026469;
  text-align: center;
  line-height: 1.2em;
}

.grid {
  grid-template-rows: auto;
  margin-top: 20px;
}

.div-block {
  z-index: 3;
  opacity: .55;
  background-color: #00858c70;
  width: 30%;
  height: 25%;
  padding-left: 0%;
  position: absolute;
  inset: auto 0% 6% auto;
}

.div-block._2 {
  background-color: #98c13e8a;
  width: 10%;
  inset: auto auto 32% 0%;
}

.div-block-2 {
  background-color: #0000004a;
  background-image: url('../images/sf_steuerberatung_03_gruppenbild.jpeg');
  background-position: 50% 3%;
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  position: absolute;
  inset: 0 0% 0%;
}

.werte {
  background-color: var(--weiß);
  color: var(--schwarz);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  display: flex;
  position: relative;
}

.small-heading {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
  position: static;
  top: 75px;
}

.small-heading.white {
  color: var(--weiß);
}

.small-heading.white.left {
  color: #fff;
}

.big-heading {
  border-left: 7px solid var(--highlight);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 60px;
  line-height: 1.3em;
}

.big-heading.space {
  margin-bottom: 30px;
}

.big-heading._30px {
  border-left-color: var(--highlight);
  color: var(--schwarz);
  margin-bottom: 30px;
}

.big-heading.white {
  color: var(--weiß);
}

.big-heading.white.no-green {
  border-left-style: none;
}

.big-heading.white.no-green.mobilem {
  text-align: center;
}

.big-heading.white.no-break {
  color: #fff;
  white-space: nowrap;
}

.big-heading.white.center {
  text-align: center;
}

.big-heading.white.centerm {
  color: #fff;
  text-align: center;
}

.main-paragraph {
  color: #000;
  background-color: #5ca59500;
  margin-top: 20px;
  font-weight: 300;
}

.main-paragraph.black {
  color: var(--schwarz);
}

.main-paragraph.white {
  color: #fff;
}

.main-paragraph.white.center {
  text-align: center;
  max-width: 1000px;
}

.main-paragraph.quote {
  font-size: 18px;
  font-style: italic;
  position: relative;
}

.main-paragraph.heroleistung {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}

.grid-2 {
  grid-template-rows: auto;
  width: 100%;
  max-width: 1400px;
}

.div-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 75px;
}

.div-block-4 {
  height: 100%;
  position: relative;
}

.team {
  height: auto;
  padding: 0 0%;
}

.heading-wrap {
  color: var(--schwarz);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
  display: flex;
  position: static;
  top: 75px;
}

.heading-wrap.white {
  color: var(--weiß);
  background-color: #036469b5;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  padding: 20px 40px;
  display: flex;
}

.heading-wrap.center {
  background-color: var(--logo-grün);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.heading-wrap.leistungsauff-hrung {
  padding-top: 0;
}

.heading-wrap._40px {
  padding-bottom: 40px;
}

.heading-wrap._0 {
  padding-top: 0;
  position: sticky;
  top: 140px;
}

.heading-wrap.centerm {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
  display: flex;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--pistazie);
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.image {
  object-fit: cover;
  object-position: 100% 0%;
  width: 100%;
  height: 380px;
}

.icon-good {
  color: #072a46;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 40px;
  margin-right: 8px;
  display: flex;
}

.icon-good.kleiner {
  opacity: 1;
  color: var(--highlight);
  -webkit-text-stroke-color: #5aa5ee;
  background-color: #fff;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.div-block-391 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  display: grid;
  position: relative;
}

.leistungen {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 79px 5% 117px;
  display: flex;
}

.header-section {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.div-block-392 {
  background-color: #f5f5f5;
  border-radius: 3px;
  width: auto;
  max-width: none;
  padding: 58px 30px 58px 40px;
  position: relative;
  top: 32px;
  left: -45px;
  right: 50px;
}

.card-v2-2 {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px #14222b14;
}

.card-v2-2.partner {
  box-shadow: none;
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  height: 86px;
  padding: 13px 40px 13px 13px;
  transition: all .2s;
  display: flex;
}

.card-v2-2.partner:hover {
  color: var(--schwarz);
  transform: scale(.9);
}

.heading-153 {
  color: #000;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  display: flex;
}

.grid-4-columns {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 800px;
  margin-top: 28px;
  display: grid;
}

.karriere {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: auto;
  padding: 20px 5% 40px;
  display: flex;
}

.roation-wrapper {
  height: 78px;
  margin-left: 20px;
  overflow: hidden;
}

.rotation-heading {
  color: #000;
  text-transform: uppercase;
  height: 78px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 60px;
  line-height: 1.3em;
}

.div-block-398 {
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 20px;
  display: flex;
}

.background-video-2 {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  margin-top: 0;
  padding: 60px 5%;
  display: flex;
  top: 0;
}

.faq {
  height: auto;
  padding: 60px 0% 0 5%;
}

.slider {
  background-color: #fff;
  min-height: 700px;
  margin-top: 20px;
}

.grid-5 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  height: 100%;
  max-height: 780px;
}

.quote-text-wrapper {
  z-index: 20;
  position: relative;
}

.quote-image-wrapper {
  object-fit: cover;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.slide-nav {
  display: none;
}

.slide {
  height: 100%;
  min-height: auto;
}

.mask {
  min-height: 700px;
}

.image-2 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: 600px;
  overflow: hidden;
}

.image-2.max {
  object-position: 50% 40%;
  max-height: 600px;
}

.question {
  color: var(--schwarz);
  margin-bottom: 0;
  padding-left: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3em;
}

.answer {
  color: var(--schwarz);
  padding-left: 0;
  font-weight: 300;
}

.div-block-399 {
  background-color: var(--highlight);
  color: var(--highlight);
  width: 45%;
  height: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.name-wrapper {
  background-color: var(--pistazie);
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 350px;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: auto 10% 6% auto;
}

.text-block-3 {
  color: var(--schwarz);
  text-align: right;
}

.icon {
  background-color: var(--aqua);
  border-radius: 20px;
  padding-top: 0;
  display: none;
  inset: auto auto 0% 0%;
}

.left-arrow {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  display: flex;
  top: -11px;
  bottom: -8px;
}

.div-block-400 {
  background-color: var(--weiß);
  opacity: 1;
  border-radius: 0%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 5px 5px 5px 0;
  display: flex;
}

.div-block-400.move {
  padding-left: 5px;
  padding-right: 0;
}

.image-3 {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.image-3.move {
  transform-style: preserve-3d;
  transform: none;
}

.right-arrow {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  display: flex;
  inset: -8% auto -8px 6%;
}

.kontakt {
  padding: 0 5% 40px 0%;
}

.grid-6 {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .75fr;
  margin-top: 40px;
}

.div-block-401 {
  height: 619px;
  min-height: 100%;
  position: relative;
}

.overflow-maps {
  background-color: #00858c96;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.standort {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.image-4 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.image-5 {
  filter: brightness(0%);
  margin-right: 20px;
}

.link-block {
  color: var(--schwarz);
  margin-top: 20px;
  text-decoration: none;
  display: flex;
}

.link-block.shadow {
  width: 322.938px;
  padding: 10px;
  box-shadow: 0 2px 20px -9px #0003;
}

.footer {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 5vw 20px;
  position: relative;
  overflow: hidden;
}

.container-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.footer-content {
  z-index: 6;
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  border-left: 3px solid var(--hellgrün);
  color: var(--schwarz);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-link.l {
  margin-top: 10px;
  margin-bottom: 0;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: none;
}

.footer-social-link {
  margin-left: 12px;
}

.icon-2 {
  display: none;
}

.image-6 {
  opacity: .14;
  position: absolute;
  inset: auto 1% -18% auto;
}

.cta {
  background-image: linear-gradient(#001718a3, #001718a3), url('../images/pexels-andrea-piacquadio-3760067-2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 40px 5%;
  display: flex;
}

.cta.digital {
  background-image: linear-gradient(#00000036, #00000036), url('../images/pexels-life-of-pix-7974-1.jpg');
  background-position: 0 0, 50%;
}

.grid-7 {
  grid-column-gap: 54px;
  grid-row-gap: 16px;
  color: var(--schwarz);
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1.75fr;
  grid-auto-columns: 1fr;
  place-items: center;
  max-width: 1400px;
  display: flex;
}

.check-list {
  background-color: var(--weiß);
  margin-top: 0;
  padding: 20px 0;
  display: none;
}

.image-7 {
  background-color: var(--weiß);
  border-radius: 100%;
  margin-right: 20px;
}

.div-block-402 {
  background-color: var(--hellgrün);
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  padding: 25px;
  display: flex;
}

.text-block-5 {
  color: var(--weiß);
  font-weight: 700;
}

.image-8 {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 20px -8px #0003;
}

.div-block-403 {
  background-color: #96c11e00;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.name-wrap {
  background-color: var(--weiß);
  width: auto;
  padding: 10px 20px;
  position: absolute;
  inset: auto 32% 11% -2%;
  box-shadow: 0 2px 20px #0003;
}

.text-block-7 {
  float: left;
  color: var(--schwarz);
  text-transform: none;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}

.bold-text {
  color: var(--hellgrün);
  font-size: 32px;
}

.h3 {
  color: var(--schwarz);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5em;
}

.bold-text-2, .bold-text-3, .bold-text-4 {
  color: var(--hellgrün);
}

.hero-ber-uns {
  height: 100vh;
  margin-top: 50px;
  overflow: visible;
}

.grid-9 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: 50% 50%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 33%;
  height: 100%;
  max-height: 100vh;
  margin-top: 0;
}

.image-10 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  max-height: none;
}

.image-10.frau {
  object-position: 80% 0%;
}

.image-10.links {
  object-position: 70% 0%;
}

.div-block-406 {
  color: var(--schwarz);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: static;
}

.body-2 {
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.hero-word-rotation {
  border-left: 8px solid var(--highlight);
  color: var(--schwarz);
  text-align: center;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 104px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 55px;
  line-height: 1.3em;
  display: flex;
}

.div-block-407 {
  height: 104px;
  overflow: hidden;
}

.grid-11 {
  grid-template-rows: auto;
  justify-items: start;
  max-width: 450px;
  margin-top: 20px;
}

._2 {
  background-color: #97c11f4a;
  width: 100px;
  height: 400px;
  position: absolute;
  inset: auto 0% -11% auto;
}

.grid-12 {
  grid-column-gap: 64px;
  grid-row-gap: 71px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
}

.div-block-437 {
  position: relative;
}

.image-11 {
  object-fit: fill;
  width: 100%;
  position: sticky;
  top: 75px;
}

.h3-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 5px #fdce56;
  border-bottom-style: solid;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 26px;
  font-weight: 700;
  display: inline-block;
}

.h3-2.black {
  border-bottom-style: none;
  border-left-style: solid;
  border-left-color: var(--highlight);
  color: #000;
  text-align: left;
  padding-bottom: 0;
  padding-left: 20px;
  font-size: 32px;
  line-height: 1.4em;
}

.main-paragraph-2 {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
}

.heading-158 {
  color: var(--schwarz);
  text-align: center;
  font-size: 75px;
  line-height: 1em;
}

.text-block-8 {
  color: #000;
  text-align: center;
  font-size: 20px;
  line-height: 1.5em;
}

.section-6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 60px 5% 0;
  display: flex;
}

.grid-14 {
  grid-template-rows: auto;
  max-width: 1400px;
  height: auto;
}

.div-block-438 {
  position: relative;
}

.div-block-439 {
  z-index: 20;
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 40px 40px 100px;
  display: flex;
  position: absolute;
  inset: auto -28px 0% 2%;
}

.image-12 {
  opacity: .88;
  object-fit: cover;
  height: auto;
  position: absolute;
  inset: auto auto 11% 0%;
}

.name-wrap-copy {
  background-color: var(--weiß);
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  padding-top: 60px;
  padding-left: 55px;
  display: flex;
  position: static;
  inset: auto 0% 11% -2%;
}

.rich-text-block {
  margin-top: 40px;
  text-decoration: none;
}

.subheading-vita {
  border-left: 4px solid var(--highlight);
  margin-top: 20px;
  padding-left: 10px;
  font-weight: 600;
}

.section-7 {
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 60px 5%;
  display: flex;
}

.card-faq-content-top-2 {
  background-color: var(--weiß);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 20px 0 0;
  display: flex;
}

.title-3.card-faq {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.faqs-wrapper-3 {
  flex-direction: column;
  align-items: center;
  margin-bottom: -24px;
  display: flex;
}

.card-5 {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 44px #14142b0a;
}

.card-5.faq {
  cursor: pointer;
  border-radius: 0;
  height: auto;
  margin-bottom: 24px;
  padding: 20px 30px;
  transition: box-shadow .3s, transform .3s;
  box-shadow: 0 14px 44px 20px #14142b0a;
}

.card-5.faq:hover {
  transform: translate(0, -8px);
  box-shadow: 0 48px 44px #14142b14;
}

.card-faq-icon-5 {
  background-color: #fff;
  border-radius: 1000000px;
  width: 2px;
  min-height: 23px;
  position: absolute;
}

.card-faq-icon-5.black {
  background-color: #000;
}

.card-faq-icon-6 {
  background-color: #fff;
  border-radius: 1000000px;
  width: 23px;
  min-height: 2px;
  position: absolute;
}

.space.card-faq {
  min-height: 8px;
}

.card-faq-icon-wrapper-2 {
  background-color: var(--highlight);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-right: 17px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-faq-icon-wrapper-2:hover {
  background-color: var(--logo-grün);
}

.card-faq-content-bottom-2 {
  margin-top: 0;
  margin-left: 0;
}

.faqs-grid-3 {
  z-index: 1;
  grid-column-gap: 39px;
  grid-template-rows: auto;
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
  position: relative;
}

.section-8 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 60px 5%;
  display: flex;
  overflow: visible;
}

.cta-ber-uns {
  background-color: var(--logo-grün);
  background-image: linear-gradient(#00000080, #00000080), url('../images/pexels-sora-shimazaki-5673502.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 60px 5%;
  display: flex;
}

.grid-16 {
  grid-column-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.div-block-442 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 100px;
}

.slider-3 {
  background-color: #ddd0;
  width: 100%;
  max-width: 1400px;
  min-height: 500px;
  margin-top: 40px;
}

.image-17 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  max-height: 500px;
}

.div-block-443 {
  width: auto;
  height: 100%;
  position: relative;
}

.slide-2 {
  width: 33%;
}

.div-block-444 {
  background-color: #f5f5f5;
  padding: 20px;
  position: absolute;
  inset: auto 26% 3% 1%;
  box-shadow: 0 2px 20px -2px #0003;
}

.slide-nav-3 {
  display: none;
}

.text-block-11 {
  text-transform: uppercase;
  font-weight: 700;
}

.text-block-12 {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2em;
}

.right-arrow-2 {
  background-color: var(--hellgrün);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  inset: auto 1% 44% auto;
}

.icon-3 {
  inset: 0%;
}

.left-arrow-2 {
  background-color: var(--hellgrün);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  inset: auto auto 44% 0%;
}

.cta-grid {
  grid-template-rows: auto;
  justify-items: start;
  max-width: 450px;
  margin-top: 40px;
}

.text-block-13 {
  color: var(--logo-grün);
  font-size: 22px;
  font-weight: 700;
}

.grid-image-wrapper {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.grid-image-wrapper.animate-in {
  object-fit: cover;
  height: 100%;
  min-height: auto;
  max-height: 450px;
  position: sticky;
  top: 140px;
  bottom: 0;
  overflow: hidden;
}

.image-overlay {
  z-index: 1;
  background-color: var(--hellgrün);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.media-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 480px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.media-fit-cover.nomax {
  object-position: 50% 50%;
  min-height: auto;
  max-height: none;
  position: static;
}

.text-block-11-copy {
  text-transform: uppercase;
  font-weight: 700;
}

.hero-leistungen {
  width: 100%;
  height: 80vh;
  padding-left: 5%;
  padding-right: 0%;
  display: flex;
  position: relative;
  overflow: visible;
}

.grid-17 {
  grid-column-gap: 45px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.05fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: grid;
  position: relative;
}

.image-18 {
  object-fit: cover;
  width: 60vw;
  height: 80vh;
  min-height: 60vw;
  position: relative;
  left: -33px;
}

.hero-content-stb {
  z-index: 10;
  background-color: var(--pistazie);
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  padding: 60px 20px;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
}

.absolut-mint {
  background-color: #f5f9ed;
  width: 400px;
  height: 50vh;
  position: absolute;
  inset: -28% auto 30% 0%;
}

.div-block-449 {
  background-color: #96c11e36;
  width: 300px;
  height: 150px;
  position: absolute;
  inset: auto 0% -23% auto;
}

.text-span-7 {
  white-space: nowrap;
  display: block;
}

.div-block-450 {
  min-width: auto;
  min-height: auto;
  position: static;
  left: 0;
  overflow: visible;
}

.zwischensection {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 0;
  padding: 80px 5% 20px;
  display: none;
}

.body-3 {
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.hero-content-copy {
  z-index: 10;
  background-color: var(--aqua);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20px 20px 5%;
  display: flex;
  position: relative;
  top: 193px;
  bottom: 0;
  left: 38px;
}

.hero-content-copy.start {
  background-color: var(--logo-grün);
  padding-bottom: 30px;
  top: 0;
  left: auto;
}

.tabs {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr 1fr 1fr 1fr;
  max-width: 1400px;
  margin-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  display: none;
  position: static;
  inset: auto 0% 0%;
}

.text-block-14 {
  letter-spacing: 1.5px;
  text-transform: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
  display: flex;
}

.link-block-2 {
  background-color: var(--logo-grün);
  transform: scale3d(1none, 1none, 1none);
  color: var(--weiß);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform-style: preserve-3d;
  border: 1px #000;
  border-bottom: 1px solid #ffffff24;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 77.375px;
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.link-block-2:hover {
  transform: scale(1.02);
}

.link-block-2.w--current {
  background-color: var(--aqua);
  color: var(--weiß);
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-449-copy {
  background-color: #00858c96;
  width: 50px;
  height: 400px;
  position: absolute;
  inset: 38% auto -51% 0%;
}

.steuerberatung {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 60px 5%;
  display: flex;
  overflow: visible;
}

.faq-answer-box {
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  padding: 0 40px;
  display: flex;
  position: relative;
  top: 0;
  overflow: hidden;
}

.faq-container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-arrow-box {
  background-color: #153d8a;
  border-left: 2px #c91d22;
  border-radius: 22%;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-right: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.faq-arrow-box.transparent {
  background-color: var(--highlight);
  border: 1px #000;
  border-bottom: 4px #cac900;
  border-radius: 100%;
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  margin-left: 20px;
  margin-right: 0;
}

.accordion-wrapper {
  box-shadow: none;
  background-color: #fff;
  border-bottom: 1px #c91d22;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

.accordion-wrapper.hide {
  display: block;
}

.main-paragraph-3 {
  color: #010b15;
  letter-spacing: 0;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
}

.small-heading-2 {
  color: #bc9252;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2em;
}

.faq-center-box {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 20px;
  margin-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  display: flex;
}

.big-heading-2 {
  border-left: 5px solid var(--highlight);
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1em;
}

.faq-arrow {
  filter: invert();
}

.faq-arrow.black {
  filter: none;
}

.faq-trigger {
  cursor: pointer;
  background-color: #fff0;
  border-radius: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 0 5px 0 0;
  text-decoration: none;
  display: flex;
  box-shadow: 0 2px 20px 4px #0000000f;
}

.faq-trigger:hover {
  text-decoration: none;
}

.faq-list {
  border-top: 1px #e4eff3;
  max-width: 1400px;
  margin-bottom: 0;
}

.grid-18 {
  grid-template-rows: auto;
  width: 100%;
  max-width: 1400px;
}

.cta-leistungen {
  background-image: url('../images/pexels-andrea-piacquadio-3760067-2.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 60px 5%;
  display: flex;
}

.div-block-452 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.section-9 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  display: flex;
}

.grid-19 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
}

.div-block-453 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-160 {
  margin-bottom: 0;
}

.link-2 {
  color: #000;
  text-decoration: none;
}

.ansprechpartner-bild {
  object-fit: cover;
  object-position: 50% 15%;
  width: 100%;
  max-height: 400px;
}

.section-10 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 140px 5% 74px;
  display: flex;
  position: relative;
}

.div-block-454 {
  height: 100%;
  display: block;
  position: relative;
}

.karriere-hero {
  background-image: url('../images/sf_steuerberatung_03_gruppenbild.jpeg');
  background-position: 50% 0;
  background-size: cover;
  height: 100vh;
  margin-top: 40px;
  padding-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.grid-20 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  height: 100%;
  padding-top: 70px;
  display: flex;
  position: absolute;
  bottom: 5%;
}

.body-4 {
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.div-block-455 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.div-block-456 {
  border-left: 7px solid var(--highlight);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
}

.big-heading-copy {
  border-left: 7px none var(--hellgrün);
  color: #fff;
  text-transform: uppercase;
  background-color: #0000;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 60px;
  line-height: 1.3em;
}

.word-rotation {
  border-left: 7px none var(--hellgrün);
  color: #fff;
  text-transform: uppercase;
  height: 78px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 60px;
  line-height: 1.3em;
}

.div-block-457 {
  height: 78px;
  overflow: hidden;
}

.karriere-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0 0% 0 5%;
  display: flex;
  overflow: hidden;
}

.content-wrap {
  background-color: var(--logo-grün);
  padding: 20px 40px;
  position: static;
  top: 75px;
}

.content-wrap._40px {
  background-color: #00858cd1;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
  display: flex;
}

.grid-21 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

.background-video-4 {
  background-image: linear-gradient(to right, #fff 3%, #ffffff70 37%, #fff0 70%);
  height: 100%;
}

.div-block-458 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 168px;
  padding-bottom: 168px;
  display: flex;
}

.section-11 {
  background-color: var(--logo-grün);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  overflow: hidden;
}

.grid-22 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 1400px;
}

.section-12 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  overflow: hidden;
}

.section-12.hide {
  display: flex;
}

.div-block-459 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-460 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-461 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-462 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  display: flex;
}

.div-block-463 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.text-block-16 {
  color: var(--hellgrün);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.6em;
}

.text-block-17 {
  color: #026469;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.heading-wrapper {
  width: 100%;
  max-width: 1400px;
  padding-top: 0;
  padding-bottom: 0;
}

.heading-wrapper.margin {
  margin-bottom: 40px;
}

.card-item {
  border-radius: 0;
  width: 100%;
  height: 35rem;
  position: relative;
  overflow: hidden;
}

.card-background {
  filter: saturate(120%);
  height: 100%;
  position: relative;
}

.paragraph {
  color: #f5f5f7;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 180%;
}

.card-heading-wrapper {
  display: flex;
  position: relative;
}

.card-heading-holder {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cards-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.card-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.card-heading {
  border-left: 7px solid var(--highlight);
  color: #f5f5f7;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: .125rem;
  flex: 0 auto;
  align-items: center;
  height: 2rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: .125rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: relative;
}

.grid-item-overlay {
  opacity: 1;
  background-color: #0003;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.card-heading-background {
  background-color: var(--hellgrün);
  border-radius: .125rem;
  width: auto;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.card-link {
  height: 100%;
  text-decoration: none;
  display: block;
  position: relative;
}

.card-content {
  z-index: 5;
  opacity: 1;
  object-fit: cover;
  background-color: #006469;
  flex-direction: column;
  justify-content: flex-start;
  height: 30rem;
  margin-top: -4rem;
  padding: 1rem 5% 1.25rem;
  font-size: .875rem;
  display: flex;
  position: relative;
}

.section-13 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 60px 5%;
  display: flex;
  overflow: hidden;
}

.section-14 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  overflow: visible;
}

.grid-23 {
  grid-column-gap: 35px;
  grid-template-rows: auto;
  width: 100%;
  max-width: 1400px;
}

.div-block-9 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0%;
  display: flex;
  position: sticky;
  top: 18%;
}

.div-block-464 {
  margin-bottom: -200px;
}

.card {
  background-color: var(--logo-grün);
  color: #fff;
  border: 1px #403e3d;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 540px;
  min-height: 248px;
  max-height: 340px;
  margin-bottom: 200px;
  padding: 20px 40px 40px;
  font-size: 18px;
  display: flex;
  position: sticky;
  top: 21%;
}

.section-15 {
  background-color: var(--pistazie);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  overflow: hidden;
}

.bold-text-7 {
  font-weight: 600;
}

.bold-text-8 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

.bold-text-9 {
  font-weight: 500;
}

.faq-unten {
  background-color: #fff0;
  border-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 10px 20px 20px 40px;
  transition: all .2s;
  display: flex;
}

.rtb-stellen {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-weight: 600;
}

.faq-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  margin-top: 10px;
  transition: all .2s cubic-bezier(.165, .84, .44, 1);
  display: block;
  overflow: hidden;
}

.faq-oben {
  background-color: var(--pistazie);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 15px;
  transition: all .4s;
  display: flex;
}

.card-faq-icon-wrapper-3 {
  background-color: var(--logo-grün);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-right: 17px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-faq-icon-wrapper-3:hover {
  background-color: var(--aqua);
}

.card-faq-icon-wrapper-3.wei {
  background-color: #00858c00;
}

.card-6 {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 44px #14142b0a;
}

.card-6.faq {
  cursor: pointer;
  border-radius: 0;
  height: auto;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 0;
  transition: box-shadow .3s, transform .3s;
  box-shadow: 0 14px 44px 20px #14142b0a;
}

.card-6.faq:hover {
  transform: translate(0, -8px);
  box-shadow: 0 48px 44px #14142b14;
}

.card-6.faq.transparent {
  background-color: #fff0;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}

.card-6.faq.transparent:hover {
  box-shadow: none;
}

.card-faq-icon-7 {
  background-color: #fff;
  border-radius: 1000000px;
  width: 23px;
  min-height: 2px;
  position: absolute;
}

.card-faq-icon-7.black {
  background-color: #000;
}

.heading-161 {
  margin-top: 0;
  font-size: 26px;
}

.figure-3 {
  width: 60px;
  margin-top: 20px;
}

.section-17 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  overflow: hidden;
}

.grid-25 {
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  width: 100%;
  max-width: 1400px;
}

.div-block-465 {
  width: auto;
  max-width: 480px;
  position: relative;
}

.image-177 {
  border-radius: 100%;
}

.div-block-466 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.div-block-467 {
  background-color: var(--hellgrün);
  color: #fff;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% 172px;
}

.heading-168 {
  text-align: center;
  font-size: 20px;
}

.text-block-18 {
  font-size: 20px;
}

.internationale-steuerberatung {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 100px 5% 60px;
  display: flex;
  overflow: visible;
}

.div-block-468 {
  position: relative;
}

.hero-digital {
  height: 60vh;
}

.background-video-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 100%;
  margin-top: 70px;
  display: flex;
}

.div-block-469 {
  max-width: 1100px;
}

.div-block-469.bg-dark {
  background-color: var(--hellgrün);
  padding: 40px;
}

.grid-26 {
  grid-template-rows: auto;
  margin-top: 40px;
}

.grid-27 {
  grid-column-gap: 39px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1.5fr;
  width: 100%;
  max-width: 1400px;
}

.body-5 {
  padding-top: 0;
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.section-18 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  display: flex;
}

.main-paragraph-4 {
  color: #010b15;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
}

.div-block-516 {
  max-width: none;
  margin-right: 40px;
}

.html-embed-2 {
  color: var(--highlight);
  width: 30px;
  min-width: 30px;
  height: 24px;
  margin-right: 10px;
}

.faq-list-3 {
  border-top: 1px #e4eff3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tab-title-3 {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.tab-top-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  border: 1px #f0f4f6;
  grid-template-rows: auto;
  grid-template-columns: 1fr .65fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: space-around;
  place-items: center stretch;
  margin-bottom: 0;
  padding: 20px 2rem .5rem 0;
  display: grid;
}

.div-block-512 {
  color: var(--schwarz);
  background-color: #deedea52;
  border-radius: 0;
  margin-top: 0;
  padding: 20px 40px;
}

.tab-item-padding-3 {
  cursor: pointer;
  padding: 0;
}

.heading-26 {
  text-transform: none;
  padding-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3em;
}

.tab-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f9fafb;
  border-radius: 9px 9px 0 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-bottom: 0;
  padding: 3rem 2.25rem;
  display: grid;
}

.tab-bottom.tab-bottom-full-width {
  color: #000;
  text-align: left;
  background-color: #fff;
  border: 1px #00000038;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 4rem;
  padding: 0 0 2rem;
  display: flex;
  box-shadow: 0 2px #00000017;
}

.div-block-477 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.tab-item-2 {
  border-top: 1px #e3eef3;
  border-bottom: 1px solid #e3eef3;
  max-width: 40vw;
  padding: 0;
  overflow: hidden;
}

.heading-28 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 26px;
}

.button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #1f4776;
  width: auto;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  transition: all .6s;
}

.button:hover {
  transform: scale(.9);
}

.button.max {
  background-color: var(--hellgrün);
  text-align: center;
  width: auto;
}

.button.max:hover {
  background-color: var(--logo-grün);
}

.heading-27 {
  color: var(--hellgrün);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #96c11e00;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.tab-icon-image-3 {
  filter: none;
  width: 40px;
  padding-top: 0;
}

.div-block-476 {
  flex-direction: column;
  margin-top: 0;
  display: flex;
}

.button-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  display: grid;
}

.paragraph-26 {
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
}

.tab-bottom-wrapper-2 {
  padding-top: 0;
  overflow: visible;
}

.tab-icon-3 {
  background-color: var(--highlight);
  border: 4px #07243b;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0;
  padding: 5px;
  display: flex;
}

.rich-text-block-7 {
  color: #fff;
  margin-bottom: 14px;
}

.relative-wrapper {
  position: relative;
}

.section-19 {
  height: 80vh;
  padding-left: 5%;
  position: relative;
}

.grid-28 {
  z-index: 2;
  grid-template-rows: auto;
  grid-auto-flow: column;
  place-items: end center;
  height: 100%;
  padding-right: 0%;
  position: relative;
}

.image-179 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
}

.div-block-517 {
  background-color: var(--white);
  margin-bottom: 40px;
  padding: 40px 5%;
  box-shadow: 0 2px 50px -19px #0003;
}

.div-block-518 {
  width: auto;
  height: 100%;
  max-height: 80vh;
}

.body-6 {
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.grid-29 {
  grid-template-rows: auto;
  margin-top: 20px;
}

.section-20 {
  background-color: var(--logo-grün);
  height: auto;
  padding: 0 5% 0 0%;
}

.grid-30 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.div-block-519 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.bold-text-12 {
  color: #fff;
}

.link-kontakt {
  color: #fff;
  margin-top: 0;
  font-weight: 300;
  text-decoration: none;
}

.div-block-520 {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 40px;
}

.image-181, .image-182, .image-183 {
  width: 40px;
}

.heading-169 {
  color: #fff;
  font-size: 30px;
  line-height: 1em;
}

.div-block-521 {
  background-color: #96c11e2e;
  width: 80px;
  height: 350px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-521-copy {
  z-index: 3;
  inset: 0% 0% 0% auto;
  background-color: #96c11ecf;
  width: 120px;
  height: 120px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-521-copy.hide {
  display: none;
}

.div-block-522 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.image-184 {
  width: 100%;
}

.div-block-524 {
  background-image: url('../images/pexels-sora-shimazaki-5673488-1.jpg');
  background-position: 40%;
  background-size: cover;
}

.image-185 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-block-22, .hide {
  display: none;
}

.section-21 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 100px 5% 60px;
  font-size: 18px;
  line-height: 1.5em;
  display: flex;
}

.body-7 {
  font-family: snasnepo, sans-serif;
}

.heading-172 {
  border-left: 5px solid var(--highlight);
  padding-left: 20px;
}

.rtb {
  width: 100%;
  max-width: 1400px;
}

.list-item {
  list-style-type: none;
}

.text-block-23 {
  color: var(--schwarz);
  margin-top: 20px;
  font-size: 14px;
}

.list-item-2 {
  list-style-type: none;
}

.paragraph-34 {
  font-weight: 300;
}

.bold-text-15 {
  display: block;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--hellgrün);
}

.card-faq-content-top-2-copy {
  background-color: var(--weiß);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px 0 0;
  display: flex;
}

.card-faq-content-top-2-copy.gr-n {
  background-color: var(--pistazie);
  padding-bottom: 20px;
  padding-left: 20px;
}

.nav-en {
  z-index: 9999;
  background-color: #fff;
  padding-left: 5%;
  padding-right: 5%;
  position: fixed;
  inset: 0% 0% auto;
}

.footer-en {
  background-color: #f5f5f5;
  padding: 60px 5% 20px;
}

.image-186 {
  width: 40px;
  margin-right: 20px;
}

.div-block-526 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-187 {
  width: 40px;
  margin-right: 20px;
}

.div-block-527 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-528, .div-block-529 {
  width: 50%;
}

.image-188 {
  object-fit: cover;
  object-position: 50% 0%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.body-8 {
  font-family: snasnepo, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.section-22 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  display: flex;
}

.heading-173 {
  font-size: 26px;
}

.rich-text-block-9 {
  width: 100%;
  max-width: 1400px;
}

.rich-text-block-10 {
  max-width: 1400px;
}

.bold-text-16 {
  color: #000;
}

@media screen and (min-width: 1280px) {
  .div-block._2 {
    bottom: 17%;
  }

  .div-block-2 {
    background-position: 50% 3%;
    margin-top: 40px;
  }

  .faq {
    padding-right: 5%;
  }

  .hero-word-rotation {
    font-size: 70px;
  }

  .steuerberatung {
    margin-top: 0;
    padding-top: 60px;
  }

  .section-10 {
    padding-bottom: 88px;
  }

  .content-wrap._40px {
    background-color: #00858cdb;
  }

  .image-188 {
    width: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .div-block-2 {
    background-position: 50% 3%;
    margin-top: 0;
  }

  .div-block-392, .karriere {
    max-width: none;
  }

  .image-2 {
    object-fit: cover;
    object-position: 50% 20%;
    overflow: hidden;
  }

  .grid-7 {
    width: 100%;
  }

  .image-10.links {
    object-position: 100% 0%;
  }

  .grid-14 {
    max-height: 900px;
  }

  .div-block-439 {
    bottom: 3%;
  }

  .name-wrap-copy {
    justify-content: flex-start;
  }

  .card-faq-content-top-2 {
    height: 52.7969px;
  }

  .image-17.top {
    object-position: 50% 50%;
  }

  .div-block-449 {
    bottom: -27%;
  }

  .faq-list {
    max-width: 1400px;
  }

  .karriere-hero {
    margin-top: 0;
  }

  .karriere-section {
    max-width: none;
  }

  .card-heading {
    font-size: 1.375rem;
  }

  .div-block-517 {
    margin-bottom: 0;
  }

  .image-185 {
    max-height: 900px;
  }
}

@media screen and (min-width: 1920px) {
  .navbar-logo-left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60px;
    display: flex;
    box-shadow: 0 2px 20px -15px #0003;
  }

  .hero {
    width: 100%;
  }

  .hero-h1 {
    text-align: left;
    width: 820px;
  }

  .hero-h1.white {
    text-align: center;
    width: auto;
  }

  .div-block {
    width: 45%;
    bottom: 4%;
    right: 0%;
    overflow: visible;
  }

  .div-block._2 {
    width: 25%;
    bottom: 13%;
    left: -9%;
    right: 65px;
  }

  .werte {
    padding-bottom: 100px;
  }

  .team {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-wrap {
    max-width: 1400px;
  }

  .heading-wrap.white {
    justify-content: center;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
  }

  .div-block-5, .image {
    height: 380px;
  }

  .div-block-391 {
    max-width: 1400px;
    left: 0;
  }

  .leistungen {
    padding-right: 5%;
  }

  .div-block-392 {
    width: auto;
    left: 0;
    right: 0;
  }

  .grid-4-columns {
    justify-items: stretch;
  }

  .karriere {
    max-width: none;
  }

  .div-block-398 {
    max-width: 1400px;
  }

  .faq {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 5%;
    display: flex;
  }

  .slider {
    width: 100%;
    max-width: 1400px;
  }

  .grid-5 {
    max-width: 1400px;
  }

  .kontakt {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-left: 5%;
    display: flex;
  }

  .grid-6 {
    max-width: 1400px;
  }

  .footer {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    display: flex;
  }

  .hero-ber-uns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    display: flex;
  }

  .grid-9 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .image-10 {
    object-position: 50% 10%;
    height: 100%;
  }

  .div-block-406 {
    width: 100%;
    max-width: 1400px;
    padding-bottom: 0;
    padding-left: 5%;
  }

  .hero-word-rotation {
    height: 130px;
    padding-left: 20px;
    font-size: 100px;
  }

  .div-block-407 {
    width: auto;
    height: 130px;
  }

  .grid-11 {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1.25fr;
    justify-items: center;
    margin-top: 20px;
  }

  .grid-12 {
    width: 100%;
  }

  .div-block-438 {
    max-height: 900px;
  }

  .image-12 {
    bottom: -7%;
  }

  .faqs-wrapper-3 {
    width: auto;
  }

  .card-faq-content-bottom-2 {
    margin-top: 0;
    padding-top: 0;
  }

  .cta-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    place-content: center;
    place-items: center;
    width: auto;
    max-width: none;
    margin-top: 20px;
  }

  .grid-image-wrapper.animate-in, .media-fit-cover.nomax {
    min-height: 430px;
  }

  .hero-leistungen {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 5%;
  }

  .grid-17 {
    overflow: hidden;
  }

  .image-18 {
    min-height: auto;
    top: 0;
    left: -217px;
  }

  .hero-content-stb {
    max-width: none;
    margin-right: -1px;
    padding-left: 5%;
    padding-right: 5%;
    position: static;
    left: 0%;
    right: 17px;
  }

  .absolut-mint {
    z-index: -2;
    width: 550px;
  }

  .div-block-449 {
    height: 300px;
    bottom: -21%;
  }

  .div-block-450 {
    min-width: auto;
    left: -119px;
  }

  .hero-content-copy {
    top: 0;
    bottom: 0;
    left: 15%;
  }

  .hero-content-copy.start {
    position: relative;
  }

  .div-block-449-copy {
    width: 130px;
  }

  .steuerberatung {
    padding-top: 100px;
  }

  .faq-answer-box {
    border-top: 1px #000;
    margin-top: 0;
    padding-top: 0;
  }

  .main-paragraph-3 {
    line-height: 1.5em;
  }

  .faq-trigger {
    border-bottom: 1px #000;
  }

  .div-block-452 {
    margin-bottom: 40px;
  }

  .section-10 {
    overflow: visible;
  }

  .karriere-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .grid-20 {
    width: 100%;
    max-width: 1400px;
  }

  .div-block-455 {
    padding-bottom: 60px;
  }

  .karriere-section {
    max-width: none;
    padding-right: 5%;
  }

  .content-wrap._40px {
    background-color: #00858c;
  }

  .grid-21 {
    max-width: 1400px;
  }

  .section-12, .section-13 {
    overflow: hidden;
  }

  .section-14 {
    overflow: visible;
  }

  .card {
    max-width: none;
  }

  .faq-unten {
    padding-left: 40px;
    padding-right: 0;
  }

  .card-6.faq {
    padding-bottom: 20px;
  }

  .card-6.faq.transparent {
    max-width: 1400px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .section-17 {
    overflow: hidden;
  }

  .main-paragraph-4 {
    line-height: 1.5em;
  }

  .faq-list-3 {
    justify-content: center;
    align-items: flex-start;
  }

  .tab-bottom.tab-bottom-full-width {
    margin-bottom: 0;
  }

  .tab-item-2 {
    margin-bottom: 40px;
  }

  .tab-bottom-wrapper-2 {
    width: 755.563px;
  }

  .section-19 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding-right: 5%;
    display: flex;
  }

  .grid-28 {
    max-width: 1400px;
  }

  .image-179 {
    object-position: 50% 15%;
    height: 60vh;
    max-height: 80vh;
    padding-top: 100px;
  }

  .div-block-517 {
    margin-top: 100px;
  }

  .div-block-518 {
    max-height: 80vh;
  }

  .section-20 {
    background-color: var(--logo-grün);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0%;
    display: flex;
  }

  .grid-30 {
    background-color: var(--logo-grün);
    grid-template-columns: 1fr .75fr;
    max-width: 1400px;
  }

  .div-block-520 {
    padding-left: 60px;
  }

  .div-block-521 {
    background-color: #96c11e24;
    width: 760px;
    inset: auto auto 0% 0%;
  }

  .div-block-521-copy {
    background-color: #96c11e;
    width: 120px;
    inset: auto 0% 0%;
  }

  .image-185 {
    max-height: 900px;
  }

  .nav-en {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-188 {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 22px;
  }

  p {
    font-size: 17px;
  }

  ul {
    margin-bottom: 0;
  }

  li {
    font-size: 17px;
  }

  .container {
    max-width: none;
  }

  .nav-menu-wrapper {
    background-color: #0000;
    width: 100%;
  }

  .nav-menu-two {
    background-color: var(--white);
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .button-primary {
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
  }

  .button-primary._30px {
    margin-top: 20px;
  }

  .button-primary.fix {
    justify-content: center;
  }

  .menu-button {
    z-index: 5;
    background-color: var(--weiß);
    color: var(--schwarz);
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
    display: none;
  }

  .hero {
    height: auto;
    padding-top: 67px;
  }

  .hero-h1.center {
    text-align: center;
  }

  .hero-heading {
    text-align: center;
    font-size: 45px;
  }

  .grid {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block {
    z-index: 3;
    bottom: 26%;
  }

  .div-block-2 {
    background-position: 50%;
    min-height: 600px;
    position: static;
    inset: 0%;
  }

  .werte {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .small-heading {
    text-align: left;
    position: static;
  }

  .big-heading {
    text-align: left;
    font-size: 45px;
  }

  .big-heading._30px {
    text-align: left;
    margin-bottom: 0;
  }

  .main-paragraph {
    text-align: left;
    font-size: 17px;
  }

  .main-paragraph.quote {
    font-size: 15px;
  }

  .main-paragraph.heroleistung {
    text-align: center;
    font-size: 17px;
  }

  .main-paragraph.px {
    margin-top: 0;
  }

  .main-paragraph.centerm, .main-paragraph.left {
    text-align: left;
  }

  .main-paragraph.mobileleft {
    text-align: left;
    margin-top: 10px;
  }

  .grid-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-3 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .heading-wrap {
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  .heading-wrap.white {
    justify-content: center;
    align-items: flex-start;
  }

  .heading-wrap.center {
    padding-top: 20px;
  }

  .heading-wrap._40px {
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }

  .heading-wrap.centerm {
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
  }

  .grid-3 {
    grid-template-rows: auto auto auto;
  }

  .image {
    height: 300px;
  }

  .div-block-391 {
    background-color: #eaeaea;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
  }

  .leistungen {
    padding: 0 0%;
  }

  .div-block-392 {
    width: 100%;
    padding: 40px 5vw 33px;
    position: static;
  }

  .heading-153 {
    font-size: 17px;
  }

  .grid-4-columns {
    grid-template-columns: 1fr 1fr;
  }

  .rotation-heading {
    text-align: left;
    height: 68.5px;
    font-size: 45px;
  }

  .div-block-398 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq {
    padding-top: 40px;
    padding-right: 5%;
  }

  .grid-5 {
    flex-direction: column;
    display: flex;
  }

  .quote-text-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    display: flex;
  }

  .quote-image-wrapper {
    justify-content: flex-start;
    align-items: center;
    top: -26px;
  }

  .image-2 {
    object-fit: cover;
    width: 500px;
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }

  .image-2.top {
    object-position: 50% 30%;
  }

  .image-2.middle {
    object-position: 50% 40%;
  }

  .question {
    text-align: left;
    font-size: 20px;
  }

  .answer {
    text-align: left;
    font-size: 17px;
  }

  .div-block-399 {
    height: 2px;
  }

  .name-wrapper {
    background-color: var(--pistazie);
    color: var(--pistazie);
    bottom: 6%;
    right: 0%;
  }

  .text-block-3 {
    font-size: 16px;
  }

  .div-block-400, .div-block-400.move {
    background-color: var(--hellgrün);
  }

  .image-3 {
    filter: invert();
  }

  .kontakt {
    padding-left: 5%;
  }

  .grid-6 {
    flex-direction: column;
    display: flex;
  }

  .div-block-401 {
    order: 0;
    width: 100%;
    height: auto;
    max-height: 350px;
  }

  .overflow-maps, .image-4 {
    max-height: 350px;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-content {
    grid-column-gap: 13px;
    grid-row-gap: 40px;
    flex-direction: row;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    margin-top: 40px;
    display: grid;
    left: 0;
  }

  .grid-7 {
    flex-direction: column;
    display: flex;
  }

  .image-8 {
    width: 50%;
    max-width: none;
  }

  .div-block-403 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
    margin-top: 10px;
  }

  .name-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    display: flex;
    position: static;
    inset: auto 20% 0%;
  }

  .bold-text {
    font-size: 28px;
  }

  .h3 {
    font-size: 24px;
  }

  .hero-ber-uns {
    height: auto;
    margin-top: 60px;
  }

  .grid-9 {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    height: auto;
    max-height: none;
  }

  .image-10 {
    height: 250px;
  }

  .image-10.frau, .image-10.links {
    object-position: 100% 0%;
  }

  .div-block-406 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .hero-word-rotation {
    font-size: 60px;
  }

  .grid-12 {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column;
    margin-top: 0;
    display: flex;
  }

  .div-block-437 {
    flex-direction: column;
    order: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .image-11 {
    object-fit: cover;
    width: auto;
    height: 483.844px;
    position: static;
  }

  .werte-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .h3-2 {
    text-align: center;
    font-size: 14px;
  }

  .h3-2.black {
    font-size: 26px;
  }

  .main-paragraph-2 {
    text-align: left;
    font-size: 17px;
  }

  .main-paragraph-2.center-mobile {
    text-align: center;
  }

  .heading-158 {
    font-size: 55px;
  }

  .section-6 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-14 {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .div-block-439 {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    left: 44%;
    right: 3%;
  }

  .name-wrap-copy {
    flex-direction: column;
    order: -1;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 10px;
    padding-left: 0;
    display: flex;
  }

  .rich-text-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .subheading-vita {
    text-align: left;
    align-items: center;
    display: flex;
  }

  .title-3.card-faq {
    font-size: 20px;
  }

  .faqs-wrapper-3 {
    margin-bottom: 0;
  }

  .card-5.faq {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .card-faq-icon-wrapper-2 {
    width: 35px;
    min-width: 35px;
    min-height: 35px;
    max-height: 35px;
  }

  .card-faq-content-bottom-2 {
    margin-top: 0;
  }

  .faqs-grid-3 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .section-8 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-16 {
    flex-direction: column;
    display: flex;
  }

  .div-block-442 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    position: static;
  }

  .image-17 {
    max-height: 600px;
  }

  .div-block-443 {
    max-height: 500px;
  }

  .slide-2 {
    width: 50%;
    max-height: 500px;
  }

  .div-block-444 {
    bottom: 5%;
    left: 9%;
    right: 8%;
  }

  .grid-image-wrapper.animate-in {
    object-position: 50% 0%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: 300px;
    display: flex;
    position: relative;
    top: 0;
    overflow: hidden;
  }

  .media-fit-cover {
    object-position: 50% 25%;
  }

  .media-fit-cover.nomax {
    object-position: 50% 30%;
    width: 100%;
    max-height: 300px;
  }

  .media-fit-cover.nomax.center {
    object-position: 50% 75%;
  }

  .grid-17 {
    flex-direction: column;
    display: flex;
  }

  .hero-content-stb {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .absolut-mint {
    z-index: -1;
    top: -57%;
    bottom: 27%;
  }

  .div-block-449 {
    bottom: 50%;
    right: -20%;
  }

  .hero-content-copy.start {
    align-items: center;
    padding-top: 15px;
    left: auto;
  }

  .steuerberatung {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq-answer-box {
    background-color: #fff;
    margin-top: 0;
    padding: 0 20px 0 40px;
  }

  .faq-arrow-box {
    width: 45px;
    min-width: 45px;
    height: 45px;
    min-height: 45px;
  }

  .accordion-wrapper {
    background-color: #fff;
    margin-top: 20px;
    padding-bottom: 10px;
    box-shadow: 0 6px 20px -9px #0003;
  }

  .accordion-wrapper.hide {
    margin-top: 20px;
  }

  .accordion-wrapper.first {
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main-paragraph-3 {
    margin-top: 0;
    font-size: 17px;
  }

  .faq-center-box {
    margin-left: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .big-heading-2 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .faq-arrow {
    width: 17px;
  }

  .faq-arrow.black {
    width: 25px;
  }

  .faq-trigger {
    box-shadow: none;
    align-items: center;
    height: auto;
    overflow: hidden;
  }

  .faq-list {
    margin-bottom: 0;
  }

  .grid-18 {
    flex-direction: column;
    display: flex;
  }

  .cta-leistungen {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .div-block-452 {
    position: static;
  }

  .section-10 {
    padding-bottom: 34px;
    overflow: hidden;
  }

  .karriere-hero {
    background-image: none;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
  }

  .grid-20 {
    background-color: var(--logo-grün);
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    padding-top: 0;
    position: static;
  }

  .div-block-456 {
    border-left-color: var(--highlight);
    margin-top: 0;
  }

  .big-heading-copy.left, .word-rotation {
    text-align: left;
  }

  .karriere-section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 5%;
  }

  .content-wrap._40px {
    text-align: left;
    background-color: #00858c00;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .grid-21 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .background-video-4 {
    background-image: none;
    width: 100%;
    min-height: 500px;
  }

  .div-block-458 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .section-11 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-12 {
    padding-bottom: 40px;
  }

  .text-block-16 {
    font-size: 32px;
  }

  .text-block-17 {
    font-size: 17px;
  }

  .heading-wrapper.centerm {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .card-item {
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 30rem;
    display: flex;
  }

  .card-background {
    background-color: #fff;
    background-image: none;
  }

  .paragraph {
    text-align: center;
    font-size: 17px;
  }

  .paragraph.left {
    text-align: left;
    line-height: 1.5em;
  }

  .card-heading-holder {
    margin-bottom: 1rem;
  }

  .cards-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    order: 0;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .card-image {
    object-position: 50% 0%;
  }

  .card-heading {
    height: 3rem;
    padding-top: 0;
  }

  .card-link {
    width: auto;
  }

  .card-content {
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin-top: 0;
    padding: 2rem 5%;
  }

  .section-13 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-14 {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-23 {
    flex-direction: column;
    display: flex;
  }

  .div-block-9 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: static;
  }

  .div-block-464 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .card {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    min-height: auto;
    max-height: none;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: static;
  }

  .section-15 {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .bold-text-8 {
    font-size: 17px;
  }

  .bold-text-9 {
    font-size: 15px;
  }

  .faq-unten {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    display: flex;
  }

  .faq-wrap {
    margin-top: 10px;
  }

  .faq-oben {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .card-6.faq {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .card-6.faq.transparent {
    padding-top: 0;
    padding-bottom: 0;
    transition: none;
  }

  .card-6.faq.transparent:hover {
    box-shadow: none;
  }

  .heading-161 {
    font-size: 20px;
  }

  .section-17 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-25 {
    flex-direction: column;
    display: flex;
  }

  .div-block-465 {
    width: 80%;
    max-width: none;
    max-height: 400px;
    overflow: hidden;
  }

  .image-177 {
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 0%;
    width: 100%;
    max-width: none;
    max-height: 400px;
    overflow: hidden;
  }

  .div-block-466 {
    align-items: center;
  }

  .div-block-467 {
    padding-top: 0;
    padding-bottom: 10px;
    inset: auto 0% 0%;
  }

  .heading-168 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .text-block-18 {
    font-size: 15px;
  }

  .internationale-steuerberatung {
    padding-top: 40px;
  }

  .grid-27 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-18 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .main-paragraph-4 {
    font-size: 17px;
    font-weight: 300;
  }

  .html-embed-2 {
    min-width: 24px;
    min-height: 24px;
  }

  .faq-list-3 {
    width: 100%;
  }

  .tab-title-3 {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-top-3 {
    padding-left: 0;
  }

  .div-block-512 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .tab-item-padding-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-26 {
    font-size: 22px;
  }

  .tab-bottom.tab-bottom-full-width {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .div-block-477 {
    width: 100%;
  }

  .tab-item-2 {
    max-width: none;
  }

  .heading-28 {
    font-size: 18px;
  }

  .tab-icon-image-3 {
    width: 30px;
  }

  .div-block-476 {
    font-size: 17px;
  }

  .tab-icon-3 {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }

  .section-19 {
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    padding-right: 5%;
  }

  .grid-28 {
    flex-direction: column;
    display: flex;
  }

  .image-179 {
    max-width: 400px;
    max-height: 400px;
  }

  .div-block-517 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-518 {
    max-height: 400px;
    display: none;
  }

  .section-20 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 5%;
  }

  .grid-30 {
    grid-template-columns: .75fr 1fr;
    display: flex;
  }

  .div-block-519 {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .link-kontakt {
    text-align: center;
    font-size: 17px;
  }

  .div-block-520 {
    background-color: var(--logo-grün);
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
    padding-left: 0;
    display: flex;
  }

  .heading-169 {
    text-align: center;
    font-size: 22px;
  }

  .div-block-521-copy {
    z-index: -1;
    inset: auto 0% 63% auto;
  }

  .div-block-522 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    display: flex;
  }

  .div-block-523 {
    flex-direction: column;
    order: -1;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .image-184 {
    width: 100%;
  }

  .div-block-524 {
    display: none;
  }

  .image-185 {
    object-fit: cover;
    object-position: 0% 10%;
    width: 400px;
    height: 343.527px;
  }

  .bold-text-13 {
    font-size: 17px;
  }

  .text-block-22 {
    display: none;
  }

  .heading-171 {
    font-size: 18px;
  }

  .div-block-525 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .section-21 {
    padding-bottom: 40px;
  }

  .text-block-23 {
    text-align: center;
  }

  .paragraph-33 {
    font-size: 15px;
  }

  .paragraph-34 {
    text-align: left;
  }

  .image-187 {
    width: 30px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .div-block-527 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .div-block-528 {
    width: 100%;
  }

  .div-block-529 {
    width: auto;
  }

  .image-188 {
    height: auto;
    position: static;
  }

  .rich-text-block-8 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    line-height: 1.4em;
  }

  ul {
    padding-left: 20px;
  }

  li {
    font-size: 16px;
    line-height: 1.4em;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
    margin-left: 0;
  }

  .button-primary {
    text-align: center;
    justify-content: center;
  }

  .button-primary._30px {
    margin-top: 10px;
  }

  .menu-button {
    -webkit-text-stroke-color: var(--schwarz);
  }

  .hero {
    height: auto;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }

  .hero-h1 {
    font-size: 15px;
  }

  .hero-h1.white.center {
    margin-bottom: 20px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block {
    bottom: 41%;
  }

  .div-block-2 {
    min-height: 400px;
    max-height: none;
    position: static;
    inset: 0%;
  }

  .werte {
    padding-top: 10px;
  }

  .small-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.2em;
  }

  .small-heading.white {
    margin-bottom: 10px;
  }

  .big-heading {
    margin-top: 0;
    padding-left: 20px;
    font-size: 32px;
  }

  .big-heading.space, .big-heading._30px {
    padding-left: 20px;
  }

  .big-heading.white.no-green {
    padding-right: 20px;
  }

  .main-paragraph {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.4em;
  }

  .main-paragraph.black {
    margin-top: 20px;
  }

  .main-paragraph.quote {
    margin-top: 0;
  }

  .main-paragraph.heroleistung {
    font-size: 16px;
  }

  .main-paragraph.px {
    margin-top: 20px;
  }

  .main-paragraph.mobileleft {
    text-align: left;
  }

  .team {
    margin-top: 40px;
  }

  .image {
    height: 200px;
  }

  .icon-good {
    width: 45px;
    height: 45px;
  }

  .card-v2-2.partner {
    justify-content: center;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .heading-153 {
    text-align: left;
    align-items: flex-start;
    width: 336.464px;
  }

  .grid-4-columns {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .roation-wrapper {
    height: 51.5938px;
  }

  .rotation-heading {
    height: 51.5938px;
    font-size: 32px;
  }

  .background-video-2 {
    min-height: 500px;
  }

  .quote-image-wrapper {
    top: -41px;
  }

  .question {
    font-size: 18px;
  }

  .answer {
    padding-left: 0;
    font-size: 16px;
  }

  .name-wrapper {
    align-items: center;
    max-width: none;
    padding-top: 10px;
    padding-bottom: 10px;
    inset: auto 0% 0%;
  }

  .text-block-3 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.2em;
  }

  .left-arrow {
    inset: auto auto -3% 0%;
  }

  .div-block-400 {
    background-color: var(--hellgrün);
  }

  .div-block-400.move {
    justify-content: center;
    align-items: center;
    padding-right: 5px;
  }

  .image-3, .image-3.move {
    filter: invert();
  }

  .right-arrow {
    padding-bottom: 0;
    inset: auto -6% 3% auto;
  }

  .standort {
    font-size: 18px;
  }

  .link-block.shadow {
    font-size: 16px;
  }

  .footer {
    padding: 32px 15px 30px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
    left: 0;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link {
    margin-top: 10px;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .icon-2 {
    inset: auto -14% 0% 24px;
  }

  .text-block-7 {
    margin-top: 0;
    font-size: 15px;
  }

  .bold-text {
    font-size: 24px;
  }

  .h3 {
    font-size: 22px;
  }

  .bold-text-2 {
    font-size: 16px;
  }

  .image-10 {
    height: 200px;
  }

  .grid-12 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 0;
  }

  .div-block-437 {
    align-self: center;
  }

  .image-11 {
    height: 300px;
  }

  .werte-div {
    margin-top: 40px;
  }

  .h3-2 {
    color: #fff;
    text-transform: none;
    margin-bottom: 0;
  }

  .h3-2.black {
    border-top-width: 2px;
    border-bottom-width: 2px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .main-paragraph-2 {
    text-align: center;
    padding-left: 0;
    font-size: 16px;
  }

  .main-paragraph-2.center-mobile {
    font-size: 16px;
  }

  .heading-158 {
    margin-top: 0;
    font-size: 40px;
  }

  .text-block-8 {
    font-size: 18px;
  }

  .grid-14, .div-block-438 {
    width: 100%;
  }

  .name-wrap-copy {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .rich-text-block {
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  .subheading-vita {
    font-size: 17px;
  }

  .section-7 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .title-3.card-faq {
    font-size: 17px;
    line-height: 1.4em;
  }

  .card-5.faq {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 30px;
  }

  .card-faq-icon-5 {
    min-height: 20px;
  }

  .card-faq-icon-6 {
    width: 20px;
  }

  .card-faq-icon-wrapper-2 {
    width: 30px;
    min-width: 30px;
    min-height: 30px;
    max-height: 40px;
    margin-right: 15px;
  }

  .card-faq-content-bottom-2 {
    margin-left: 0;
  }

  .faqs-grid-3 {
    margin-top: 10px;
  }

  .cta-ber-uns {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-3 {
    min-height: 400px;
  }

  .image-17 {
    object-position: 50% 10%;
    max-height: 400px;
  }

  .slide-2 {
    width: 100%;
  }

  .div-block-444 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .right-arrow-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .icon-3 {
    display: none;
  }

  .left-arrow-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-block-13 {
    font-size: 18px;
  }

  .grid-image-wrapper.animate-in {
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: auto;
    overflow: visible;
  }

  .image-overlay, .media-fit-cover {
    min-height: 400px;
  }

  .hero-content-stb {
    width: auto;
    margin-right: 0;
  }

  .div-block-449 {
    bottom: 47%;
  }

  .hero-content-copy.start {
    margin-top: 0;
  }

  .faq-answer-box {
    padding-left: 20px;
    padding-right: 0;
  }

  .faq-container {
    justify-content: space-between;
    margin-right: 0;
  }

  .faq-arrow-box.transparent {
    width: auto;
    min-width: 35px;
    max-width: 35px;
    height: auto;
    min-height: 35px;
    max-height: 35px;
    margin-left: 0;
    padding: 10px;
    position: static;
  }

  .accordion-wrapper {
    margin-top: 20px;
  }

  .main-paragraph-3 {
    text-align: left;
    font-size: 15px;
  }

  .small-heading-2 {
    text-align: center;
  }

  .faq-center-box {
    align-self: center;
    width: 100%;
    margin-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .big-heading-2 {
    font-size: 20px;
  }

  .div-block-452 {
    position: static;
  }

  .big-heading-copy {
    font-size: 45px;
  }

  .word-rotation {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 45px;
    display: flex;
  }

  .content-wrap._40px {
    padding-bottom: 20px;
  }

  .background-video-4 {
    min-height: 300px;
  }

  .grid-22 {
    grid-template-columns: 1fr 1fr;
  }

  .card-item {
    height: 25rem;
  }

  .paragraph.left {
    font-size: 15px;
  }

  .card-heading {
    border-left-style: solid;
    height: auto;
    padding-left: .75rem;
    font-size: 18px;
    line-height: 1.2em;
  }

  .card-content {
    align-items: flex-start;
  }

  .section-13 {
    padding-bottom: 20px;
  }

  .section-14 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .div-block-9 {
    padding-bottom: 0%;
    top: 32%;
  }

  .card {
    padding-top: 10px;
    padding-bottom: 20px;
    top: 48%;
  }

  .bold-text-8 {
    margin-top: 0;
  }

  .faq-unten {
    margin-bottom: 20px;
  }

  .faq-wrap {
    margin-top: 0;
  }

  .card-faq-icon-wrapper-3 {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    max-height: 40px;
    margin-right: 15px;
  }

  .card-6.faq {
    padding-left: 30px;
    padding-right: 30px;
  }

  .card-faq-icon-7 {
    width: 20px;
  }

  .div-block-467 {
    inset: auto 0% 0%;
  }

  .grid-26 {
    flex-direction: column;
    display: flex;
  }

  .grid-27 {
    grid-row-gap: 30px;
  }

  .main-paragraph-4 {
    text-align: left;
    font-size: 16px;
  }

  .tab-top-3 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding: 0 1rem 0 0;
  }

  .heading-26 {
    font-size: 20px;
  }

  .tab-bottom {
    grid-template-columns: 1fr 3.5rem;
    padding: 2rem;
  }

  .div-block-477 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .tab-item-2 {
    margin-bottom: 20px;
  }

  .heading-28 {
    font-size: 18px;
  }

  .button.max {
    line-height: 1.1em;
  }

  .heading-27 {
    font-size: 15px;
  }

  .div-block-476 {
    font-size: 16px;
  }

  .grid-30 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .div-block-519 {
    margin-top: 10px;
  }

  .bold-text-12 {
    margin-top: 20px;
    font-size: 16px;
    display: inline-block;
  }

  .link-kontakt {
    text-align: center;
    font-size: 16px;
  }

  .image-181, .image-182, .image-183 {
    width: 25px;
  }

  .text-block-19, .text-block-20 {
    font-size: 16px;
  }

  .text-block-21 {
    text-align: center;
  }

  .icon-5 {
    display: none;
  }

  .text-block-22 {
    align-items: center;
    font-size: 30px;
    font-weight: 300;
    display: flex;
  }

  .hide.tablet {
    display: inline-block;
  }

  .bold-text-14 {
    font-size: 18px;
  }

  .heading-171 {
    margin-top: 0;
  }

  .div-block-525 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--logo-grün);
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 10px;
    padding: 10px;
    display: grid;
  }

  .section-21 {
    padding-top: 60px;
  }

  .heading-172 {
    border-left: 5px solid var(--hellgrün);
    padding-left: 20px;
    font-size: 32px;
  }

  .text-block-23 {
    text-align: center;
    font-size: 12px;
  }

  .icon-6 {
    color: var(--schwarz);
  }

  .image-187 {
    width: 40px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .div-block-527 {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  li {
    font-size: 15px;
    line-height: 1.5em;
  }

  .container {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .mobile-margin-top-10 {
    margin-left: 0;
  }

  .button-primary {
    background-color: var(--hellgrün);
    color: #fff;
    width: auto;
    min-width: 190px;
    line-height: 1.2em;
  }

  .button-primary._30px {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    line-height: 1.2em;
  }

  .button-primary.fix {
    line-height: 1.2em;
  }

  .hero {
    height: auto;
  }

  .hero-h1 {
    text-align: center;
    line-height: 1.3em;
  }

  .hero-h1.white.lesitungen {
    flex-flow: column;
    display: flex;
  }

  .hero-heading {
    color: #fff;
    font-size: 24px;
  }

  .grid {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    display: flex;
  }

  .div-block {
    height: 10%;
    position: static;
  }

  .div-block._2 {
    height: 150px;
    top: 431px;
    bottom: 0%;
  }

  .div-block-2 {
    background-position: 50% 0;
    min-height: 280px;
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .werte {
    padding-top: 40px;
  }

  .small-heading {
    text-align: left;
  }

  .small-heading.white, .small-heading.white.center {
    text-align: center;
  }

  .small-heading.white.left {
    text-align: left;
  }

  .small-heading.white.centerm {
    text-align: center;
  }

  .small-heading.centerm {
    text-align: left;
  }

  .big-heading {
    padding-left: 20px;
    font-size: 28px;
  }

  .big-heading.space {
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .big-heading._30px {
    margin-bottom: 0;
    padding-left: 20px;
  }

  .big-heading.white {
    padding-left: 20px;
  }

  .big-heading.white.no-green {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .big-heading.white.no-break {
    text-align: center;
    white-space: normal;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    display: flex;
  }

  .big-heading.white.center {
    border-left-style: none;
  }

  .big-heading.white.centerm {
    text-align: center;
    border-left-style: none;
    padding-left: 0;
  }

  .big-heading.center {
    text-align: left;
    padding-left: 20px;
  }

  .main-paragraph {
    margin-top: 10px;
    font-size: 15px;
  }

  .main-paragraph.white.center {
    text-align: center;
  }

  .main-paragraph.heroleistung {
    font-size: 15px;
  }

  .heading-wrap {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  .heading-wrap.white {
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-wrap.center {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-wrap._40px {
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .grid-3 {
    place-items: center;
  }

  .div-block-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image {
    height: 150px;
  }

  .icon-good {
    width: 40px;
    height: 40px;
  }

  .card-v2-2.partner {
    justify-content: flex-start;
  }

  .heading-153 {
    text-align: left;
    align-items: flex-start;
    width: auto;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2em;
  }

  .grid-4-columns {
    grid-template-columns: 1fr;
  }

  .karriere {
    padding-top: 40px;
  }

  .roation-wrapper {
    margin-left: 0;
  }

  .rotation-heading {
    font-size: 28px;
  }

  .background-video-2 {
    min-height: 600px;
  }

  .faq {
    padding-bottom: 0;
  }

  .slider {
    min-height: 840px;
  }

  .grid-5 {
    max-height: none;
  }

  .quote-text-wrapper {
    margin-top: 0;
  }

  .quote-image-wrapper {
    flex-flow: column;
    top: 0;
  }

  .image-2 {
    object-position: 50% 15%;
    height: auto;
    min-height: auto;
    max-height: 300px;
  }

  .image-2.top {
    height: 100%;
    max-height: 280px;
  }

  .image-2.middle {
    max-height: 300px;
  }

  .question {
    height: auto;
    padding-left: 0;
  }

  .answer {
    font-size: 15px;
  }

  .name-wrapper {
    background-color: var(--weiß);
    color: var(--white);
    align-items: center;
    max-width: none;
    padding: 0 10px;
    position: static;
    bottom: 0%;
    right: 0%;
  }

  .text-block-3 {
    text-align: center;
    font-size: 15px;
  }

  .left-arrow {
    align-items: center;
    padding-bottom: 0;
    inset: auto auto 3% 0%;
  }

  .div-block-400, .div-block-400.move {
    width: 30px;
    height: 30px;
  }

  .image-3, .image-3.move {
    filter: invert();
  }

  .right-arrow {
    align-items: center;
    padding-bottom: 0;
    inset: auto 0% 3% auto;
  }

  .kontakt {
    padding-top: 20px;
  }

  .standort {
    font-size: 16px;
  }

  .link-block {
    width: 232.696px;
  }

  .link-block.shadow {
    align-items: center;
    font-size: 15px;
  }

  .footer {
    padding-top: 20px;
  }

  .container-2 {
    max-width: none;
  }

  .cta {
    padding-top: 40px;
  }

  .grid-7 {
    grid-column-gap: 0px;
  }

  .image-8 {
    width: 100%;
  }

  .div-block-403 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
  }

  .name-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
    display: flex;
    position: static;
    left: 0%;
  }

  .text-block-7 {
    margin-top: 0;
    font-size: 15px;
  }

  .bold-text {
    margin-top: 20px;
    display: inline-block;
  }

  .h3 {
    font-size: 20px;
  }

  .grid-9 {
    grid-auto-rows: auto;
  }

  .image-10 {
    height: 150px;
  }

  .image-10.frau {
    object-position: 80% 0%;
  }

  .hero-word-rotation {
    height: 41.5982px;
    font-size: 32px;
  }

  .div-block-407 {
    height: 41.5982px;
  }

  .grid-11 {
    flex-direction: column;
    display: flex;
  }

  .image-11 {
    object-fit: cover;
    width: 100%;
    height: 300px;
  }

  .werte-div {
    margin-top: 20px;
  }

  .h3-2 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.3em;
  }

  .h3-2.black {
    font-size: 22px;
  }

  .main-paragraph-2 {
    font-size: 15px;
  }

  .main-paragraph-2.center-mobile {
    padding-left: 0;
    font-size: 15px;
  }

  .heading-158 {
    font-size: 26px;
  }

  .text-block-8 {
    font-size: 16px;
  }

  .div-block-439 {
    margin-top: 10px;
    position: static;
  }

  .name-wrap-copy {
    justify-content: center;
    align-items: flex-start;
  }

  .rich-text-block {
    margin-top: 10px;
  }

  .subheading-vita {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  .card-faq-content-top-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .title-3.card-faq {
    font-size: 16px;
  }

  .card-5.faq {
    padding: 5px 10px;
  }

  .card-5.faq.first {
    margin-top: 0;
  }

  .card-faq-icon-wrapper-2 {
    margin-right: 10px;
  }

  .card-faq-content-bottom-2 {
    margin-top: 0;
    margin-left: 0;
  }

  .faqs-grid-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    display: flex;
  }

  .div-block-442 {
    position: static;
  }

  .div-block-444 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .text-block-11 {
    font-size: 15px;
  }

  .text-block-12 {
    text-align: center;
    font-size: 15px;
  }

  .right-arrow-2 {
    width: 35px;
    height: 35px;
  }

  .icon-3 {
    width: 25px;
    height: 25px;
    display: none;
    position: static;
    inset: auto 0% 0% auto;
  }

  .left-arrow-2 {
    width: 35px;
    height: 35px;
  }

  .cta-grid {
    flex-direction: column;
    margin-top: 10px;
    display: flex;
  }

  .text-block-13 {
    font-size: 16px;
    display: inline-block;
  }

  .grid-image-wrapper.animate-in {
    overflow: hidden;
  }

  .media-fit-cover {
    min-height: 400px;
  }

  .hero-leistungen.hide {
    display: none;
  }

  .absolut-mint {
    left: -41%;
  }

  .div-block-449 {
    bottom: 57%;
  }

  .faq-answer-box {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq-container {
    text-align: left;
    object-fit: fill;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding: 10px 10px 10px 0;
    position: relative;
    overflow: visible;
  }

  .faq-arrow-box {
    border-left-style: none;
    justify-content: center;
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    margin-right: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .faq-arrow-box.transparent {
    margin-left: 10px;
    padding: 0;
    position: static;
    inset: 0%;
  }

  .accordion-wrapper {
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .accordion-wrapper.first {
    margin-top: 20px;
  }

  .main-paragraph-3 {
    margin-top: 0;
    line-height: 1.4em;
  }

  .small-heading-2 {
    text-align: center;
    margin-bottom: 0;
    font-size: 15px;
  }

  .div-block-10 {
    position: relative;
  }

  .faq-center-box {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .big-heading-2 {
    padding-left: 10px;
    font-size: 17px;
  }

  .faq-trigger {
    height: auto;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }

  .faq-list {
    width: 100%;
  }

  .section-9.hide {
    display: none;
  }

  .section-10 {
    padding-bottom: 20px;
  }

  .karriere-hero {
    background-image: none;
    height: auto;
    margin-top: 60px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .grid-20 {
    padding-top: 0;
  }

  .div-block-455 {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
  }

  .big-heading-copy {
    text-align: center;
    font-size: 22px;
  }

  .big-heading-copy.left {
    text-align: left;
  }

  .word-rotation {
    text-align: center;
    height: 36.3929px;
    font-size: 22px;
  }

  .div-block-457 {
    height: 36.3929px;
    overflow: hidden;
  }

  .content-wrap._40px {
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-458 {
    justify-content: center;
    align-items: flex-start;
  }

  .grid-22 {
    flex-direction: column;
    display: flex;
  }

  .section-12 {
    padding-top: 40px;
  }

  .div-block-459, .div-block-460, .div-block-461, .div-block-462, .div-block-463 {
    height: 78.1964px;
  }

  .text-block-17 {
    font-size: 16px;
  }

  .heading-wrapper.centerm {
    justify-content: center;
    align-items: flex-start;
  }

  .card-item {
    width: 100%;
    height: 30rem;
  }

  .card-background {
    filter: saturate(125%);
    margin-top: 0;
  }

  .paragraph {
    font-size: .875rem;
  }

  .card-heading-holder {
    flex: 0 auto;
    display: block;
  }

  .card-heading {
    border-left-style: solid;
    height: 1.5rem;
    padding-left: .5rem;
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }

  .grid-item-overlay {
    padding-top: 0;
  }

  .card-content {
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -4.4rem;
  }

  .section-13, .section-14 {
    padding-bottom: 20px;
  }

  .card {
    min-height: auto;
    max-height: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-15 {
    padding-bottom: 40px;
  }

  .bold-text-8 {
    font-size: 16px;
  }

  .bold-text-9 {
    font-size: 15px;
  }

  .faq-unten {
    background-color: #fff0;
    padding: 0 0 10px;
    line-height: 1.5em;
  }

  .rtb-stellen {
    padding-left: 20px;
    padding-right: 10px;
  }

  .faq-oben {
    margin-bottom: 10px;
  }

  .card-faq-icon-wrapper-3 {
    margin-right: 10px;
  }

  .card-6.faq {
    padding: 20px 25px 10px;
  }

  .card-6.faq.transparent {
    padding-left: 0;
    padding-right: 0;
  }

  .card-6.faq.transparent:hover {
    transform: none;
  }

  .heading-161 {
    font-size: 16px;
  }

  .figure-3 {
    width: 40px;
  }

  .div-block-467 {
    inset: auto 0% 0%;
  }

  .heading-168 {
    font-size: 16px;
  }

  .grid-26 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    margin-top: 20px;
  }

  .main-paragraph-4 {
    font-size: 15px;
  }

  .tab-title-3 {
    grid-row-gap: 1.5px;
  }

  .tab-top-3 {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    text-align: left;
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 1rem;
  }

  .div-block-512 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-item-padding-3 {
    padding-top: .125rem;
    padding-bottom: .125rem;
  }

  .heading-26 {
    font-size: 18px;
  }

  .tab-bottom {
    padding: 2rem;
    display: flex;
  }

  .tab-bottom.tab-bottom-full-width {
    padding: 0 0 1rem;
  }

  .heading-28 {
    font-size: 15px;
  }

  .heading-27 {
    font-size: 14px;
  }

  .div-block-476 {
    width: 100%;
    font-size: 15px;
  }

  .button-div {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .paragraph-26 {
    font-weight: 300;
  }

  .tab-bottom-wrapper-2 {
    padding-top: 0;
  }

  .tab-icon-3 {
    margin-left: 0;
  }

  .rich-text-block-7 {
    text-align: left;
    margin-bottom: 0;
  }

  .section-19 {
    padding-top: 100px;
  }

  .div-block-517 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .grid-29 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    display: flex;
  }

  .section-20 {
    padding-bottom: 20px;
  }

  .div-block-519 {
    justify-content: center;
    align-items: center;
  }

  .bold-text-12 {
    margin-top: 0;
  }

  .div-block-520 {
    background-color: var(--logo-grün);
    width: 100%;
  }

  .div-block-521-copy {
    inset: 8% 0% auto auto;
  }

  .div-block-522 {
    width: auto;
  }

  .text-block-19, .text-block-20 {
    font-size: 15px;
  }

  .image-185 {
    height: 250px;
  }

  .bold-text-13 {
    font-size: 16px;
  }

  .icon-5 {
    display: none;
  }

  .text-block-22 {
    font-size: 15px;
  }

  .hide {
    display: inline-block;
  }

  .paragraph-32 {
    font-size: 15px;
  }

  .div-block-525 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .paragraph-34 {
    font-size: 15px;
  }

  .card-faq-content-top-2-copy {
    padding-bottom: 10px;
  }

  .card-faq-content-top-2-copy.gr-n {
    padding-right: 0;
  }

  .div-block-528, .div-block-529 {
    width: auto;
  }

  .image-188 {
    height: auto;
    min-height: 260px;
  }

  .heading-173 {
    font-size: 22px;
  }
}

#w-node-_72cab191-582d-6516-d3bb-9e8f90077036-a6641e33, #w-node-e6096e2b-1ea9-695e-733c-44070ae42c8f-a6641e33, #w-node-a6424526-6bf7-3c61-6d53-39787e4aa6f3-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-a6641e33 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-b91895c5-1a1f-0d7a-c7f0-306800536dce-a6641e33 {
  grid-area: 2 / 1 / 4 / 4;
}

#w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-a6641e33 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-db4678b7-a4b8-e2c0-4d4b-3450831b96cd-a6641e33 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4af1b034-2b27-a13a-2374-80c08f76c463-a6641e33 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-bb2c829f-03c4-934e-b590-0bf60e526233-a6641e33 {
  grid-area: 4 / 3 / 5 / 4;
}

#w-node-dfdd009c-d0ae-d211-ff98-6aa3b665581a-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-e0babde6-6b9d-77a1-06b0-916fea8c2fb9-a6641e33, #w-node-_2573bee6-d73a-7db5-a376-43aa18ff79a4-a6641e33, #w-node-_6bb18e65-0da9-5b86-ac8f-3429f11fd33c-a6641e33, #w-node-a2c97c3c-d0fd-394b-c3b1-999d1b5bb261-a6641e33, #w-node-c9454235-b8ab-13fd-cea7-408012fd4b31-a6641e33, #w-node-_8a4a15b5-fd8e-baeb-5744-f305cdd7d674-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a659cd2-1414-4afe-40a0-214685d432de-a6641e33 {
  place-self: center;
}

#w-node-ec78e7b0-0713-3e48-bdda-b04e99c86cc6-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-da93c51f-7135-1a33-cb4b-7dd97f005d48-a6641e33, #w-node-f077d8f5-8ca1-52f0-742b-1c2faae45d0c-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2dfccefe-e0f2-dd03-f811-ed97c1b5509d-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_3f42648d-ba13-7ed5-3df7-efbd1144b9c2-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_893bdd18-efca-4a7b-a136-7e68054ff963-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_893bdd18-efca-4a7b-a136-7e68054ff969-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_5ee183da-b9b0-0314-b557-17dca98e2f17-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_5ee183da-b9b0-0314-b557-17dca98e2f1d-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_858d1c89-1787-8ad5-8a19-5a01355a9137-a6641e33, #w-node-_28ea4ca1-115e-0f6c-d09f-65b8a09def77-a6641e33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf49b96a-fdb9-3b46-a590-9e4af5c34526-a6641e33 {
  align-self: center;
}

#w-node-_103404a1-2b25-babf-617f-bb4aeebc964a-eebc9644, #w-node-_103404a1-2b25-babf-617f-bb4aeebc9653-eebc9644, #w-node-_103404a1-2b25-babf-617f-bb4aeebc9664-eebc9644, #w-node-_8abc4b84-3699-a96c-fa8e-95835dcd0d76-eebc9644 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b77c18da-63f3-5fc2-9fac-4a3871e430a6-905aa6cd {
  grid-area: 2 / 4 / 3 / 5;
  align-self: stretch;
}

#w-node-b40578f8-181b-23db-dc44-b6b7e4a7eca3-905aa6cd {
  grid-area: 2 / 2 / 3 / 4;
  place-self: center;
}

#w-node-_9a8979e7-4554-c4c6-77ef-19c66bcc8ba8-905aa6cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ea0ffdb6-6847-79a8-23f7-dab147f9e3cb-905aa6cd {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_8b65c208-e792-83ac-9f57-cd1340eb5f85-905aa6cd {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_538ecc48-175f-75eb-2b57-807e756bdce7-905aa6cd {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_7f00b6d2-a125-ae2d-336b-978f0dabd401-905aa6cd, #w-node-_34adba6e-1e00-b54b-651f-062d2fdda0b3-905aa6cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2df93861-d9ee-f748-d2b6-da172e84088d-905aa6cd {
  place-self: auto center;
}

#w-node-_8da43af5-f738-44a1-8619-9a36efb654b1-905aa6cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b7d0b357-8980-b9e3-3692-6799cf04cb93-905aa6cd {
  align-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-85ae3377 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-85ae3377, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-85ae3377 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-85ae3377 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-85ae3377, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-85ae3377, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-85ae3377 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-3280ebc5 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-3280ebc5, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-3280ebc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-3280ebc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-3280ebc5, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-3280ebc5, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-3280ebc5, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-3280ebc5, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-3280ebc5, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-3280ebc5, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-3280ebc5, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-3280ebc5, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-3280ebc5, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-3280ebc5, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-3280ebc5, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-3280ebc5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-3280ebc5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-3280ebc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-e5895873 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-e5895873, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-e5895873 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-e5895873 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-e5895873, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-e5895873, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-e5895873, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-e5895873, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-e5895873, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-e5895873, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-e5895873, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-e5895873, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-e5895873, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-e5895873, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-e5895873, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-e5895873, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-e5895873, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-e5895873 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-6f106087 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-6f106087, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-6f106087 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-6f106087 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-6f106087 {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-6f106087, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-6f106087, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-6f106087, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-6f106087, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-6f106087, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-6f106087, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-6f106087, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-6f106087, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-6f106087, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-6f106087, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-6f106087, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-6f106087, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-6f106087, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-6f106087, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-6f106087, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-6f106087, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-6f106087 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-81e67111 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-81e67111, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-81e67111 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-81e67111 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-81e67111 {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-81e67111, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-81e67111, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-81e67111, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-81e67111, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-81e67111, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-81e67111, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-81e67111, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-81e67111, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-81e67111, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-81e67111, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-81e67111, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-81e67111, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-81e67111, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-81e67111, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-81e67111, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-81e67111, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-81e67111 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-44866c3a {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-44866c3a, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-44866c3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-44866c3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-44866c3a {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-44866c3a, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-44866c3a, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-44866c3a, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-44866c3a, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-44866c3a, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-44866c3a, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-44866c3a, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-44866c3a, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-44866c3a, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-44866c3a, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-44866c3a, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-44866c3a, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-44866c3a, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-44866c3a, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-44866c3a, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-44866c3a, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-44866c3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-cda9b4f4 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-cda9b4f4, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-cda9b4f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-cda9b4f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-cda9b4f4 {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-cda9b4f4, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-cda9b4f4, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-cda9b4f4, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-cda9b4f4, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-cda9b4f4, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-cda9b4f4, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-cda9b4f4, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-cda9b4f4, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-cda9b4f4, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-cda9b4f4, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-cda9b4f4, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-cda9b4f4, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-cda9b4f4, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-cda9b4f4, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-cda9b4f4, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-cda9b4f4, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-cda9b4f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4ae7-839f4ae2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4b10-839f4ae2, #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4b15-839f4ae2, #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4b1a-839f4ae2, #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4b1f-839f4ae2, #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4b24-839f4ae2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4bf7-839f4ae2 {
  align-self: start;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4c48-839f4ae2 {
  place-self: auto center;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4c61-839f4ae2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4c78-839f4ae2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-adc5d5d2-b74b-be5e-41e1-b430d5b38d18-5da8b6d2, #w-node-a200661c-f0da-b986-644a-cc4709fcd7de-5da8b6d2, #w-node-_27c3bfb7-20bf-23fd-e815-b3a24b3b0a78-5da8b6d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c2-5da8b6d2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c6-5da8b6d2, #w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c8-5da8b6d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad70c-5da8b6d2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad710-5da8b6d2, #w-node-_3a09676a-37f9-8d8b-c515-49c356dad712-5da8b6d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d9a4e560-4ddb-f42e-5743-52a449c701ac-5da8b6d2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d9a4e560-4ddb-f42e-5743-52a449c701b0-5da8b6d2, #w-node-d9a4e560-4ddb-f42e-5743-52a449c701b2-5da8b6d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4a42d2f-8e14-7be0-12e8-7a338ee05331-40dc30bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_4ccaee7b-acfe-ee55-268a-6b48eb075f81-40dc30bf, #w-node-_26b9237a-015b-8c8f-7ce7-22571348b90f-40dc30bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dfbd0020-fcab-ba0e-eaea-144c5ba735a5-40dc30bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_343a7dde-e169-b193-6332-477093b3defd-40dc30bf {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center start;
}

#w-node-_7788fc1b-0a20-0fed-a01a-a919cc3beb91-40dc30bf, #w-node-_54c6b946-cdf3-2990-a893-ccceb580ce95-40dc30bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d3643ec-9029-208f-a6eb-83e7c59d8c65-40dc30bf {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_72cab191-582d-6516-d3bb-9e8f90077036-7babb920, #w-node-e6096e2b-1ea9-695e-733c-44070ae42c8f-7babb920, #w-node-a6424526-6bf7-3c61-6d53-39787e4aa6f3-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-7babb920 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-b91895c5-1a1f-0d7a-c7f0-306800536dce-7babb920 {
  grid-area: 2 / 1 / 4 / 4;
}

#w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-7babb920 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-db4678b7-a4b8-e2c0-4d4b-3450831b96cd-7babb920 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4af1b034-2b27-a13a-2374-80c08f76c463-7babb920 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-bb2c829f-03c4-934e-b590-0bf60e526233-7babb920 {
  grid-area: 4 / 3 / 5 / 4;
}

#w-node-dfdd009c-d0ae-d211-ff98-6aa3b665581a-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-e0babde6-6b9d-77a1-06b0-916fea8c2fb9-7babb920, #w-node-_2573bee6-d73a-7db5-a376-43aa18ff79a4-7babb920, #w-node-_6bb18e65-0da9-5b86-ac8f-3429f11fd33c-7babb920, #w-node-a2c97c3c-d0fd-394b-c3b1-999d1b5bb261-7babb920, #w-node-c9454235-b8ab-13fd-cea7-408012fd4b31-7babb920, #w-node-_8a4a15b5-fd8e-baeb-5744-f305cdd7d674-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a659cd2-1414-4afe-40a0-214685d432de-7babb920 {
  place-self: center;
}

#w-node-ec78e7b0-0713-3e48-bdda-b04e99c86cc6-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-da93c51f-7135-1a33-cb4b-7dd97f005d48-7babb920, #w-node-f077d8f5-8ca1-52f0-742b-1c2faae45d0c-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2dfccefe-e0f2-dd03-f811-ed97c1b5509d-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_3f42648d-ba13-7ed5-3df7-efbd1144b9c2-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_893bdd18-efca-4a7b-a136-7e68054ff963-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_893bdd18-efca-4a7b-a136-7e68054ff969-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_5ee183da-b9b0-0314-b557-17dca98e2f17-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_5ee183da-b9b0-0314-b557-17dca98e2f1d-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_858d1c89-1787-8ad5-8a19-5a01355a9137-7babb920, #w-node-_28ea4ca1-115e-0f6c-d09f-65b8a09def77-7babb920 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf49b96a-fdb9-3b46-a590-9e4af5c34526-7babb920 {
  align-self: center;
}

#w-node-_9dd5feb6-dead-452b-4416-0af51349f8f6-1349f8f0, #w-node-_9dd5feb6-dead-452b-4416-0af51349f8ff-1349f8f0, #w-node-_9dd5feb6-dead-452b-4416-0af51349f912-1349f8f0, #w-node-_9dd5feb6-dead-452b-4416-0af51349f922-1349f8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b77c18da-63f3-5fc2-9fac-4a3871e430a6-2bff853d {
  grid-area: 2 / 4 / 3 / 5;
  align-self: stretch;
}

#w-node-b40578f8-181b-23db-dc44-b6b7e4a7eca3-2bff853d {
  grid-area: 2 / 2 / 3 / 4;
  place-self: center;
}

#w-node-_2e51cc9c-4821-0fa8-5b7b-287d48935938-2bff853d {
  place-self: center;
}

#w-node-_9a8979e7-4554-c4c6-77ef-19c66bcc8ba8-2bff853d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ea0ffdb6-6847-79a8-23f7-dab147f9e3cb-2bff853d {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_8b65c208-e792-83ac-9f57-cd1340eb5f85-2bff853d {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_538ecc48-175f-75eb-2b57-807e756bdce7-2bff853d {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_7f00b6d2-a125-ae2d-336b-978f0dabd401-2bff853d, #w-node-_34adba6e-1e00-b54b-651f-062d2fdda0b3-2bff853d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2df93861-d9ee-f748-d2b6-da172e84088d-2bff853d {
  place-self: auto center;
}

#w-node-_8da43af5-f738-44a1-8619-9a36efb654b1-2bff853d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b7d0b357-8980-b9e3-3692-6799cf04cb93-2bff853d {
  align-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-be16ce79 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-be16ce79, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-be16ce79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-be16ce79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-be16ce79, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-be16ce79, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-be16ce79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-8d3e3932 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-8d3e3932, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-8d3e3932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-8d3e3932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-8d3e3932, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-8d3e3932, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-8d3e3932, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-8d3e3932, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-8d3e3932, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-8d3e3932, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-8d3e3932, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-8d3e3932, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-8d3e3932, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-8d3e3932, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-8d3e3932, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-8d3e3932, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-8d3e3932, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-8d3e3932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-aaacbdf5 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-aaacbdf5, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-aaacbdf5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-aaacbdf5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-aaacbdf5 {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-aaacbdf5, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-aaacbdf5, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-aaacbdf5, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-aaacbdf5, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-aaacbdf5, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-aaacbdf5, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-aaacbdf5, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-aaacbdf5, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-aaacbdf5, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-aaacbdf5, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-aaacbdf5, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-aaacbdf5, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-aaacbdf5, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-aaacbdf5, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-aaacbdf5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-aaacbdf5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-aaacbdf5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-316c8eaf {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-316c8eaf, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-316c8eaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-316c8eaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-316c8eaf {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-316c8eaf, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-316c8eaf, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-316c8eaf, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-316c8eaf, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-316c8eaf, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-316c8eaf, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-316c8eaf, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-316c8eaf, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-316c8eaf, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-316c8eaf, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-316c8eaf, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-316c8eaf, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-316c8eaf, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-316c8eaf, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-316c8eaf, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-316c8eaf, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-316c8eaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-d0a90af5 {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-d0a90af5, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-d0a90af5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-d0a90af5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-d0a90af5 {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-d0a90af5, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-d0a90af5, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-d0a90af5, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-d0a90af5, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-d0a90af5, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-d0a90af5, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-d0a90af5, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-d0a90af5, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-d0a90af5, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-d0a90af5, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-d0a90af5, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-d0a90af5, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-d0a90af5, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-d0a90af5, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-d0a90af5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-d0a90af5, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-d0a90af5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-65226acf {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-65226acf, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-65226acf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-65226acf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-65226acf {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-65226acf, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-65226acf, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-65226acf, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-65226acf, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-65226acf, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-65226acf, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-65226acf, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-65226acf, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-65226acf, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-65226acf, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-65226acf, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-65226acf, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-65226acf, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-65226acf, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-65226acf, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-65226acf, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-65226acf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-395c851e {
  place-self: center;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905af-395c851e, #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b1-395c851e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905b3-395c851e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb108-395c851e {
  place-self: center;
}

#w-node-_2611fb60-36a8-a568-39b8-ae66d07eb10e-395c851e, #w-node-_2611fb60-36a8-a568-39b8-ae66d07eb110-395c851e, #w-node-_87998d1a-d841-6c58-20d2-2826e958c22a-395c851e, #w-node-_1cf96add-80ca-1842-14eb-e0898f4cbcf5-395c851e, #w-node-ff600a02-0d23-b34e-c4fb-fa3f2a2e8029-395c851e, #w-node-ac15a094-2113-d5a9-f6e4-9bb12152128a-395c851e, #w-node-a9c16d51-0be0-b53e-7e9e-6c8199b5d4b4-395c851e, #w-node-d3e40622-4fe3-e8e2-99ce-c125a712e03a-395c851e, #w-node-d12a3f2d-d0af-bd7d-e41f-a7cb9ceed43d-395c851e, #w-node-f6cb7427-2176-c241-2120-32132b3845e2-395c851e, #w-node-_5a500508-29c0-4b2a-cafb-8479eb9a5c07-395c851e, #w-node-_6228cda8-60af-9dca-c598-3211169ab662-395c851e, #w-node-c879d572-91f3-cf45-0c18-bdec0c24ce91-395c851e, #w-node-_08afeab5-b08d-f3e8-393c-a20836dfc1ed-395c851e, #w-node-_6ced7156-b704-d804-6db3-72eb578ed39f-395c851e, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54af-395c851e, #w-node-fbabf1b2-0108-0554-ba58-6d8f69fc54b1-395c851e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a9900bcf-e203-fb86-9d1d-5304cd006db8-2817e5df {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cc52f573-8dd2-c1a3-fdbb-cb70b0d3929a-2817e5df, #w-node-ec6a5ef3-bbd7-5a47-2b34-8d5e75df6e14-2817e5df, #w-node-_027a268a-f1a3-0705-c01f-eec12bf3a697-2817e5df, #w-node-_39093c70-6459-8819-cc37-09099e0691da-2817e5df, #w-node-_772026a4-e93e-cf0f-0d9e-5d63807b0295-2817e5df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9266cd7d-312b-8122-c2c3-5973e81acf3c-2817e5df {
  align-self: start;
}

#w-node-b784b875-cfb7-6d8e-5937-23cbb282d43a-2817e5df {
  place-self: auto center;
}

#w-node-ad485400-1d35-e96e-5fa1-1184840581d7-2817e5df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_95540f96-0a1d-f357-c478-6037aaec6bcb-2817e5df {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-adc5d5d2-b74b-be5e-41e1-b430d5b38d18-dad6b6f0, #w-node-a200661c-f0da-b986-644a-cc4709fcd7de-dad6b6f0, #w-node-_27c3bfb7-20bf-23fd-e815-b3a24b3b0a78-dad6b6f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c2-dad6b6f0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c6-dad6b6f0, #w-node-_3a09676a-37f9-8d8b-c515-49c356dad6c8-dad6b6f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad70c-dad6b6f0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3a09676a-37f9-8d8b-c515-49c356dad710-dad6b6f0, #w-node-_3a09676a-37f9-8d8b-c515-49c356dad712-dad6b6f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d9a4e560-4ddb-f42e-5743-52a449c701ac-dad6b6f0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d9a4e560-4ddb-f42e-5743-52a449c701b0-dad6b6f0, #w-node-d9a4e560-4ddb-f42e-5743-52a449c701b2-dad6b6f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4a42d2f-8e14-7be0-12e8-7a338ee05331-b1d8d4b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_4ccaee7b-acfe-ee55-268a-6b48eb075f81-b1d8d4b0, #w-node-_26b9237a-015b-8c8f-7ce7-22571348b90f-b1d8d4b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dfbd0020-fcab-ba0e-eaea-144c5ba735a5-b1d8d4b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_343a7dde-e169-b193-6332-477093b3defd-b1d8d4b0 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center start;
}

#w-node-_7788fc1b-0a20-0fed-a01a-a919cc3beb91-b1d8d4b0, #w-node-_54c6b946-cdf3-2990-a893-ccceb580ce95-b1d8d4b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d3643ec-9029-208f-a6eb-83e7c59d8c65-b1d8d4b0 {
  grid-area: 1 / 1 / 3 / 2;
}

@media screen and (min-width: 1920px) {
  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-a6641e33 {
    grid-row-end: 6;
  }

  #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-a6641e33 {
    grid-row: 4 / 6;
  }

  #w-node-_2e51cc9c-4821-0fa8-5b7b-287d48935938-905aa6cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_841b9ea6-7d2f-990b-fe57-59dd1dfd38f2-905aa6cd {
    align-self: start;
  }

  #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-81e67111 {
    place-self: center;
  }

  #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-44866c3a {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_3a09676a-37f9-8d8b-c515-49c356dad6be-5da8b6d2 {
    place-self: center;
  }

  #w-node-_343a7dde-e169-b193-6332-477093b3defd-40dc30bf {
    grid-area: 1 / 2 / 3 / 3;
  }

  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-7babb920 {
    grid-row-end: 6;
  }

  #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-7babb920 {
    grid-row: 4 / 6;
  }

  #w-node-_2e51cc9c-4821-0fa8-5b7b-287d48935938-2bff853d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_841b9ea6-7d2f-990b-fe57-59dd1dfd38f2-2bff853d {
    align-self: start;
  }

  #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-d0a90af5 {
    place-self: center;
  }

  #w-node-_71e2d3e9-1ce2-c1aa-70c5-94aab27905a2-65226acf {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_3a09676a-37f9-8d8b-c515-49c356dad6be-dad6b6f0 {
    place-self: center;
  }

  #w-node-_343a7dde-e169-b193-6332-477093b3defd-b1d8d4b0 {
    grid-area: 1 / 2 / 3 / 3;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-a4a42d2f-8e14-7be0-12e8-7a338ee05331-40dc30bf, #w-node-a4a42d2f-8e14-7be0-12e8-7a338ee05331-b1d8d4b0 {
    place-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-a6641e33 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-b91895c5-1a1f-0d7a-c7f0-306800536dce-a6641e33 {
    grid-row-end: 3;
  }

  #w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-a6641e33 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-a6641e33 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_103404a1-2b25-babf-617f-bb4aeebc9653-eebc9644 {
    grid-area: 1 / 2 / 4 / 3;
  }

  #w-node-_103404a1-2b25-babf-617f-bb4aeebc9664-eebc9644 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_8abc4b84-3699-a96c-fa8e-95835dcd0d76-eebc9644 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b77c18da-63f3-5fc2-9fac-4a3871e430a6-905aa6cd {
    grid-column: 3 / 4;
    grid-row-start: 3;
  }

  #w-node-b40578f8-181b-23db-dc44-b6b7e4a7eca3-905aa6cd {
    grid-column: 1 / 4;
  }

  #w-node-ea0ffdb6-6847-79a8-23f7-dab147f9e3cb-905aa6cd {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_8b65c208-e792-83ac-9f57-cd1340eb5f85-905aa6cd {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_343a7dde-e169-b193-6332-477093b3defd-40dc30bf {
    grid-area: 1 / 2 / 3 / 3;
    place-self: center start;
  }

  #w-node-_19484095-e07d-8b82-0b37-58955518779b-40dc30bf {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-7babb920 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-b91895c5-1a1f-0d7a-c7f0-306800536dce-7babb920 {
    grid-row-end: 3;
  }

  #w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-7babb920 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-7babb920 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_9dd5feb6-dead-452b-4416-0af51349f8ff-1349f8f0 {
    grid-area: 1 / 2 / 4 / 3;
  }

  #w-node-_9dd5feb6-dead-452b-4416-0af51349f912-1349f8f0 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_9dd5feb6-dead-452b-4416-0af51349f922-1349f8f0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b77c18da-63f3-5fc2-9fac-4a3871e430a6-2bff853d {
    grid-column: 3 / 4;
    grid-row-start: 3;
  }

  #w-node-b40578f8-181b-23db-dc44-b6b7e4a7eca3-2bff853d {
    grid-column: 1 / 4;
  }

  #w-node-ea0ffdb6-6847-79a8-23f7-dab147f9e3cb-2bff853d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_8b65c208-e792-83ac-9f57-cd1340eb5f85-2bff853d {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_343a7dde-e169-b193-6332-477093b3defd-b1d8d4b0 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: center start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-a6641e33 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-a6641e33 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-a6641e33 {
    grid-row-end: 4;
  }

  #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4bf7-839f4ae2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-c1c13a4f-f039-004c-0a6e-a0b5839f4c03-839f4ae2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_192a97eb-7f33-e277-ee52-64b797f2d8ff-7babb920, #w-node-_30495cd2-53b4-240d-c24b-12e97a93964e-7babb920, #w-node-bb2c829f-03c4-934e-b590-0bf60e526233-7babb920 {
    grid-row-end: 5;
  }

  #w-node-_9266cd7d-312b-8122-c2c3-5973e81acf3c-2817e5df {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-_9266cd7d-312b-8122-c2c3-5973e81acf3f-2817e5df {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-lightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-mediumitalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-bold.ttf') format('truetype'), url('../fonts/opensans-extrabold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-bolditalic.ttf') format('truetype'), url('../fonts/opensans-extrabolditalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'snasnepo';
  src: url('../fonts/opensans-semibolditalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}