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

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-extralightitalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-blackitalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

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

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

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-extralight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-thinitalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: wolrab;
  src: url('../fonts/barlow-thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --blau: #317bff;
  --dunkelblau: #140086;
}

.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;
}

body {
  color: #333;
  flex-direction: column;
  justify-content: space-between;
  font-family: wolrab, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

h1 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 62px;
  font-weight: 700;
  line-height: 70px;
}

h3 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h4 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

h5 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h6 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

p {
  letter-spacing: 0;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
}

a {
  text-decoration: underline;
}

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

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

strong {
  text-transform: none;
  font-weight: 700;
}

blockquote {
  border-left: 5px solid #000;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
}

.nav-right-wrap {
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: 1;
  align-items: center;
  display: flex;
}

.nav-menu.alt {
  background-color: #fff;
}

.nav-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  transition: all .2s;
}

.nav-link:hover {
  transform: scale(1.1);
}

.nav-link.w--current {
  color: #000;
  font-weight: 700;
}

.nav-link.alt {
  color: #000;
  white-space: nowrap;
  font-weight: 500;
}

.nav-logo {
  object-fit: contain;
  width: 100%;
  height: 100%;
  min-height: 50px;
}

.nav-logo.alt {
  filter: invert();
}

.navbar {
  background-color: #fff;
}

.navbar.dark {
  color: #fff;
  background-color: #317bff;
  border-bottom: 1px solid #fff;
  justify-content: flex-start;
  align-items: center;
  height: 10vh;
  padding: 7px 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar.dark.impressum {
  padding-left: 3%;
  padding-right: 3%;
}

.nav-logo-wrap {
  flex: 0 auto;
  height: 100%;
  margin-right: 60px;
}

.nav-logo-wrap.w--current {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 55px;
  margin-right: 2vw;
  padding-top: 3px;
  padding-bottom: 5px;
  display: flex;
}

.hero-section {
  color: #000;
  background-color: #0000;
  height: 80vh;
  padding: 40px;
  position: static;
  overflow: hidden;
}

.hero-section.blog {
  background-image: none;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-section.what-we-do {
  background-image: url('../images/designer-working-on-wireframes.jpg');
  background-position: 50%;
  background-size: cover;
}

.hero-section.team {
  background-image: url('../images/the-team.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section.branding {
  background-image: none;
}

.container {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container.hero {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 0 40px 0 25px;
  display: flex;
  position: relative;
}

.container.sticky {
  position: relative;
}

.container.blog-content {
  max-width: 680px;
}

.section-mini-subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 1.75rem;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.section-title {
  letter-spacing: 0;
  text-transform: none;
  padding-bottom: 0;
  font-size: 50px;
  line-height: 1.1em;
}

.section-title.no-padding {
  padding-bottom: 0;
  font-weight: 400;
}

.section-title.no-padding.logo {
  letter-spacing: -3px;
}

.section-title.no-padding.middle {
  text-align: center;
}

.section-title.content-bottom {
  letter-spacing: 0;
  text-transform: none;
  padding-bottom: 1rem;
  font-size: 50px;
  line-height: 1.1em;
}

.section-title.content-bottom.black {
  font-weight: 900;
}

.section-title.design-slide-title {
  padding-bottom: 1rem;
  font-size: 60px;
  font-weight: 600;
  line-height: 68px;
}

.section-title.home-hero {
  letter-spacing: 0;
  text-transform: none;
  padding-bottom: 0;
  font-size: 60px;
  line-height: 1.1em;
}

.section-title.cs-page-title {
  padding-bottom: 0;
  font-weight: 900;
}

.section-title.cs-page-title.logo {
  letter-spacing: -3px;
}

.bold-text {
  letter-spacing: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

.bold-text.logo {
  letter-spacing: 0;
}

.scroll-arrow-link {
  transition: all .5s;
}

.scroll-arrow-link:hover {
  transform: translate(0, -10px);
}

.scroll-arrow-link.margin-top-mobile {
  filter: invert();
  margin-top: 20px;
  position: absolute;
  inset: auto -9% 0% auto;
}

.michael-groth {
  z-index: 1;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.michael-groth.no-padding-bottom {
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 100px 5%;
  display: flex;
  position: static;
}

.michael-groth.no-padding-top {
  padding-top: 0;
}

.michael-groth.dark {
  color: #fff;
  background-color: #000;
}

.michael-groth.dark.no-padding {
  background-image: linear-gradient(to bottom, var(--dunkelblau), #317bff 79%, #73cbfd);
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.michael-groth.cta {
  color: #fff;
  background-color: #000;
}

.michael-groth.cs-hero {
  padding-bottom: 0;
}

.michael-groth.hero--bottom-border {
  border-bottom: 1px solid #000;
}

.michael-groth.grey {
  background-color: #f0f0f0;
}

.michael-groth.blog-page-header {
  padding-top: 60px;
  padding-bottom: 0;
}

.michael-groth.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.michael-groth.process-wrap {
  justify-content: space-between;
  display: flex;
}

.divider-line {
  background-color: #000;
  height: 1px;
  margin-bottom: 1.75rem;
}

.divider-line.margin-vertical, .divider-line.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

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

._2-col-grid.typeface-example {
  padding-bottom: 60px;
}

._2-col-grid.typeface-example.first {
  padding-top: 20px;
}

._2-col-grid.typeface-example.last {
  padding-bottom: 0;
}

._2-col-grid.padding-bottom {
  padding-bottom: 100px;
}

._2-col-grid.slide-from-bottom {
  max-width: 1400px;
}

._2-col-grid.team-bio {
  grid-template-columns: 1fr .75fr;
}

._2-col-grid.hero {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-columns: 1fr .75fr;
  justify-content: space-between;
  place-items: flex-start center;
  padding-top: 0;
  display: flex;
}

.content-block.padding-top {
  padding-top: 140px;
}

.content-block.values-content {
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.content-block.more-padding {
  padding-top: 220px;
  padding-bottom: 220px;
}

.section-icon {
  object-fit: contain;
  width: 120px;
  height: 120px;
  margin-bottom: 1.75rem;
}

.section-icon.cs-header {
  filter: invert() grayscale();
  width: auto;
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.section-icon.cs-section {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
}

.section-icon.cs-benefit {
  width: auto;
  height: 60px;
  margin-bottom: 0;
  margin-left: 40px;
}

._2-3-col-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-3-col-grid.values {
  grid-column-gap: 0px;
  padding-bottom: 2.75rem;
}

._2-3-col-grid.values.last {
  padding-bottom: 0;
}

._2-3-col-grid.step {
  padding-bottom: 1.75rem;
}

.block-with-divider {
  border-right: 1px solid #fff;
  align-items: center;
  display: flex;
}

.block-with-divider.vertical {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 60px;
}

.section-item-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
}

.section-item-title.bold {
  font-weight: 700;
}

.section-item-title.no-padding {
  padding-bottom: 0;
}

.search-link {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-left: 10px;
  transition: all .2s;
  display: none;
}

.search-link:hover {
  transform: scale(1.1);
}

.search-link.alt {
  filter: invert();
}

.section-img {
  object-fit: cover;
  object-position: 85% 50%;
  width: 100%;
  height: 500px;
  position: static;
}

.section-img.margin-bottom {
  margin-bottom: 4rem;
}

.section-img.full-height {
  height: 100%;
}

.section-img.cs-main-img {
  padding-bottom: 1.75rem;
}

.step-title {
  color: #000;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 8px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.step-title.current {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 32px;
}

.step-side-bar-wrap {
  width: 100%;
  min-width: auto;
  position: relative;
}

.steps-component-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
  position: relative;
  overflow: visible;
}

.step-wrap {
  border-bottom: 3px solid #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.step-wrap.first {
  padding-top: 0;
}

.step-wrap.last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.step-side-bar {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: sticky;
  top: 60px;
}

.brand-content-wrap {
  width: 100%;
  padding-left: 100px;
}

.step-section-title {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
}

.step-content-wrap {
  padding-bottom: 3.75rem;
}

.step-content-wrap.last {
  padding-bottom: 0;
}

.example-block-wrap {
  text-transform: uppercase;
  border: 1px solid #000;
  margin-bottom: 40px;
  padding: 40px 60px;
  font-size: 20px;
  line-height: 26px;
}

.example-block-wrap.dark {
  color: #fff;
  background-color: #000;
}

.text-example {
  text-transform: uppercase;
  padding-bottom: 1.75rem;
  padding-left: 10%;
  font-size: 40px;
  line-height: 40px;
}

.text-example.med {
  padding-left: 30%;
  font-weight: 500;
}

.text-example.bold {
  padding-left: 50%;
  font-weight: 700;
}

.text-example.black {
  padding-bottom: 0;
  padding-left: 70%;
  font-weight: 900;
}

.abc-wrap {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 1.75rem;
  font-size: 24px;
  line-height: 24px;
}

.abc-wrap.med {
  padding-left: 15%;
  font-weight: 500;
}

.abc-wrap.bold {
  padding-left: 30%;
  font-weight: 700;
}

.abc-wrap.black {
  padding-left: 45%;
  font-weight: 900;
}

.text-weight {
  letter-spacing: 1px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.text-weight.padding-bottom {
  padding-bottom: 20px;
}

.headline-example {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 70px;
  line-height: 84px;
}

.headline-example.subtitle {
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
}

.medium-text {
  font-weight: 500;
}

.color-text {
  text-align: right;
  padding-bottom: 60px;
}

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

.align-center.margin-top {
  margin-top: 60px;
}

.cta-p {
  max-width: 650px;
  margin-bottom: 0;
  padding-bottom: 2.75rem;
}

.cta-button {
  background-color: #000;
  border: 1px solid #fff;
  padding: 15px 40px;
  transition: all .2s;
}

.cta-button:hover {
  color: #000;
  background-color: #fff;
}

.footer {
  background-color: var(--blau);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top: 1px solid #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.footer-logo {
  margin-bottom: 0;
  margin-right: 20%;
}

.footer-links-wrap {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 2rem;
  display: flex;
}

.footer-link {
  color: #000;
  margin-bottom: 0;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.social-links-wrap {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.social-links-wrap.team-bio {
  filter: invert();
}

.social-links-wrap.share {
  filter: invert();
  justify-content: flex-end;
  padding-bottom: 30px;
}

.social-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  margin-left: 20px;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .6;
}

.social-link.fb {
  background-image: url('../images/fb.svg');
}

.social-link.tw {
  background-image: url('../images/tw.svg');
}

.social-link.ig {
  background-image: url('../images/ig.svg');
}

.social-link.be {
  background-image: url('../images/be.svg');
}

.social-link.db {
  background-image: url('../images/db.svg');
}

.social-link.in {
  background-image: url('../images/linkedin.svg');
}

.hero-bg-img {
  object-fit: cover;
  width: 360px;
  height: 420px;
  position: absolute;
  inset: auto 32% -140px auto;
  box-shadow: 0 0 20px #00000080;
}

.hero-bg-img._2 {
  width: 300px;
  height: 350px;
  top: -50px;
  left: auto;
  right: 25%;
}

.hero-bg-img._3 {
  z-index: 3;
  width: 380px;
  height: 500px;
  bottom: 10%;
  left: auto;
  right: 10%;
}

.loading-screen-wrap {
  z-index: 9999;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading-block {
  background-color: #fff;
  width: 100%;
  height: 50%;
  position: absolute;
}

.loading-block.top {
  inset: 0% 0% auto;
}

.loading-block.bottom {
  inset: auto 0% 0%;
}

.loading-logo {
  z-index: 9999;
  filter: invert();
  position: relative;
}

.cs-page-header {
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  display: flex;
}

.cs-header-description {
  max-width: 300px;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

.cs-bottom-description {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 60px;
  display: flex;
}

.cs-description-item {
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
}

.cs-desc-icon {
  width: 26px;
  height: 26px;
  margin-right: 15px;
}

.cs-top-img-grid {
  grid-column-gap: 0px;
  grid-row-gap: 1.75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 100px;
  display: grid;
}

.cs-section-title-wrap {
  letter-spacing: 2px;
  text-transform: uppercase;
  width: auto;
  padding-bottom: 1.75rem;
  font-size: 70px;
  font-weight: 900;
  line-height: 70px;
}

.cs-title-top {
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  display: flex;
}

._3-col-benefits-grid {
  grid-column-gap: 45px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 60px;
  display: grid;
}

.cs-benefit-item {
  border: 1px solid #fff;
  padding: 30px;
}

.cs-benefit-item.result {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 28px;
}

.cs-benefit-header {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
}

.cs-benefit-header.result {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 52px;
  font-weight: 700;
  line-height: 58px;
}

.cs-quote-p {
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 60%;
  margin-left: auto;
  padding-top: 60px;
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
}

.cs-quote-p.align-center {
  text-align: center;
  margin-right: auto;
  padding-top: 0;
}

.black-top-bg {
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 20%;
  position: absolute;
  inset: 0% 0% auto;
}

.cs-guideline-wrap {
  padding-top: 100px;
}

.cs-guideline-grid-wrap {
  background-color: #04142b;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: block;
}

.cs-guideline-grid-wrap.hidden {
  display: none;
}

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

.black-bottom-bg {
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 20%;
  position: absolute;
  inset: auto 0% 0%;
}

.section-subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 2.75rem;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

.section-subtitle.low-padding {
  padding-bottom: 1.75rem;
}

.section-subtitle.no-padding {
  padding-bottom: 0;
}

.section-subtitle.cs-page {
  padding-bottom: 1rem;
}

.design-work-slider {
  background-color: #0000;
  height: auto;
  margin-bottom: 100px;
}

.design-work-slider.full {
  margin-bottom: -1px;
}

.slider-arrow {
  color: #000;
  width: 60px;
  height: 60px;
  inset: auto auto -80px 0%;
}

.slider-arrow.prev.align-top {
  filter: invert();
  inset: 40px 100px auto auto;
}

.slider-arrow.next {
  top: auto;
  left: auto;
  right: 0%;
}

.slider-arrow.next.align-top {
  filter: invert();
  transition: opacity .2s;
  inset: 40px 40px auto auto;
}

.hidden {
  display: none;
}

.design-slide {
  height: 460px;
  position: relative;
}

.design-slide.full {
  height: 650px;
  overflow: hidden;
}

.design-slide-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.design-slide-details {
  color: #fff;
  background-image: linear-gradient(#0000, #00000040 35%, #000);
  padding: 20px 40px 30px;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity .2s;
  position: absolute;
  inset: auto 0% 0%;
}

.design-slide-details:hover {
  opacity: .8;
}

.design-slide-details.full {
  background-image: none;
  padding-bottom: 60px;
  font-size: 24px;
  line-height: 32px;
}

.service-link {
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.75rem;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.service-link:hover {
  transform: scale(1.1);
}

.service-icon {
  object-fit: contain;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

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

.team-wrap {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-decoration: none;
  transition: opacity .2s;
}

.team-wrap:hover {
  opacity: .8;
}

.team-thumbnail {
  width: 85%;
  margin-bottom: 1.75rem;
}

.team-name {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 84px;
}

.team-job-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 2.75rem;
  font-size: 42px;
  font-weight: 600;
  line-height: 54px;
}

.team-fav-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.team-fav-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.show-on-mobile {
  display: none;
}

.field-label {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-field {
  background-color: #f3f3f300;
  border: 1px #000;
  border-bottom: 2px solid #000;
  height: 45px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 24px;
  transition: all .2s;
}

.text-field:hover {
  border-bottom-color: #85b6f7;
}

.text-field:focus {
  border-bottom-color: #41a3fa;
}

.field-wrap {
  padding-bottom: 30px;
}

.submit-button {
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-size: 16px;
  transition: all .2s;
}

.submit-button:hover {
  color: #fff;
  background-color: #000;
}

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

.blog-grid._2-col {
  grid-template-columns: 1fr 1fr;
}

.blog-grid.latest {
  grid-template-columns: 1fr;
}

.blog-item {
  color: #000;
  cursor: pointer;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.blog-item:hover {
  opacity: .8;
}

.blog-item.latest {
  color: #fff;
}

.blog-thumbnail {
  object-fit: cover;
  width: 100%;
  max-height: 250px;
  margin-bottom: 20px;
}

.blog-thumbnail.latest {
  max-height: 280px;
}

.blog-category {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-category.page {
  font-size: 24px;
  line-height: 24px;
}

.blog-name {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.blog-name.latest {
  font-size: 26px;
  line-height: 32px;
}

.blog-name.page {
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
}

.blog-summary {
  font-size: 16px;
  line-height: 24px;
}

.blog-summary.latest {
  max-width: 70%;
  font-size: 18px;
  line-height: 26px;
}

.blog-bottom-details {
  padding-top: 10px;
  font-weight: 500;
  display: flex;
}

.blog-bottom-details.page {
  padding-top: 0;
  font-size: 18px;
  line-height: 24px;
}

.blog-date {
  padding-left: 10px;
}

.quote-author {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

.blog-img {
  object-fit: cover;
  width: 100%;
  height: 260px;
  margin-bottom: 2.75rem;
}

.cs-page-tabs {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 350px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: grid;
}

.cs-tabs-menu {
  flex-direction: column;
  display: flex;
  position: sticky;
  inset: 20px 0 0;
}

.cs-tab {
  text-transform: uppercase;
  background-color: #0000;
  border-left: 2px solid #fff;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.cs-tab.w--current {
  background-color: #0000;
  border-left: 2px solid #000;
  font-weight: 800;
}

.cs-link {
  cursor: pointer;
  background-color: #fafafa;
  height: 380px;
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: opacity .2s;
  display: block;
  position: relative;
}

.cs-link:hover {
  opacity: .9;
}

.cs-details-block {
  z-index: 1;
  color: #fff;
  background-image: linear-gradient(#0000, #00000040 35%, #000);
  padding: 20px;
  font-size: 18px;
  line-height: 24px;
  position: absolute;
  inset: auto 0% 0%;
}

.cs-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.cs-bg-img {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

._3-2-col-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.process-wrap {
  justify-content: space-around;
  display: flex;
}

.process-item {
  text-align: center;
  width: 320px;
  padding: 40px 20px;
}

.process-arrow {
  transform: rotate(-90deg);
}

.button {
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .2s;
}

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

.button.full {
  width: 100%;
}

.button-alt {
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #fff;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .2s;
}

.button-alt:hover {
  transform: scale(1.1);
}

.button-wrap {
  padding-top: 1.75rem;
}

.utility-page-wrap {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 650px;
  font-size: 18px;
  line-height: 28px;
  display: flex;
}

.utility-title {
  padding-bottom: 20px;
  font-size: 70px;
  font-weight: 900;
  line-height: 78px;
}

.utility-title.small {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 600;
  line-height: 54px;
}

._404-page-body {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

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

.flex {
  display: flex;
}

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

.work-grid-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.work-lightbox {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-link {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.text-link:hover {
  opacity: .8;
}

.service-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.share-title {
  text-align: right;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: 600;
}

.page-wrap {
  flex: 1;
}

.link {
  color: #000;
  margin-left: 4px;
  font-weight: 500;
}

.text-block {
  color: #a2a2a2;
}

.design-link-wrap {
  width: 100%;
  height: 100%;
}

.sticky {
  position: sticky;
  top: 40px;
}

.blog-rich-text {
  margin-left: auto;
  margin-right: auto;
}

.blog-rich-text h2 {
  font-size: 38px;
  line-height: 46px;
}

.blog-rich-text h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.team-fav-value {
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
}

.cs-rich-text {
  padding-bottom: 1.75rem;
}

.cs-summary-wrap {
  padding-top: 1.75rem;
}

.cs-summary-text {
  color: #000;
  font-size: 22px;
  line-height: 32px;
}

.heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.3em;
}

.div-block {
  background-color: #0000;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.div-block-2 {
  width: 50%;
  padding-right: 25px;
  position: relative;
}

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

.div-block-3 {
  justify-content: space-between;
  margin-top: 39px;
  display: flex;
}

.text-block-2 {
  color: #000;
  margin-left: 25px;
}

.div-block-4 {
  align-items: center;
  display: flex;
}

.bold-text-2 {
  font-weight: 700;
}

.signature {
  text-transform: capitalize;
  font-family: eikooc, Arial, sans-serif;
  font-size: 55px;
  font-weight: 400;
  position: absolute;
  inset: auto 0% 17% 21%;
}

.team {
  margin-top: -40px;
  padding: 120px 0% 60px;
}

.hero {
  font-weight: 400;
}

.div-block-5 {
  flex-direction: column;
  align-items: center;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.team-div {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  display: grid;
}

.team-div._2 {
  margin-top: 100px;
}

.team-div.hide {
  display: none;
}

.team-members {
  border-right: 1px solid #000;
  margin-right: 0;
  padding-right: 60px;
}

.h2-small {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.h2-small.middle {
  text-align: center;
}

.text-block-3 {
  letter-spacing: -.02em;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

.h2 {
  text-transform: none;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1em;
}

.image-2 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 600px;
  height: 400px;
  margin-bottom: 12px;
}

.team-namen {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

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

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

.div-block-8 {
  width: auto;
  position: sticky;
  inset: 100px 0% 0%;
}

.titel {
  margin-top: 3px;
  font-size: 17px;
  font-style: italic;
}

.ma-beschreibung {
  width: 600px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.ma-beschreibung p {
  padding-left: 20px;
}

.text-block-4 {
  color: #000;
}

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

.text-span {
  font-weight: 700;
}

._5-fragen-5-antworten {
  margin-bottom: 48px;
  padding: 60px 5%;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.faq-plus {
  background-color: #2aa8ff;
  border-radius: 3px;
  width: 100%;
  height: 5px;
}

.faq-question {
  cursor: pointer;
  align-items: center;
  height: 90px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

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

.pricing-h1.faq-h2 {
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 50px;
  line-height: 1.3em;
}

.faq-plus-l {
  background-color: #2aa8ff;
  border-radius: 3px;
  width: 5px;
  height: 100%;
  position: absolute;
}

.faq-answer-text {
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-answer {
  border-bottom: 1px solid #2d3e501f;
  padding-left: 45px;
  overflow: hidden;
}

.faq-answer.last-faq-answer {
  border-bottom-width: 0;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
  position: relative;
}

.container-2.faq-container {
  z-index: 0;
  background-color: #ffffff80;
  border-radius: 5px;
  max-width: 900px;
  padding-top: 60px;
  padding-bottom: 80px;
  box-shadow: 0 0 50px #2d3e500f;
}

.faq-q-text {
  font-weight: 600;
}

.link-2 {
  color: #2aa8ff;
  font-weight: 600;
}

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

.leistungen {
  flex-direction: column;
  align-items: center;
  padding: 40px 5%;
  display: flex;
}

.tabs-menu {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.tabs-header {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}

.d-130-image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.div-block-316 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.d-130-blog-card-wrapper {
  border: 10px solid #fff;
  justify-content: center;
  align-items: flex-start;
  width: 530px;
  height: 400px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  position: relative;
}

.digi1 {
  background-color: #fff;
  border: 2px solid #f8f8fa;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 50px;
  display: flex;
}

.ablauf {
  background-color: #f5fafe;
  border: 1px solid #e1e4ee;
  height: auto;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 15px;
  padding: 15px;
  position: static;
  inset: auto 0% -30%;
}

.heading-106 {
  letter-spacing: -.01em;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
}

.d-130-h3-heading {
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
}

.d-130-month {
  font-size: 32px;
}

.grid-33 {
  grid-column-gap: 52px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .75fr;
}

.d-130-paragraph {
  color: #050c35;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3em;
  display: block;
}

.div-block-321 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-right: 10px;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.d-130-image {
  background-image: url('../images/daria-nepriakhina-194418-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 150%;
  height: 150%;
  position: absolute;
}

.d-130-image._2 {
  background-image: url('../images/design-ohne-titel-29.jpg');
  background-size: cover;
}

.d-130-image._1 {
  background-image: url('../images/design-ohne-titel-31.jpg');
}

.d-130-image._4 {
  background-image: url('../images/design-ohne-titel-32.jpg');
}

.d-130-image._3 {
  background-image: url('../images/design-ohne-titel-30.jpg');
  background-position: 100%;
}

.rich-text-block-3 {
  color: #000;
}

.div-block-273 {
  margin-top: 42px;
}

.button-dunkel {
  color: #606670;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  border: 1px solid #e1e4ee;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 10px;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.button-dunkel:hover {
  color: #000;
  background-color: #fff;
  transform: scale(1.03);
}

.button-dunkel.digitalisiseunrgsseite {
  color: #081c56;
  letter-spacing: 0;
  text-transform: none;
  background-color: #f5fafe;
  margin-bottom: 10px;
  margin-right: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.button-dunkel.digitalisiseunrgsseite.klein {
  background-color: #eaf0fc;
  font-size: 18px;
}

.ablauf-digitalisierung {
  border-bottom: 1px solid #000;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: flex;
}

.d-130-color-overlay {
  background-color: #050c35a8;
  padding-left: 0;
  position: absolute;
  inset: 0%;
}

.tab-link-tab-1 {
  background-color: var(--dunkelblau);
}

.tab-link-tab-1.w--current {
  background-color: var(--blau);
  color: #fff;
}

.tab-link-tab-2 {
  background-color: var(--dunkelblau);
  color: #fff;
}

.tab-link-tab-2.w--current {
  background-color: var(--blau);
}

.tab-link-tab-3 {
  background-color: var(--dunkelblau);
  color: #fff;
}

.tab-link-tab-3.w--current {
  background-color: var(--blau);
}

.d-122-category-card-wrapper {
  background-image: url('../images/nordwood-3883.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
  height: 300px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.d-122-category-card-wrapper._2 {
  background-image: url('../images/design-ohne-titel-33.jpg');
  background-size: cover;
  width: 500px;
  height: 350px;
}

.d-122-color-overlay {
  background-color: #0a0041bf;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.d-122-top-block, .d-122-bottom-block {
  background-color: #000;
  height: 20%;
  position: relative;
}

.d-118-3d-wrapper {
  perspective: 1000px;
  cursor: pointer;
  background-image: url('../images/iabzd-607239-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 400px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  position: relative;
}

.d-118-3d-wrapper._2 {
  background-image: url('../images/firmenportrait-0593_11zon.jpg');
  background-size: cover;
  width: 500px;
}

.d-118-3d-wrapper._1 {
  background-image: url('../images/firmenportrait-0710_11zon.jpg');
  background-position: 100%;
  width: 500px;
}

.d-118-3d-wrapper._3 {
  background-image: url('../images/firmenportrait-0578_11zon.jpg');
  width: 500px;
}

.d-118-card-wrapper {
  opacity: .8;
  color: #fff;
  background-color: #1a1a1a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px;
  padding: 25px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.d-118-quote-wrapper {
  color: #fff;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  position: relative;
}

.d-118-quote-icon {
  font-size: 30px;
}

.d-118-quote-title {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 30px;
  line-height: 1.3em;
  display: flex;
}

.d-118-quote-text {
  text-align: center;
  font-size: 14px;
}

.tabs {
  max-width: 1400px;
}

.digital-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 500px;
  display: flex;
}

.digi1-2 {
  background-color: #fff;
  border: 2px solid #f8f8fa;
  max-width: 1400px;
  margin-top: 0;
  margin-bottom: 60px;
  padding: 50px;
}

.div-block-248 {
  background-color: #fff;
  border: 2px solid #f8f8fa;
  max-width: 1400px;
  margin-bottom: 60px;
  padding: 50px;
}

.grid-34 {
  grid-column-gap: 53px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
}

.digital {
  color: #050c35;
  background-color: #f6f6f9;
  flex-direction: column;
  align-items: center;
  margin-top: -40px;
  padding: 120px 5% 60px;
  display: flex;
}

.div-block-323 {
  max-width: 1400px;
  margin-bottom: 83px;
}

.grid-35 {
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
}

.faq-q-text-2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.video-wrapper {
  width: 100%;
  padding-top: 29px;
}

.html-embed {
  margin-top: 27px;
}

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

.div-block-324 {
  background-color: var(--dunkelblau);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 15px 20px 15px 25px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.div-block-324:hover {
  transform: translate(-10px);
}

.h3 {
  font-size: 30px;
}

.h3.white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2em;
  text-decoration: none;
}

.div-block-325 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 530px;
  display: flex;
}

.div-block-326 {
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.finanzbuchhaltung, .lohnbuchhaltung, .einkommensteuererkl-rung {
  padding-top: 0;
}

.netzwerk {
  background-color: #0000;
  padding: 24px 40px 33px;
}

.netzwerk-content {
  justify-content: space-between;
  padding-left: 0;
  display: flex;
}

.netzwerk-mitgliedschaft {
  flex-direction: column;
  justify-content: center;
  transition: all .2s;
  display: flex;
}

.netzwerk-mitgliedschaft:hover {
  transform: scale(1.1);
}

.image-3 {
  object-fit: contain;
  width: 90px;
  height: 100%;
  margin-right: 0;
}

.image-3.brandenburg {
  object-fit: contain;
  width: 300px;
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
}

.image-3.berlin-brandenburg {
  width: 300px;
  padding-top: 26px;
}

.image-3.niedersachsen {
  width: 300px;
  padding-bottom: 22px;
}

.div-block-327 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.team-modal__body-2 {
  z-index: 9999;
  background-color: #000000b3;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto;
  overflow: scroll;
}

.panel__title-2 {
  color: #fff;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.team-modal__bg {
  z-index: 1;
  cursor: default;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0;
}

.team-panel__header {
  z-index: 999999;
  height: 100%;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

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

.img__cover.is--panel {
  z-index: 1;
  object-position: 50% 0%;
  position: relative;
}

.team-modal__panel {
  z-index: 99999;
  background-color: #0000;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 630px;
  display: flex;
  position: absolute;
  inset: 0% 0;
  overflow: auto;
}

.leistungsbeschreibung {
  padding-top: 145px;
}

.team--closer-2 {
  z-index: 44;
  background-color: var(--blau);
  justify-content: center;
  align-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 10px;
  transition: background-color .4s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.team--closer-2:hover {
  background-color: #7fa2b5;
}

.header-panel__info-2 {
  z-index: 5;
  background-color: var(--dunkelblau);
  padding: 20px 32px;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-82 {
  color: #fff;
}

.team-modal__wrap-2 {
  z-index: 99999;
  width: 100%;
  height: 660px;
  display: block;
  position: fixed;
  inset: 0 0% 0%;
  overflow: hidden;
}

.team-modal__wrap-2.michael-groth {
  height: 100%;
  display: none;
  top: 10vh;
}

.team-panel__content {
  color: #000;
  width: auto;
  min-width: 500px;
  max-width: 600px;
  padding: 32px 20px 56px 32px;
  display: block;
  position: relative;
}

.team-contact__wrap.in--panel {
  font-size: 18px;
  font-weight: 300;
}

.historie-tab {
  background-color: var(--blau);
  margin-left: 30px;
  margin-right: 30px;
}

.historie-tab.w--current {
  background-color: var(--dunkelblau);
  color: #fff;
  margin-left: 30px;
  margin-right: 30px;
  transform: scale(1.2);
}

.header-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.header-wrapper.white {
  color: #fff;
}

.heading-kanzleihistorie {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.wide-tabs-menu {
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.text-big-2 {
  letter-spacing: -.03em;
  font-size: 54px;
  font-weight: 500;
  line-height: .9em;
}

.text-big-2.ber-uns {
  text-align: center;
  height: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.text-big {
  letter-spacing: -.03em;
  height: auto;
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 500;
  line-height: .9em;
}

.text-big.ueber-uns {
  text-align: center;
  height: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 55px;
}

.div-block-39 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  padding: 20px 41px 0;
  display: flex;
}

.section-2 {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 5%;
  display: flex;
  position: relative;
}

.tradition-moderne {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 87px 1% 60px;
  display: flex;
}

.div-block-38 {
  flex-direction: column;
  justify-content: flex-start;
  height: 60.3px;
  display: flex;
  overflow: hidden;
}

.tabs-2 {
  background-color: #f7f7fd;
  width: 100%;
  max-width: 1400px;
  padding: 24px;
}

.subheading {
  margin-bottom: 26px;
  font-size: 26px;
  line-height: 1.2em;
}

.heading-107, .heading-108 {
  font-size: 28px;
}

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

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

.image-4.kontaktbild {
  object-position: 10% 50%;
}

.grid-36 {
  grid-column-gap: 64px;
  grid-template-rows: auto;
  max-width: 1400px;
}

.grid-19 {
  grid-column-gap: 10px;
  grid-row-gap: 21px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 65px 1fr;
  margin-top: 47px;
}

.image-90 {
  width: 35px;
  max-height: 53px;
}

.div-block-225 {
  color: #fff;
}

.paragraph-6 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.image-91 {
  width: 35px;
  max-height: 36px;
}

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

.div-block-328 {
  background-color: #fff;
  display: flex;
  box-shadow: -4px 7px 18px #00000029;
}

.div-block-329 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.div-block-329.under {
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

.link-4 {
  color: #000;
  margin-left: 20px;
  margin-right: 0;
  text-decoration: none;
}

.link-5 {
  color: #000;
  font-size: 18px;
  line-height: 1.3em;
}

.zusatzinformation {
  background-color: var(--dunkelblau);
  padding: 60px 5% 50px;
}

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

.div-block-331 {
  background-image: url('../images/firmenportrait-0001.webp');
  background-position: 90% 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.grundsteuerreform-popup {
  z-index: 100;
  background-color: #f5fafe;
  border: 1px solid #e2e2e2;
  border-radius: 1px;
  flex-direction: column;
  align-items: center;
  width: 560px;
  height: auto;
  padding: 20px;
  display: none;
  position: fixed;
  inset: auto 2% 3% auto;
}

.h2-klein {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.3em;
}

.h2-klein.top {
  margin-bottom: 10px;
  font-size: 24px;
}

.text-block-86 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4em;
}

.div-block-333 {
  cursor: pointer;
  background-image: url('../images/cross_black.png');
  background-position: 0 0;
  background-size: contain;
  width: 25px;
  height: 25px;
  transition: all .2s;
  position: absolute;
  inset: 4% 2% auto auto;
}

.div-block-333:hover {
  transform: scale(1.06);
}

.div-block-334 {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.div-block-334.unten {
  border-bottom-width: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-335 {
  justify-content: flex-start;
  margin-top: 11px;
  display: flex;
}

.div-block-336 {
  margin-right: 20px;
}

.text-block-87 {
  margin-bottom: 10px;
  font-size: 16px;
}

.section-44 {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-257 {
  margin-left: 80px;
  padding: 100px 80px;
}

.heading-109 {
  color: #000;
  text-transform: none;
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: 700;
}

.rich-text-block-7 {
  text-transform: none;
  font-size: 16px;
  line-height: 1.4em;
}

.rich-text-block-7 a {
  color: #000;
}

.section-45 {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.text-span-2 {
  text-transform: none;
}

.navbar-2 {
  background-color: var(--blau);
  flex-direction: column;
  align-items: center;
  height: 10vh;
  padding: 7px 5%;
  display: flex;
}

.link-6 {
  font-weight: 500;
}

.link-6:hover {
  color: #000;
}

.image-92 {
  object-fit: contain;
}

.video-link {
  margin-top: 27px;
}

@media screen and (min-width: 1440px) {
  .container.hero {
    justify-content: center;
  }

  .scroll-arrow-link.margin-top-mobile {
    right: -8%;
  }

  .content-block.values-content {
    width: 500px;
  }

  .block-with-divider.vertical {
    border-right-width: 0;
  }

  ._3-2-col-grid {
    grid-template-columns: 1fr .5fr;
  }

  .signature {
    left: 25%;
  }

  .team-modal__panel {
    max-width: none;
    height: 600px;
  }

  .team-modal__wrap-2.michael-groth {
    flex-direction: column;
    align-items: center;
  }

  .tradition-moderne {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-44 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-257 {
    max-width: 1200px;
  }

  .rich-text-block-7 {
    font-size: 16px;
    line-height: 1.4em;
  }

  .section-45 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
}

@media screen and (min-width: 1920px) {
  .navbar.dark {
    flex-direction: column;
  }

  .container.hero {
    width: 40%;
  }

  .scroll-arrow-link.margin-top-mobile {
    right: -7%;
  }

  .block-with-divider.vertical {
    width: 760px;
  }

  .div-block-2 {
    object-position: 100% 50%;
    width: 60%;
  }

  .div-block-5 {
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .team-div {
    max-width: none;
  }

  .image-2 {
    width: 700px;
  }

  .tabs {
    width: 1728px;
  }

  .image-3 {
    width: 110px;
  }

  .image-3.brandenburg, .image-3.berlin-brandenburg, .image-3.niedersachsen {
    width: 330px;
  }

  .img__cover.is--panel {
    object-position: 50% 0%;
  }

  .section-44 {
    margin-top: 0;
  }

  .div-block-257 {
    margin-left: 80px;
  }

  .section-45 {
    margin-top: 0;
  }
}

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

  .nav-container {
    height: 80px;
    padding: 10px 40px;
  }

  .nav-right-wrap {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-menu {
    background-color: var(--blau);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    justify-content: center;
    padding: 20px 40px;
  }

  .nav-menu.alt {
    background-color: #fafafa;
    box-shadow: 0 10px 20px #0000001a;
  }

  .nav-link {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link:hover {
    font-weight: 600;
    transform: none;
  }

  .nav-link.alt {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-logo {
    width: auto;
    max-width: 200px;
    height: 100%;
    min-height: auto;
    overflow: visible;
  }

  .menu-button {
    order: 1;
    margin-left: 20px;
    padding: 12px 0 12px 12px;
    font-size: 30px;
    line-height: 26px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #0000;
    margin-left: 20px;
  }

  .navbar {
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    position: fixed;
    box-shadow: 0 0 8px #0000001a;
  }

  .navbar.dark {
    width: 100%;
  }

  .nav-logo-wrap {
    padding-left: 0;
  }

  .nav-logo-wrap.w--current {
    height: 90%;
    min-height: auto;
    position: relative;
  }

  .hero-section {
    height: 90vh;
    padding-top: 29px;
  }

  .container.hero {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title {
    padding-bottom: 1.75rem;
    font-size: 48px;
    line-height: 54px;
  }

  .section-title.no-padding {
    font-size: 40px;
    line-height: 1.1em;
  }

  .section-title.design-slide-title {
    font-size: 42px;
    line-height: 54px;
  }

  .section-title.home-hero {
    padding-bottom: .7rem;
    font-size: 50px;
  }

  .scroll-arrow-link.margin-top-mobile {
    margin-top: 60px;
  }

  .michael-groth {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .michael-groth.no-padding-bottom {
    background-color: #f6f6f9;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .michael-groth.dark.no-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .michael-groth.cs-hero, .michael-groth.hero--bottom-border {
    padding-top: 140px;
  }

  .michael-groth.team-bio {
    padding-top: 100px;
  }

  .michael-groth.blog-page-header {
    padding-top: 120px;
  }

  .divider-line.margin-vertical {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
    display: none;
  }

  .divider-line.no-margin {
    display: none;
  }

  ._2-col-grid {
    grid-row-gap: 45px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid.team-bio {
    grid-template-columns: 1fr;
  }

  ._2-col-grid.hero {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid.cs-page {
    grid-row-gap: 0px;
  }

  .content-block.padding-top {
    padding-top: 0;
  }

  .content-block.values-content, .content-block.more-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-icon.cs-header {
    max-width: 140px;
  }

  .section-icon.cs-benefit {
    order: -1;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  ._2-3-col-grid {
    grid-template-columns: 1fr;
  }

  .block-with-divider {
    border-right-style: none;
  }

  .block-with-divider.vertical {
    padding-right: 0;
  }

  .section-item-title.bold {
    font-size: 30px;
    line-height: 38px;
  }

  .search-link {
    order: 2;
    display: none;
  }

  .section-img {
    height: 400px;
  }

  .section-img.team-bio {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .section-img.cs-main-img {
    padding-bottom: 1rem;
  }

  .step-side-bar-wrap {
    display: none;
  }

  .steps-component-wrap {
    display: block;
  }

  .step-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .brand-content-wrap {
    padding: 40px 0;
  }

  .step-section-title {
    margin-bottom: 0;
    font-size: 18px;
  }

  .example-block-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-example, .text-example.med, .text-example.bold, .text-example.black, .abc-wrap.med, .abc-wrap.bold {
    padding-left: 0%;
  }

  .abc-wrap.black {
    padding-bottom: 0;
    padding-left: 0%;
  }

  .headline-example {
    font-size: 48px;
    line-height: 54px;
  }

  .headline-example.subtitle {
    font-size: 32px;
    line-height: 40px;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-links-wrap {
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
  }

  .footer-link {
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 14px;
  }

  .social-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-bg-img {
    width: 300px;
    height: 360px;
    bottom: -80px;
    left: 10%;
  }

  .hero-bg-img._2 {
    width: 250px;
    height: 300px;
    top: 0;
  }

  .hero-bg-img._3 {
    width: 250px;
    height: 350px;
    right: -10%;
  }

  .cs-header-description {
    font-size: 24px;
  }

  .cs-description-item {
    font-size: 14px;
    line-height: 20px;
  }

  .cs-desc-icon {
    width: 20px;
    height: 20px;
  }

  .cs-top-img-grid {
    padding-bottom: 60px;
  }

  .cs-section-title-wrap {
    font-size: 54px;
    line-height: 62px;
  }

  ._3-col-benefits-grid {
    grid-row-gap: 45px;
    grid-template-columns: 1fr;
  }

  .cs-benefit-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-quote-p {
    padding-top: 40px;
    font-size: 28px;
    line-height: 34px;
  }

  .section-subtitle {
    font-size: 24px;
    line-height: 32px;
  }

  .menu-button-alt {
    order: 1;
    margin-left: 20px;
    padding: 12px;
    font-size: 26px;
    line-height: 26px;
  }

  .menu-button-alt.w--open {
    color: #000;
    background-color: #0000;
    margin-left: 20px;
  }

  .design-work-slider.full {
    min-height: 450px;
  }

  .slider-arrow.prev.align-top {
    right: 80px;
  }

  .slider-arrow.next.align-top {
    right: 20px;
  }

  .design-slide {
    height: 400px;
  }

  .design-slide.full {
    height: 450px;
  }

  .design-slide-details.full {
    padding-bottom: 40px;
    font-size: 20px;
    line-height: 26px;
  }

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

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

  .team-name, .team-job-title {
    padding-bottom: 1.75rem;
    font-size: 48px;
    line-height: 54px;
  }

  .team-fav-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

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

  .blog-summary.latest {
    max-width: 90%;
  }

  .quote-author {
    font-size: 24px;
    line-height: 32px;
  }

  .cs-page-tabs {
    grid-row-gap: 45px;
    grid-template-columns: 1fr;
  }

  .cs-link {
    height: 320px;
  }

  ._3-2-col-grid {
    grid-row-gap: 45px;
    grid-template-columns: 1fr;
  }

  .process-wrap {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    display: none;
  }

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

  .link {
    font-size: 12px;
  }

  .team-fav-value {
    font-size: 24px;
    line-height: 32px;
  }

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

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

  .div-block-2 {
    width: 100%;
    padding-right: 0;
    position: static;
  }

  .image {
    height: 350px;
  }

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

  .text-block-2 {
    font-size: 12px;
  }

  .signature {
    bottom: 12%;
    left: 30%;
  }

  .team {
    padding-top: 106px;
    padding-bottom: 40px;
  }

  .team-div {
    grid-template-columns: 1fr;
  }

  .team-div._2 {
    margin-top: 54px;
  }

  .team-members {
    border-right-width: 0;
    width: 100%;
    padding-right: 0;
  }

  .h2-small {
    font-size: 18px;
  }

  .image-2 {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
  }

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

  .ma-beschreibung {
    width: 100%;
  }

  .text-block-4 {
    font-size: 12px;
  }

  .div-block-9 {
    align-items: flex-start;
  }

  ._5-fragen-5-antworten {
    padding-top: 68px;
  }

  .faq-question {
    height: 70px;
  }

  .pricing-h1.faq-h2 {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .faq-answer {
    border-bottom-width: 0;
  }

  .container-2.faq-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq-q-text {
    font-size: 20px;
  }

  .leistungen {
    background-color: #f6f6f9;
  }

  .tabs-menu {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .tabs-header {
    text-align: center;
  }

  .div-block-316 {
    padding-top: 0;
  }

  .d-130-blog-card-wrapper {
    margin-bottom: 100px;
  }

  .digi1 {
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .grid-33 {
    grid-column-gap: 20px;
    grid-template-columns: 1.5fr;
  }

  .div-block-273 {
    margin-top: 15px;
  }

  .button-dunkel {
    margin-top: 20px;
  }

  .tab-link-tab-1 {
    width: 387px;
  }

  .tab-link-tab-1.w--current {
    width: 387.4px;
    margin-bottom: 0;
  }

  .tab-link-tab-2 {
    width: 387.422px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .tab-link-tab-2.w--current {
    margin-top: 10px;
  }

  .tab-link-tab-3 {
    width: 387.4px;
  }

  .d-118-3d-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .d-118-3d-wrapper._2, .d-118-3d-wrapper._1, .d-118-3d-wrapper._3 {
    width: 400px;
    height: 300px;
  }

  .d-118-quote-title {
    font-size: 24px;
  }

  .digi1-2 {
    margin-bottom: 60px;
    padding-top: 20px;
  }

  .div-block-248 {
    margin-bottom: 40px;
    padding-top: 10px;
  }

  .grid-34 {
    grid-template-columns: 1.5fr;
  }

  .digital {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .div-block-323 {
    margin-bottom: 3px;
  }

  .grid-35 {
    margin-bottom: 25px;
  }

  .div-block-324:hover {
    transform: none;
  }

  .h3.white {
    font-size: 20px;
  }

  .netzwerk-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .div-block-327 {
    margin-top: 38px;
  }

  .team-modal__body-2 {
    height: 90%;
  }

  .panel__title-2 {
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.2em;
  }

  .team-panel__header {
    width: 100%;
    height: 50%;
    min-height: 400px;
  }

  .team-modal__panel {
    height: 100%;
  }

  .leistungsbeschreibung {
    padding-top: 78px;
  }

  .team--closer-2 {
    inset: 0% 0% auto auto;
  }

  .team-modal__wrap-2 {
    display: block;
  }

  .team-modal__wrap-2.michael-groth {
    display: none;
  }

  .team-panel__content {
    max-width: 100%;
    padding-bottom: 20px;
  }

  .historie-tab {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .historie-tab.w--current {
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .header-wrapper.white {
    margin-bottom: 0;
  }

  .heading-kanzleihistorie {
    font-size: 22px;
    line-height: 1.2em;
  }

  .wide-tabs-menu {
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: flex-start;
  }

  .text-block-84 {
    font-weight: 700;
  }

  .tradition-moderne {
    padding-top: 51px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .tabs-2 {
    display: flex;
  }

  .kontakt {
    padding-top: 40px;
  }

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

  .grid-19 {
    grid-row-gap: 15px;
    margin-top: 29px;
  }

  .paragraph-6 {
    font-size: 18px;
  }

  .mitgliedschaften-link {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

  .div-block-329 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
  }

  .link-4 {
    font-size: 12px;
  }

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

  .div-block-330 {
    margin-top: 8px;
  }

  .paragraph-7 {
    font-size: 16px;
  }

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

  .text-block-85 {
    font-weight: 700;
  }

  .paragraph-8 {
    font-size: 16px;
  }

  .div-block-331 {
    height: 400px;
  }

  .section-44 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .div-block-257 {
    margin-left: 0;
    padding: 60px 0;
  }

  .heading-109 {
    font-size: 50px;
  }

  .section-45 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .tab-pane-tab-2 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }

  h2 {
    font-size: 42px;
    line-height: 50px;
  }

  h3 {
    font-size: 36px;
    line-height: 42px;
  }

  h4 {
    font-size: 32px;
    line-height: 40px;
  }

  h5 {
    font-size: 28px;
    line-height: 36px;
  }

  h6 {
    font-size: 24px;
    line-height: 30px;
  }

  .nav-container {
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link.alt {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .nav-logo {
    max-width: 140px;
  }

  .menu-button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: 25px;
  }

  .navbar.dark {
    height: auto;
  }

  .nav-logo-wrap.w--current {
    height: 100%;
  }

  .hero-section {
    height: auto;
    padding-top: 21px;
    padding-bottom: 40px;
  }

  .section-mini-subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .section-title {
    font-size: 36px;
    line-height: 42px;
  }

  .section-title.no-padding {
    text-align: center;
    font-size: 34px;
  }

  .section-title.content-bottom {
    text-align: center;
    flex-direction: column;
    font-size: 34px;
    display: block;
  }

  .section-title.design-slide-title {
    font-size: 28px;
    line-height: 32px;
  }

  .section-title.home-hero {
    text-align: center;
    font-size: 36px;
    line-height: 1.2em;
  }

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

  .michael-groth.dark.no-padding {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
  }

  .michael-groth.cs-hero, .michael-groth.hero--bottom-border {
    padding-top: 100px;
  }

  ._2-col-grid.slide-from-bottom {
    grid-row-gap: 19px;
  }

  .section-icon.cs-section {
    width: 40px;
    height: 40px;
  }

  .section-icon.cs-benefit {
    height: 50px;
  }

  .block-with-divider.vertical {
    align-items: center;
    padding-right: 0;
  }

  .section-item-title, .section-item-title.bold {
    font-size: 24px;
    line-height: 32px;
  }

  .section-img {
    height: 350px;
    max-height: none;
  }

  .step-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .step-section-title {
    text-align: center;
    font-size: 16px;
  }

  .text-example {
    font-size: 32px;
    line-height: 32px;
  }

  .abc-wrap {
    font-size: 20px;
    line-height: 20px;
  }

  .abc-wrap.black {
    max-width: 100%;
  }

  .headline-example {
    font-size: 36px;
    line-height: 42px;
  }

  .headline-example.subtitle {
    font-size: 28px;
    line-height: 32px;
  }

  .social-links-wrap.team-bio {
    padding-top: 20px;
  }

  .social-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-bg-img {
    width: 220px;
    height: 300px;
    display: none;
    left: auto;
    right: 10%;
  }

  .hero-bg-img._2 {
    right: -10%;
  }

  .hero-bg-img._3 {
    display: none;
  }

  .cs-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-header-description {
    padding-top: 20px;
  }

  .cs-bottom-description {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 40px;
  }

  .cs-description-item {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .cs-desc-icon {
    width: 26px;
    height: 26px;
  }

  .cs-section-title-wrap {
    font-size: 38px;
    line-height: 46px;
  }

  .cs-benefit-header.result {
    font-size: 42px;
    line-height: 48px;
  }

  .cs-quote-p, .section-subtitle {
    font-size: 24px;
    line-height: 32px;
  }

  .menu-button-alt {
    padding: 10px;
    font-size: 18px;
  }

  .slider-arrow.prev.align-top, .slider-arrow.next.align-top {
    display: none;
  }

  .design-slide {
    height: 320px;
  }

  .design-slide-details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-link {
    font-size: 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

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

  .team-wrap {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-name, .team-job-title {
    font-size: 38px;
    line-height: 44px;
  }

  .team-fav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-fav-title {
    font-size: 24px;
    line-height: 32px;
  }

  .field-label {
    font-size: 18px;
    line-height: 24px;
  }

  .blog-grid, .blog-grid._2-col {
    grid-template-columns: 1fr;
  }

  .blog-name.page, .quote-author {
    font-size: 24px;
    line-height: 32px;
  }

  .cs-link {
    height: 420px;
  }

  .cs-details-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cs-title {
    font-size: 24px;
    line-height: 32px;
  }

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

  .service-title, .team-fav-value {
    font-size: 24px;
    line-height: 32px;
  }

  .heading {
    text-align: center;
  }

  .image {
    height: 300px;
  }

  .signature {
    bottom: 12%;
    left: 25%;
  }

  .team-div._2 {
    margin-top: 25px;
  }

  .h2-small {
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .image-2 {
    height: 300px;
  }

  .team-namen {
    font-size: 22px;
  }

  .titel {
    font-size: 16px;
  }

  .ma-beschreibung {
    width: 100%;
  }

  .faq-question {
    height: 60px;
  }

  .pricing-h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .pricing-h1.faq-h2 {
    text-align: center;
    font-size: 34px;
  }

  .container-2.faq-container {
    padding-bottom: 20px;
  }

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

  .faq-q-text {
    font-size: 18px;
  }

  .digi1 {
    margin-bottom: 20px;
    padding: 20px;
  }

  .heading-106 {
    margin-top: 0;
    font-size: 25px;
  }

  .bold-text-3 {
    text-align: center;
    font-size: 16px;
  }

  .div-block-273 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .button-dunkel.digitalisiseunrgsseite {
    font-size: 16px;
  }

  .button-dunkel.digitalisiseunrgsseite.klein {
    margin-top: 0;
    font-size: 16px;
  }

  .digi1-2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .div-block-248 {
    margin-bottom: 20px;
    padding: 20px;
  }

  .grid-35 {
    grid-template-columns: 1.25fr;
  }

  .faq-q-text-2 {
    text-align: left;
    font-size: 18px;
  }

  .faq-q-text-2.title {
    text-align: center;
  }

  .video-wrapper {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .h3.white {
    font-size: 16px;
  }

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

  .netzwerk-content {
    grid-template-columns: 1fr;
  }

  .image-3 {
    width: 70px;
  }

  .image-3.brandenburg, .image-3.berlin-brandenburg, .image-3.niedersachsen {
    width: 250px;
  }

  .div-block-327 {
    margin-top: 30px;
  }

  .text-block-82 {
    font-size: 16px;
    line-height: 1.3em;
  }

  .div-block-39 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-2 {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .paragraph-7, .paragraph-8 {
    text-align: center;
  }

  .div-block-331 {
    height: 300px;
  }

  .grundsteuerreform-popup {
    flex-direction: column;
    width: 95%;
    display: none;
    inset: 14.1vh 2% auto;
  }

  .h2-klein {
    font-size: 18px;
  }

  .h2-klein.top {
    font-size: 22px;
  }

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

  .div-block-334, .div-block-334.unten {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .bold-text-4 {
    font-size: 36px;
  }

  .paragraph-9 {
    text-align: center;
  }

  .heading-109 {
    font-size: 42px;
  }

  .navbar-2 {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
  }

  .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .section-title.home-hero {
    font-size: 32px;
    line-height: 42px;
  }

  .michael-groth.dark.no-padding {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-icon.cs-section {
    width: 30px;
    height: 30px;
  }

  .section-img {
    height: 200px;
  }

  .abc-wrap {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 100%;
    font-size: 14px;
    overflow: hidden;
  }

  .text-weight {
    font-size: 18px;
  }

  .footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer-wrap {
    padding-left: 0%;
    padding-right: 0%;
  }

  .hero-bg-img {
    width: 200px;
    height: 250px;
    right: 5%;
  }

  .hero-bg-img._2 {
    width: 200px;
    height: 260px;
    right: -20%;
  }

  .cs-benefit-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .design-work-slider.full {
    min-height: auto;
  }

  .design-slide.full {
    height: 360px;
  }

  .team-wrap {
    font-size: 20px;
    line-height: 28px;
  }

  .blog-bottom-details {
    flex-direction: column;
  }

  .blog-date {
    padding-left: 0;
  }

  .team-fav-value {
    text-align: left;
  }

  .heading {
    font-size: 16px;
  }

  .div-block {
    height: auto;
  }

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

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

  .signature {
    font-size: 40px;
    bottom: 11%;
    left: 21%;
  }

  .team {
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .h2-small {
    text-align: center;
  }

  .image-2 {
    height: 200px;
  }

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

  ._5-fragen-5-antworten {
    padding-top: 25px;
  }

  .faq-question {
    margin-bottom: 16px;
  }

  .faq-answer-text {
    margin-top: 9px;
  }

  .faq-answer {
    padding-left: 0;
  }

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

  .faq-wrap._2 {
    margin-top: 0;
  }

  .leistungen {
    padding-left: 3%;
    padding-right: 3%;
  }

  .tabs-menu {
    width: 100%;
  }

  .tabs-header {
    text-align: center;
    font-size: 16px;
  }

  .d-130-blog-card-wrapper {
    width: 300px;
    margin-bottom: 180px;
  }

  .digi1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ablauf {
    bottom: -30%;
  }

  .heading-106 {
    font-size: 25px;
  }

  .div-block-273 {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .button-dunkel {
    margin-top: 15px;
  }

  .button-dunkel.digitalisiseunrgsseite {
    text-align: center;
    margin-right: 0;
  }

  .d-118-3d-wrapper._2, .d-118-3d-wrapper._1, .d-118-3d-wrapper._3 {
    width: 100%;
    height: 200px;
  }

  .d-118-card-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .d-118-quote-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .d-118-quote-title {
    font-size: 16px;
  }

  .tabs {
    width: 100%;
  }

  .digital-right {
    min-width: auto;
  }

  .digi1-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-248 {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq-q-text-2 {
    font-size: 16px;
  }

  .team-modal__body-2 {
    height: auto;
  }

  .panel__title-2 {
    font-size: 25px;
  }

  .team-panel__header {
    height: auto;
    min-height: 200px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .team-modal__panel {
    height: auto;
  }

  .header-panel__info-2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .text-block-82 {
    padding-right: 56px;
  }

  .team-modal__wrap-2 {
    display: block;
  }

  .team-modal__wrap-2.michael-groth {
    display: none;
  }

  .team-panel__content {
    min-width: 100%;
    padding-top: 46px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .heading-kanzleihistorie {
    text-transform: none;
    font-size: 18px;
  }

  .wide-tabs-menu {
    flex-direction: column;
  }

  .div-block-39 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-2 {
    padding: 52px 0%;
  }

  .tabs-2 {
    padding-left: 0;
  }

  .grid-19 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: auto 1fr;
  }

  .image-90 {
    width: 25px;
    height: auto;
    max-height: 35px;
  }

  .paragraph-6 {
    font-size: 16px;
  }

  .image-91 {
    width: 25px;
    max-height: 26px;
  }

  .div-block-328 {
    height: auto;
  }

  .div-block-331 {
    height: 250px;
  }

  .heading-109 {
    font-size: 40px;
  }
}

#w-node-_0002e248-aca0-28f5-71d3-c9fad99784bf-7c61a648 {
  align-self: center;
}

#w-node-_40927d69-c92c-889a-1ca4-6be8228ecda3-7c61a648 {
  justify-self: center;
}

#w-node-_5b46d57c-475c-6f0f-8c19-6f6522e7663b-7c61a648, #w-node-_7388c553-abf4-9f0f-eb3b-bdb260de6b77-7c61a648, #w-node-_62982776-39e3-758b-58ee-77b70cfcfedc-7c61a648, #w-node-b9a36e23-c2f4-da6d-bba6-eaf9ac3ebec0-7c61a648, #w-node-b9a36e23-c2f4-da6d-bba6-eaf9ac3ebec6-7c61a648, #w-node-b9a36e23-c2f4-da6d-bba6-eaf9ac3ebecc-7c61a648, #w-node-_00dc455b-70d8-1654-48df-66c23116b063-7c61a648, #w-node-_00dc455b-70d8-1654-48df-66c23116b064-7c61a648, #w-node-_00dc455b-70d8-1654-48df-66c23116b06a-7c61a648, #w-node-b51a5cc6-e402-6564-2d8b-45bc90853767-7c61a648, #w-node-b51a5cc6-e402-6564-2d8b-45bc90853768-7c61a648, #w-node-b51a5cc6-e402-6564-2d8b-45bc9085376e-7c61a648, #w-node-_1a23ac98-742c-b4bc-20c9-91d9a18c1baa-7c61a648 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5fd21b67-a8b2-d53f-67eb-77759ee7f035-7c61a648 {
  align-self: center;
}

#w-node-e9556341-6d80-449b-d90c-93efbd396498-7c61a648, #w-node-e9556341-6d80-449b-d90c-93efbd3964ad-7c61a648, #w-node-_4d2869da-b799-8af3-405b-d90ed7293f0d-7c61a648 {
  align-self: start;
}

#w-node-a485b453-9eaf-9de8-2b89-8a1566ba929c-7c61a648, #w-node-_67ec47be-9237-840b-701c-c09621009ce9-7c61a648, #w-node-_3bf1d1e2-e276-9237-c784-51adb2e53904-7c61a648 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d8c6f43-fa61-888d-cb9a-2c7a03f5f43a-7c61a648 {
  justify-self: center;
}

#w-node-db974d56-c246-91c4-d8d5-d0315ffaf790-7c61a648, #w-node-bc6c0138-7420-7147-0da8-de69a9940dd9-7c61a648 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d75eb8eb-01ee-a431-f694-3222170a0b13-7c61a648, #w-node-_2f4b638d-625e-4f2c-8251-6ec1c452d768-7c61a648 {
    order: 9999;
  }

  #w-node-e9556341-6d80-449b-d90c-93efbd3964ad-7c61a648, #w-node-_4d2869da-b799-8af3-405b-d90ed7293f0d-7c61a648, #w-node-d6769cf5-5a9d-fbbf-0a50-7588d0129db7-7c61a648, #w-node-bf9031c5-44dd-9766-600a-047bf7dd05e3-7c61a648, #w-node-_8c5a2bfa-a4cb-c3c0-6edc-31c3a99ee92b-7c61a648, #w-node-_9229218e-2af3-9869-03f9-3b001e8dc0ae-7c61a648 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-bc6c0138-7420-7147-0da8-de69a9940dd9-7c61a648 {
    order: 9999;
  }
}


@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-bold.ttf') format('truetype'), url('../fonts/barlow-extrabold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-extralightitalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-mediumitalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-semibolditalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-blackitalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-lightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-extrabolditalic.ttf') format('truetype'), url('../fonts/barlow-bolditalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-extralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-thinitalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'wolrab';
  src: url('../fonts/barlow-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'eikooc';
  src: url('../fonts/cookie-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}