@font-face {
  font-family: Caladea;
  src: url('../fonts/Caladea-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: Inconso;
  src: url('../fonts/Inconsolata-Bold.ttf') format("truetype"), url('../fonts/Inconsolata-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: Lat;
  src: url('../fonts/Lato-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

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

@font-face {
  font-family: Lat;
  src: url('../fonts/Lato-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

:root {
  --dunkelgrau: #313131;
  --rot: #da0000;
  --grey-4: #e3e3e3;
  --grey-1: #666;
  --haze: whitesmoke;
  --grey-2: #999;
  --white: white;
  --grey-9: #575757;
  --dark: #452c48;
  --red: #ee3e54;
  --green: #88ae45;
  --grey-3: #d1d1d1;
  --ac1: #0ea800;
  --primary-3: #853f71;
  --primary-2: #20b49b;
  --primary-4: #665ba2;
  --twitter: #2aa3f0;
  --facebook: #3b5998;
  --instagram: #f83f5a;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--dunkelgrau);
  font-family: Lat, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Caladea, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Caladea, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Caladea, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Caladea, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Caladea, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Caladea, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--rot);
  text-decoration: none;
}

ul, ol {
  margin-top: 16px;
  margin-bottom: 24px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--dunkelgrau);
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

blockquote {
  border-left: 3px solid var(--rot);
  margin-bottom: 24px;
  padding: 16px 32px;
  font-size: 20px;
  line-height: 28px;
}

figure {
  margin-bottom: 24px;
}

figcaption {
  border-bottom: 1px solid var(--grey-4);
  color: var(--grey-1);
  text-align: left;
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  font-size: 13px;
  line-height: 20px;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section.haze {
  background-color: var(--haze);
  margin-top: 0;
  padding-top: 140px;
  display: block;
}

.section.top-image-section {
  background-color: var(--grey-2);
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.section.mask {
  overflow: hidden;
}

.section.hero-v1-section {
  z-index: 3;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 104px;
  display: flex;
}

.section.mask {
  color: #fff;
  background-color: #000;
  overflow: hidden;
}

.section.anchor-padding-top {
  background-color: #0000;
  padding-top: 100px;
  padding-bottom: 0;
  display: block;
}

.wrapper {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.wrapper.nav-bar-wrapper {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1100px;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.button {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--grey-1);
}

.text-small {
  font-size: 13px;
  line-height: 20px;
}

.text-small.text-grey {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.nav-bar {
  z-index: 100;
  background-color: var(--dunkelgrau);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  justify-content: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 40px #0000001c;
}

.nav-link {
  color: var(--white);
  text-transform: uppercase;
  border-radius: 7px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transition: background-color .4s;
}

.nav-link:hover {
  background-color: var(--rot);
}

.nav-link.w--current {
  background-color: var(--rot);
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 14px;
}

.nav-link.nav-dropdown {
  padding-right: 26px;
}

.nav-link.x11 {
  display: none;
}

.utility-page-wrapper {
  background-color: var(--dunkelgrau);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.utility-page-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 570px;
  display: flex;
  position: relative;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 8px;
  display: flex;
}

.haze {
  background-color: var(--haze);
}

.text-grey {
  color: var(--grey-9);
  margin-bottom: 20px;
}

.intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.intro.margin-bottom {
  margin-bottom: 40px;
}

.text-label {
  color: var(--grey-1);
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.brand.w--current {
  padding-left: 0;
}

.change-icon {
  background-color: var(--dark);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.nav-menu {
  grid-column-gap: 10px;
  flex: none;
  align-items: center;
  margin-right: 0;
  padding-right: 0;
  display: flex;
}

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

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

.page-wrapper {
  width: 100%;
  position: relative;
}

.page-wrapper.thx {
  flex-flow: column;
  justify-content: space-between;
  min-height: 90vh;
  display: flex;
}

.navigation {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
  display: flex;
}

.text-big {
  font-size: 17px;
  line-height: 28px;
}

.bg-elements {
  z-index: 0;
  opacity: .05;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  height: 100%;
  min-height: 640px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.pricing-v1-feature {
  color: var(--grey-1);
  cursor: help;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
}

.pricing-v1-feature:hover {
  background-color: var(--haze);
  color: var(--dark);
}

.info {
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  padding: 4px;
  transition: border .3s;
  display: flex;
  position: relative;
}

.info:hover {
  border-color: red;
}

.form-error {
  color: var(--red);
  text-align: center;
  background-color: #ee3e541f;
  border: 1px solid #ee3e5480;
  border-radius: 7px;
  margin-top: 16px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 20px;
}

.input {
  background-color: var(--haze);
  border: 1px solid #0000;
  border-radius: 7px;
  height: 48px;
  margin-bottom: 0;
  padding: 7px 20px 8px;
  transition: box-shadow .4s, opacity .2s, color .4s, background-color .4s, border-color .4s;
}

.input:hover, .input:focus {
  border-color: var(--rot);
  background-color: var(--white);
}

.input::placeholder {
  color: var(--grey-2);
}

.input.text-area {
  height: auto;
  min-height: 200px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.input.password-input {
  text-align: center;
  margin-bottom: 16px;
}

.input.white {
  background-color: var(--white);
}

.form-success {
  color: var(--green);
  background-color: #88ae451f;
  border: 1px solid #88ae4580;
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 20px;
}

.link {
  box-shadow: inset 0 -2px 0 0 var(--grey-4);
  color: var(--dunkelgrau);
  text-align: left;
  align-items: center;
  margin-top: -8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.post-card-v3 {
  background-color: var(--white);
  color: var(--dunkelgrau);
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, box-shadow .4s, transform .4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 4px #0000001c;
}

.post-card-v3:hover {
  background-color: var(--white);
  box-shadow: 0 0 0 1px var(--grey-4);
  border-color: #eaeaea00;
  transform: translate(0, 3px);
}

.post-card-v3.home:hover {
  transform: none;
}

.post-card-v3.home.af {
  box-shadow: none;
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 0;
  transition-property: none;
  overflow: visible;
}

.post-card-v3-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 10px 16px 0;
  display: flex;
}

.nav-dropdown-icon {
  color: var(--dunkelgrau);
  margin-right: 10px;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-left: -4px;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
  box-shadow: 0 6px 24px #30364d38;
}

.dropdown-list.components-list.w--open {
  width: 420px;
  margin-left: -48px;
  padding: 12px;
  display: flex;
}

.dropdown-list.big-list {
  margin-left: -80px;
}

.nav-dropdown-link {
  color: var(--dunkelgrau);
  padding: 12px 20px;
  font-size: 14px;
  line-height: 20px;
  transition: color .1s, background-color .1s;
}

.nav-dropdown-link:hover {
  background-color: var(--haze);
}

.nav-dropdown-link.w--current {
  color: var(--dunkelgrau);
  font-weight: 700;
}

.nav-dropdown-link.dropdown-grid-link {
  border-radius: 7px;
  margin-left: 12px;
  margin-right: 12px;
  padding-left: 16px;
  padding-right: 16px;
}

.dropdown-corner {
  z-index: 1;
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  top: -4px;
  left: 33px;
  transform: rotate(45deg);
}

.dropdown-corner.padding {
  left: 89px;
}

.dropdown-bridge {
  z-index: 1;
  height: 8px;
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
}

.review-v7 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.mini-blocks {
  border: 1px solid var(--grey-4);
  background-color: var(--rot);
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mini-block {
  box-shadow: 1px 0 0 0 var(--grey-4);
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  display: flex;
}

.review-v9 {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: relative;
}

.video-link {
  border: 1px solid var(--grey-3);
  color: var(--dark);
  border-radius: 17px;
  align-items: center;
  height: 34px;
  margin-top: 24px;
  padding-left: 4px;
  padding-right: 13px;
  text-decoration: none;
  display: flex;
}

.footer-bottom {
  color: #ffffff80;
  border-top: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.feature-icon-left {
  text-align: left;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.menu-button {
  display: none;
}

.layout-box {
  flex-direction: column;
  align-items: center;
  padding: 40px 8%;
  display: flex;
}

.faq-question {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 8px;
  display: flex;
}

.password-card {
  z-index: 1;
  color: var(--dunkelgrau);
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 370px;
  margin-top: 40px;
  padding: 56px;
  display: flex;
  position: relative;
  box-shadow: 0 15px 40px #2c33401c;
}

.faq-top-link {
  color: var(--grey-3);
  font-size: 12px;
  text-decoration: underline;
  display: inline-block;
}

.faq-top-link:hover {
  color: var(--dark);
  text-decoration: underline;
}

.nav-dropdown {
  display: none;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.nav-dropdown-link-v2 {
  color: var(--dunkelgrau);
  background-color: #0000;
  border-radius: 7px;
  align-items: center;
  width: 50%;
  padding: 8px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.nav-dropdown-link-v2:hover {
  background-color: var(--haze);
}

.nav-dropdown-link-v2.w--current {
  font-weight: 700;
}

.nav-dropdown-box {
  border: 1px solid var(--grey-4);
  background-color: var(--haze);
  color: var(--dark);
  background-image: url('../images/cube.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
}

.nav-dropdown-link-info {
  flex: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
}

.menu-icon-line-top, .menu-icon-line-bottom {
  background-color: var(--dunkelgrau);
  height: 2px;
}

.menu-icon {
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.menu-icon-line-middle {
  background-color: var(--dunkelgrau);
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.review-v1 {
  background-color: var(--white);
  color: var(--dunkelgrau);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  padding-top: 32px;
  display: flex;
  box-shadow: 0 15px 40px #0000001c;
}

.main-grid {
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 400px 650px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
  position: relative;
}

.dots {
  opacity: .12;
  background-image: url('../images/circle-pattern-white.svg');
  background-position: 0 0;
  background-size: 12px;
  width: 297px;
  height: 118px;
  position: absolute;
  inset: 25% auto auto 3%;
}

.circle-small {
  opacity: .08;
  width: 8vw;
  position: absolute;
  inset: 12% 7% auto auto;
}

.post-card-v3-heading {
  text-transform: capitalize;
  flex: 1;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}

.sidebar-author-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.card-button {
  background-color: var(--white);
  box-shadow: inset 0 1px 0 0 var(--grey-4);
  color: var(--dunkelgrau);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-bottom: 1px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: color .4s;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.card-button:hover {
  color: var(--white);
}

.accordion-header {
  color: #222;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.accordion-item {
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  text-align: left;
  margin-bottom: -1px;
  transition: box-shadow .4s, background-color .4s;
  display: block;
  overflow: hidden;
}

.accordion-text {
  color: var(--grey-1);
  padding-bottom: 32px;
}

.accordion-heading {
  flex: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 16px;
  font-family: Caladea, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.accordion-plus {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: flex;
  position: absolute;
  right: 0;
}

.question-simple {
  border-bottom: 1px solid var(--grey-4);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: -1px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 4%;
  display: flex;
}

.gallery-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.tab-link {
  color: var(--grey-1);
  text-align: center;
  background-color: #0000;
  border-bottom: 2px solid #0000;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
}

.tab-link.w--current {
  border-bottom-color: var(--rot);
  color: var(--grey-1);
  background-color: #0000;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 400;
}

.tabs-horisontal {
  box-shadow: inset 0 -1px 0 0 var(--grey-4);
  justify-content: center;
  align-items: stretch;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.feature-card {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  flex: 270px;
  align-items: center;
  padding: 20px 20px 32px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 24px #0000001a;
}

.feature-card.xx {
  flex-flow: row;
  padding-bottom: 20px;
}

.top-bar-close {
  cursor: pointer;
  background-color: #0003;
  background-image: url('../images/x-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 40px;
  height: 100%;
  transition: background-color .4s;
  position: absolute;
  right: 0;
}

.top-bar-close:hover {
  background-color: var(--rot);
}

.home-button {
  background-color: var(--grey-4);
  background-image: url('../images/home-color.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 16px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 78px;
  height: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dropdown-header {
  border-top: 1px solid var(--grey-4);
  margin-top: 8px;
  margin-left: -12px;
  margin-right: -12px;
  padding: 12px 24px 4px;
}

.dropdown-decription {
  color: var(--grey-1);
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
}

.back-to-top, .top {
  height: 0;
}

.top-button {
  z-index: 10;
  background-color: var(--rot);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  transition: background-color .3s;
  display: flex;
  position: fixed;
  inset: auto 16px 16px auto;
}

.top-button:hover {
  background-color: var(--dark);
}

.divider {
  background-color: var(--rot);
  border-radius: 1.5px;
  width: 88px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.page-heading {
  color: var(--grey-1);
  margin-bottom: 20px;
  font-family: Lat, sans-serif;
  font-weight: 700;
}

.pricing-features-left {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-right: 24px;
  display: grid;
}

.pricing-features-right {
  grid-column-gap: 30px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-left: 24px;
  display: grid;
}

.link-arrow {
  background-image: url('../images/right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-bottom: -1px;
  margin-left: 3px;
  margin-right: -3px;
  font-size: 16px;
}

.hero-slider {
  color: #fff;
  object-fit: fill;
  background-color: #000;
  height: 82vh;
  min-height: 680px;
  max-height: 56vw;
}

.list-dropdown {
  z-index: 30;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -8px;
  padding-bottom: 8px;
  display: flex;
  position: relative;
}

.contact-v2 {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-bottom: 40px;
  display: grid;
}

.contact-v2-media {
  opacity: .3;
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.side-nav-link {
  border: 4px solid var(--white);
  background-color: #574b8a4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: box-shadow .4s, border-color .4s, background-color .4s;
  display: flex;
  position: relative;
}

.side-nav-link:hover {
  background-color: #574b8a80;
}

.side-nav-link.w--current {
  background-color: var(--dark);
  width: 16px;
  height: 16px;
  transition: border-radius .4s, border-color .4s, background-color .4s;
}

.top-button-icon {
  margin: 0 auto 1px;
  position: relative;
  transform: rotate(180deg);
}

.icon-box {
  background-color: var(--dark);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
}

.icon-box.color-1 {
  background-color: var(--rot);
}

.icon-box.color-12 {
  background-color: var(--white);
  border-radius: 14px;
  width: 100%;
  height: 220px;
}

.icon-box.color-2 {
  background-color: var(--ac1);
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.moving-bg {
  z-index: 0;
  object-fit: cover;
  width: 104%;
  max-width: none;
  height: 104%;
  display: block;
  position: absolute;
  inset: -2%;
}

.media-container {
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 40px;
  padding-top: 0;
  display: flex;
  position: relative;
  left: auto;
}

.media-decoration {
  z-index: 0;
  background-color: var(--haze);
  border-radius: 40px;
  width: 90%;
  height: 90%;
  position: absolute;
  inset: -32px -32px auto auto;
}

.media-decoration.bottom-right {
  inset: auto -32px -4px auto;
}

.side-blocks {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-underline {
  z-index: 1;
  background-color: var(--rot);
  width: 50%;
  height: 2px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.feature-cards-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-centered {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-card {
  background-color: var(--white);
  color: var(--dunkelgrau);
  border-radius: 20px;
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px #0000001c;
}

.pricing-card-top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.pricing-card-info {
  flex: 1;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.pricing-card-list {
  grid-column-gap: 34px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  margin-bottom: -10px;
}

.icon-list {
  margin-top: 0;
  padding-left: 0;
}

.icon-list.pricing-list {
  margin-bottom: 0;
}

.icon-list.pricing-list-2 {
  flex: 1;
  margin-bottom: 0;
}

.icon-list-item {
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 14px;
  display: flex;
}

.checkmark {
  background-image: url('../images/approval-red.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.sticky-content {
  z-index: 3;
  background-color: var(--haze);
}

.hero-v3 {
  z-index: 2;
  color: var(--white);
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 91vh;
  max-height: none;
  margin-top: -80px;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.accordion-toggle {
  justify-content: space-between;
  align-items: flex-start;
  padding: 21px 0;
  transition: color .4s;
  display: flex;
}

.accordion-toggle:hover {
  color: var(--primary-3);
}

.plus-line-h {
  background-color: var(--dunkelgrau);
  width: 100%;
  height: 2px;
  position: absolute;
}

.plus-line-v {
  background-color: var(--dunkelgrau);
  width: 2px;
  height: 100%;
  position: absolute;
}

.heading-margin-24 {
  color: var(--grey-1);
  margin-bottom: 24px;
  font-family: Lat, sans-serif;
}

.contact-list-icon {
  width: 20px;
  margin-right: 6px;
}

.contact-v2-info {
  grid-column-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  margin-top: 8px;
  padding: 16px 12px;
}

.contact-list {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  text-align: left;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 4px;
  font-size: 13px;
  line-height: 20px;
  display: grid;
}

.contact-v2-form {
  width: 100%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.team-v1-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: 144px;
  height: 144px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.faq-box {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  background-color: var(--haze);
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 60px;
  display: grid;
}

.faq-box-info {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-insta-block {
  border-radius: 4px;
  width: 100%;
  padding: 50%;
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  height: 56vw;
}

.tabs-content {
  overflow: visible;
}

.team-member-bg-wrapper {
  justify-content: center;
  align-items: center;
  height: 32vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-v2-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 100%;
  padding-top: 50%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}

.footer-v3-social-icon {
  width: 20px;
  height: 20px;
}

.footer-v3-social-links {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6px;
  margin-left: -2px;
  margin-right: 0;
  padding-top: 4px;
  display: flex;
}

.footer-v3 {
  background-color: var(--dunkelgrau);
  display: block;
}

.footer-v3-brand {
  color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding: 8px 0;
  font-family: Caladea, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  display: flex;
}

.footer-v3-brand.w--current {
  width: auto;
  margin-bottom: 5px;
}

.footer-v3-content {
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
}

.footer-v3-social-link {
  cursor: pointer;
  background-color: #ffffff0f;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 3px;
  transition: background-color .2s;
  display: flex;
}

.footer-v3-social-link:hover {
  background-color: var(--rot);
}

.dropdown-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 6px;
  padding-top: 2px;
  padding-bottom: 2px;
  display: grid;
}

.nav-dropdown-heading {
  border-bottom: 1px solid var(--grey-4);
  padding: 8px 28px 16px;
}

.feature-card-info {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.intro-hero {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  max-height: 56vw;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image {
  color: var(--white);
  width: 338px;
  height: 50px;
}

.feature-centered-home {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.icon-box-home {
  background-color: #0000;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
}

.icon-home {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.heading-3 {
  color: var(--rot);
  text-transform: none;
  font-family: Lat, sans-serif;
  line-height: 38px;
}

.heading-4 {
  color: var(--rot);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Lat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.text-grey-h {
  color: var(--grey-1);
  height: 96px;
}

.feature-image-h {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 190px;
  margin-bottom: 24px;
  display: block;
}

.feature-image-h.xx {
  object-fit: cover;
  object-position: 50% 60%;
  height: 240px;
  margin-bottom: 0;
  display: block;
}

.image-2 {
  width: 200px;
  height: 100%;
}

.footer-copyright-2 {
  color: #e3e5e5;
  justify-content: flex-start;
  font-size: 12px;
  display: flex;
}

.copyright {
  margin-right: 10px;
}

.grid-footer {
  grid-column-gap: 18px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: auto 1.2fr 1fr 1.2fr auto;
  width: 100%;
}

.title-footer {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Lat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.link-footer {
  opacity: .8;
  color: #fff;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 15px;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .15s ease-out;
  display: block;
}

.block-footer-1 {
  padding-right: 20px;
}

.block-footer-2, .block-footer-5 {
  padding-left: 20px;
}

.div-block {
  z-index: 1;
  background-color: #14141466;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.button-h1 {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-h1:hover {
  background-color: var(--grey-1);
}

.button-h2 {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-h2:hover {
  background-color: var(--dark);
}

.button-h2.white-2 {
  background-color: var(--ac1);
  color: var(--white);
  border-radius: 9px;
  padding: 14px 30px 15px;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
}

.button-h2.white-2:hover {
  background-color: var(--grey-1);
  color: var(--white);
}

.button-h2.white-2-2 {
  background-color: var(--rot);
  color: var(--white);
  border-radius: 9px;
  padding: 14px 30px 15px;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
}

.button-h2.white-2-2:hover {
  background-color: var(--grey-1);
  color: var(--white);
}

.post-card-home {
  z-index: 2;
  background-color: var(--haze);
  object-fit: cover;
  background-image: url('../images/porsche.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 180px;
  transition: filter .2s;
  display: flex;
  position: relative;
}

.post-card-home._2 {
  background-image: url('../images/6500800d930c4cf2bae239a5_1921274E-D0F7-47C3-A4F3-EE5281B17896.webp');
}

.post-card-home._3 {
  background-image: url('../images/64f87cd8ddbe8577ef7c2283_15EB8D34-8FE3-47C5-B6EC-B0867D65B088.webp');
}

.post-card-home._4 {
  background-image: url('../images/65e4800dfe957f9bc7572e9f_D374C77F-35D3-40C6-88EE-2E6D4929197A.jpg');
}

.post-card-home._5 {
  background-image: url('../images/64f87cc7ddbe8577ef7c09f7_7BEF4FEA-9AC7-4107-9E45-597DFC178095.webp');
}

.post-card-home._6 {
  background-image: url('../images/64f8c107f1b9f5429a3a2528_IMG_1535.webp');
}

.post-card-home._7 {
  background-image: url('../images/64f87e11abb31f9c2a9dceea_8E69EEA1-FF49-40D9-B9C2-FEEB4357E885.webp');
}

.post-card-home._8 {
  background-image: url('../images/66d5a4c37ff053b844aa63d7_IMG_6857.jpeg');
}

.post-card-home._9 {
  background-image: url('../images/64f87db6190af3bae53f762e_dd06c49e-8e27-4a46-9330-8096d6ea3394.webp');
}

.post-card-home._10 {
  background-image: url('../images/64f87c679b7eb300c4df1323_D50B339C-5A6B-420C-853F-4AC2E3862870.webp');
}

.post-card-home._1a {
  background-image: url('../images/test_1.avif');
}

.post-card-home._1a._2 {
  background-image: url('../images/IMG_155.avif');
}

.post-card-home._1a._1 {
  background-image: url('../images/IMG_5659.avif');
}

.post-card-home._11 {
  background-image: url('../images/64f87e11abb31f9c2a9dceea_8E69EEA1-FF49-40D9-B9C2-FEEB4357E885.webp');
}

.post-card-home._12 {
  background-image: url('../images/1_1.avif');
}

.post-card-home._13 {
  background-image: url('../images/3_1.avif');
}

.post-card-home._14 {
  background-image: url('../images/2_1.avif');
}

.post-card-home._13-b {
  background-image: url('../images/5.png');
}

.post-card-home._13-c {
  background-image: url('../images/2.png');
}

.post-card-home._13-d {
  background-image: url('../images/3.png');
}

.post-card-home._13-e {
  background-image: url('../images/4.png');
}

.post-card-home._15 {
  background-image: url('../images/64f87c679b7eb300c4df1323_D50B339C-5A6B-420C-853F-4AC2E3862870.webp');
}

.button-h {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-h:hover {
  background-color: var(--dark);
}

.button-h.nav-button {
  border: 1px dashed var(--white);
  text-transform: uppercase;
  background-color: #0000;
  flex: none;
  height: auto;
  margin-left: 5px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 12px;
  display: none;
}

.button-h.nav-button:hover {
  background-color: var(--white);
  color: var(--dunkelgrau);
  border-color: #0000;
}

.page-content-recht {
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.h3-recht {
  color: #636363;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.text-recht {
  color: var(--grey-1);
  font-size: 15px;
}

.textlink-inhalt {
  color: #616161;
}

.textlink-inhalt:hover, .textlink-inhalt:visited {
  text-decoration: none;
}

.h4-recht {
  color: #636363;
  margin-top: 30px;
  font-family: Lat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.page-intro-recht {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-top: -16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-hr {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-hr.top-section-v2 {
  z-index: 99;
  background-color: var(--haze);
  color: var(--dunkelgrau);
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}

.section-recht {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-recht.haze {
  background-color: var(--haze);
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 100px;
  display: block;
}

.text-span-5 {
  font-family: Lat, sans-serif;
  font-weight: 700;
}

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

.button-kontakt {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-kontakt:hover {
  background-color: var(--grey-1);
}

.checkbox-field-2-kontakt {
  width: 100%;
  min-width: 100%;
  margin-bottom: 0;
  padding-top: 5px;
}

.checkbox-label {
  color: var(--grey-1);
  font-size: 13px;
  line-height: 1.5;
}

.side-content-pf {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 0 50px;
  display: flex;
}

.features-list {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: static;
  bottom: 25px;
}

.icon-box-pf {
  background-color: #0000;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
}

.h5-pf {
  color: var(--grey-1);
  font-family: Lat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.heading-3-2 {
  color: var(--grey-1);
  text-transform: none;
  font-family: Lat, sans-serif;
}

.media-top {
  z-index: 2;
  object-fit: cover;
  background-image: url('../images/61338210c372ed4ba0e1d5e1_Flash4Race00015.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 24px;
  width: 100%;
  height: 700px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  bottom: auto;
}

.text-label-2 {
  color: var(--rot);
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
}

.text-block-5 {
  color: var(--white);
  font-family: Inconso, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.heading-5 {
  color: var(--grey-1);
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: Lat, sans-serif;
}

.text-small-2 {
  font-size: 13px;
  line-height: 20px;
}

.text-small-2.text-grey {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.text-small-2.text-grey-4 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 23px;
}

.feature-card-2 {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  flex: 270px;
  align-items: center;
  padding: 20px 20px 32px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 24px #0000001a;
}

.feature-card-2.small {
  padding: 32px 20px 20px;
}

.feature-card-2.small-2 {
  padding: 28px 29px 30px;
}

.features-list-2 {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  margin: -20px auto 70px;
  padding-left: 0;
  padding-right: 0;
  position: static;
  bottom: 25px;
}

.section-2a {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section-2a.haze {
  background-color: var(--haze);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 80px;
  display: block;
}

.section-3a {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.bold-text {
  color: var(--dunkelgrau);
  font-family: Lat, sans-serif;
}

.pricing-card-heading-2 {
  color: var(--grey-1);
  margin-bottom: 8px;
  font-family: Lat, sans-serif;
  font-size: 24px;
}

.text-span-6 {
  font-family: Lat, sans-serif;
  display: block;
}

.text-block-6 {
  color: var(--dunkelgrau);
  font-size: 18px;
}

.pricing-card-description-2 {
  color: var(--grey-2);
  text-align: right;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-top: 10px;
  font-size: 11px;
  line-height: 11px;
  display: block;
  position: static;
  right: auto;
}

.section-4a {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section-4a.no-padding-bottom {
  padding-top: 0;
  padding-bottom: 40px;
}

.heading-33 {
  color: var(--rot);
  text-align: center;
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 48px;
  line-height: 54px;
}

.mini-block-heading-2 {
  z-index: 1;
  color: var(--white);
  text-align: right;
  margin-bottom: 8px;
  position: relative;
}

.intro-2 {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.intro-2.margin-bottom {
  max-width: 700px;
  margin-bottom: 40px;
}

.image-3, .image-4, .image-5 {
  border-radius: 20px;
}

.text-grey-2 {
  color: var(--grey-2);
  text-align: center;
  margin-top: 14px;
}

.section-2aa {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section-2aa.mask {
  color: #fff;
  background-color: #000;
  padding-top: 160px;
  padding-bottom: 140px;
  overflow: hidden;
}

.feature-cards-3-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  display: grid;
  position: static;
  top: 200px;
}

.logo-measure {
  object-fit: cover;
  border-radius: 10px;
  width: 70%;
  height: auto;
  margin-bottom: 0;
  display: block;
  position: sticky;
  top: 140px;
}

.main-grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 600px 450px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
  position: relative;
}

.mini-blocks-2 {
  border: 1px solid var(--grey-4);
  background-color: var(--white);
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mini-block-2 {
  box-shadow: 1px 0 0 0 var(--grey-4);
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  width: 220px;
  padding: 12px 15px;
  display: flex;
}

.mini-block-3 {
  text-align: left;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 870px;
  padding: 12px 15px;
  display: flex;
}

.features-3-2 {
  grid-column-gap: 36px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-6 {
  text-align: left;
  width: 80%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.lightbox-link {
  text-align: left;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

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

.section-pics {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.work-card-image-wrapper {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.card-hover {
  z-index: 1;
  color: #fff;
  background-color: #313131cc;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.card-hover-info {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Lat, sans-serif;
  font-weight: 400;
}

.card-image {
  width: 100%;
  height: 100%;
}

.work-card {
  color: #111;
  text-align: center;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.handle-wrapper {
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 612px;
  margin-bottom: 20px;
  margin-right: 0;
  display: flex;
  position: relative;
}

.image-right {
  z-index: 0;
  border-radius: 20px;
  width: 100%;
  height: 612px;
  position: absolute;
}

.image-left {
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  height: 612px;
  position: absolute;
}

.handle-bar {
  z-index: 10;
  color: #0000;
  cursor: grab;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 612px;
  display: flex;
  position: relative;
}

.circle-wrapper {
  cursor: grab;
  background-color: #fff;
  background-image: url('../images/arrows.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.before {
  z-index: 3;
  background-color: #313131bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 6px 0;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px auto auto 20px;
}

.handle {
  color: #fff;
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
}

.after {
  z-index: 3;
  background-color: #313131bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 6px 0;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.mini-blocks-3 {
  border: 1px solid var(--grey-4);
  background-color: var(--white);
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-grid-6 {
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.intro-left-2, .intro-left-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.faq-box-2 {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  background-color: var(--haze);
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 400px 1fr;
  grid-auto-columns: 1fr;
  padding: 80px 60px;
  display: grid;
}

.faq-box-info-2 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: static;
  top: 140px;
}

.intro-left-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.button-car-1 {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-car-1:hover {
  background-color: var(--dark);
}

.button-car-1.nav-button {
  background-color: var(--rot);
  color: var(--white);
  text-transform: uppercase;
  border: 1px #0000;
  flex: none;
  height: auto;
  margin-left: 0;
  padding: 12px 15px;
  font-size: 16px;
  line-height: 16px;
  box-shadow: 1px 1px 3px #000;
}

.button-car-1.nav-button:hover {
  border-style: none;
  border-color: var(--dunkelgrau);
  background-color: var(--grey-1);
  box-shadow: none;
  color: var(--white);
}

.features-2-2 {
  grid-column-gap: 40px;
  grid-row-gap: 48px;
}

.features-2-2.side-version {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  grid-template-columns: 1fr;
  margin-top: 20px;
  margin-bottom: 0;
}

.heading-5-3 {
  color: var(--grey-1);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Lat, sans-serif;
}

.div-block-6 {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  align-self: auto;
  display: grid;
}

.text-block-7 {
  color: var(--grey-1);
}

.button-car-2 {
  background-color: var(--rot);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-car-2:hover {
  background-color: var(--dark);
}

.button-car-2.nav-button {
  border: 1px dashed var(--rot);
  color: var(--rot);
  text-transform: uppercase;
  background-color: #0000;
  flex: none;
  height: auto;
  margin-top: 10px;
  margin-left: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.button-car-2.nav-button:hover {
  border-color: var(--dunkelgrau);
  color: var(--dunkelgrau);
  background-color: #0000;
}

.features-list-22 {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  position: static;
  bottom: 25px;
}

.section-999 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.section-55 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section-55.haze {
  background-color: var(--haze);
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

.pic-beisp {
  z-index: 3;
  background-color: #313131bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 6px 0;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: auto 20px 20px auto;
}

.vor-ort {
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  padding: 20px;
  display: block;
  position: static;
  top: 160px;
  box-shadow: 0 15px 40px #0000001c;
}

.extra-kon {
  border-radius: 0;
  flex-direction: column;
  width: 100%;
  min-height: auto;
  padding: 0;
  display: block;
  position: sticky;
  top: 160px;
}

.vor-ort-2 {
  background-color: var(--rot);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  margin-top: 40px;
  padding: 20px;
  display: block;
  position: static;
  top: 160px;
  box-shadow: 0 15px 40px #0000001c;
}

.heading-34 {
  color: var(--white);
  font-size: 22px;
}

.text-small-22 {
  font-size: 13px;
  line-height: 20px;
}

.text-small-22.text-grey {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.faq-box-22 {
  background-color: var(--haze);
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 400px 1fr;
  grid-auto-columns: 1fr;
  padding: 40px 60px;
  display: block;
}

.accordion-item-first {
  border-top: 1px none var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  text-align: left;
  margin-bottom: -1px;
  transition: box-shadow .4s, background-color .4s;
  display: block;
  overflow: hidden;
}

.accordion-item-last {
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px none var(--grey-4);
  text-align: left;
  margin-bottom: -1px;
  transition: box-shadow .4s, background-color .4s;
  display: block;
  overflow: hidden;
}

.main-grid-22 {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  perspective: 2000px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
  position: relative;
}

.nav-link-22 {
  color: var(--white);
  text-transform: uppercase;
  border-radius: 7px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transition: background-color .4s;
}

.nav-link-22:hover {
  background-color: var(--rot);
}

.nav-link-22.w--current {
  background-color: var(--rot);
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 12px;
}

.nav-link-22.work {
  font-size: 14px;
}

.section-22 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.section-22.haze {
  background-color: var(--haze);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 80px;
  display: block;
}

.heading-33-3 {
  color: var(--white);
  text-align: center;
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 48px;
  line-height: 54px;
}

.mini-block-heading-2-22 {
  z-index: 1;
  text-align: right;
  margin-bottom: 8px;
  position: relative;
}

.text-label-222 {
  color: var(--grey-1);
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
}

.mini-block-heading-2-333 {
  z-index: 1;
  text-align: right;
  margin-bottom: 8px;
  position: relative;
}

.contact-list-item-2 {
  color: var(--dunkelgrau);
  align-items: flex-start;
  display: flex;
}

.contact-list-item-2:hover {
  color: var(--rot);
}

.side-blocks-2 {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mini-block-description-2-a {
  z-index: 1;
  color: var(--white);
  text-align: left;
  line-height: 26px;
  position: relative;
}

.mini-block-description-2-2 {
  z-index: 1;
  color: var(--grey-1);
  line-height: 26px;
  position: relative;
}

.media-top-22 {
  z-index: 2;
  object-fit: cover;
  background-image: url('../images/65002953ce7a294aceed629d_Innenraum_Audi.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 24px;
  width: 100%;
  height: 500px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  bottom: auto;
}

.media-container-2 {
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
  display: flex;
  position: relative;
  left: auto;
}

.media-decoration-22 {
  z-index: 0;
  background-color: var(--haze);
  border-radius: 40px;
  width: 90%;
  height: 90%;
  position: absolute;
  inset: -32px -32px auto auto;
}

.media-decoration-22.bottom-right {
  height: 70%;
  inset: auto -32px 60px auto;
}

.side-content-pf-22 {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 0 50px;
  display: flex;
}

.text-grey-222 {
  color: #575757;
  margin-bottom: 20px;
}

.mini-block-2-99 {
  box-shadow: 1px 0 0 0 var(--grey-4);
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  width: 220px;
  padding: 12px 25px 12px 15px;
  display: flex;
}

.mini-block-3-99 {
  text-align: left;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 870px;
  padding: 12px 15px 12px 25px;
  display: flex;
}

.anchor-sticky-info-22 {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 0;
  display: flex;
  position: static;
  top: 180px;
}

.utility-page-wrapper-2 {
  color: var(--white);
  background-color: #181818;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-small-222 {
  font-size: 13px;
  line-height: 20px;
}

.text-small-222.text-grey {
  color: var(--dunkelgrau);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.text-small-222-2 {
  font-size: 13px;
  line-height: 20px;
}

.text-small-222-2.text-grey {
  color: var(--rot);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.mini-block-description-2-2-22 {
  z-index: 1;
  color: var(--grey-1);
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 26px;
  position: relative;
}

.slider {
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  max-height: none;
  margin-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.html-embed-konf {
  width: 100%;
  height: 100px;
  display: block;
  position: static;
}

.work {
  display: none;
}

.map-big-2 {
  border-radius: 24px;
  width: 100%;
  height: 700px;
}

.image-7 {
  width: 40px;
}

.link-block {
  z-index: 800;
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.wa {
  max-height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.accordion-header-2 {
  color: #222;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  display: flex;
}

.text-label-2-2 {
  color: var(--ac1);
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
}

.side-blocks-eco {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.side-blocks-eco.work {
  display: none;
}

.heading-52 {
  color: var(--ac1);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lat, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.image-8 {
  object-fit: cover;
  border-radius: 14px;
  width: 100%;
  height: 100%;
}

.section-9992 {
  background-color: var(--haze);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}

.media-decoration-2222 {
  z-index: 0;
  background-color: var(--haze);
  border-radius: 40px;
  width: 90%;
  height: 90%;
  position: absolute;
  inset: -32px -32px auto auto;
}

.media-decoration-2222.bottom-right {
  background-color: var(--haze);
  border-radius: 30px;
  width: 95%;
  height: 71%;
  inset: auto -20px 77px auto;
}

.media-top-2222 {
  z-index: 2;
  object-fit: cover;
  background-image: url('../images/flash4race_1.avif');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 24px;
  width: 100%;
  height: 520px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  bottom: auto;
}

.heading-3-22 {
  color: var(--ac1);
  text-align: center;
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 50px;
  display: block;
}

.heading-53 {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.heading-32 {
  color: var(--grey-1);
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 46px;
}

.mini-blocks-22 {
  border: 1px solid var(--grey-4);
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-9 {
  height: 130px;
}

.heading-5-32 {
  color: var(--grey-1);
  margin-top: 5px;
  margin-bottom: 15px;
  font-family: Lat, sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.heading-532 {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 40px;
}

.heading-533 {
  color: var(--grey-1);
  text-align: center;
  max-width: 1000px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Lat, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.mini-block-description-2-a-2 {
  z-index: 1;
  text-align: left;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  position: relative;
}

.mini-block-33 {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  color: var(--grey-1);
  flex-flow: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: grid;
}

.image-11 {
  width: 40px;
  height: 40px;
}

.card_scroll {
  background-color: var(--white);
  box-shadow: 7px 6px 0 -2px var(--ac1);
  border: .0625rem solid #83838329;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  height: 413px;
  display: flex;
  position: relative;
  bottom: -5%;
  overflow: hidden;
}

.wrapper_contant {
  color: var(--grey-1);
  flex: 1;
  justify-content: space-between;
  width: 100%;
  padding: 10px 25px 25px;
  display: flex;
  position: relative;
}

.wrapper_media {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 20px 20px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.wrapper-text {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.text-grey-22 {
  color: #575757;
  margin-bottom: 0;
}

.heading-3-22-2 {
  color: var(--grey-1);
  text-align: center;
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  display: block;
}

.intro-22 {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.intro-22.margin-bottom {
  width: 100%;
  max-width: none;
  margin-top: 20px;
  margin-bottom: 40px;
}

.intro-22.home {
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
}

.intro-22.home-1 {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.text-small-2-2 {
  font-size: 13px;
  line-height: 20px;
}

.text-small-2-2.text-grey-22 {
  flex: 1;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
}

.div-block-9704 {
  margin-top: 80px;
}

.div-block-9705 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.button-h1-22 {
  background-color: var(--ac1);
  color: #fff;
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-h1-22:hover {
  background-color: var(--grey-1);
}

.features-list-22-2 {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  position: static;
  bottom: 25px;
}

.feature-cards-42-22 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.container-25 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.swiper-number-pagination {
  z-index: 220;
  border-radius: 0;
  align-items: flex-end;
  width: 1040px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-number-pagination.af {
  width: 100%;
}

.snp-buttons-and-pagination {
  z-index: 210;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  left: auto;
  right: auto;
}

.snp-buttons-and-pagination.af {
  z-index: 221;
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: auto;
  height: 40px;
  display: flex;
  position: relative;
}

.snp-button-left {
  float: left;
  opacity: .6;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/backwa_1backwa.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 40px;
  padding: 0;
  line-height: 1em;
  display: block;
  position: absolute;
  left: 5px;
}

.snp-button-left:hover {
  opacity: 1;
}

.snp-button-left.home {
  left: 0;
}

.snp-button-left.home.af {
  opacity: 100;
  background-image: none;
  width: auto;
  height: 32px;
  display: flex;
  position: static;
}

.swiper-slide {
  flex: none;
}

.swiper-slide.snp-item {
  background-color: #0000;
  justify-content: flex-start;
  align-self: flex-end;
  width: 183px;
  padding: 0;
  display: block;
  overflow: hidden;
}

.swiper-slide.snp-item.mst4 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.snp-item.mst4:hover {
  border-color: #999;
}

.swiper-slide.snp-item.mst3 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.snp-item.mst3:hover {
  border-color: #999;
}

.swiper-slide.snp-item.mst5 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.snp-item.mst5:hover {
  border-color: #999;
}

.swiper-slide.snp-item.mst1 {
  background-color: #0000;
  flex: none;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.snp-item.mst1.home {
  width: 346.6px;
  padding-left: 10px;
  padding-right: 10px;
}

.swiper-slide.snp-item.mst1.home.af {
  width: 100%;
  height: auto;
  padding: 10px;
}

.swiper-slide.snp-item.mst2 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.snp-item.mst2:hover {
  border-color: #999;
}

.swiper-slide.mob {
  background-color: #0000;
  justify-content: flex-start;
  align-self: flex-end;
  width: 183px;
  padding: 0;
  display: block;
  overflow: hidden;
}

.swiper-slide.mob.mst4 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.mob.mst4:hover {
  border-color: #999;
}

.swiper-slide.mob.mst3 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.mob.mst3:hover {
  border-color: #999;
}

.swiper-slide.mob.mst5 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.mob.mst5:hover {
  border-color: #999;
}

.swiper-slide.mob.mst1 {
  background-color: #0000;
  flex: none;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.mob.mst2 {
  background-color: #0000;
  border: 1px #2e323c17;
  border-radius: 0;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  width: 346.7px;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  overflow: visible;
}

.swiper-slide.mob.mst2:hover {
  border-color: #999;
}

.swiper-wrapper {
  flex: none;
  display: block;
}

.swiper-wrapper.snp-list {
  grid-template-rows: .25fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 10px;
  display: flex;
}

.swiper-wrapper.snp-list.home {
  flex-flow: row;
  grid-template-rows: .25fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.snp-button-right {
  float: right;
  opacity: .6;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/icons8-forward-96_1icons8-forward-96.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 30px;
  height: 40px;
  padding: 0;
  line-height: 1em;
  display: block;
  position: absolute;
  right: 0;
}

.snp-button-right:hover {
  opacity: 1;
}

.snp-button-right.home.af {
  opacity: 100;
  background-image: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 32px;
  display: flex;
  position: static;
  right: auto;
}

.code-embed {
  margin-bottom: 0;
}

.heading-52-2 {
  color: var(--ac1);
  margin-bottom: 20px;
  font-family: Lat, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.li01 {
  color: var(--ac1);
}

.li01:hover {
  text-decoration: underline;
}

.navbar_dropdown-item-title-icon {
  width: 5px;
  margin-top: 1px;
  margin-left: 6px;
}

.navbar_arrow {
  background-color: var(--white);
  border-radius: 50px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
}

.navbar_arrow.is--mirrored {
  margin-left: -3px;
  transform: rotate(-45deg);
}

.navbar_dropdown-menu-wrapper {
  z-index: 1050;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  transform-origin: 0 0;
  cursor: default;
  border-radius: 8px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: visible;
  transform: scale(0);
  box-shadow: 0 0 4px 2px #0000000d;
}

.navbar_dropdown-info-wrapper {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.navbar_arrow-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-left: 6px;
  display: flex;
}

.navbar_dropdown-menu {
  z-index: 1001;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  width: 300px;
  padding: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar_dropdown-menu.is--left {
  border-radius: 10px;
  width: 270px;
  padding: 14px 10px 4px;
}

.navbar_dropdown-item-title {
  color: var(--dunkelgrau);
  letter-spacing: .4px;
  text-transform: none;
  font-size: 16px;
  line-height: 1;
}

.navbar_dropdown-backdrop {
  z-index: 998;
  cursor: default;
  background-color: #313131cc;
  width: 100vw;
  height: 100vh;
  margin-top: 80px;
  display: none;
  position: fixed;
  inset: 0%;
}

.navbar_dropdown-item-overview {
  color: var(--grey-1);
  letter-spacing: .3px;
  text-transform: none;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}

.navbar_dropdown-menu-item {
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
  padding: 10px 8px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.navbar_dropdown-item-title-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar_link-block {
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 7px;
  align-items: center;
  margin-left: 6px;
  margin-right: 3px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.navbar_link-block:hover {
  background-color: var(--rot);
}

.navbar_dropdown-grid {
  z-index: 1001;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.form {
  grid-column-gap: 4px;
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
  display: flex;
}

.navbar_link-block-2 {
  color: var(--white);
  cursor: pointer;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.div-block-9707 {
  background-color: var(--white);
  flex: 1;
  display: flex;
}

.div-block-9707._1 {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.navbar_link-2 {
  color: var(--dunkelgrau);
  text-transform: none;
  font-size: 19px;
  font-weight: 400;
  line-height: 19px;
}

.navbar_arrow-2 {
  background-color: var(--dunkelgrau);
  border-radius: 50px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
}

.navbar_arrow-2.is--mirrored {
  margin-left: -3px;
  transform: rotate(-45deg);
}

.navbar_dropdown-menu-wrapper-2 {
  z-index: 1050;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  transform-origin: 0 0;
  cursor: default;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  margin-top: 4px;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: visible;
  transform: scale(0);
  box-shadow: 0 0 4px 2px #0000000d;
}

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

.submit-button {
  background-color: var(--ac1);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  align-self: stretch;
  padding-bottom: 12px;
  font-size: 17px;
  line-height: 17px;
}

.navbar_dropdown-menu-item-2 {
  color: var(--dunkelgrau);
  letter-spacing: .4px;
  text-transform: none;
  cursor: pointer;
  align-items: center;
  margin-bottom: 4px;
  padding: 5px 5px 6px;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.navbar_dropdown-menu-item-2:hover {
  background-color: var(--grey-4);
}

.navbar_dropdown-grid-2 {
  z-index: 1001;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 8px 2px;
  display: flex;
  position: relative;
}

.hero-v3-intro-2 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.hero-v3-heading-2 {
  background-color: var(--rot);
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 16px 20px 10px;
  font-family: Fugazone, Verdana, sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 62px;
}

.hero-v3-2 {
  z-index: 2;
  color: var(--white);
  background-image: url('../images/f4r_web_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.wrapper-2 {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.footer-bottom-1 {
  color: #ffffff80;
  border-top: 1px solid #ffffff1a;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding-top: 24px;
  padding-bottom: 20px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.footer-v3-content-1 {
  border-top: 1px solid #ffffff1a;
  flex-flow: column;
  align-items: center;
  margin-top: 10px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.grid-footer-xx {
  grid-column-gap: 18px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr .6fr;
  width: 100%;
  padding-left: 10px;
}

.title-footer-xx {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Lat, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.form-block {
  margin-bottom: 0;
}

.div-block-9710 {
  grid-column-gap: 8px;
  background-color: #141414;
  border-radius: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 5px;
  padding: 10px 10px 2px;
  display: grid;
}

.feature-cards-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  justify-items: stretch;
  display: grid;
}

.div-block-9704-home {
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 0 4px 4px #0003;
}

.side-blocks-about {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 100px;
  display: grid;
}

.feature-card-info-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
  display: flex;
}

.text-grey-h-2 {
  color: var(--grey-1);
  text-align: left;
  height: 96px;
}

.heading-4-2 {
  color: var(--ac1);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Lat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.link-2 {
  box-shadow: inset 0 -2px 0 0 var(--grey-4);
  color: var(--dunkelgrau);
  text-align: left;
  align-items: center;
  margin-top: -8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-underline-2 {
  z-index: 1;
  background-color: var(--ac1);
  width: 50%;
  height: 2px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.contact-v2-2 {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.link-footer-3 {
  opacity: .8;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .15s ease-out;
  display: inline;
}

.link-footer-3:hover {
  opacity: 1;
  color: var(--rot);
}

.accordion-item-2 {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 20px 10px;
  box-shadow: 0 3px 7px #00000008;
}

.accordion-item-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-heading-2 {
  color: var(--grey-1);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  line-height: 24px;
}

.icon.accordion-icon {
  opacity: .7;
  color: #0009;
  cursor: pointer;
  width: 24px;
  height: 22px;
  font-size: 32px;
  line-height: 30px;
  transform: rotate(90deg);
}

.accordion-item-content {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
}

.heading-535 {
  color: var(--grey-1);
  text-align: left;
  cursor: pointer;
  margin-bottom: 6px;
  font-family: Lat, sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.block-footer-1-1-2 {
  margin-right: 20px;
}

.div-block-9712-2 {
  margin-left: 20px;
}

.accordion-item-3 {
  border: 2px solid var(--grey-2);
  background-color: #0000;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px 30px 20px;
}

.accordion-item-trigger-2 {
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.paragraph-2 {
  color: var(--grey-1);
  margin-bottom: 0;
  font-size: 16px;
}

.div-block-9714 {
  width: 100%;
  height: 0;
}

.link-4 {
  color: var(--rot);
  text-decoration: none;
}

.link-4:hover {
  text-decoration: underline;
}

.nav-bg.x, .paragraph-3, .logo-foo {
  display: none;
}

.block-footer-1-1-2-2 {
  margin-right: 50px;
}

.div-block-9712-2-2 {
  margin-left: 20px;
}

.container-28 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: none;
  position: relative;
}

.card_scroll-ex {
  background-color: var(--white);
  box-shadow: 7px 6px 0 -2px var(--ac1);
  border: .0625rem solid #83838329;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  height: 413px;
  display: flex;
  position: relative;
  bottom: -5%;
  overflow: hidden;
}

.field_label {
  z-index: 1;
  color: #6669;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  transition: all .3s;
  position: relative;
}

.field_label.large {
  color: var(--dunkelgrau);
  font-family: Lat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.field_label.large._2 {
  color: var(--rot);
  font-weight: 900;
}

.field_label.large-2 {
  color: var(--grey-1);
  font-family: Lat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.field_label.large-3 {
  color: var(--grey-1);
  text-align: left;
  font-family: Lat, sans-serif;
  font-size: 22px;
  line-height: 26px;
}

.field_label.large-0 {
  background-color: var(--haze);
  color: var(--grey-9);
  border-radius: 5px;
  flex: 1;
  padding: 4px 10px 5px;
  font-family: Lat, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.field_label.large-x {
  float: right;
  border: 2px solid var(--rot);
  color: var(--rot);
  border-radius: 8px;
  padding: 3px 20px;
  font-family: Lat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
}

.field_label.large-xx {
  background-color: var(--grey-2);
  color: var(--white);
  border-radius: 8px;
  padding: 3px 12px 5px;
  font-family: Lat, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.field_label.large-xx:hover {
  background-color: var(--grey-1);
  color: var(--white);
}

.field_label.large-4-2 {
  color: var(--grey-1);
  text-align: left;
  font-family: Lat, sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.field_label.large-2-2 {
  background-color: var(--rot);
  color: var(--white);
  border-radius: 8px;
  padding: 4px 15px 6px;
  font-family: Lat, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.field {
  z-index: 2;
  border: 1px solid var(--grey-3);
  color: var(--dunkelgrau);
  background-color: #0000;
  border-radius: 6px;
  width: 70%;
  margin-bottom: 0;
  padding: 6px 6px 7px 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 28.8px;
  position: relative;
}

.checkboxes {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.checkboxes.maxwidth-470._22 {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.col {
  flex: 1;
  width: 100%;
  position: relative;
}

.checkbox-label-2 {
  z-index: 2;
  color: var(--dunkelgrau);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  transition: all .3s;
  position: relative;
}

.checkbox-label-2.is--clickable-off {
  color: var(--grey-1);
  flex: 1;
}

.checkbox-label-2.is--clickable-off._33 {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}

.hire-fild-label {
  color: #6669;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  transition: all .3s;
}

.hire-fild-label.bottom-16-3 {
  color: var(--grey-1);
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.col-2 {
  border-bottom: 1px solid #ccc;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  position: relative;
}

.div-block-9715 {
  flex-flow: column;
  flex: 1;
  padding-left: 10px;
  display: flex;
}

.div-block-9716 {
  display: flex;
}

.div-block-9717 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 70px;
}

.div-block-97171 {
  border: 2px solid var(--grey-3);
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-left: 10px;
  display: flex;
}

.div-block-97173 {
  border: 2px solid var(--grey-3);
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 38%;
  padding-left: 10px;
  display: flex;
}

.col-4 {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-flow: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 50px 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.div-block-97170 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.div-block-97178 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 400px;
  padding-left: 20px;
  padding-right: 80px;
  display: flex;
}

.col-6 {
  grid-column-gap: 25px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  display: grid;
  position: relative;
}

.div-block-97180 {
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.col-9 {
  flex: 1;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.field-2 {
  z-index: 2;
  border: 1px solid var(--grey-3);
  color: var(--dunkelgrau);
  background-color: #0000;
  border-radius: 8px;
  min-height: 150px;
  margin-bottom: 0;
  padding: 4px 6px 4px 8px;
  font-size: 15px;
  line-height: 28.8px;
  position: relative;
}

.field-2::placeholder {
  font-weight: 400;
}

.div-block-971719 {
  z-index: 99;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  position: static;
  right: 0;
}

.container-26 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.div-block-9710-2 {
  grid-column-gap: 8px;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 15px;
  display: grid;
}

.div-block-9709-3 {
  border: 1px solid var(--grey-3);
  border-radius: 8px;
  padding: 8px 10px;
}

.image-13 {
  opacity: .2;
  width: 200px;
}

.radio-button {
  border: 2px solid var(--grey-2);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  position: relative;
}

.radio-main-text-2 {
  color: var(--rot);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}

.div-block-971724 {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.div-block-971725 {
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 10px;
  margin-right: 10px;
  display: grid;
}

.div-block-971726 {
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  display: flex;
  position: relative;
}

.text-grey-222-2 {
  color: #575757;
  margin-bottom: 0;
}

.heading-532-2 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 40px;
}

.navbar_link-block-2-2 {
  color: var(--white);
  cursor: pointer;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.wrapper-3-x {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.div-block-971727 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.icon-list-item-2 {
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 10px;
  display: flex;
}

.checkmark-2 {
  opacity: 1;
  filter: none;
  background-image: url('../images/check-circle-svgrepo-com.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-right: 5px;
}

.text-block-6-2 {
  color: var(--grey-9);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.h5-home-2-2 {
  text-align: center;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.features-home-22 {
  z-index: 2;
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  align-items: stretch;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.feature-centered-home-3 {
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.icon-box-home-3 {
  background-color: #0000;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  display: flex;
}

.h5-home-3 {
  color: var(--grey-1);
  text-align: center;
  margin-bottom: 0;
  margin-left: 14px;
  font-family: Lat, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.previous-button {
  opacity: .35;
  color: #000;
  text-indent: -2px;
  flex: none;
  align-self: center;
  padding: 5px 0;
  font-size: 16px;
  transition: opacity .2s ease-in;
}

.previous-button:hover {
  opacity: 1;
  border-bottom-color: #0000008c;
}

.mask {
  overflow: visible;
}

.form-wrapper {
  box-shadow: none;
  border-radius: 25px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.error-message {
  border: 1px solid var(--rot);
  color: var(--rot);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1em;
  line-height: 1em;
}

.form-content {
  width: 100%;
}

.form-content.final {
  margin-top: 40px;
  margin-bottom: 0;
}

.step-paginator {
  background-color: #0000;
  height: 100%;
  position: relative;
}

.previous {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100px;
  height: 35px;
  margin: auto auto 25px 30px;
  display: flex;
  top: 0;
  bottom: -5px;
  left: 0;
}

.step {
  border-radius: 20px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.collaborate-form-step {
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 40px 10px;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #0003;
}

.collaborate-form-step._1, .collaborate-form-step._2, .collaborate-form-step._3 {
  height: auto;
  min-height: auto;
}

.next {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 120px;
  height: 35px;
  margin: auto auto 20px;
  font-size: 16px;
  line-height: 22px;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
}

.step-counter {
  background-color: var(--haze);
  color: #00000059;
  border-radius: 4px;
  margin-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  top: 15px;
}

.success-message {
  border: 1px solid var(--grey-3);
  color: var(--grey-1);
  letter-spacing: 1px;
  background-color: #0000;
  border-radius: 10px;
  padding: 50px;
  font-size: 1.2em;
  line-height: 1.5em;
}

.next-button {
  background-color: var(--grey-1);
  border-radius: 5px;
  flex: 1;
  align-self: center;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color .2s ease-in;
}

.next-button:hover {
  background-color: var(--dunkelgrau);
}

.next-button.af {
  background-color: var(--grey-2);
  color: var(--white);
  justify-content: center;
  height: 32px;
  padding-top: 8px;
  padding-bottom: 7px;
  font-size: 15px;
  overflow: visible;
}

.next-button.af:hover {
  background-color: var(--grey-1);
}

.next-button.af.x {
  background-color: var(--grey-1);
  padding-top: 0;
  padding-bottom: 0;
}

.next-button.af.x:hover {
  background-color: var(--ac1);
}

.submit-button-2 {
  background-color: var(--grey-9);
  box-shadow: none;
  border-radius: 8px;
  width: 280px;
  height: 40px;
  margin-top: auto;
  margin-bottom: 25px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  transition: background-color .2s ease-in, box-shadow .2s ease-in;
  display: block;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.submit-button-2:hover {
  background-color: var(--dunkelgrau);
  box-shadow: 0 0 20px #0000004d;
}

.col-x1-2 {
  flex: 1;
  margin: 20px 10px;
  position: relative;
}

.div-block-9709-2-3 {
  grid-column-gap: 10px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 8px;
}

.div-block-9709-33 {
  border: 1px solid var(--grey-1);
  border-radius: 8px;
  width: 100%;
  padding: 8px 10px;
}

.features-home-2-2 {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.div-block-971731 {
  grid-column-gap: 12px;
  justify-content: center;
  align-items: stretch;
  margin-top: 15px;
  display: flex;
}

.col-5-3 {
  grid-column-gap: 10px;
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  margin-top: 40px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 40px 0;
  display: flex;
  position: relative;
}

.col-3-3 {
  flex-flow: row;
  flex: 1;
  justify-content: space-between;
  margin: 30px 10px 15px;
  display: flex;
  position: relative;
}

.textarea-2 {
  border: 2px solid var(--grey-2);
  color: var(--dunkelgrau);
  border-radius: 10px;
  min-height: 150px;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 16px;
}

.fs-cc-prefs_checkbox-field {
  z-index: 1001;
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_checkbox-2 {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.div-block-971732 {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.feature-centered-home-2-2-2 {
  grid-column-gap: 10px;
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.icon-box-home-2-2 {
  background-color: #0000;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 26px;
  height: 26px;
  display: flex;
}

.text-span-19 {
  color: var(--grey-1);
  font-size: 14px;
}

.form-x-2 {
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
  display: flex;
}

.submit-button-3 {
  background-color: var(--ac1);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  align-self: stretch;
  padding-bottom: 12px;
  font-size: 17px;
  line-height: 17px;
}

.text-span-20 {
  font-size: 14px;
}

.checkbox-field {
  background-color: var(--rot);
  color: var(--white);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 2px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  position: relative;
}

.checkbox-text {
  z-index: auto;
  color: var(--white);
  padding-bottom: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: static;
}

.checkbox-text._2 {
  display: none;
}

.checkbox-3 {
  border: 1px solid var(--rot);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.checkbox-3.w--redirected-checked {
  border-color: var(--rot);
  background-color: #0000;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  margin-top: auto;
}

.checkbox-label-1 {
  z-index: 10;
  color: #fff;
  display: none;
  position: relative;
}

.checkbox-label-223 {
  color: var(--grey-1);
  text-align: left;
  font-size: 13px;
  line-height: 1.2;
}

.checkbox-4 {
  margin-top: 2px;
}

.checkbox-4.w--redirected-checked {
  border: 1px solid var(--rot);
  background-color: var(--rot);
}

.checkbox-field-2-kontakt-2 {
  text-align: left;
  align-items: center;
  width: 100%;
  min-width: 100%;
  margin-bottom: 0;
  padding-top: 5px;
}

.text-grey-4 {
  color: var(--grey-9);
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}

.page-intro-recht-22 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: -16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrapper-44 {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.media-top-2222-33 {
  z-index: 2;
  object-fit: cover;
  background-image: url('../images/flash4race_1.avif');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 24px;
  width: 100%;
  height: 550px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  bottom: auto;
}

.text-grey-6 {
  color: var(--grey-9);
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}

.section-oh {
  background-color: var(--haze);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.collaborate-form-step-2 {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 680px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.div-block-971733 {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: center;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #0003;
}

.vor-ort-3 {
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: block;
  position: static;
  top: 160px;
  box-shadow: 0 15px 40px #0000001c;
}

.contact-v2-info-2 {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  margin-top: 8px;
  padding: 16px 12px;
}

.contact-v2-media-2 {
  opacity: .3;
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.accordion-item-3-last {
  border: 2px solid var(--grey-2);
  background-color: #0000;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 30px 30px 20px;
}

.section-top {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-last {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
}

.section-last-bg {
  background-color: var(--haze);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.vor-ort-4 {
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: none;
  position: static;
  top: 160px;
  box-shadow: 0 15px 40px #0000001c;
}

.contact-v2-info-2-x {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  margin-top: 8px;
  padding: 16px 12px;
}

.media-top-2222-44 {
  z-index: 2;
  object-fit: cover;
  background-image: url('../images/DSC07932_1.avif');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 24px;
  width: 100%;
  height: 520px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  bottom: auto;
}

.media-top-2222-44._2 {
  background-image: url('../images/IMG_8779.avif');
}

.media-top-2222-44._3 {
  background-image: url('../images/IMG_5075.avif');
}

.media-top-2222-44._4 {
  background-image: url('../images/IMG_1836.avif');
}

.media-top-2222-44._5 {
  background-image: url('../images/IMG_8335.avif');
}

.media-top-2222-44._6 {
  background-image: url('../images/IMG_4758.avif');
}

.submit-button-af {
  background-color: var(--grey-9);
  box-shadow: none;
  border-radius: 5px;
  padding: 7px 16px 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  transition: background-color .2s ease-in, box-shadow .2s ease-in;
  display: block;
  overflow: visible;
}

.submit-button-af:hover {
  background-color: var(--dunkelgrau);
  box-shadow: 0 0 20px #0000004d;
}

.text-block-8 {
  letter-spacing: 0;
}

.side-blocks-eco-1 {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.side-blocks-eco-1.work {
  display: none;
}

.bg-mob {
  width: 100%;
  display: none;
}

.section-oh-2 {
  background-color: var(--haze);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.div-block-971734 {
  z-index: 900;
  grid-column-gap: 12px;
  background-color: var(--rot);
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  position: relative;
}

.heading-6 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Lat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.div-block-971735 {
  grid-column-gap: 4px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-14 {
  width: 14px;
}

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

.select-field {
  background-color: var(--white);
  color: var(--dunkelgrau);
  background-image: url('../images/chevron-down-outline.svg');
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 19px;
}

.div-block-971737 {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

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

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

.contact-v1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-bottom: 40px;
  display: flex;
}

.vor-ort-5 {
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  padding: 60px 80px 80px;
  display: block;
  position: static;
  top: 160px;
  box-shadow: 0 15px 40px #0000001c;
}

.hea1 {
  margin-bottom: 15px;
  font-family: Lat, sans-serif;
  font-size: 30px;
  line-height: 34px;
}

.text-small-3 {
  font-size: 16px;
  line-height: 22px;
}

.text-small-3.text-grey {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.lottie-animation {
  width: 100px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-thx {
  background-color: var(--haze);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.reli {
  color: var(--grey-1);
  text-decoration: underline;
}

.reli:hover {
  text-decoration: none;
}

.pop-up-exit-button {
  opacity: .2;
  cursor: pointer;
  transition: opacity .2s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.pop-up-exit-button:hover {
  opacity: .8;
}

.text-span-16 {
  color: #da0000;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}

.pop-up-back {
  background-color: #202020cc;
  position: absolute;
  inset: 0%;
}

.pop-up-box {
  cursor: auto;
  background-color: #fff;
  border-radius: 8px;
  max-width: 530px;
  padding: 40px 40px 30px;
  position: relative;
}

.button-h2-22 {
  color: #fff;
  text-align: center;
  background-color: #da0000;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button-h2-22:hover {
  background-color: #452c48;
}

.button-h2-22.white-2 {
  color: #fff;
  background-color: #da0000;
  border-radius: 9px;
  height: auto;
  padding: 12px 20px 13px;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.button-h2-22.white-2:hover {
  color: #fff;
  background-color: #666;
}

.pop-up-header {
  color: #666;
  text-align: center;
  text-transform: none;
  font-family: Lat, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.pop-up-paragraph {
  color: #313131;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.div-block-9706 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.pop-up-wrapper {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.pop-up-text-box {
  max-width: 650px;
}

@media screen and (min-width: 1280px) {
  .section.anchor-padding-top {
    padding-top: 100px;
  }

  .wrapper, .wrapper.nav-bar-wrapper {
    max-width: 1200px;
  }

  .nav-link, .nav-link.w--current {
    margin-left: 3px;
    margin-right: 3px;
  }

  .navigation {
    justify-content: flex-end;
    padding-right: 0;
  }

  .main-grid {
    grid-template-columns: 400px 750px;
  }

  .feature-card {
    padding-top: 25px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .feature-card.xx {
    flex-flow: column;
    padding-bottom: 32px;
  }

  .media-container {
    margin-left: 80px;
  }

  .media-decoration.bottom-right {
    bottom: -26px;
  }

  .hero-v3 {
    height: 100vh;
    padding-top: 60px;
  }

  .footer-v3-social-links {
    margin-right: 0;
  }

  .icon-box-home {
    width: 40px;
    height: 40px;
  }

  .icon-home {
    width: 36px;
  }

  .text-grey-h {
    height: auto;
  }

  .feature-image-h {
    height: 240px;
  }

  .feature-image-h.xx {
    margin-bottom: 24px;
  }

  .image-2 {
    width: 240px;
  }

  .footer-copyright-2 {
    color: #e3e5e5;
    font-size: 12px;
  }

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

  .block-footer-5 {
    padding-left: 0;
  }

  .post-card-home {
    height: 200px;
  }

  .button-h.nav-button {
    border: 1px dashed var(--white);
    background-color: #0000;
    height: auto;
    font-size: 13px;
    line-height: 13px;
  }

  .button-h.nav-button:hover {
    border-color: #0000;
  }

  .side-content-pf {
    padding-left: 80px;
  }

  .features-list {
    margin-top: 80px;
    bottom: 20px;
  }

  .icon-box-pf {
    width: 40px;
    height: 40px;
  }

  .h5-pf {
    font-size: 14px;
    line-height: 16px;
  }

  .media-top {
    height: 700px;
  }

  .feature-card-2.small-2 {
    padding-top: 32px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .features-list-2 {
    bottom: 20px;
  }

  .section-3a {
    padding-top: 70px;
  }

  .section-4a.no-padding-bottom {
    padding-top: 0;
  }

  .logo-measure {
    width: 80%;
    height: auto;
  }

  .main-grid-2 {
    grid-template-columns: 750px 400px;
  }

  .mini-blocks-2 {
    margin-top: 80px;
  }

  .handle-wrapper, .image-right, .image-left, .handle-bar {
    height: 668px;
  }

  .mini-blocks-3 {
    margin-top: 10px;
  }

  .main-grid-6 {
    grid-template-columns: 400px 750px;
  }

  .button-car-1.nav-button {
    border: 1px none var(--rot);
    background-color: var(--rot);
    height: auto;
    font-size: 16px;
    line-height: 16px;
  }

  .button-car-1.nav-button:hover {
    border-color: var(--dunkelgrau);
  }

  .button-car-2.nav-button {
    border: 1px dashed var(--rot);
    background-color: #0000;
    height: auto;
    font-size: 13px;
    line-height: 13px;
  }

  .button-car-2.nav-button:hover {
    border-color: var(--dunkelgrau);
  }

  .features-list-22 {
    bottom: 20px;
  }

  .section-55.haze {
    padding-top: 60px;
  }

  .extra-kon {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-box-22 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .main-grid-22 {
    grid-template-columns: 1fr;
  }

  .nav-link-22 {
    margin-left: 3px;
    margin-right: 3px;
  }

  .nav-link-22.w--current {
    margin-left: 3px;
    margin-right: 3px;
    font-size: 13px;
    line-height: 13px;
  }

  .section-22.haze {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .media-top-22 {
    height: 550px;
  }

  .media-container-2 {
    margin-left: 0;
  }

  .media-decoration-22.bottom-right {
    height: 80%;
    bottom: 10px;
  }

  .side-content-pf-22 {
    padding-left: 50px;
  }

  .mini-block-2-99 {
    width: 210px;
  }

  .mini-block-3-99 {
    width: 980px;
  }

  .anchor-sticky-info-22 {
    margin-right: 0;
    top: 250px;
  }

  .media-decoration-2222.bottom-right {
    height: 90%;
    bottom: 6px;
  }

  .media-top-2222 {
    height: 500px;
  }

  .card_scroll {
    height: 381px;
  }

  .features-list-22-2 {
    bottom: 20px;
  }

  .swiper-number-pagination {
    width: 1140px;
  }

  .swiper-slide.snp-item {
    border-radius: 0;
    width: 171px;
  }

  .swiper-slide.snp-item.mst4, .swiper-slide.snp-item.mst3, .swiper-slide.snp-item.mst5, .swiper-slide.snp-item.mst1, .swiper-slide.snp-item.mst1.home, .swiper-slide.snp-item.mst2 {
    width: 380px;
  }

  .swiper-slide.mob {
    border-radius: 0;
    width: 171px;
  }

  .swiper-slide.mob.mst4, .swiper-slide.mob.mst3, .swiper-slide.mob.mst5, .swiper-slide.mob.mst1, .swiper-slide.mob.mst2 {
    width: 380px;
  }

  .hero-v3-heading-2 {
    font-size: 75px;
    line-height: 75px;
  }

  .hero-v3-2 {
    height: 100vh;
  }

  .wrapper-2 {
    max-width: 1200px;
  }

  .grid-footer-xx {
    grid-template-columns: 1fr 1fr 1fr .7fr;
  }

  .title-footer-xx {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .feature-cards-5 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-info-2 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-grey-h-2 {
    text-align: center;
    height: auto;
  }

  .heading-4-2 {
    margin-bottom: 8px;
  }

  .block-footer-1-1-2 {
    margin-right: 40px;
  }

  .block-footer-1-1-2-2 {
    margin-right: 60px;
  }

  .card_scroll-ex {
    height: 381px;
  }

  .hire-fild-label.bottom-16-3 {
    margin-bottom: 30px;
  }

  .wrapper-3-x {
    max-width: 1200px;
  }

  .features-home-22 {
    bottom: 20px;
  }

  .collaborate-form-step {
    min-height: 660px;
  }

  .features-home-2-2 {
    grid-column-gap: 25px;
    bottom: 20px;
  }

  .col-3-3 {
    margin-top: 25px;
  }

  .wrapper-44 {
    max-width: 1200px;
  }

  .media-top-2222-33 {
    height: 600px;
  }

  .collaborate-form-step-2 {
    min-height: 660px;
  }

  .section-top {
    padding-top: 100px;
  }

  .section-last {
    padding-bottom: 80px;
  }

  .section-last-bg {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .media-top-2222-44 {
    height: 500px;
  }

  .div-block-971737 {
    grid-column-gap: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .section.anchor-padding-top {
    padding-top: 100px;
  }

  .wrapper, .wrapper.nav-bar-wrapper {
    max-width: 1350px;
  }

  .nav-link, .nav-link.w--current {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
    line-height: 16px;
  }

  .nav-menu {
    padding-right: 10px;
  }

  .navigation {
    justify-content: flex-end;
    padding-right: 0;
  }

  .main-grid {
    grid-template-columns: 500px 800px;
  }

  .feature-card {
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .contact-v2 {
    margin-bottom: 60px;
  }

  .icon-box.color-12 {
    height: 240px;
  }

  .media-container {
    justify-content: center;
    align-items: center;
    margin-left: 140px;
  }

  .media-decoration.bottom-right {
    bottom: -28px;
  }

  .side-blocks {
    align-content: stretch;
    align-items: stretch;
  }

  .hero-v3 {
    padding-top: 80px;
  }

  .icon-box-home {
    width: 45px;
    height: 45px;
  }

  .icon-home {
    width: 40px;
    height: 40px;
  }

  .feature-image-h {
    height: 250px;
  }

  .image-2 {
    width: 260px;
  }

  .footer-copyright-2 {
    color: #e3e5e5;
    font-size: 12px;
  }

  .grid-footer {
    grid-template-columns: auto 1.3fr 1fr 1.2fr auto;
  }

  .title-footer {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .block-footer-5 {
    padding-left: 0;
  }

  .post-card-home {
    height: 240px;
  }

  .button-h.nav-button {
    height: auto;
    font-size: 14px;
    line-height: 14px;
  }

  .side-content-pf {
    padding-left: 60px;
    padding-right: 40px;
  }

  .features-list {
    margin-top: 80px;
    bottom: 20px;
  }

  .icon-box-pf {
    width: 45px;
    height: 45px;
  }

  .h5-pf {
    font-size: 15px;
    line-height: 18px;
  }

  .media-top {
    background-image: url('../images/Flash4Race00015.webp');
    background-size: cover;
    background-attachment: scroll;
    height: 700px;
  }

  .features-list-2 {
    bottom: 20px;
  }

  .section-3a {
    padding-top: 80px;
  }

  .section-4a.no-padding-bottom {
    padding-top: 0;
  }

  .logo-measure {
    width: 75%;
    height: auto;
  }

  .main-grid-2 {
    grid-template-columns: 800px 500px;
  }

  .mini-blocks-2 {
    margin-top: 80px;
  }

  .handle-wrapper, .image-right, .image-left, .handle-bar {
    height: 751px;
  }

  .mini-blocks-3 {
    margin-top: 10px;
  }

  .main-grid-6 {
    grid-template-columns: 500px 800px;
  }

  .button-car-1.nav-button {
    height: auto;
    font-size: 16px;
    line-height: 16px;
  }

  .button-car-2.nav-button {
    height: auto;
    font-size: 14px;
    line-height: 14px;
  }

  .features-list-22 {
    bottom: 20px;
  }

  .faq-box-22 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .main-grid-22 {
    grid-template-columns: 1fr;
  }

  .nav-link-22 {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
    line-height: 16px;
  }

  .nav-link-22.w--current {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
    line-height: 14px;
  }

  .section-22.haze {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .side-blocks-2 {
    align-content: stretch;
    align-items: stretch;
  }

  .media-top-22 {
    background-image: url('../images/Innenraum_Audi.webp');
    background-size: cover;
    background-attachment: scroll;
    height: 550px;
  }

  .media-container-2 {
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .media-decoration-22.bottom-right {
    height: 90%;
    bottom: -28px;
  }

  .side-content-pf-22 {
    padding-left: 60px;
    padding-right: 40px;
  }

  .mini-block-3-99 {
    width: 1100px;
  }

  .anchor-sticky-info-22 {
    margin-right: 0;
    top: 260px;
  }

  .side-blocks-eco {
    align-content: stretch;
    align-items: stretch;
    margin-bottom: 120px;
  }

  .media-decoration-2222.bottom-right {
    height: 95%;
    bottom: -22px;
  }

  .heading-53 {
    max-width: 80%;
  }

  .image-9 {
    height: 150px;
  }

  .heading-532 {
    margin-top: 100px;
  }

  .card_scroll {
    height: 357px;
  }

  .features-list-22-2 {
    bottom: 20px;
  }

  .feature-cards-42-22 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .swiper-number-pagination {
    width: 1290px;
  }

  .swiper-slide.snp-item {
    background-color: #0000;
    border-radius: 0;
    align-self: flex-end;
    width: 168px;
    padding: 0;
    display: block;
  }

  .swiper-slide.snp-item.mst4, .swiper-slide.snp-item.mst3, .swiper-slide.snp-item.mst5, .swiper-slide.snp-item.mst1 {
    width: 430px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.snp-item.mst1.home {
    width: 430px;
  }

  .swiper-slide.snp-item.mst2 {
    width: 430px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.mob {
    background-color: #0000;
    border-radius: 0;
    align-self: flex-end;
    width: 168px;
    padding: 0;
    display: block;
  }

  .swiper-slide.mob.mst4, .swiper-slide.mob.mst3, .swiper-slide.mob.mst5, .swiper-slide.mob.mst1, .swiper-slide.mob.mst2 {
    width: 430px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar_dropdown-menu-wrapper {
    transform: scale(0);
  }

  .navbar_dropdown-item-title {
    font-size: 17px;
  }

  .navbar_link-block {
    font-size: 16px;
    line-height: 16px;
  }

  .hero-v3-heading-2 {
    padding-top: 18px;
    font-size: 85px;
    line-height: 85px;
  }

  .hero-v3-2 {
    margin-top: -100px;
  }

  .wrapper-2 {
    max-width: 1350px;
    margin-bottom: 20px;
  }

  .title-footer-xx {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .feature-cards-5 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .side-blocks-about {
    align-content: stretch;
    align-items: stretch;
    padding-top: 120px;
  }

  .block-footer-1-1-2-2 {
    margin-right: 60px;
  }

  .card_scroll-ex {
    height: 357px;
  }

  .hire-fild-label.bottom-16-3 {
    margin-bottom: 20px;
  }

  .radio-button {
    min-height: 220px;
  }

  .wrapper-3-x {
    max-width: 1350px;
  }

  .h5-home-2-2 {
    font-size: 15px;
    line-height: 18px;
  }

  .features-home-22 {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: flex;
    bottom: 20px;
  }

  .h5-home-3 {
    margin-left: 8px;
    font-size: 19px;
  }

  .collaborate-form-step {
    min-height: 620px;
  }

  .features-home-2-2 {
    grid-column-gap: 30px;
    bottom: 20px;
  }

  .col-5-3 {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .col-3-3 {
    margin-top: 30px;
  }

  .wrapper-44 {
    max-width: 1350px;
  }

  .media-top-2222-33 {
    height: 650px;
  }

  .collaborate-form-step-2 {
    min-height: 620px;
  }

  .vor-ort-3 {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-top {
    padding-top: 100px;
  }

  .section-last {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .section-last-bg {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .vor-ort-4 {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .side-blocks-eco-1 {
    align-content: stretch;
    align-items: stretch;
    margin-bottom: 120px;
  }

  .div-block-971737 {
    grid-column-gap: 100px;
  }

  .contact-v1 {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .section.haze.no-padding-top {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .section.anchor-padding-top {
    padding-top: 120px;
  }

  .wrapper, .wrapper.nav-bar-wrapper {
    max-width: 1600px;
  }

  .nav-link, .nav-link.w--current {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;
    line-height: 15px;
  }

  .navigation {
    justify-content: flex-end;
    padding-right: 0;
  }

  .footer-bottom {
    justify-content: center;
  }

  .main-grid {
    grid-template-columns: 900px 600px;
  }

  .feature-card {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-card.xx {
    flex-flow: column;
  }

  .icon-box.color-12 {
    height: 250px;
  }

  .media-container {
    justify-content: center;
    align-items: center;
    margin-left: 250px;
    left: auto;
    right: auto;
    overflow: visible;
  }

  .media-decoration.bottom-right {
    bottom: -28px;
  }

  .hero-v3 {
    padding-bottom: 20px;
  }

  .icon-box-home {
    width: 50px;
    height: 50px;
  }

  .icon-home {
    width: 46px;
    height: 46px;
  }

  .text-grey-h {
    margin-bottom: 25px;
  }

  .feature-image-h {
    height: 220px;
  }

  .feature-image-h.xx {
    height: 220px;
    margin-bottom: 24px;
  }

  .image-2 {
    width: 300px;
  }

  .footer-copyright-2 {
    color: #e3e5e5;
    order: 0;
    font-size: 12px;
    position: relative;
  }

  .grid-footer {
    grid-template-columns: auto 1.1fr 1fr 1.2fr auto;
  }

  .title-footer {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 17px;
  }

  .block-footer-1 {
    padding-right: 0;
  }

  .block-footer-2 {
    padding-left: 0;
  }

  .block-footer-5 {
    padding-left: 20px;
  }

  .post-card-home {
    height: 280px;
  }

  .button-h.nav-button {
    height: auto;
    font-size: 15px;
    line-height: 15px;
    display: none;
  }

  .page-content-recht {
    max-width: 90%;
  }

  .h3-recht {
    color: #636363;
    margin-top: 60px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
  }

  .text-recht {
    font-size: 15px;
    line-height: 1.6em;
  }

  .h4-recht {
    color: #636363;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
  }

  .section-hr.top-section-v2 {
    padding-bottom: 60px;
  }

  .side-content-pf {
    padding-left: 80px;
    padding-right: 80px;
  }

  .features-list {
    margin-top: 80px;
    bottom: 20px;
  }

  .icon-box-pf {
    width: 50px;
    height: 50px;
  }

  .h5-pf {
    font-size: 16px;
    line-height: 20px;
  }

  .media-top {
    object-fit: cover;
    background-image: url('../images/Flash4Race00015.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    flex: 0 auto;
    height: 700px;
  }

  .feature-card-2.small-2 {
    padding: 40px 40px 35px;
  }

  .features-list-2 {
    bottom: 20px;
  }

  .section-2a.haze {
    padding-top: 120px;
  }

  .section-4a.no-padding-bottom {
    padding-top: 0;
  }

  .feature-cards-3-2 {
    grid-template-columns: 1fr;
  }

  .logo-measure {
    width: 70%;
    height: auto;
    margin-bottom: 0;
  }

  .main-grid-2 {
    grid-template-columns: 900px 600px;
  }

  .mini-blocks-2 {
    margin-top: 80px;
  }

  .handle-wrapper, .image-right, .image-left, .handle-bar {
    height: 890px;
  }

  .mini-blocks-3 {
    margin-top: 20px;
  }

  .main-grid-6 {
    grid-template-columns: 900px 600px;
  }

  .button-car-1.nav-button, .button-car-2.nav-button {
    height: auto;
    font-size: 15px;
    line-height: 15px;
  }

  .features-list-22 {
    bottom: 20px;
  }

  .main-grid-22 {
    grid-template-columns: 1fr;
  }

  .nav-link-22, .nav-link-22.w--current {
    margin-left: 10px;
    margin-right: 0;
    font-size: 15px;
    line-height: 15px;
  }

  .section-22.haze {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .media-top-22 {
    object-fit: cover;
    background-image: url('../images/Innenraum_Audi.webp');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    flex: 0 auto;
    height: 600px;
  }

  .media-container-2 {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    left: auto;
    right: auto;
    overflow: visible;
  }

  .media-decoration-22.bottom-right {
    bottom: -28px;
  }

  .side-content-pf-22 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .mini-block-3-99 {
    width: 1350px;
  }

  .anchor-sticky-info-22 {
    margin-right: 0;
    top: 300px;
  }

  .section-9992 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .media-top-2222 {
    object-fit: cover;
    flex: 0 auto;
  }

  .card_scroll {
    height: 381px;
  }

  .features-list-22-2 {
    bottom: 20px;
  }

  .feature-cards-42-22 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .swiper-number-pagination {
    width: 1540px;
  }

  .snp-buttons-and-pagination {
    z-index: 210;
  }

  .snp-buttons-and-pagination.af {
    position: relative;
  }

  .swiper-slide.snp-item {
    width: 177px;
  }

  .swiper-slide.snp-item.mst4, .swiper-slide.snp-item.mst3, .swiper-slide.snp-item.mst5 {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    flex: none;
    width: 385px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.snp-item.mst1 {
    width: 385px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.snp-item.mst1.home {
    width: 513.3px;
  }

  .swiper-slide.snp-item.mst2 {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    flex: none;
    width: 385px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.mob {
    width: 177px;
  }

  .swiper-slide.mob.mst4, .swiper-slide.mob.mst3, .swiper-slide.mob.mst5 {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    flex: none;
    width: 385px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.mob.mst1 {
    width: 385px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.mob.mst2 {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    flex: none;
    width: 385px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar_link-block {
    font-size: 15px;
    line-height: 15px;
  }

  .hero-v3-heading-2 {
    font-size: 90px;
    line-height: 90px;
  }

  .wrapper-2 {
    max-width: 1600px;
    margin-bottom: 20px;
  }

  .footer-bottom-1 {
    justify-content: center;
  }

  .block-footer-xx {
    padding-right: 0;
    line-height: 1.2em;
  }

  .title-footer-xx {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 17px;
  }

  .feature-cards-5 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .side-blocks-about {
    padding-top: 120px;
  }

  .feature-card-info-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-grey-h-2 {
    margin-bottom: 25px;
  }

  .block-footer-1-1-2 {
    margin-right: 100px;
    line-height: 1.2em;
  }

  .block-footer-1-1-2-2 {
    margin-right: 160px;
    line-height: 1.2em;
  }

  .card_scroll-ex {
    height: 381px;
  }

  .checkboxes.maxwidth-470._22 {
    width: 100%;
  }

  .radio-button {
    min-height: 250px;
  }

  .div-block-971725 {
    grid-row-gap: 12px;
  }

  .wrapper-3-x {
    max-width: 1600px;
  }

  .features-home-22 {
    bottom: 20px;
  }

  .h5-home-3 {
    font-size: 20px;
  }

  .collaborate-form-step {
    min-height: 590px;
  }

  .collaborate-form-step._2 {
    min-height: 650px;
  }

  .col-x1-2 {
    grid-column-gap: 60px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .features-home-2-2 {
    grid-column-gap: 50px;
    bottom: 20px;
  }

  .col-5-3 {
    margin-top: 40px;
  }

  .textarea-2 {
    justify-content: space-between;
    width: 100%;
    min-height: 140px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .div-block-971732 {
    height: 40px;
  }

  .wrapper-44 {
    max-width: 1600px;
    margin-top: 60px;
  }

  .media-top-2222-33 {
    object-fit: cover;
    flex: 0 auto;
  }

  .text-grey-6 {
    width: 70%;
  }

  .collaborate-form-step-2 {
    min-height: 590px;
  }

  .vor-ort-3 {
    padding-top: 30px;
  }

  .contact-v2-media-2 {
    margin-bottom: 20px;
  }

  .section-top {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .section-last {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .section-last-bg {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .vor-ort-4 {
    padding-top: 30px;
  }

  .media-top-2222-44 {
    object-fit: cover;
    flex: 0 auto;
  }

  .div-block-971737 {
    grid-column-gap: 140px;
  }

  .lottie-animation {
    width: 120px;
  }
}

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

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3 {
    margin-bottom: 12px;
  }

  h5 {
    font-size: 17px;
  }

  h6 {
    font-size: 12px;
  }

  p {
    margin-bottom: 24px;
  }

  blockquote {
    padding: 12px 24px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section.haze {
    padding-top: 60px;
  }

  .section.top-image-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.hero-v1-section {
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .section.anchor-padding-top {
    padding-top: 80px;
  }

  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .wrapper.nav-bar-wrapper {
    align-items: center;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-bar {
    height: 70px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    background-color: #0000;
    border-radius: 7px;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    display: block;
  }

  .nav-link:hover {
    background-color: var(--rot);
    color: var(--white);
  }

  .nav-link.w--current {
    background-color: var(--rot);
    color: var(--white);
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
  }

  .nav-link.x11 {
    border-radius: 7px;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    display: inline;
  }

  .nav-link.x11:hover {
    background-color: var(--rot);
    color: var(--white);
  }

  .text-grey {
    margin-bottom: 24px;
  }

  .brand {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand.w--current {
    margin-left: 30px;
  }

  .nav-menu {
    border-bottom: 1px none var(--grey-4);
    background-color: var(--dunkelgrau);
    opacity: .99;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin-right: 0;
    padding: 100px 0 20px;
    display: flex;
    position: absolute;
    overflow: hidden;
  }

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

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

  .navigation {
    justify-content: flex-end;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .bg-elements {
    min-height: 420px;
  }

  .info {
    flex: none;
    display: none;
  }

  .input {
    box-shadow: inset 0 0 #0000;
  }

  .link {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .post-card-v3-content {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .nav-dropdown-icon {
    color: var(--grey-3);
    margin-right: 24px;
    font-size: 15px;
  }

  .dropdown-list.w--open {
    z-index: 1;
    background-color: var(--white);
    border-radius: 0;
    margin-top: -1px;
    margin-left: 0;
    padding: 0 16px 8px;
    position: relative;
    box-shadow: 0 1px #ffffff1f;
  }

  .dropdown-list.components-list.w--open {
    width: 100%;
    margin-left: 0;
  }

  .nav-dropdown-link {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
  }

  .nav-dropdown-link:hover {
    background-color: #0000;
  }

  .nav-dropdown-link.w--current {
    color: var(--dark);
  }

  .nav-dropdown-link.dropdown-grid-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .dropdown-corner, .dropdown-bridge {
    display: none;
  }

  .mini-blocks {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mini-block {
    margin-top: -1px;
    margin-left: -1px;
    padding: 8px 3%;
  }

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

  .feature-icon-left {
    padding-right: 0%;
  }

  .info-right {
    padding-left: 20px;
  }

  .menu-button {
    z-index: 99;
    background-color: #0000;
    display: block;
  }

  .menu-button.w--open {
    color: var(--dark);
    background-color: #0000;
  }

  .layout-box {
    padding: 8%;
  }

  .nav-dropdown-link-v2 {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-dropdown-link-v2:hover {
    background-color: #0000;
  }

  .nav-dropdown-link-v2.w--current {
    color: var(--dark);
  }

  .menu-icon-line-top, .menu-icon-line-bottom, .menu-icon-line-middle {
    background-color: var(--white);
  }

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

  .dots {
    height: 81px;
    top: 34%;
    bottom: -10%;
    left: -14%;
  }

  .circle-small {
    width: 10vw;
    top: 20%;
    right: 4%;
  }

  .question-simple {
    padding-right: 0;
  }

  .tab-link {
    padding: 16px;
  }

  .tabs-horisontal {
    margin-left: -16px;
    margin-right: -16px;
  }

  .feature-card {
    border-radius: 16px;
    justify-content: space-between;
    padding: 16px 16px 28px;
  }

  .feature-card.xx {
    flex-flow: column;
    justify-content: space-between;
  }

  .top-bar-close {
    right: 0;
  }

  .home-button {
    width: 32px;
  }

  .dropdown-header {
    display: none;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .pricing-features-left {
    padding-right: 0;
  }

  .pricing-features-right {
    padding-left: 0;
  }

  .hero-slider {
    height: 63vw;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
  }

  .contact-v2 {
    grid-column-gap: 32px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .contact-v2-media {
    border-radius: 0;
    flex: 0 auto;
    height: auto;
    margin-bottom: 20px;
  }

  .icon-box {
    width: 56px;
    height: 56px;
  }

  .icon-box.color-12 {
    height: 240px;
  }

  .media-container {
    margin-left: 0;
  }

  .media-decoration {
    border-radius: 32px;
    top: -24px;
    right: -24px;
  }

  .media-decoration.bottom-right {
    display: none;
    bottom: -24px;
    right: -24px;
  }

  .side-blocks {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

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

  .icon-list-item {
    font-size: 13px;
    line-height: 20px;
  }

  .hero-v3 {
    height: 95vh;
    max-height: none;
    margin-top: -70px;
  }

  .contact-v2-info {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-v2-form {
    margin-top: 32px;
    padding-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq-box {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    border-radius: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .gallery-slider {
    height: 64vw;
  }

  .team-member-bg-wrapper {
    height: 43vw;
  }

  .footer-v3-social-links {
    text-align: center;
    flex-wrap: wrap;
    flex: 1;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-v3-brand {
    margin-right: 14px;
  }

  .dropdown-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-heading {
    display: none;
  }

  .feature-card-info {
    flex: 1;
  }

  .intro-hero {
    height: auto;
    max-height: none;
    padding-top: 112px;
    padding-bottom: 144px;
  }

  .icon-box-home {
    width: 40px;
    height: 40px;
  }

  .icon-home {
    width: 36px;
  }

  .heading-3 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .text-grey-h {
    flex: 1;
    height: auto;
  }

  .feature-image-h {
    border-radius: 6px;
  }

  .feature-image-h.xx {
    height: 190px;
    margin-bottom: 24px;
  }

  .image-2 {
    width: 240px;
  }

  .footer-copyright-2 {
    text-align: center;
    font-size: 11px;
    display: block;
  }

  .copyright {
    margin-bottom: 10px;
    margin-right: 0;
    display: block;
  }

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

  .title-footer {
    margin-bottom: 10px;
  }

  .link-footer {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 15px;
  }

  .block-footer-1 {
    padding-right: 0;
  }

  .block-footer-2 {
    padding-left: 0;
  }

  .block-footer-5 {
    padding-left: 30px;
  }

  .button-h.nav-button {
    text-align: left;
    border-style: none;
    border-radius: 0;
    flex: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 15px;
    display: none;
    position: relative;
  }

  .section-hr {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-hr.top-section-v2 {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .section-recht {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-recht.haze {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .div-block-2.x {
    display: none;
  }

  .side-content-pf {
    text-align: center;
    align-items: center;
    max-width: 90%;
    padding-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .features-list {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    bottom: 50px;
  }

  .icon-box-pf {
    width: 40px;
    height: 40px;
  }

  .h5-pf {
    font-size: 13px;
    line-height: 16px;
  }

  .heading-3-2 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .media-top {
    border-radius: 20px;
    width: 80%;
    height: 750px;
  }

  .feature-card-2 {
    border-radius: 16px;
    padding: 16px 16px 28px;
  }

  .features-list-2 {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    bottom: 50px;
  }

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

  .section-2a.haze {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section-3a {
    padding-bottom: 60px;
  }

  .section-4a {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-4a.no-padding-bottom {
    padding-bottom: 60px;
  }

  .heading-33 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .mini-block-heading-2 {
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 24px;
  }

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

  .feature-cards-3-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .logo-measure {
    border-radius: 6px;
    width: 40%;
  }

  .main-grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .mini-blocks-2 {
    flex-flow: row;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mini-block-2 {
    width: 180px;
    margin-top: -1px;
    margin-left: -1px;
    padding: 8px 3%;
  }

  .mini-block-3 {
    width: 550px;
    margin-top: -1px;
    margin-left: -1px;
    padding: 8px 3%;
  }

  .features-3-2 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .lightbox-link {
    margin-top: 20px;
  }

  .section-pics {
    padding-top: 0;
    padding-bottom: 0;
  }

  .work-card-image-wrapper {
    margin-bottom: 0;
  }

  .handle-wrapper {
    width: 100%;
    max-width: none;
    height: 390px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .image-right {
    height: 390px;
  }

  .image-left {
    width: auto;
    height: 390px;
  }

  .handle-bar {
    height: 390px;
  }

  .mini-blocks-3 {
    flex-flow: row;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .main-grid-6 {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .intro-left-2, .intro-left-3 {
    z-index: 2;
    text-align: center;
    align-items: center;
    position: relative;
  }

  .faq-box-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-radius: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .intro-left-4 {
    z-index: 2;
    text-align: center;
    align-items: center;
    position: relative;
  }

  .div-block-5 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .button-car-1.nav-button {
    text-align: center;
    border-style: dashed;
    border-radius: 6px;
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 15px;
    display: block;
    position: relative;
  }

  .button-car-2.nav-button {
    text-align: left;
    flex: 0 auto;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 15px;
    display: block;
    position: relative;
  }

  .features-list-22 {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    bottom: 50px;
  }

  .section-999, .section-55 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-55.haze {
    padding-top: 60px;
  }

  .extra-kon {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .faq-box-22 {
    grid-row-gap: 60px;
    border-radius: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .main-grid-22 {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .nav-link-22 {
    background-color: #0000;
    border-radius: 7px;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    display: block;
  }

  .nav-link-22:hover {
    background-color: var(--rot);
    color: var(--white);
  }

  .nav-link-22.w--current {
    color: var(--rot);
    background-color: #0000;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 15px;
  }

  .nav-link-22.work {
    border-radius: 7px;
    display: none;
  }

  .section-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-22.haze {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .heading-33-3 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .mini-block-heading-2-22, .mini-block-heading-2-333 {
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 24px;
  }

  .side-blocks-2 {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .mini-block-description-2-a, .mini-block-description-2-2 {
    font-size: 13px;
    line-height: 20px;
  }

  .media-top-22 {
    border-radius: 20px;
    width: 90%;
    height: 450px;
  }

  .media-container-2 {
    margin-left: 0;
  }

  .media-decoration-22 {
    border-radius: 32px;
    top: -24px;
    right: -24px;
  }

  .media-decoration-22.bottom-right {
    display: none;
    bottom: -24px;
    right: -24px;
  }

  .side-content-pf-22 {
    text-align: center;
    align-items: center;
    max-width: 90%;
    padding-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-grey-222 {
    text-align: center;
  }

  .mini-block-2-99 {
    width: 180px;
    margin-top: -1px;
    margin-left: -1px;
    padding: 8px 3%;
  }

  .mini-block-3-99 {
    width: 550px;
    margin-top: -1px;
    margin-left: -1px;
    padding: 8px 3%;
  }

  .anchor-sticky-info-22 {
    text-align: center;
    align-items: center;
    margin-right: 0;
    position: static;
  }

  .mini-block-description-2-2-22 {
    font-size: 13px;
    line-height: 20px;
  }

  .html-embed-konf {
    height: 300px;
  }

  .map-big-2 {
    border-radius: 20px;
    height: 60vw;
  }

  .html-embed {
    text-align: left;
  }

  .side-blocks-eco {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    overflow: hidden;
  }

  .section-9992 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .media-decoration-2222 {
    border-radius: 32px;
    top: -24px;
    right: -24px;
  }

  .media-decoration-2222.bottom-right {
    display: none;
    bottom: -24px;
    right: -24px;
  }

  .media-top-2222 {
    border-radius: 20px;
    width: 90%;
    height: 500px;
  }

  .heading-3-22 {
    justify-content: center;
    align-items: stretch;
    font-size: 37px;
    line-height: 48px;
    display: block;
  }

  .heading-53 {
    width: 90%;
    margin-bottom: 30px;
  }

  .heading-32 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .mini-blocks-22 {
    width: 90%;
    padding: 30px 30px 20px;
  }

  .mini-block-description-2-a-2 {
    font-size: 16px;
    line-height: 23px;
  }

  .mini-block-33 {
    grid-column-gap: 0px;
    flex-flow: column;
    display: flex;
  }

  .card_scroll {
    height: 413px;
    bottom: 0%;
  }

  .heading-3-22-2 {
    justify-content: center;
    align-items: stretch;
    display: block;
  }

  .intro-22.margin-bottom, .intro-22.home {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .intro-22.home-1 {
    margin-bottom: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .div-block-9704 {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .button-h1-22 {
    margin-top: 20px;
  }

  .features-list-22-2 {
    grid-column-gap: 10px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    bottom: 50px;
  }

  .feature-cards-42-22 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .container-25 {
    background-color: #0000;
    max-width: 100%;
  }

  .swiper-number-pagination {
    background-color: #0000;
    width: auto;
    max-width: 100%;
    margin-left: 40px;
    margin-right: 40px;
  }

  .swiper-number-pagination.af {
    margin-left: auto;
    margin-right: auto;
  }

  .snp-buttons-and-pagination {
    max-width: 100%;
  }

  .snp-button-left {
    background-color: #fff9;
    left: 5px;
  }

  .swiper-slide.snp-item {
    width: 160px;
  }

  .swiper-slide.snp-item.mst4, .swiper-slide.snp-item.mst3, .swiper-slide.snp-item.mst5, .swiper-slide.snp-item.mst1, .swiper-slide.snp-item.mst2 {
    width: 328px;
  }

  .swiper-slide.mob {
    width: 160px;
  }

  .swiper-slide.mob.mst4, .swiper-slide.mob.mst3, .swiper-slide.mob.mst5, .swiper-slide.mob.mst1, .swiper-slide.mob.mst2 {
    width: 328px;
  }

  .snp-button-right {
    background-color: #fff9;
    right: 0;
  }

  .navbar_link-block {
    display: none;
  }

  .hero-v3-heading-2 {
    padding-top: 18px;
    font-size: 50px;
    line-height: 50px;
  }

  .hero-v3-2 {
    background-position: 42%;
    margin-top: -80px;
  }

  .wrapper-2 {
    margin-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .block-footer-xx {
    padding-right: 0;
  }

  .grid-footer-xx {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    display: none;
  }

  .title-footer-xx {
    margin-bottom: 10px;
  }

  .div-block-9710 {
    margin-top: 6px;
  }

  .feature-cards-5 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-9704-home {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .side-blocks-about {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .feature-card-info-2 {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-grey-h-2 {
    text-align: center;
    flex: 1;
    height: auto;
  }

  .link-2 {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .contact-v2-2 {
    grid-column-gap: 32px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .link-footer-3 {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 15px;
  }

  .accordion-heading-2 {
    line-height: 27px;
  }

  .block-footer-1-1-2, .div-block-9712-2 {
    display: none;
  }

  .nav-bg {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
  }

  .nav-bg.x {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .paragraph-3 {
    color: var(--grey-4);
    text-align: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
    display: block;
  }

  .logo-foo {
    grid-column-gap: 60px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }

  .block-footer-1-1-2-2 {
    margin-right: 0;
  }

  .div-block-9712-2-2 {
    margin-left: 0;
  }

  .container-28 {
    background-color: #0000;
    max-width: 100%;
  }

  .card_scroll-ex {
    height: 413px;
    bottom: 0%;
  }

  .checkboxes.maxwidth-470._22 {
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .col-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-97178 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .col-6 {
    grid-row-gap: 25px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .container-26 {
    background-color: #0000;
    max-width: 100%;
  }

  .radio-button {
    min-height: 160px;
  }

  .text-grey-222-2 {
    text-align: center;
  }

  .icon-list-item-2 {
    font-size: 13px;
    line-height: 20px;
  }

  .h5-home-2-2 {
    font-size: 13px;
    line-height: 16px;
  }

  .features-home-22 {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: grid;
    bottom: 50px;
  }

  .icon-box-home-3 {
    width: 30px;
    height: 30px;
  }

  .h5-home-3 {
    font-size: 16px;
    line-height: 18px;
  }

  .step-paginator {
    flex-flow: column;
  }

  .collaborate-form-step {
    min-height: 970px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .submit-button-2 {
    margin-bottom: 20px;
  }

  .col-x1-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .features-home-2-2 {
    grid-template-columns: 1fr 1fr;
    bottom: 50px;
  }

  .col-5-3 {
    flex-flow: column;
    margin-left: 0;
    margin-right: 0;
  }

  .col-3-3 {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-centered-home-2-2-2 {
    grid-column-gap: 6px;
  }

  .icon-box-home-2-2 {
    width: 30px;
    height: 30px;
  }

  .form-x-2 {
    height: 45px;
  }

  .text-grey-4 {
    margin-bottom: 24px;
  }

  .wrapper-44 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .media-top-2222-33 {
    border-radius: 20px;
    width: 90%;
    height: 500px;
  }

  .text-grey-6 {
    width: 85%;
    margin-top: 30px;
  }

  .section-oh {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .collaborate-form-step-2 {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    min-height: 970px;
    display: flex;
  }

  .div-block-971733 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 970px;
  }

  .vor-ort-3 {
    display: none;
  }

  .contact-v2-info-2 {
    grid-template-rows: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-v2-media-2 {
    border-radius: 0;
    flex: 0 auto;
    height: auto;
    margin-bottom: 20px;
  }

  .section-top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-last {
    padding-bottom: 60px;
  }

  .section-last-bg {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .vor-ort-4 {
    box-shadow: none;
    opacity: .4;
    background-color: #0000;
    width: 100%;
    margin-top: 100px;
    padding: 0;
    display: block;
  }

  .contact-v2-info-2-x {
    grid-template-rows: auto;
    padding-left: 16px;
    padding-right: 16px;
    display: none;
  }

  .media-top-2222-44 {
    border-radius: 20px;
    width: 90%;
    height: 500px;
  }

  .submit-button-af {
    margin-bottom: 20px;
  }

  .side-blocks-eco-1 {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    overflow: hidden;
  }

  .section-oh-2 {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .div-block-971737 {
    grid-column-gap: 30px;
  }

  .div-block-971738, .div-block-971739 {
    grid-auto-columns: 1fr;
  }

  .contact-v1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .section-thx {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

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

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 24px;
  }

  .section, .section.top-image-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.hero-v1-section {
    padding-top: 64px;
  }

  .section.anchor-padding-top {
    padding-top: 60px;
  }

  .nav-bar {
    height: 60px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
  }

  .nav-link.w--current, .nav-link.x11 {
    font-size: 20px;
    line-height: 24px;
  }

  .brand.w--current {
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 0;
  }

  .nav-menu {
    opacity: .99;
  }

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

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

  .page-wrapper {
    overflow: hidden;
  }

  .navigation {
    margin-right: 0;
  }

  .post-card-v3 {
    border-radius: 16px;
    padding: 12px;
  }

  .post-card-v3-content {
    padding-top: 10px;
  }

  .mini-blocks {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .review-v9 {
    padding: 6px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .info-right {
    padding-left: 16px;
  }

  .layout-box {
    padding-left: 6%;
    padding-right: 6%;
  }

  .contact-form {
    padding-top: 16px;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .main-grid {
    grid-row-gap: 48px;
  }

  .dots {
    width: 226px;
    height: 71px;
    top: 38%;
  }

  .circle-small {
    width: 15vw;
    top: 17%;
  }

  .post-card-v3-heading {
    margin-bottom: 0;
  }

  .accordion-header {
    min-height: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .accordion-text {
    margin-left: 4px;
    margin-right: 4px;
    padding-bottom: 24px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .accordion-plus {
    width: 14px;
    height: 14px;
  }

  .question-simple {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .tab-link {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
    font-size: 13px;
    line-height: 16px;
  }

  .tabs-horisontal {
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 20px;
  }

  .top-bar-close {
    width: 32px;
  }

  .top-button {
    display: none;
  }

  .hero-slider {
    height: 68vw;
  }

  .icon-box {
    width: 52px;
    height: 52px;
  }

  .side-blocks {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .hero-v3 {
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-v2-form {
    margin-top: 0;
  }

  .faq-box {
    border-radius: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-v3-brand {
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-v3-brand.w--current {
    padding-left: 0;
  }

  .footer-v3-content {
    flex-flow: column wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .intro-hero {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .image {
    width: 304px;
    height: 45px;
  }

  .feature-centered-home {
    width: 100%;
  }

  .icon-box-home {
    width: 45px;
    height: 45px;
  }

  .icon-home {
    width: 32px;
    height: 32px;
  }

  .feature-image-h {
    border-radius: 8px;
  }

  .footer-copyright-2 {
    font-size: 11px;
  }

  .grid-footer {
    grid-row-gap: 22px;
    grid-template-columns: 1fr 1fr;
  }

  .title-footer {
    margin-bottom: 10px;
  }

  .link-footer {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .block-footer-5 {
    padding-left: 0;
  }

  .div-block {
    height: auto;
    display: none;
  }

  .post-card-home {
    border-radius: 8px;
    height: 200px;
  }

  .button-h.nav-button {
    font-size: 14px;
    line-height: 14px;
    display: none;
  }

  .section-hr {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-hr.top-section-v2 {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .section-recht {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .side-content-pf {
    padding-left: 12%;
    padding-right: 12%;
  }

  .features-list {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    bottom: 40px;
  }

  .icon-box-pf {
    width: 45px;
    height: 45px;
  }

  .feature-card-2 {
    padding: 20px 20px 32px;
  }

  .features-list-2 {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    bottom: 40px;
  }

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

  .section-2a.haze, .section-3a {
    padding-top: 60px;
  }

  .section-4a, .section-2aa {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature-cards-3-2 {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 20%;
    padding-right: 20%;
  }

  .logo-measure {
    border-radius: 8px;
  }

  .main-grid-2 {
    grid-row-gap: 48px;
  }

  .mini-blocks-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .features-3-2 {
    grid-row-gap: 48px;
  }

  .section-pics {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .work-card-image-wrapper {
    margin-bottom: 0;
  }

  .handle-wrapper {
    width: auto;
    min-width: 500px;
    height: auto;
    display: none;
  }

  .mini-blocks-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .main-grid-6 {
    grid-row-gap: 48px;
  }

  .faq-box-2 {
    border-radius: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .button-car-1.nav-button, .button-car-2.nav-button {
    font-size: 14px;
    line-height: 14px;
    display: block;
  }

  .features-list-22 {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    bottom: 40px;
  }

  .section-999 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-55 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-55.haze {
    padding-bottom: 10px;
  }

  .faq-box-22 {
    border-radius: 16px;
  }

  .main-grid-22 {
    grid-row-gap: 20px;
  }

  .nav-link-22 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
  }

  .nav-link-22.w--current {
    font-size: 14px;
    line-height: 14px;
  }

  .section-22 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-22.haze {
    padding-top: 80px;
  }

  .heading-33-3 {
    font-size: 32px;
    line-height: 38px;
  }

  .side-blocks-2 {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .media-top-22 {
    height: 400px;
  }

  .anchor-sticky-info-22 {
    position: static;
  }

  .slider {
    background-color: var(--haze);
  }

  .accordion-header-2 {
    min-height: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .side-blocks-eco {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .section-9992 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .media-top-2222 {
    height: 400px;
  }

  .heading-3-22 {
    font-size: 33px;
    line-height: 39px;
  }

  .mini-blocks-22 {
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .mini-block-description-2-a-2 {
    font-size: 16px;
    line-height: 23px;
  }

  .card_scroll {
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    height: 410px;
  }

  .div-block-9704 {
    margin-top: 60px;
  }

  .features-list-22-2 {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    bottom: 40px;
  }

  .container-25 {
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-number-pagination {
    margin-left: 0;
    margin-right: 0;
  }

  .snp-buttons-and-pagination {
    z-index: 230;
  }

  .snp-button-left {
    background-size: 16px;
    width: 30px;
  }

  .snp-button-left.home {
    background-color: var(--white);
    opacity: 100;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    left: -10px;
  }

  .snp-button-right {
    background-size: 16px;
    width: 30px;
  }

  .snp-button-right.home {
    background-color: var(--white);
    opacity: 100;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    right: -10px;
  }

  .form {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-flow: column;
    height: auto;
  }

  .div-block-9707, .div-block-9707._1 {
    border-radius: 5px;
  }

  .navbar_link-2 {
    font-size: 18px;
  }

  .submit-button {
    border-radius: 5px;
    width: 100%;
  }

  .hero-v3-intro-2 {
    align-items: center;
    margin-top: 320px;
    position: relative;
  }

  .hero-v3-heading-2 {
    color: var(--white);
    padding-top: 16px;
    font-size: 37px;
    line-height: 37px;
  }

  .hero-v3-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-top: 0;
    padding-bottom: 0;
  }

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

  .footer-bottom-1 {
    flex-wrap: wrap;
  }

  .footer-v3-content-1 {
    flex-flow: column wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-footer-xx {
    grid-row-gap: 22px;
    grid-template-columns: 1fr;
  }

  .title-footer-xx {
    margin-bottom: 10px;
  }

  .div-block-9710 {
    background-color: var(--haze);
    grid-template-rows: auto;
    width: 80%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    display: block;
    position: relative;
  }

  .feature-cards-5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding-left: 20px;
    padding-right: 20px;
  }

  .side-blocks-about {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
    overflow: hidden;
  }

  .link-footer-3 {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .accordion-item-2 {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion-item-content {
    margin-right: 0;
  }

  .accordion-item-3 {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-bg, .nav-bg.x {
    margin-bottom: 10px;
  }

  .logo-foo {
    grid-column-gap: 0px;
  }

  .block-footer-1-1-2-2 {
    margin-right: 10px;
  }

  .div-block-9712-2-2 {
    margin-left: 10px;
  }

  .container-28 {
    padding-left: 0;
    padding-right: 0;
  }

  .card_scroll-ex {
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    height: 410px;
  }

  .field_label.large-x {
    display: inline-block;
  }

  .field {
    width: 100%;
  }

  .checkboxes.maxwidth-470._22 {
    grid-column-gap: 8px;
    grid-row-gap: 10px;
  }

  .checkbox-label-2.is--clickable-off._33 {
    font-size: 14px;
  }

  .div-block-97171 {
    flex: 1;
  }

  .col-4 {
    grid-auto-columns: 1fr;
  }

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

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

  .container-26 {
    padding-left: 0;
    padding-right: 0;
  }

  .features-home-22 {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    flex-flow: column;
    align-items: flex-start;
    padding-left: 20px;
    display: flex;
    bottom: 40px;
  }

  .feature-centered-home-3 {
    width: 100%;
  }

  .icon-box-home-3 {
    width: 34px;
    height: 34px;
  }

  .h5-home-3 {
    font-size: 15px;
  }

  .collaborate-form-step {
    min-height: 1210px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-9709-2-3 {
    display: none;
  }

  .div-block-9709-33 {
    border-color: var(--grey-2);
  }

  .features-home-2-2 {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    bottom: 40px;
  }

  .col-5-3 {
    margin-top: 0;
  }

  .col-3-3 {
    margin-bottom: 48px;
  }

  .div-block-971732 {
    grid-column-gap: 5px;
  }

  .feature-centered-home-2-2-2 {
    width: 100%;
  }

  .icon-box-home-2-2 {
    width: 45px;
    height: 45px;
  }

  .form-x-2 {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-flow: column;
    height: auto;
  }

  .submit-button-3 {
    border-radius: 5px;
    width: 100%;
  }

  .wrapper-44 {
    margin-top: 30px;
  }

  .media-top-2222-33 {
    height: 400px;
  }

  .text-grey-6 {
    width: 90%;
  }

  .section-oh {
    padding-top: 60px;
  }

  .collaborate-form-step-2, .div-block-971733 {
    min-height: 1210px;
  }

  .accordion-item-3-last {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-top {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-last {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .section-last-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .media-top-2222-44 {
    height: 400px;
  }

  .side-blocks-eco-1 {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .bg-mob {
    background-image: linear-gradient(#14141466, #14141466), url('../images/f4r_web_1.avif');
    background-position: 0 0, 50% 30%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 360px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .section-oh-2 {
    padding-top: 60px;
  }

  .div-block-971737 {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-971738 {
    grid-auto-columns: 1fr;
  }

  .section-thx {
    padding-top: 60px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-bottom: 10px;
  }

  .section.haze {
    padding-top: 40px;
  }

  .section.top-image-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .wrapper.af {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link {
    color: var(--white);
    background-color: #0000;
    margin: 10px 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 20px;
    display: block;
  }

  .nav-link:hover {
    background-color: var(--rot);
  }

  .nav-link.w--current {
    background-color: var(--rot);
    margin-left: 0;
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .nav-link.x11 {
    font-size: 16px;
    line-height: 20px;
  }

  .utility-page-content {
    width: 100%;
  }

  .intro.margin-bottom {
    margin-bottom: 20px;
  }

  .text-label {
    align-self: center;
  }

  .brand.w--current {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 0;
  }

  .nav-menu {
    background-color: var(--dunkelgrau);
    opacity: .99;
    border-bottom-style: none;
    width: 100%;
    padding-bottom: 20px;
  }

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

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

  .input {
    min-width: 0;
  }

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

  .nav-dropdown-link, .nav-dropdown-link.dropdown-grid-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mini-blocks {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mini-block {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .feature-icon-left {
    padding-right: 0;
  }

  .info-right {
    padding-left: 20px;
  }

  .password-card {
    padding: 40px;
  }

  .contact-form {
    margin-top: 10px;
  }

  .main-grid {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .dots {
    width: 160px;
    height: 82px;
    bottom: -12%;
  }

  .circle-small {
    width: 17vw;
    top: 22%;
    right: 6%;
  }

  .question-simple {
    padding-right: 0;
  }

  .tab-link {
    padding: 12px;
  }

  .tabs-horisontal {
    border-bottom-style: none;
  }

  .hero-slider {
    height: 150vw;
  }

  .list-dropdown {
    background-color: var(--white);
    border-radius: 7px;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-top: 8px;
    margin-bottom: -32px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 12px #0000001c;
  }

  .contact-v2-media {
    height: auto;
  }

  .icon-box.color-12 {
    height: 160px;
    margin-bottom: 10px;
  }

  .media-decoration {
    border-radius: 28px;
    top: -16px;
    right: -16px;
  }

  .media-decoration.bottom-right {
    bottom: -16px;
    right: -16px;
  }

  .side-blocks {
    grid-row-gap: 40px;
  }

  .pricing-centered {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-card {
    padding-bottom: 60px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .pricing-card-info {
    padding-top: 0;
  }

  .pricing-card-list {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

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

  .hero-v3 {
    height: 93vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-v2-info {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-v2-form {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-box {
    padding: 30px 20px;
  }

  .gallery-slider {
    height: 80vw;
  }

  .team-member-bg-wrapper {
    height: 52vw;
  }

  .footer-v3-social-links {
    flex-wrap: wrap;
    margin: 10px auto 0;
  }

  .footer-v3-brand {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-v3-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .icon-box-home {
    width: 40px;
    height: 40px;
  }

  .icon-home {
    width: 28px;
    height: 28px;
  }

  .heading-3 {
    text-align: center;
    justify-content: center;
    line-height: 30px;
    display: block;
  }

  .text-grey-h {
    height: auto;
  }

  .feature-image-h {
    width: 100%;
    height: auto;
  }

  .image-2 {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-copyright-2 {
    text-align: center;
    font-size: 11px;
  }

  .grid-footer {
    grid-row-gap: 25px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .title-footer {
    margin-bottom: 10px;
  }

  .link-footer {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .block-footer-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .block-footer-2, .block-footer-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .div-block {
    height: auto;
  }

  .button-h2.white-2, .button-h2.white-2-2 {
    height: auto;
    padding: 11px 25px 12px;
    font-size: 18px;
  }

  .button-h.nav-button {
    text-align: left;
    border-style: none;
    flex: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 14px;
    transition: background-color .4s;
    display: none;
    position: relative;
  }

  .page-content-recht {
    max-width: 100%;
  }

  .h3-recht {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
  }

  .text-recht {
    font-size: 12px;
    line-height: 14px;
  }

  .h4-recht {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .section-hr.top-section-v2 {
    padding-bottom: 20px;
  }

  .section-recht.haze {
    padding-top: 40px;
  }

  .checkbox-field-2-kontakt {
    padding-top: 10px;
  }

  .side-content-pf {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .features-list {
    grid-template-columns: 1fr 1fr;
  }

  .icon-box-pf {
    width: 40px;
    height: 40px;
  }

  .h5-pf {
    letter-spacing: -.2px;
    font-size: 12px;
    line-height: 14px;
  }

  .heading-3-2 {
    text-align: center;
    justify-content: center;
    font-size: 23px;
    line-height: 30px;
    display: block;
  }

  .media-top {
    width: 90%;
    height: 400px;
  }

  .feature-card-2.small-2 {
    padding: 25px 20px 20px;
  }

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

  .section-2a.haze, .section-3a {
    padding-bottom: 40px;
  }

  .text-span-6 {
    font-size: 18px;
    line-height: 22px;
  }

  .text-block-6 {
    font-size: 14px;
  }

  .heading-33 {
    text-align: center;
    justify-content: center;
    display: block;
  }

  .feature-cards-3-2 {
    grid-template-rows: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-measure {
    width: 50%;
    height: auto;
  }

  .main-grid-2 {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .mini-blocks-2 {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mini-block-2 {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mini-block-3 {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 20px 4%;
  }

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

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

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

  .work-card-image-wrapper {
    margin-bottom: 0;
  }

  .handle-wrapper {
    width: 100%;
    min-width: auto;
    height: 170px;
    display: none;
  }

  .image-right, .image-left {
    width: 100%;
    height: 170px;
    display: none;
  }

  .handle-bar {
    height: 160px;
    display: none;
  }

  .circle-wrapper {
    width: 40px;
    height: 40px;
  }

  .before {
    width: 80px;
    font-size: 13px;
    display: none;
    top: 10px;
    left: 10px;
  }

  .handle {
    font-size: 14px;
    line-height: 14px;
  }

  .after {
    width: 80px;
    display: none;
    top: 10px;
    right: 10px;
  }

  .mini-blocks-3 {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-grid-6 {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-box-2 {
    padding: 40px 30px;
  }

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

  .button-car-1.nav-button {
    text-align: center;
    border-style: dashed;
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px 15px;
    font-size: 14px;
    line-height: 14px;
    transition: background-color .4s;
    display: block;
    position: relative;
  }

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

  .features-2-2.side-version {
    grid-row-gap: 40px;
  }

  .div-block-6 {
    grid-column-gap: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .button-car-2.nav-button {
    text-align: left;
    flex: 0 auto;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 14px;
    transition: background-color .4s;
    display: block;
    position: relative;
  }

  .features-list-22 {
    grid-template-columns: 1fr 1fr;
  }

  .section-55.haze {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .pic-beisp {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    bottom: 10px;
    right: 10px;
  }

  .faq-box-22 {
    padding: 30px;
  }

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

  .nav-link-22 {
    background-color: #0000;
    margin: 10px 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 20px;
    display: block;
  }

  .nav-link-22:hover {
    background-color: var(--rot);
  }

  .nav-link-22.w--current {
    color: var(--rot);
    background-color: #0000;
    margin-left: 0;
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 14px;
  }

  .section-22.haze {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .heading-33-3 {
    text-align: center;
    justify-content: center;
    font-size: 22px;
    line-height: 28px;
    display: block;
  }

  .mini-block-heading-2-22 {
    align-self: center;
  }

  .text-label-222 {
    align-self: flex-start;
  }

  .mini-block-heading-2-333 {
    align-self: center;
  }

  .side-blocks-2 {
    grid-row-gap: 40px;
  }

  .mini-block-description-2-a, .mini-block-description-2-2 {
    font-size: 14px;
  }

  .media-top-22 {
    width: 90%;
    height: 200px;
  }

  .media-decoration-22 {
    border-radius: 28px;
    top: -16px;
    right: -16px;
  }

  .media-decoration-22.bottom-right {
    bottom: -16px;
    right: -16px;
  }

  .side-content-pf-22 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mini-block-2-99 {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mini-block-3-99 {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 20px 4%;
  }

  .anchor-sticky-info-22 {
    flex-direction: column;
    margin-right: 0;
    display: block;
  }

  .mini-block-description-2-2-22 {
    font-size: 14px;
  }

  .map-big-2 {
    border-radius: 16px;
    height: 100vw;
  }

  .image-7 {
    width: 60px;
  }

  .wa {
    display: block;
  }

  .side-blocks-eco {
    grid-row-gap: 40px;
  }

  .heading-52 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .section-9992 {
    padding-top: 20px;
  }

  .media-decoration-2222 {
    border-radius: 28px;
    top: -16px;
    right: -16px;
  }

  .media-decoration-2222.bottom-right {
    bottom: -16px;
    right: -16px;
  }

  .media-top-2222 {
    width: 90%;
    height: 230px;
  }

  .heading-3-22 {
    text-align: center;
    justify-content: center;
    font-size: 20px;
    line-height: 25px;
    display: block;
  }

  .heading-32 {
    text-align: center;
    justify-content: center;
    font-size: 30px;
    line-height: 30px;
    display: block;
  }

  .mini-blocks-22 {
    flex-direction: column;
    width: 90%;
    padding: 0 20px;
  }

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

  .heading-533 {
    font-size: 16px;
  }

  .mini-block-description-2-a-2 {
    font-size: 16px;
    line-height: 23px;
  }

  .mini-block-33 {
    box-shadow: 0 1px 0 0 var(--grey-4);
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .card_scroll {
    height: 400px;
  }

  .wrapper_media {
    padding-bottom: 10px;
  }

  .heading-3-22-2 {
    text-align: center;
    justify-content: center;
    font-size: 23px;
    line-height: 31px;
    display: block;
  }

  .features-list-22-2 {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .feature-cards-42-22 {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    margin-top: 30px;
  }

  .container-25 {
    display: none;
  }

  .snp-buttons-and-pagination.af {
    flex-flow: column;
    height: auto;
  }

  .snp-button-left.home.af {
    margin-bottom: 8px;
  }

  .snp-button-left.home.af.w--current {
    margin-bottom: 6px;
  }

  .swiper-slide.snp-item, .swiper-slide.mob {
    width: 100%;
  }

  .swiper-slide.mob.mst4, .swiper-slide.mob.mst3, .swiper-slide.mob.mst5 {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-slide.mob.mst1 {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-slide.mob.mst2 {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .navbar_link-2 {
    font-size: 17px;
  }

  .hero-v3-intro-2 {
    max-width: 95%;
    margin-top: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v3-heading-2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 38px;
    line-height: 38px;
  }

  .wrapper-2 {
    margin-bottom: 20px;
  }

  .footer-bottom-1 {
    flex-wrap: wrap;
  }

  .footer-v3-content-1 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .block-footer-xx {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .grid-footer-xx {
    grid-row-gap: 25px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .title-footer-xx {
    margin-bottom: 10px;
  }

  .div-block-9710 {
    width: 95%;
  }

  .feature-cards-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-9704-home {
    margin-top: 40px;
  }

  .side-blocks-about {
    grid-row-gap: 40px;
    padding-top: 60px;
  }

  .text-grey-h-2 {
    height: auto;
  }

  .link-footer-3 {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .accordion-heading-2 {
    font-size: 18px;
    line-height: 24px;
  }

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

  .block-footer-1-1-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .accordion-item-3 {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-2 {
    line-height: 20px;
  }

  .nav-bg {
    height: 40px;
    margin-bottom: 15px;
  }

  .nav-bg.x {
    margin-bottom: 15px;
  }

  .logo-foo {
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .block-footer-1-1-2-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-bottom: 0;
    display: flex;
  }

  .div-block-9712-2-2 {
    margin-left: 0;
  }

  .container-28 {
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .card_scroll-ex {
    height: auto;
  }

  .checkboxes.maxwidth-470._22 {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .image-13 {
    width: 150px;
  }

  .div-block-971725 {
    grid-row-gap: 15px;
  }

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

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

  .h5-home-2-2 {
    letter-spacing: -.2px;
    font-size: 12px;
    line-height: 14px;
  }

  .features-home-22 {
    grid-template-columns: 1fr 1fr;
    width: 95%;
    padding-left: 0;
  }

  .icon-box-home-3 {
    width: 32px;
    height: 32px;
  }

  .h5-home-3 {
    letter-spacing: -.2px;
    font-size: 12px;
    line-height: 14px;
  }

  .mask {
    height: 100%;
    position: static;
  }

  .form-wrapper {
    padding: 0;
  }

  .form-content {
    width: 100%;
  }

  .step-paginator {
    height: auto;
    padding-bottom: 0;
  }

  .previous {
    max-width: 75px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    inset: auto 0 0;
  }

  .collaborate-form-step {
    width: 100%;
    min-height: 1480px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .next {
    margin-bottom: 50px;
  }

  .next-button.af {
    padding-top: 7px;
  }

  .next-button.af.x {
    padding: 7px 10px;
  }

  .submit-button-2 {
    margin-bottom: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

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

  .icon-box-home-2-2 {
    width: 40px;
    height: 40px;
  }

  .checkbox-field-2-kontakt-2 {
    padding-top: 10px;
  }

  .wrapper-44 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .media-top-2222-33 {
    width: 90%;
    height: 230px;
  }

  .text-grey-6 {
    width: 100%;
    margin-top: 25px;
  }

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

  .collaborate-form-step-2 {
    width: 100%;
    min-height: 1480px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-971733 {
    min-height: 1480px;
  }

  .contact-v2-info-2 {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-v2-media-2 {
    height: auto;
  }

  .accordion-item-3-last {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-top {
    padding-bottom: 60px;
  }

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

  .section-last-bg {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .contact-v2-info-2-x {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .media-top-2222-44 {
    width: 90%;
    height: 230px;
  }

  .submit-button-af {
    margin-bottom: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .side-blocks-eco-1 {
    grid-row-gap: 40px;
  }

  .bg-mob {
    background-image: linear-gradient(#14141466, #14141466), url('../images/f4r_web_1.avif');
    background-position: 0 0, 30% 30%;
    height: 300px;
  }

  .section-oh-2 {
    padding-bottom: 40px;
  }

  .div-block-971734 {
    grid-column-gap: 8px;
  }

  .heading-6 {
    font-size: 11px;
  }

  .div-block-971735 {
    grid-column-gap: 2px;
  }

  .contact-v1 {
    margin-bottom: 0;
  }

  .vor-ort-5 {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .pop-up-box {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 48px 24px 16px;
  }

  .pop-up-header {
    font-size: 29px;
  }
}

#w-node-fb1934b8-7f7a-5828-14d9-9446a3cffcf3-69b76313 {
  justify-self: auto;
}

#w-node-d67315d3-d4c1-0ebc-67df-f81d0402760a-69b76313 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e2c17f59-e92c-284b-2166-f3676b059770-69b76313 {
  place-self: center;
}

#w-node-_01a6cbb0-0a36-d67a-31b3-a205993a9584-69b76313 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_7a18feb3-5b10-e616-5a1b-28a90464c9c6-15a85fe5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d62773e5-bca8-6e38-bedd-f254c3fd67ac-15a85fe5, #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67c5-15a85fe5, #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67a9-15a85fe5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_3bd0e415-b864-5f5a-27a4-513867eda36c-15a85fe5 {
  place-self: center end;
}

#w-node-a0105f01-fe85-eea6-a3f5-bc65fdac5433-69b76379, #w-node-a0105f01-fe85-eea6-a3f5-bc65fdac5435-69b76379 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a0105f01-fe85-eea6-a3f5-bc65fdac5439-69b76379 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-e9f84b48-9df4-0294-9547-07e1296c1d4c-69b7638e {
  place-self: center;
}

#w-node-_22c31c7a-a6be-6e88-b095-04ebcfe299ae-69b7638e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_72634ee5-6f1e-b435-e800-da861d1880e4-69b7638e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_72634ee5-6f1e-b435-e800-da861d1880e8-69b7638e {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-a8683f2e-d65c-1596-858f-b23dba0db7b3-69b763cb, #w-node-e33b8ea0-486d-2377-3a49-a53949bc095f-69b763cb, #w-node-a8683f2e-d65c-1596-858f-b23dba0db7cc-69b763cb {
  align-self: start;
}

#w-node-a8683f2e-d65c-1596-858f-b23dba0db7da-69b763cb, #w-node-_3cf1fe9e-121d-dfcf-28b7-89f8218819f1-69b763cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a8683f2e-d65c-1596-858f-b23dba0db7de-69b763cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-cc4d5da9-c2ca-c777-02a0-e051e475177d-69b763cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-cc4d5da9-c2ca-c777-02a0-e051e4751787-69b763cd {
  justify-self: auto;
}

#w-node-cc4d5da9-c2ca-c777-02a0-e051e4751789-69b763cd {
  place-self: center;
}

#w-node-_6ceb70fc-dd50-64f4-1ad2-0a72f6c3228f-69b763d2 {
  place-self: auto;
}

#w-node-_6ceb70fc-dd50-64f4-1ad2-0a72f6c32292-69b763d2 {
  place-self: center;
}

#w-node-_9f703eb6-e1ee-4823-a348-1bacc85f0f1a-69b76404 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-b7bdd050-157d-0689-2a84-8bbb6d279f1b-69b76405, #w-node-b7bdd050-157d-0689-2a84-8bbb6d279f1d-69b76405 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b7bdd050-157d-0689-2a84-8bbb6d279f21-69b76405 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_1f581b4c-1489-d605-dc37-32ce106060b6-69b76406, #w-node-_1f581b4c-1489-d605-dc37-32ce106060b8-69b76406 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1f581b4c-1489-d605-dc37-32ce106060bc-69b76406 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e5d-69b7640e, #w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e5f-69b7640e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e63-69b7640e {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf3-c1896aab, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf5-c1896aab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf9-c1896aab {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf3-3f86535d, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf5-3f86535d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf9-3f86535d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf3-50278fdd, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf5-50278fdd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf9-50278fdd {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf3-e026f4a1, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf5-e026f4a1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf9-e026f4a1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-adee8b9f-01d4-3d22-5a2a-eb9f0bf97172-3f8b1f0d, #w-node-d2fd93ac-3504-91b0-ea47-5bd7abd8ad6f-3f8b1f0d {
  place-self: center;
}

#w-node-_295fa487-01f1-f410-7148-35f73be28aff-ef4c829d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ac0cde8e-10a3-36b1-b45f-507a95997797-ef4c829d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8683f2e-d65c-1596-858f-b23dba0db7b3-fac65b4a, #w-node-a8683f2e-d65c-1596-858f-b23dba0db7b3-850eefbf {
  align-self: start;
}

@media screen and (min-width: 1920px) {
  #w-node-d67315d3-d4c1-0ebc-67df-f81d0402760a-69b76313 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-cc4d5da9-c2ca-c777-02a0-e051e475177d-69b763cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_6ceb70fc-dd50-64f4-1ad2-0a72f6c3228f-69b763d2 {
    place-self: auto;
  }

  #w-node-ac0cde8e-10a3-36b1-b45f-507a9599770a-ef4c829d {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_6ceb70fc-dd50-64f4-1ad2-0a72f6c3228f-69b763d2 {
    align-self: auto;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-d67315d3-d4c1-0ebc-67df-f81d0402760a-69b76313 {
    grid-column: span 1 / span 1;
  }

  #w-node-_6ceb70fc-dd50-64f4-1ad2-0a72f6c32292-69b763d2 {
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-d67315d3-d4c1-0ebc-67df-f81d0402760a-69b76313 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7a18feb3-5b10-e616-5a1b-28a90464c9c6-15a85fe5 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67ac-15a85fe5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67c5-15a85fe5 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67a9-15a85fe5 {
    grid-area: 1 / 3 / 2 / 4;
    align-self: center;
  }

  #w-node-_3bd0e415-b864-5f5a-27a4-513867eda36c-15a85fe5 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-d5426b9a-c5da-c82f-6e2d-46b6cd6d772e-15a85fe5 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_22c31c7a-a6be-6e88-b095-04ebcfe299ae-69b7638e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_72634ee5-6f1e-b435-e800-da861d1880e4-69b7638e {
    grid-area: 1 / 2 / 2 / 8;
  }

  #w-node-_72634ee5-6f1e-b435-e800-da861d1880e8-69b7638e {
    grid-area: 2 / 2 / 3 / 8;
  }

  #w-node-cc4d5da9-c2ca-c777-02a0-e051e475177d-69b763cd {
    grid-area: 1 / 1 / 2 / 2;
    align-self: start;
  }

  #w-node-_9f703eb6-e1ee-4823-a348-1bacc85f0f1a-69b76404 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-ac0cde8e-10a3-36b1-b45f-507a9599772d-ef4c829d {
    grid-area: 2 / 2 / 3 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7a18feb3-5b10-e616-5a1b-28a90464c9c6-15a85fe5, #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67ac-15a85fe5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67c5-15a85fe5 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67a9-15a85fe5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d5426b9a-c5da-c82f-6e2d-46b6cd6d772e-15a85fe5 {
    grid-column: 2 / 3;
  }

  #w-node-a0105f01-fe85-eea6-a3f5-bc65fdac542b-69b76379, #w-node-a0105f01-fe85-eea6-a3f5-bc65fdac542d-69b76379, #w-node-a0105f01-fe85-eea6-a3f5-bc65fdac542f-69b76379, #w-node-a0105f01-fe85-eea6-a3f5-bc65fdac5431-69b76379 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_72634ee5-6f1e-b435-e800-da861d1880e4-69b7638e, #w-node-_72634ee5-6f1e-b435-e800-da861d1880e8-69b7638e {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-a8683f2e-d65c-1596-858f-b23dba0db7ce-69b763cb, #w-node-_4e022da3-02a9-7e82-9f4d-5923058a664e-69b763cb, #w-node-a8683f2e-d65c-1596-858f-b23dba0db7d2-69b763cb, #w-node-f5dde395-a8c8-461b-f3c9-fc95cbc8f92d-69b763cb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9781476f-ac1f-6957-5922-c9eee0ea3a64-69b763d2, #w-node-_9781476f-ac1f-6957-5922-c9eee0ea3a6e-69b763d2, #w-node-f8adfb03-a8e4-3f91-f682-9e8ea07e7fda-69b763d2, #w-node-_54ca10d7-5436-b25f-db64-d3ae0db6ebbd-69b763d2, #w-node-e3d450d4-df48-d495-2528-14a69f27f835-69b763d2, #w-node-_063c808e-3756-776d-a6a8-83e7e6acf751-69b763d2 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-b7bdd050-157d-0689-2a84-8bbb6d279f13-69b76405, #w-node-b7bdd050-157d-0689-2a84-8bbb6d279f15-69b76405, #w-node-b7bdd050-157d-0689-2a84-8bbb6d279f17-69b76405, #w-node-b7bdd050-157d-0689-2a84-8bbb6d279f19-69b76405, #w-node-_1f581b4c-1489-d605-dc37-32ce106060ae-69b76406, #w-node-_1f581b4c-1489-d605-dc37-32ce106060b0-69b76406, #w-node-_1f581b4c-1489-d605-dc37-32ce106060b2-69b76406, #w-node-_1f581b4c-1489-d605-dc37-32ce106060b4-69b76406, #w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e55-69b7640e, #w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e57-69b7640e, #w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e59-69b7640e, #w-node-_00da866e-3503-5c75-40a6-5cfd59bb2e5b-69b7640e, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbeb-c1896aab, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbed-c1896aab, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbef-c1896aab, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf1-c1896aab, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbeb-3f86535d, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbed-3f86535d, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbef-3f86535d, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf1-3f86535d, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbeb-50278fdd, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbed-50278fdd, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbef-50278fdd, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf1-50278fdd, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbeb-e026f4a1, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbed-e026f4a1, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbef-e026f4a1, #w-node-f9fddec4-a1d6-71bd-e85f-31de31defbf1-e026f4a1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #box1.w-node-_991a50ab-1383-c5ec-6220-e79d94624a31-3f8b1f0d, #box2.w-node-c3ff7361-0a1a-3e5b-7b73-45afeb578374-3f8b1f0d, #box3.w-node-c7f0ec16-ab86-f836-d74c-943f4eec2f90-3f8b1f0d, #w-node-c7f0ec16-ab86-f836-d74c-943f4eec2f97-3f8b1f0d {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_295fa487-01f1-f410-7148-35f73be28aff-ef4c829d {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7a18feb3-5b10-e616-5a1b-28a90464c9c6-15a85fe5 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67ac-15a85fe5 {
    grid-row: 1 / 2;
    grid-column-start: 1;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67c5-15a85fe5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d62773e5-bca8-6e38-bedd-f254c3fd67a9-15a85fe5 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-_3bd0e415-b864-5f5a-27a4-513867eda36c-15a85fe5 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-d5426b9a-c5da-c82f-6e2d-46b6cd6d772e-15a85fe5 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_22c31c7a-a6be-6e88-b095-04ebcfe299ae-69b7638e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_72634ee5-6f1e-b435-e800-da861d1880e4-69b7638e, #w-node-_72634ee5-6f1e-b435-e800-da861d1880e8-69b7638e {
    grid-column: span 4 / span 4;
  }

  #w-node-cc4d5da9-c2ca-c777-02a0-e051e475177d-69b763cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: auto;
  }

  #w-node-ac0cde8e-10a3-36b1-b45f-507a9599772d-ef4c829d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Caladea';
  src: url('../fonts/Caladea-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('../fonts/Caladea-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('../fonts/Caladea-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('../fonts/Caladea-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-Bold.ttf') format('truetype'), url('../fonts/Inconsolata-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconso';
  src: url('../fonts/Inconsolata-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lat';
  src: url('../fonts/Lato-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Racingsansone';
  src: url('../fonts/RacingSansOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fugazone';
  src: url('../fonts/FugazOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}