:root {
  --yellow-green: #9fc318;
  --flowui-component-library-gray-700: #282556;
  --flowui-component-library-gray-200: #f3f5fb;
  --flowui-component-library-grey-600: #393b6a;
  --flowui-component-library-gray-900: #160042;
  --flowui-component-library-primary-base: #642eff;
  --flowui-component-library-white: white;
  --spark-library-black: black;
  --spark-library-foreground-interactive: #5532fa;
  --spark-library-background--interactive: #f0ecfd;
  --spark-library-white: white;
  --spark-library-foreground-interactive-hover: #1e116e;
  --dark-slate-grey: #38404a;
  --flowui-component-library-gray-500: #6b7094;
  --flowui-component-library-grey-300: #e4e6f1;
}

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




#welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s 6s forwards; /* Ausblenden nach 6 Sekunden */
}

#welcome-gif {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* GIF strecken, um den gesamten Bildschirm auszufüllen */
  z-index: 1; /* Hintergrund-Ebene */
}

#welcome-image {
  position: relative;
  max-width: 70vw; /* Bild ist 50% der Bildschirmbreite */
  border-radius: 20px; /* Abgerundete Ecken */
  opacity: 0; /* Startet unsichtbar */
  animation: fadeInScale 2s 1s forwards; /* Startet nach 1 Sekunde */
  z-index: 2; /* Über dem GIF */
}

@keyframes fadeInScale {
  0% {
      opacity: 0;
      transform: scale(0.8); /* Startet kleiner */
  }
  100% {
      opacity: 1;
      transform: scale(1); /* Endet in normaler Größe */
  }
}

@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      visibility: hidden;
  }
}

#content {
  display: none; /* Inhalt zunächst verstecken */
}

body.loaded #content {
  display: block; /* Inhalt zeigen, wenn Overlay ausgeblendet ist */
}

body.loaded {
  overflow: auto; /* Scrollen wieder aktivieren */
}









.f-navigation-bub {
  background-color: var(--yellow-green);
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 48px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-family: Varelaround, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  box-shadow: 2px 2px 5px #000;
}

.f-navigation-bub:hover {
  background-color: var(--flowui-component-library-gray-700);
}

.f-navigation-bub.w--current {
  color: #fff;
}

.f-navigation-content {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.f-navigation-link {
  color: var(--flowui-component-library-gray-900);
  text-align: center;
  letter-spacing: -.01em;
  white-space: nowrap;
  background-color: #41ac3d;
  border-radius: 50px;
  padding: 8px 24px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  transition: all .35s;
}

.f-navigation-link:hover {
  background-color: var(--flowui-component-library-gray-200);
  color: var(--flowui-component-library-gray-900);
}

.f-navigation-link.w--current {
  color: var(--flowui-component-library-primary-base);
}

.f-navigation-menu {
  grid-column-gap: 6px;
  align-items: center;
  display: flex;
  position: static;
}

.f-logo {
  width: 124px;
}

.f-navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.f-navigation {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 15px 0%;
  display: flex;
}

.spark-line-3 {
  z-index: 2;
  background-color: var(--spark-library-black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.spark-line-3.spark-simple-line {
  background-color: var(--spark-library-foreground-interactive);
  border-radius: 3px;
  width: 12.75px;
  height: 3.3px;
  margin-left: 18px;
  top: 38px;
}

.spark-line-2 {
  z-index: 1;
  background-color: var(--spark-library-black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}

.spark-line-2.spark-simple-line {
  background-color: var(--spark-library-foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 28px;
}

.spark-line-1 {
  z-index: 2;
  background-color: var(--spark-library-black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
}

.spark-line-1.spark-simple-line {
  background-color: var(--spark-library-foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 18px;
}

.spark-simple-menu-button-right {
  background-color: rgba(0, 0, 0, 0);
  width: 60px;
  height: 60px;
  padding: 0 0 0 18px;
  overflow: hidden;
}

.spark-simple-menu-button-right.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.spark-nav-link {
  color: var(--spark-library-black);
  text-align: center;
  background-color: red;
  border-radius: 20px;
  margin-left: 8px;
  padding: 5px 24px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .15s, color .15s, opacity .15s;
}

.spark-nav-link:hover {
  background-color: var(--spark-library-background--interactive);
  opacity: 1;
  color: var(--spark-library-foreground-interactive);
}

.spark-nav-link.w--current {
  color: var(--spark-library-foreground-interactive);
}

.spark-nav-link.spark-button {
  background-color: var(--spark-library-foreground-interactive);
  color: var(--spark-library-white);
  text-align: center;
  border-style: none;
  border-radius: 999px;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1em;
  transition: background-color .15s, opacity .15s;
}

.spark-nav-link.spark-button:hover {
  background-color: var(--spark-library-foreground-interactive-hover);
  opacity: 1;
  color: var(--spark-library-white);
}

.spark-nav-link.spark-button.w--current {
  opacity: .5;
  color: var(--spark-library-white);
}

.spark-nav-link.spark-centered-full {
  text-align: center;
  border-radius: 999px;
  margin-bottom: 8px;
}

.spark-nav-link.spark-centered-full:hover {
  background-color: var(--spark-library-background--interactive);
  opacity: 1;
  color: var(--spark-library-foreground-interactive);
}

.spark-nav-link.spark-last {
  margin-bottom: 32px;
}

.spark-nav-link.spark-square-button {
  background-color: var(--spark-library-foreground-interactive);
  color: var(--spark-library-white);
  text-align: center;
  border-style: none;
  border-radius: 8px;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1em;
  transition: color .15s, background-color .15s, opacity .15s;
}

.spark-nav-link.spark-square-button:hover {
  background-color: var(--spark-library-foreground-interactive-hover);
  opacity: 1;
}

.spark-nav-link.spark-centered {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  margin-left: 4px;
  margin-right: 4px;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  transition-property: none;
}

.spark-nav-link.spark-with-dropdown {
  grid-column-gap: 16px;
  padding-right: 16px;
  display: flex;
}

.spark-button {
  border: 1px solid var(--spark-library-foreground-interactive);
  background-color: var(--spark-library-foreground-interactive);
  color: var(--spark-library-white);
  border-radius: 8px;
  flex: none;
  padding: 16px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: border-color .15s, background-color .15s, opacity .15s;
}

.spark-button:hover {
  border-color: var(--spark-library-foreground-interactive-hover);
  background-color: var(--spark-library-foreground-interactive-hover);
  opacity: 1;
}

.spark-simple-nav-menu {
  background-color: var(--spark-library-white);
  border-radius: 40px;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
}

.spark-simple-nav-menu.spark-simple-shadow-small-on-nav {
  z-index: 3;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 8px 0 20px rgba(0, 0, 0, .12);
}

.spark-centered-brand-logo {
  z-index: 2;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  position: absolute;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.spark-hamburger-menu-inner {
  justify-content: flex-end;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.spark-hamburger-menu-with-logo {
  z-index: 99;
  background-color: var(--spark-library-white);
  border-radius: 999px;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, .1);
}

.spark-simple-menu-button {
  background-color: var(--dark-slate-grey);
  width: 60px;
  height: 60px;
  padding: 0 0 0 18px;
  overflow: hidden;
}

.spark-simple-menu-button.w--open {
  background-color: var(--spark-library-background--interactive);
  border-radius: 8px;
}

.spark-dropdown-link {
  border-radius: 8px;
  width: 100%;
  margin-left: 0;
  padding: 8px 16px;
  transition: color .15s, background-color .15s;
}

.spark-dropdown-link:hover {
  background-color: var(--spark-library-background--interactive);
  opacity: 1;
  color: var(--spark-library-foreground-interactive);
}

.spark-dropdown-list.w--open {
  background-color: var(--spark-library-white);
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 8px;
  padding: 8px;
}

.spark-icon {
  width: 12px;
  display: inline-block;
}

.spark-centered-nav-menu {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
  position: relative;
}

.spark-left-side-brand-logo {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.square-menu-with-centered-links-inner {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.spark-square-menu-with-centered-links {
  background-color: var(--dark-slate-grey);
  width: 100%;
  padding-left: 64px;
  padding-right: 64px;
}

.container {
  background-color: #fff;
}

.body {
  color: #000;
  text-align: center;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: darken;
  object-fit: fill;
  background-color: rgba(152, 168, 92, .11);
  background-clip: content-box;
  font-family: Georgia font, sans-serif;
  display: block;
}

.div-block {
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .38)), url('../images/mbr-1920x1277.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  width: 100%;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0%;
  padding-right: 0%;
  position: relative;
}

.heading {
  color: #fff;
  margin-top: 0;
  padding-top: 84px;
  padding-left: 0;
  font-family: Varelaround, sans-serif;
  font-size: 55px;
  line-height: 70px;
}

.slider {
  z-index: auto;
  object-fit: fill;
  border-radius: 0;
  max-width: 700px;
  max-height: 600px;
  margin-top: 67px;
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
}

.button {
  background-color: var(--yellow-green);
  border: 1px #000;
  border-radius: 20px;
  margin: 70px auto 60px 0;
  font-family: Varelaround, sans-serif;
  font-size: 25px;
  line-height: 35px;
  display: inline-block;
  box-shadow: 4px 4px 12px #000;
}

.section {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.column {
  text-align: left;
  padding-top: 70px;
  padding-left: 97px;
}

.image {
  border-radius: 30px;
  margin-top: 67px;
  margin-left: 159px;
  padding-top: 0;
  padding-left: 0;
  box-shadow: 4px 4px 13px #000;
}

.image-2 {
  border-radius: 30px;
  box-shadow: 5px 5px 13px #000;
}

.slide {
  min-height: 500px;
}

.mask {
  height: 100%;
}

.image-3 {
  border-radius: 0;
}

.slider-2 {
  opacity: 1;
  background-color: rgba(221, 221, 221, 0);
  border-radius: 0;
  min-width: 600px;
  max-width: 700px;
  height: 400px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.slide-2 {
  background-image: url('../images/wiechert-optik-192-1635x919.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
}

.slide-3 {
  background-image: url('../images/wiechert-optik-96-1635x1090.jpeg');
  background-position: 50%;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/wiechert-optik-126-1635x1090.jpeg');
  background-position: 50%;
  background-size: cover;
}

.slide-5 {
  background-image: url('../images/oma-brille-viele-kleine-1635x981.jpeg');
  background-position: 50%;
  background-size: cover;
}

.mask-2 {
  border-radius: 30px;
  box-shadow: 4px 4px 13px #000;
}

.columns {
  text-align: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.f-image-cover {
  object-fit: cover;
  background-image: url('../images/wiechert-optik-92-2000x1334.jpeg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.f-gallery-image-s {
  background-image: linear-gradient(rgba(0, 0, 0, .41), rgba(0, 0, 0, .41)), url('../images/wiechert-optik-102-2000x1333.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 300px;
}

.f-gallery-lightbox {
  border-radius: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-gallery-three-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.f-h3-heading {
  color: var(--flowui-component-library-gray-900);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-heading-detail-small {
  color: var(--flowui-component-library-gray-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-margin-bottom-48 {
  margin-bottom: 48px;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-section-large {
  white-space: nowrap;
  padding: 92px 5%;
  position: relative;
}

.container-2 {
  background-image: url('../images/1500fassungen-120x120.png');
  background-position: 50%;
  background-size: auto;
  height: 100px;
}

.text-block {
  opacity: 1;
  outline-offset: 0px;
  text-align: center;
  outline: 3px #fff;
  padding-top: 79px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 30px;
  display: block;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.heading-2 {
  margin-top: 0;
}

.heading-3 {
  color: #fff;
  border-radius: 0;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 143px;
  padding-bottom: 0;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

.columns-2 {
  float: none;
  clear: left;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  background-color: rgba(240, 240, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  padding-top: 67px;
  padding-bottom: 87px;
  display: block;
  position: static;
}

.container-4 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  mix-blend-mode: lighten;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/wiechert-optik-92-2000x1334.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  height: 350px;
  max-height: 400px;
  display: flex;
  box-shadow: 4px 4px 13px #000;
}

.container-5 {
  background-image: url('../images/wiechert-optik-102-2000x1333.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 350px;
  overflow: visible;
}

.container-6 {
  background-image: url('../images/wiechert-optik-138-2000x1333.jpeg');
  background-position: 0 0;
  background-size: cover;
  height: 350px;
}

.button-2 {
  background-color: var(--dark-slate-grey);
  text-align: left;
  background-image: url('../images/1500fassungen-120x120.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-top: -350px;
  margin-left: 3px;
  margin-right: auto;
  display: block;
  box-shadow: 3px 3px 8px #000;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 184px 0 0;
  font-family: Varelaround, sans-serif;
  font-size: 30px;
  line-height: 40px;
  display: block;
}

.section-2 {
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.button-2-copy {
  background-color: var(--dark-slate-grey);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: url('../images/geld3-120x120.png');
  background-position: 0 0;
  background-size: cover;
  background-clip: border-box;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-top: -350px;
  margin-left: 3px;
  margin-right: auto;
  display: block;
  box-shadow: 3px 3px 8px #000;
}

.container-4-copy {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  mix-blend-mode: lighten;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/wiechert-optik-102-2000x1333.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  height: 350px;
  max-height: 400px;
  display: flex;
  box-shadow: 4px 4px 13px #000;
}

.section-2-copy {
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container-4-copy-copy {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  mix-blend-mode: lighten;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/wiechert-optik-138-2000x1333.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  height: 350px;
  max-height: 400px;
  display: flex;
  box-shadow: 4px 4px 13px #000;
}

.button-2-copy-copy {
  background-color: var(--dark-slate-grey);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: url('../images/passbild2-1-120x120.png');
  background-position: 50%;
  background-size: cover;
  background-clip: border-box;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-top: -350px;
  margin-left: 3px;
  margin-right: auto;
  display: block;
  box-shadow: 3px 3px 8px #000;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-7 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
  font-family: Inter, Georgia, sans-serif;
}

.centered-subheading-2 {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 13px #000;
}

.team-member-name {
  color: var(--yellow-green);
  margin-bottom: 6px;
  font-family: Varelaround, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
}

.columns-3 {
  justify-content: center;
  align-items: center;
  max-width: 1439px;
  margin: auto;
  display: block;
}

.container-9 {
  transform-style: preserve-3d;
}

.text-block-3 {
  margin: auto;
  padding-top: 14px;
  font-family: Georgia, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-4 {
  margin: auto;
  padding-top: 22px;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 20px;
}

.column-3 {
  margin-top: auto;
  margin-bottom: auto;
}

.container-9-copy {
  transform-style: preserve-3d;
}

.div-block-2 {
  background-color: var(--yellow-green);
  transform-style: preserve-3d;
  border-radius: 30px;
  max-width: 200px;
  max-height: 200px;
  margin: auto;
  transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
  box-shadow: 4px 4px 13px #000;
}

.image-6 {
  max-width: none;
  margin: auto;
  padding: 40px 0 0;
  display: block;
  transform: rotate(-40deg);
}

.div-block-2-copy {
  transform-style: preserve-3d;
}

.column-4 {
  margin-top: auto;
  margin-bottom: auto;
}

.div-block-2-copy-copy {
  transform-style: preserve-3d;
}

.image-6-copy {
  margin: auto;
  padding-top: 30px;
  transform: rotate(-40deg);
}

.image-6-copy-copy {
  max-width: none;
  margin: auto;
  padding-top: 3px;
  padding-bottom: 32px;
  transform: rotate(-40deg);
}

.image-7 {
  max-width: none;
  margin: auto;
  padding: 32px 0 21px;
  transform: rotate(-40deg);
}

.div-block-3 {
  max-width: 1440px;
  margin-top: 130px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-5 {
  margin: auto;
  padding-left: 25%;
  padding-right: 25%;
  font-family: Georgia, sans-serif;
  font-size: 20px;
}

.heading-4 {
  font-family: Georgia, sans-serif;
  font-size: 40px;
}

.heading-5 {
  margin-left: 0;
  margin-right: 16px;
  display: inline-block;
}

.heading-6 {
  margin-right: 16px;
  display: inline-block;
}

.heading-5-copy {
  margin-left: 0;
  margin-right: 16px;
  display: inline-block;
}

.div-block-4 {
  margin: auto;
}

.div-block-2-copy {
  background-color: var(--yellow-green);
  transform-style: preserve-3d;
  background-color: var(--yellow-green);
  border-radius: 30px;
  width: 200px;
  height: 200px;
  margin: auto;
  display: block;
  transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
  box-shadow: 4px 4px 13px #000;
}

.div-block-2-copy-copy, .div-block-2-copy-copy-copy {
  background-color: var(--yellow-green);
  transform-style: preserve-3d;
  background-color: var(--yellow-green);
  border-radius: 30px;
  max-width: 200px;
  max-height: 200px;
  margin: auto;
  display: block;
  transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
  box-shadow: 4px 4px 13px #000;
}

.div-block-5 {
  align-items: flex-start;
  max-width: 200px;
  max-height: 200px;
  margin-left: auto;
}

.image-8 {
  text-align: left;
  border-radius: 100%;
  display: block;
  box-shadow: 4px 4px 13px #000;
}

.heading-7 {
  color: var(--yellow-green);
  margin-top: 35px;
  margin-bottom: 0;
  padding-left: 30px;
  font-size: 30px;
  display: inline-block;
}

.text-block-6 {
  padding-left: 25%;
  padding-right: 25%;
  font-size: 20px;
  display: inline-block;
}

.image-9 {
  border-radius: 100%;
  box-shadow: 4px 4px 13px #000;
}

.div-block-5-copy {
  align-items: flex-start;
  max-width: 200px;
  max-height: 200px;
}

.heading-7-copy {
  color: var(--yellow-green);
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 30px;
  display: flex;
}

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

.column-5 {
  justify-content: center;
  align-items: center;
}

.text-block-6-copy {
  padding-right: 200px;
  font-size: 20px;
  display: flex;
}

.team-grid-copy {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-circles-2 {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-10 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
  font-family: Varelaround, sans-serif;
}

.centered-subheading-3 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  font-family: Georgia, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.team-grid-2 {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image-2 {
  object-fit: cover;
  border-radius: 5%;
  width: 400px;
  height: 250px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 13px #000;
}

.team-member-name-2 {
  margin-bottom: 6px;
  font-family: Varelaround, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}

.team-member-position-2 {
  margin-bottom: 24px;
  font-family: Varelaround, sans-serif;
  font-size: 18px;
}

.div-block-6 {
  background-color: var(--yellow-green);
  color: var(--yellow-green);
  object-fit: cover;
  transform-style: preserve-3d;
  border-radius: 30px;
  width: 200px;
  max-width: 100%;
  height: 200px;
  transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
  box-shadow: 4px 4px 13px #000;
}

.image-10 {
  padding-top: 44px;
  padding-bottom: 19px;
  transform: rotate(-40deg);
}

.image-11 {
  padding-top: 35px;
  padding-bottom: 30px;
  transform: rotate(-40deg);
}

.image-12 {
  padding-top: 22px;
  padding-bottom: 29px;
  transform: rotate(-40deg);
}

.image-13 {
  padding-top: 38px;
  padding-bottom: 37px;
  transform: rotate(-40deg);
}

.image-14 {
  padding-top: 40px;
  padding-bottom: 27px;
  transform: rotate(-40deg);
}

.image-15 {
  padding-top: 32px;
  padding-bottom: 25px;
  transform: rotate(-40deg);
}

.hero-heading-left {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  font-family: Varelaround, sans-serif;
  display: flex;
}

.margin-bottom-24px {
  text-align: left;
  margin-bottom: 24px;
  font-family: Georgia, sans-serif;
  font-size: 20px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

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

.shadow-two {
  box-shadow: 4px 4px 13px 0 var(--spark-library-black);
  border-radius: 20px;
}

.heading-8 {
  font-family: Varelaround, sans-serif;
  font-size: 30px;
}

.image-16 {
  margin-bottom: -117px;
  margin-right: -38px;
}

.team-member-name-3 {
  color: var(--yellow-green);
  margin-bottom: 29px;
  font-family: Varelaround, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}

.team-member-position-3 {
  opacity: .68;
  margin-bottom: 24px;
  font-family: Varelaround, sans-serif;
  font-weight: 400;
}

.container-10-copy {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-11 {
  background-color: #fff;
  max-width: 70%;
  margin-top: -67px;
  padding-top: 22px;
  padding-left: 0;
  box-shadow: 4px 4px 13px #000;
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-slider-wrapper-2 {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-2 {
  width: 30%;
  margin-right: 5%;
}

.team-block-2 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-2 {
  border-radius: 50%;
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-2 {
  display: none;
}

.team-slider-nav-2 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.centered-heading-4 {
  text-align: center;
  margin-bottom: 16px;
  font-family: Varelaround, sans-serif;
}

.centered-subheading-4 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.team-member-image-3 {
  object-fit: cover;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-top: 44px;
  margin-bottom: 24px;
}

.team-member-name-4 {
  margin-bottom: 6px;
  font-family: Varelaround, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.team-member-position-4 {
  margin: 35px 10% 24px;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
}

.team-circles-2-copy {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-card-2-copy {
  text-align: center;
  text-align: center;
  text-align: center;
  background-color: #fff;
  border-radius: 7px;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  box-shadow: 4px 4px 13px #000;
}

.logos-title-large {
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-12 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.clients-title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}

.clients-wrapper {
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients-image {
  max-width: none;
  height: 40%;
  margin-right: 5%;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  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: rgba(26, 27, 31, .75);
}

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

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

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.html-embed {
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 700px;
  display: inline-block;
}

.image-17 {
  width: 400px;
}

.section-4 {
  perspective: 1000px;
  background-color: #000;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding-left: 250px;
  padding-right: 250px;
  display: flex;
}

.container-13 {
  object-fit: fill;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 1110px;
  min-height: 300px;
  display: flex;
}

.div-block-7 {
  transform-origin: 50% 0;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px);
}

.div-block-8 {
  background-color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.div-block-9 {
  background-image: url('../images/602c3a1e8cf0d7107acfffed_5dd5868b6dcf3d2cc9ad8e0f_eye.svg');
  background-size: auto;
  border: 15px solid #000;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 150px;
  display: flex;
  position: absolute;
}

.image-18 {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  width: 700px;
  height: 700px;
  position: absolute;
}

.image-19 {
  margin-top: 162px;
  position: absolute;
}

.heading-12 {
  filter: blur(5px);
  color: #fff;
  margin-top: 49%;
  margin-left: 70%;
  font-family: Georgia, sans-serif;
  font-size: 40px;
  position: absolute;
}

.heading-11 {
  filter: blur(5px);
  color: #fff;
  margin-top: 48%;
  margin-left: -70%;
  font-family: Georgia, sans-serif;
  font-size: 40px;
  position: absolute;
}

.heading-10 {
  filter: blur(5px);
  color: #fff;
  margin-top: -48%;
  margin-left: 70%;
  font-family: Georgia, sans-serif;
  font-size: 40px;
  position: absolute;
}

.heading-9 {
  filter: blur(5px);
  color: #fff;
  margin-top: -48%;
  margin-left: -70%;
  font-family: Georgia, sans-serif;
  font-size: 40px;
  position: absolute;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-logo {
  display: block;
  overflow: hidden;
}

.logo_component-slider {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 2200px;
  display: flex;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding: 0;
}

.logo-slider-img {
  width: 200px;
}

.page-padding {
  padding: 5em 5%;
}

.page-padding.s0 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.logo-slide_section {
  justify-content: center;
  align-items: center;
  height: 20vh;
  display: flex;
}

.footer-dark-2 {
  background-color: var(--dark-slate-grey);
  border-bottom: 1px solid #e4ebf3;
  width: 100vw;
  padding: 30px 30px 24px;
  position: relative;
}

.container-14 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper-2 {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content-2 {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small-2 {
  color: var(--yellow-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Varelaround, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link-2 {
  color: var(--yellow-green);
  margin-top: 12px;
  margin-bottom: 6px;
  font-family: Inter, Georgia, sans-serif;
  font-size: 20px;
  line-height: 16px;
}

.footer-link-2:hover {
  color: rgba(26, 27, 31, .75);
}

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

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

.footer-divider-2 {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  margin-bottom: 15px;
}

.footer-copyright-center-2 {
  text-align: center;
  font-family: Inter, Georgia, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.grid-2 {
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  margin-top: 67px;
}

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

.section-5 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin-bottom: 92px;
  display: flex;
}

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

.text-block-7 {
  text-align: left;
  flex: 0 auto;
  align-self: center;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
  position: static;
}

.text-block-8 {
  text-align: left;
  margin-bottom: 22px;
  font-family: Georgia, sans-serif;
  font-size: 20px;
}

.text-block-9 {
  text-align: left;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.text-block-10 {
  text-align: left;
  font-family: Georgia, sans-serif;
  font-size: 20px;
}

.field-label, .field-label-2, .field-label-3 {
  font-family: Georgia font, sans-serif;
}

.div-block-10 {
  margin-top: 30px;
  display: flex;
}

.button-copy {
  background-color: var(--yellow-green);
  border: 1px #000;
  border-radius: 20px;
  margin: auto auto auto 0;
  font-family: Georgia font, sans-serif;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  box-shadow: 4px 4px 12px #000;
}

.text-field {
  height: 150px;
}

.div-block-11 {
  background-image: url('../images/Bildschirm­foto-2023-02-05-um-16.01.50.png');
  background-position: 0 0;
  background-size: cover;
  height: 300px;
}

.image-20 {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.image-21 {
  margin-right: 10px;
}

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

.image-22 {
  max-width: 100%;
}

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

.text-block-11 {
  text-align: left;
  font-family: Georgia, sans-serif;
}

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

.text-block-12 {
  text-align: left;
  font-family: Varelaround, sans-serif;
  font-size: 20px;
}

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

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

.image-23 {
  margin-right: 10px;
}

.div-block-13, .div-block-14, .div-block-15 {
  display: flex;
}

.image-24 {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.column-7, .column-8, .column-9 {
  padding-top: 2%;
  padding-bottom: 2%;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

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

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

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(26, 27, 31, .75);
}

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

.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 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, .75);
}

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

.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-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

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

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

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: rgba(26, 27, 31, .75);
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

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

.f-paragraph-small {
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-family: Inter, Georgia, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.f-accordian-content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
  padding-bottom: 4px;
}

.f-accordian-list {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.f-accordian-icon {
  color: var(--flowui-component-library-gray-500);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.f-accordian-title {
  letter-spacing: -.01em;
  font-family: Inter, Georgia, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-accordian-title-wrapper {
  white-space: normal;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.f-accordian-toggle {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
}

.f-accordian-dropdown {
  transition: all .3s;
  display: block;
}

.f-accordian-wrapper {
  grid-row-gap: 24px;
  border: 1px solid var(--flowui-component-library-grey-300);
  border-radius: 8px;
  flex-direction: column;
  max-width: 500px;
  padding: 24px;
  display: flex;
}

.section-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin-top: 67px;
  margin-bottom: 86px;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
}

.grid-7 {
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
}

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

.text-block-13 {
  font-family: Inter, Georgia, sans-serif;
  font-size: 20px;
  display: inline;
}

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

.heading-13 {
  font-family: Inter, Georgia, sans-serif;
  display: block;
}

.f-accordian-wrapper-copy {
  grid-row-gap: 24px;
  border: 1px solid var(--flowui-component-library-grey-300);
  border-radius: 8px;
  flex-direction: column;
  max-width: 900px;
  margin-top: 19px;
  padding: 24px;
  display: flex;
}

.heading-14 {
  text-align: center;
  font-family: Inter, Georgia, sans-serif;
  display: block;
}

.paragraph.cookie-banner-paragraph---brix {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.button-primary-3 {
  color: #fff;
  text-align: center;
  background-color: #4a3aff;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 21px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  display: flex;
  box-shadow: 0 3px 12px rgba(74, 58, 255, .12);
}

.button-primary-3:hover {
  background-color: #3527d8;
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px rgba(74, 58, 255, .15);
}

.button-primary-3.cookie-banner-button---brix {
  background-color: var(--yellow-green);
  flex-wrap: nowrap;
  max-width: 200px;
  padding: 12px 20px;
  font-size: 12px;
  line-height: 15px;
  display: flex;
}

.close-message---brix {
  color: #170f49;
  cursor: pointer;
  transform-style: preserve-3d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: all .35s;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: auto;
  right: 20px;
}

.close-message---brix:hover {
  color: #4a3aff;
  transform: scale3d(.9, .9, .01);
}

.button-cookie-icon---brix {
  margin-right: 8px;
}

.cookie-banner-wrapper---brix {
  z-index: 10;
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  position: fixed;
  top: auto;
  bottom: 32px;
  left: 32px;
  right: auto;
}

.cookie-banner-wrapper---brix.cookie-banner-1---brix {
  background-color: #fff;
  border-radius: 20px;
  max-width: 400px;
  padding: 34px 32px 34px 40px;
  top: auto;
  bottom: 32px;
  left: 32px;
  right: auto;
  box-shadow: 0 6px 23px rgba(20, 20, 43, .08);
}

.cookie-banner-wrapper---brix.cookie-banner-1---brix.preview-page {
  position: fixed;
  top: auto;
  bottom: 40px;
  left: auto;
  right: 40px;
}

.heading-15 {
  font-family: Varelaround, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.text-block-14 {
  font-family: Varelaround, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.bold-text {
  font-family: Varelaround, sans-serif;
}

.bold-text-2 {
  color: #000;
  font-family: Varelaround, sans-serif;
  font-weight: 400;
}

.bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7 {
  font-family: Varelaround, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1440px) {
  .spark-left-side-brand-logo {
    margin-left: 13px;
    margin-right: auto;
  }

  .square-menu-with-centered-links-inner {
    max-width: none;
  }

  .spark-square-menu-with-centered-links {
    padding-left: 0;
    padding-right: 0;
  }

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

  .div-block {
    height: 80vh;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .grid {
    grid-template-areas: "Area";
  }

  .columns-3 {
    float: none;
    clear: none;
    max-width: 1439px;
    margin: 86px auto auto;
    display: block;
    position: static;
  }

  .container-8 {
    background-color: var(--yellow-green);
    padding-left: 0;
  }

  .column-2 {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 0%;
    padding-right: 0%;
    font-weight: 400;
  }

  .container-9 {
    background-color: var(--yellow-green);
    perspective: none;
    border-radius: 30px;
    height: 200px;
    padding-left: 0;
    padding-right: 0;
    transform: rotateX(43deg)rotateY(0)rotateZ(60deg);
    box-shadow: 4px 4px 13px #000;
  }

  .image-4 {
    margin-bottom: -181px;
    margin-left: 10px;
    transform: rotate(-60deg);
  }

  .text-block-3 {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    padding-top: 30px;
    font-family: Georgia, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 30px;
    display: block;
  }

  .text-block-4 {
    text-align: center;
    margin: auto;
    padding-top: 24px;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Georgia, sans-serif;
    font-size: 20px;
  }

  .column-3 {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 0%;
    padding-right: 0%;
  }

  .container-9-copy {
    background-color: var(--yellow-green);
    perspective: none;
    border-radius: 30px;
    height: 200px;
    padding-right: 0;
    transform: rotateX(43deg)rotateY(0)rotateZ(60deg);
    box-shadow: 4px 4px 13px #000;
  }

  .section-3 {
    margin-left: 30%;
    margin-right: 30%;
  }

  .text-block-3-copy {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    font-family: Georgia, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    display: flex;
  }

  .section-3-copy {
    margin-left: 30%;
    margin-right: 30%;
  }

  .text-block-4-copy {
    text-align: center;
    margin-top: 19px;
    margin-left: 10%;
    margin-right: 10%;
    font-family: Georgia, sans-serif;
    font-size: 20px;
  }

  .image-5 {
    margin-bottom: -210px;
    margin-left: -19px;
    transform: rotate(-60deg);
  }

  .button-3 {
    width: 200px;
    height: 100px;
  }

  .div-block-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--yellow-green);
    opacity: 1;
    color: var(--yellow-green);
    border-radius: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    margin: auto;
    display: block;
    position: static;
    transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
    box-shadow: 4px 4px 13px #000;
  }

  .image-6 {
    margin: auto;
    padding-top: 30px;
    padding-left: 0;
    transform: rotate(-40deg);
  }

  .div-block-2-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--yellow-green);
    color: var(--yellow-green);
    border-radius: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: static;
    transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
    box-shadow: 4px 4px 13px #000;
  }

  .image-6-copy {
    margin: auto auto auto -16px;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 6px;
    transform: rotate(-40deg);
  }

  .column-4 {
    clear: none;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: auto;
    position: static;
    right: -200px;
  }

  .div-block-2-copy-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--yellow-green);
    color: var(--yellow-green);
    border-radius: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: static;
    transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
    box-shadow: 4px 4px 13px #000;
  }

  .text-block-3-copy-copy {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    font-family: Georgia, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    display: flex;
  }

  .text-block-4-copy-copy {
    text-align: center;
    margin-top: 19px;
    margin-left: 10%;
    margin-right: 10%;
    font-family: Georgia, sans-serif;
    font-size: 20px;
  }

  .image-6-copy-copy {
    margin: auto auto auto -16px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    transform: rotate(-40deg);
  }

  .image-6-copy {
    margin: auto;
    padding-top: 30px;
    padding-left: 0;
    transform: rotate(-40deg);
  }

  .image-6-copy-copy {
    margin: auto;
    padding: 0 0 27px;
    transform: rotate(-40deg);
  }

  .image-7 {
    margin: auto;
    padding: 29px 0 33px;
    display: block;
  }

  .div-block-4 {
    max-width: none;
  }

  .div-block-2-copy, .div-block-2-copy-copy, .div-block-2-copy-copy-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--yellow-green);
    opacity: 1;
    color: var(--yellow-green);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--yellow-green);
    opacity: 1;
    border-radius: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    margin: auto;
    display: block;
    position: static;
    transform: rotateX(46deg)rotateY(0)rotateZ(40deg);
    box-shadow: 4px 4px 13px #000;
  }

  .team-member-image-2 {
    width: 400px;
    height: 250px;
    max-height: none;
  }

  .container-10-copy {
    max-width: 1200px;
  }

  .team-member-image-3 {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .footer-dark-2 {
    width: 100vw;
    position: static;
  }

  .section-5 {
    flex-direction: column;
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  .f-navigation-menu-button {
    border: 1px solid var(--flowui-component-library-gray-200);
    color: var(--flowui-component-library-grey-600);
    border-radius: 8px;
    padding: 10px;
  }

  .f-navigation-menu-button.w--open {
    background-color: var(--flowui-component-library-gray-900);
    border-color: #fff;
  }

  .f-navigation-content {
    align-items: center;
    width: auto;
    display: flex;
  }

  .f-navigation-link {
    width: 100%;
  }

  .f-navigation-menu {
    background-color: var(--flowui-component-library-white);
    color: var(--flowui-component-library-grey-600);
    padding: 12px;
    position: absolute;
  }

  .f-navigation-menu.w--open {
    background-color: var(--flowui-component-library-gray-700);
    border-color: #fff;
  }

  .f-navigation-logo-link {
    margin-right: 0;
  }

  .f-navigation {
    position: relative;
  }

  .spark-line-3.spark-simple-line {
    background-color: var(--yellow-green);
    border-radius: 3px;
    width: 12.75px;
    height: 3.33px;
    margin-left: 0;
    left: 18px;
  }

  .spark-line-2.spark-simple-line {
    background-color: var(--yellow-green);
    border-radius: 3px;
    width: 24px;
    height: 3.33px;
  }

  .spark-line-1.spark-simple-line {
    background-color: var(--yellow-green);
    border-radius: 2px;
    width: 24px;
    height: 3.33px;
  }

  .spark-simple-menu-button-right {
    background-color: rgba(0, 0, 0, 0);
    padding-left: 18px;
  }

  .spark-simple-menu-button-right.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .spark-nav-link {
    text-align: left;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .spark-nav-link.spark-button, .spark-nav-link.spark-square-button {
    text-align: center;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .spark-nav-link.spark-with-dropdown {
    margin-bottom: 0;
  }

  .spark-simple-nav-menu {
    z-index: 99;
    background-color: var(--spark-library-white);
    border-radius: 45px;
    margin-top: 1rem;
    padding: 2rem 1rem 1rem;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, .1);
  }

  .spark-hamburger-menu-inner {
    padding: 0;
  }

  .spark-hamburger-menu-with-logo {
    padding-left: 32px;
    padding-right: 32px;
  }

  .spark-simple-menu-button {
    background-color: var(--dark-slate-grey);
    padding-left: 18px;
  }

  .spark-simple-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .spark-dropdown-list.w--open {
    position: relative;
  }

  .spark-centered-nav-menu {
    z-index: 99;
    background-color: var(--dark-slate-grey);
    border-radius: 45px;
    margin-top: 1rem;
    padding: 2rem 1rem 1rem;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, .1);
  }

  .spark-left-side-brand-logo {
    margin-right: auto;
  }

  .square-menu-with-centered-links-inner {
    justify-content: flex-end;
    padding: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .heading {
    margin-right: -200px;
  }

  .section {
    padding-left: 33px;
  }

  .column {
    display: none;
  }

  .f-gallery-three-column {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

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

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

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

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .column-2 {
    margin-bottom: 76px;
  }

  .column-3 {
    margin-bottom: 79px;
  }

  .team-grid-copy {
    grid-column-gap: 40px;
  }

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

  .team-grid-2 {
    grid-column-gap: 40px;
  }

  .team-member-image-2 {
    width: 190px;
    height: 190px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-10-copy {
    max-width: 728px;
  }

  .team-slide-wrapper-2 {
    width: 47%;
    margin-right: 6%;
  }

  .team-member-image-3 {
    width: 190px;
    height: 190px;
  }

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

  .clients-title {
    margin-bottom: 32px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .section-logo {
    overflow: hidden;
  }

  .logo_component-slider {
    grid-column-gap: 3rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-slider-img {
    width: 174px;
  }

  .page-padding.s0 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

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

  .footer-content-2 {
    grid-column-gap: 60px;
  }

  .column-6 {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: rgba(0, 0, 0, 0);
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

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

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

  .menu-button {
    padding: 12px;
  }

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

  .f-accordian-list {
    width: 100%;
  }

  .cookie-banner-wrapper---brix {
    bottom: 24px;
    left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .spark-nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spark-nav-link.spark-square-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .spark-simple-nav-menu.spark-simple-shadow-small-on-nav {
    width: 100%;
  }

  .spark-hamburger-menu-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .spark-hamburger-menu-with-logo {
    width: 98%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .square-menu-with-centered-links-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading {
    margin-right: 29px;
  }

  .section {
    padding-left: 0;
    margin-top: 70px;
  }

  .slider-2 {
    min-width: 300px;
    height: 350px;
  }

  .f-gallery-image-s {
    height: 180px;
  }

  .f-gallery-three-column {
    grid-template-columns: 1fr;
  }

  .f-h3-heading {
    font-size: 40px;
  }

  .f-section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .team-slider, .team-circles {
    padding: 60px 15px;
  }

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

  .team-circles-2 {
    padding: 60px 15px;
  }

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

  .hero-heading-left, .team-slider-2, .team-circles-2-copy, .logos-title-large {
    padding: 60px 15px;
  }

  .clients-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: -20px;
  }

  .clients-image {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: rgba(26, 27, 31, .75);
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

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

  .footer-divider {
    margin-top: 60px;
  }

  .logo_component-slider {
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-slider-img {
    width: 125px;
  }

  .footer-dark-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-content-2 {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block-2 {
    align-items: center;
  }

  .footer-link-2:hover {
    color: rgba(26, 27, 31, .75);
  }

  .footer-social-block-2 {
    margin-top: 20px;
    margin-left: -20px;
  }

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

  .footer-divider-2 {
    margin-top: 60px;
  }

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

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

  .nav-menu-block {
    flex-direction: column;
  }

  .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 rgba(0, 0, 0, .05);
  }

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

  .button-primary-3 {
    padding: 16px 34px;
    font-size: 16px;
    line-height: 18px;
  }

  .cookie-banner-wrapper---brix {
    border-radius: 18px;
  }

  .cookie-banner-wrapper---brix.cookie-banner-1---brix {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
}

@media screen and (max-width: 479px) {
  .f-navigation-bub {
    flex-direction: row;
    display: flex;
  }

  .spark-nav-link {
    margin-bottom: .5rem;
  }

  .spark-nav-link.spark-square-button {
    margin-left: .5rem;
    margin-right: .5rem;
    font-size: .75rem;
  }

  .spark-nav-link.spark-square-button.spark-small-on-mobile {
    padding: 8px;
  }

  .spark-simple-nav-menu {
    border-radius: 20px;
    padding: 1rem .5rem 0;
  }

  .spark-simple-nav-menu.spark-simple-shadow-small-on-nav {
    padding-bottom: 1rem;
  }

  .spark-hamburger-menu-inner {
    padding: 0;
  }

  .spark-hamburger-menu-with-logo {
    padding-left: 0;
    padding-right: 0;
  }

  .spark-simple-menu-button {
    padding-left: 0;
  }

  .spark-centered-nav-menu {
    border-radius: 20px;
    padding: 1rem .5rem 0;
  }

  .square-menu-with-centered-links-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-right: 0;
  }

  .div-block {
    height: 85vh;
  }

  .heading {
    width: auto;
    max-width: 350px;
    max-height: 200px;
    padding-top: 37px;
    font-size: 40px;
  }

  .section {
    padding-left: 0;
  }

  .slider-2 {
    min-width: 100px;
    height: 200px;
  }

  .container-3 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .container-7 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

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

  .container-10 {
    max-width: none;
  }

  .centered-heading-3 {
    margin-bottom: 24px;
  }

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

  .container-10-copy {
    max-width: none;
  }

  .team-slide-wrapper-2 {
    width: 100%;
    margin-right: 0%;
  }

  .centered-heading-4 {
    margin-bottom: 24px;
  }

  .container-12 {
    max-width: none;
  }

  .clients-image {
    margin-left: 10px;
    margin-right: 10px;
  }

  .logo_component-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    overflow: hidden;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xxlarge {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .logo-slider-img {
    width: 100px;
  }

  .page-padding.s0 {
    margin-bottom: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .container-14 {
    max-width: none;
  }

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

  .nav-menu-three {
    flex-direction: column;
  }

  .button-primary-3 {
    padding: 15px 34px 16px;
  }

  .cookie-banner-wrapper---brix, .cookie-banner-wrapper---brix.cookie-banner-1---brix {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}

#w-node-_598a13b7-c49a-960d-62cd-824223ced5e8-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced5f3-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced5fd-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced607-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced611-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced61b-d67f774e, #w-node-_844ea7b2-2e27-07fb-1b62-ba61b8857369-d67f774e, #w-node-_844ea7b2-2e27-07fb-1b62-ba61b8857374-d67f774e, #w-node-_9f9c73f2-64e7-dc00-2de2-f4fccc18f217-d67f774e, #w-node-_844ea7b2-2e27-07fb-1b62-ba61b885737e-d67f774e, #w-node-e981aee4-11dc-e8bb-a7bc-82425cd39e47-d67f774e, #w-node-c887bc05-6990-4385-d050-ccd78ac1bbe0-d67f774e, #w-node-cb604cec-bade-4045-a240-97f149f6a0bb-d67f774e, #w-node-_87ab5eab-059c-8b66-3081-f3db6721179e-d67f774e, #w-node-_686f93f9-6d49-a018-ec33-e7f1254361d3-d67f774e, #w-node-_8884aa91-b0a3-f3ad-a737-20ac59eb6727-d67f774e, #w-node-a4e3be43-0947-6b47-05fe-68606376a3f4-d67f774e, #w-node-_4436d499-e0ed-f4e8-c045-eb0e7ac3a255-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff35787d-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff357888-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff357892-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff35789c-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff3578a6-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff3578b0-d67f774e, #w-node-_7d10dfec-c191-093b-4b98-74cab909f350-d67f774e, #w-node-_7d10dfec-c191-093b-4b98-74cab909f35b-d67f774e, #w-node-_7d10dfec-c191-093b-4b98-74cab909f365-d67f774e, #w-node-a7d99036-4ba9-616e-4dca-c1743a049daa-d67f774e, #w-node-_5ebfe9fa-081b-43ad-b708-b07f3f3a79b2-d67f774e, #w-node-d113ab7f-655c-da42-0d3d-5b9bfd2eed80-d67f774e, #w-node-_665d6dec-a1dc-4d5b-cb44-6a8c3b949d86-d67f774e, #w-node-edd00b91-0509-b8fb-89f4-1c7eca01c8a6-d67f774e, #w-node-a39580af-dbfc-fcd8-117d-6d41745bbb95-d67f774e, #w-node-_341b0c02-6ca8-fb4c-dd3d-17e4f82535a7-d67f774e, #w-node-_2fda0770-dda6-78a4-99e6-53e291b37083-d67f774e, #w-node-_2fda0770-dda6-78a4-99e6-53e291b3708e-d67f774e, #w-node-_9121020d-0297-0663-7cea-3fb888b58fdf-6b4a85ed, #w-node-_9121020d-0297-0663-7cea-3fb888b58fe4-6b4a85ed, #w-node-_28736d07-9735-25e6-53e9-c9080f3b6d56-1e357df9, #w-node-_45022760-b833-58a5-1604-dd626e5bfdb5-1e357df9, #w-node-_295ea781-8abb-988d-2a1c-3083a6cab2bc-1e357df9, #w-node-_295ea781-8abb-988d-2a1c-3083a6cab2c1-1e357df9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_598a13b7-c49a-960d-62cd-824223ced5f3-d67f774e, #w-node-_598a13b7-c49a-960d-62cd-824223ced5fd-d67f774e, #w-node-_844ea7b2-2e27-07fb-1b62-ba61b8857374-d67f774e, #w-node-_844ea7b2-2e27-07fb-1b62-ba61b885737e-d67f774e, #w-node-c887bc05-6990-4385-d050-ccd78ac1bbe0-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff357888-d67f774e, #w-node-_963c4446-b53e-60eb-61cb-cedcff357892-d67f774e, #w-node-_7d10dfec-c191-093b-4b98-74cab909f35b-d67f774e, #w-node-_7d10dfec-c191-093b-4b98-74cab909f365-d67f774e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia4';
  src: url('../fonts/GEORGIA4.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/georgia-bold-italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/georgia-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/georgia-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia font';
  src: url('../fonts/Georgia-Regular-font.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia font';
  src: url('../fonts/Georgia-Bold-Italic-font.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/Georgia.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgiab';
  src: url('../fonts/georgiab.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgiai';
  src: url('../fonts/georgiai.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgiaz';
  src: url('../fonts/georgiaz.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Varelaround';
  src: url('../fonts/VarelaRound-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}