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

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

@font-face {
  font-family: "Inter Tight Cyrillic 400";
  src: url('../fonts/inter-tight-cyrillic-400-normal.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight Cyrillic 500";
  src: url('../fonts/inter-tight-cyrillic-500-normal.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Helvetica Neue W 01 77 Bd Cn Obl";
  src: url('../fonts/Helvetica-Neue-W01-77-Bd-Cn-Obl.ttf') format("truetype"), url('../fonts/Helvetica-Neue-W01-77-Bd-Cn-Obl.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue Ltw 0697 Blkcnobl";
  src: url('../fonts/Helvetica-Neue-LTW0697BlkCnObl.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Typekiln Eloquiatext;
  src: url('../fonts/Typekiln---EloquiaText-ExtraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Typekiln Eloquiadisplay;
  src: url('../fonts/Typekiln---EloquiaDisplay-ExtraBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arial;
  src: url('../fonts/HelveticaNeueLight.otf') format("opentype"), url('../fonts/HelveticaNeueLight.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arial;
  src: url('../fonts/HelveticaNeueBlack.otf') format("opentype"), url('../fonts/HelveticaNeueBlack.otf') format("opentype"), url('../fonts/HelveticaNeueBlack.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arial;
  src: url('../fonts/HelveticaNeueBold.otf') format("opentype"), url('../fonts/HelveticaNeueBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: helvatice;
  src: url('../fonts/HelveticaNeueBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: helvatice;
  src: url('../fonts/HelveticaNeueMedium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --highlights-color: #8c4588;
  --white: white;
  --light-grey: #333;
  --black: black;
}

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

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

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

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

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

.utility-page-wrap {
  background-color: var(--highlights-color);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
  position: absolute;
  inset: auto auto 0%;
}

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

.submit-button {
  background-color: #ecbf38;
}

.logo-img {
  object-fit: contain;
  height: 14vh;
}

.logo {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  display: flex;
}

.logo.ber-button {
  position: fixed;
  inset: auto 0% 15% auto;
}

.heading-logo {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 400;
  line-height: 30px;
  display: block;
}

.telefonnummer {
  margin-bottom: 5px;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  line-height: 1.3;
}

.ffnungszeiten {
  margin-bottom: 5px;
}

.hauptfarbe {
  color: #fff;
  background-color: #0f0000;
}

.email {
  margin-bottom: 5px;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  line-height: 1.3;
}

.zweitfarbe {
  color: #000;
  background-color: #f0f0f0;
}

.highlights {
  color: #fff;
  background-color: #8c4588;
}

.adresse {
  margin-bottom: 5px;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  line-height: 1.5;
}

.google-maps {
  width: 100%;
  height: 100%;
}

.heading-1 {
  letter-spacing: 1px;
  font-family: helvatice, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.3;
}

.heading-2 {
  letter-spacing: 1px;
  font-family: helvatice, Arial, sans-serif;
  font-weight: 100;
  line-height: 1.3;
}

.heading-3 {
  font-family: helvatice, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.flie-text {
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.farbe-der-headings {
  color: #8c4588;
  line-height: 1.3;
}

.navbar1 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: static;
}

.terminbutton {
  text-transform: uppercase;
  font-family: Exo, sans-serif;
}

.terminbutton:hover {
  background-color: #292929;
}

.terminbutton.highlights {
  font-family: Roboto, sans-serif;
}

.terminbutton.highlights:hover {
  background-color: #161616;
}

.divblock1 {
  text-align: center;
  width: auto;
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 0;
  padding-bottom: 20px;
}

.datenschutz, .impressum {
  color: #fff;
  text-decoration: none;
}

.bold-text-9 {
  font-family: Droid Sans, sans-serif;
}

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

.men-2 {
  width: 100%;
}

.nav-link2 {
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.nav-link2:hover {
  color: gray;
}

.nav-link2.w--current {
  color: #ebe3de;
}

.nav-link2.flie-text {
  transition: all .2s;
}

.nav-link2.flie-text:hover {
  color: #acacac;
  font-size: 16px;
  text-decoration: underline;
}

.nav-link2.flie-text.w--current {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}

.nav-link2.flie-text.w--current:hover {
  font-size: 14px;
}

.inhalt-men-punkte2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.titelvideo-start-3 {
  height: 90vh;
  position: relative;
}

.video2 {
  color: #fff;
  background-image: linear-gradient(#00000036, #00000036);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 0;
  display: flex;
  position: static;
}

.vido_block_50 {
  grid-row-gap: 10px;
  width: 50%;
  height: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 8vw;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.slogan {
  color: var(--white);
  text-align: left;
  letter-spacing: 2px;
  text-transform: capitalize;
  font-size: 65px;
  font-weight: 400;
  line-height: 1.2;
}

.startseite2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 10vw;
  display: flex;
}

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

.heading-start2 {
  text-align: center;
  text-transform: capitalize;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 80px;
}

.heading-start2.heading-2, .heading-start2.heading-2.farbe-der-headings {
  line-height: 1.3;
}

.text2 {
  text-align: center;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}

.text2.flie-text {
  text-align: center;
  line-height: 1.5;
}

.text2.flie-text.left {
  text-align: left;
}

.serviceangebote2 {
  width: 60%;
  min-width: auto;
  margin-top: 50px;
}

.heading-mittig-klein1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 30px;
}

.heading-mittig-klein1.heading-2 {
  line-height: 1.3;
}

.heading-mittig-klein1.heading-2.farbe-der-headings {
  font-weight: 700;
}

.inhaltstartseite2 {
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 10vw;
  display: flex;
}

.inhaltstartseite2.zweitfarbe {
  justify-content: center;
  align-items: center;
}

.kontaktaufnehmen2 {
  grid-column-gap: 130px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer2 {
  justify-content: space-around;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer2.hauptfarbe.flie-text {
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0;
  padding-left: 100px;
  padding-right: 140px;
}

.iconfooter2 {
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.footer-inhalt3 {
  display: inline-block;
  position: static;
}

.headingfooter2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.titelvideo-3 {
  height: 500px;
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
}

.karte1 {
  width: 100%;
  margin-top: 20px;
}

.kontakt2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  display: flex;
}

.impdat-3 {
  padding: 100px 40px;
}

.success-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.sucess-block {
  border: 2px solid #000;
  justify-content: center;
  align-items: center;
  padding: 100px;
  display: flex;
}

.sucess-block.highlights {
  color: #fff;
}

.heading-success {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: helvatice, Arial, sans-serif;
}

.footer-div {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.div-block-footer1 {
  justify-content: space-between;
  height: 99.9998%;
  padding-bottom: 20px;
  display: flex;
}

.footer-1 {
  padding: 60px 10vw;
}

.footer-1.hauptfarbe {
  justify-content: space-around;
}

.heading-footer {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

.inhalt-footer {
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-right: 30px;
  display: flex;
}

.content-wrap {
  z-index: 1;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  inset: auto;
}

.content-wrap.no {
  padding-left: 0;
  padding-right: 0;
}

.checkbox-field {
  text-align: left;
}

.link-formular {
  text-decoration: none;
}

.navigation-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-right: 15px;
  font-size: 40px;
  line-height: 50px;
  display: flex;
  position: relative;
}

.navigation-link.heading-1 {
  color: #000;
  text-decoration: none;
  transition: all .2s;
}

.navigation-link.heading-1:hover {
  transform: scale(1.1);
}

.navigation-line {
  width: 3px;
  height: 30px;
  margin-top: 1px;
  position: absolute;
  transform: skew(-15deg);
}

.top-title-text {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 26px;
  line-height: 34px;
}

.navigation-text {
  z-index: 1;
  margin-left: 20px;
  line-height: 40px;
  position: relative;
}

.navigation {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 20px 25px;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.text-field {
  background-color: #fff;
  border: 1px solid #000;
  border-bottom-color: #e9e9f8;
  min-height: 40px;
}

.text-field.area {
  min-height: auto;
  padding-bottom: 55px;
}

.right-part-overlay {
  z-index: 1;
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.navigation-divider {
  width: 1px;
  height: 30px;
  margin-left: 18px;
  margin-right: 18px;
  transform: skew(-15deg);
}

.left-part {
  z-index: 3;
  float: left;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.field-label-2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 11px;
}

.big-paragraph {
  margin-bottom: 0;
  font-size: 17px;
}

.line-first {
  background-color: #000;
  border-radius: 5px;
  width: 22px;
  height: 2px;
  position: absolute;
}

.line-first.top {
  margin-top: -12px;
}

.line-first.bottom {
  margin-top: 12px;
}

.navigation-first {
  align-items: center;
  width: 100%;
  display: flex;
}

.top-title.half {
  margin-bottom: 60px;
}

.form-block-2 {
  width: 100%;
}

.navigation-menu {
  z-index: 9;
  width: 0%;
  display: block;
  position: fixed;
  inset: 0%;
}

.quote-wrapper {
  z-index: 9;
  opacity: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 450px;
  display: none;
  position: relative;
}

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

.button-wrapper.submit {
  width: 100%;
  margin-top: 15px;
  padding: 16px 30px;
}

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

.right-part {
  z-index: 3;
  float: right;
  background-color: #f1f1f7;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 0%;
  height: 100%;
  display: flex;
  position: relative;
}

.navigation-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 350px;
  display: block;
}

.full-part {
  background-color: #fff;
  width: 0%;
  height: 100%;
  display: none;
}

.left-part-overlay {
  z-index: 1;
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.form {
  width: 100%;
}

.hamburger-menu {
  cursor: pointer;
  background-color: #ffffff80;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.maps-gro {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.maos-footer {
  justify-content: center;
  width: 100%;
  min-width: 250px;
  height: 120px;
  display: flex;
}

.link {
  color: var(--white);
  text-decoration: none;
  display: block;
}

.link.dark {
  color: var(--light-grey);
}

.impdat-2 {
  min-height: 80vh;
  padding: 100px 40px;
}

.impdat-2.flie-text {
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  display: flex;
}

.impressum-link, .datenschutz-link {
  color: #fff;
  text-decoration: none;
}

.html-embed-maps {
  height: 100%;
}

.navbar-6 {
  width: 100%;
}

.navbar-6.hauptfarbe {
  box-shadow: 0 2px 5px #fff3;
}

.navbar-6.hauptfarbe:hover {
  font-size: 16px;
  font-weight: 700;
}

.nav-link-3 {
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.nav-link-3:hover {
  color: gray;
}

.nav-link-3.w--current {
  color: #ebe3de;
}

.nav-link-3.flie-text {
  font-size: 15px;
}

.nav-link-3.flie-text:hover {
  color: #a4489f;
}

.nav-link-3.flie-text.w--current {
  color: var(--highlights-color);
}

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

.image-wrapper {
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.image-100 {
  object-fit: cover;
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
}

.ablaufplan-big-button-3 {
  z-index: 2;
  color: #fff;
  background-color: #d4af37;
  border-radius: 30px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20px;
  text-decoration: none;
  transition: all .2s;
}

.ablaufplan-big-button-3:hover {
  transform: scale(1.03);
}

.ablaufplan-big-button-3.black.ablaufplan {
  margin-top: -2px;
  top: 10px;
}

.ablaufplan-big-button-3.black {
  z-index: 10000;
  color: #fff;
  background-color: #000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 16px;
  position: fixed;
  inset: 60px auto auto 0%;
}

.ablaufplan-big-button-3.black:hover {
  transform: none;
}

.card {
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  padding: 30px 20px;
  display: flex;
}

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

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

.heading-links {
  text-align: left;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
}

.heading-links.heading-2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.service-cards {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
}

.service-cards:hover {
  background-color: var(--highlights-color);
  color: var(--white);
}

.text-2-links {
  text-align: left;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 170%;
}

.text-2-links.flie-text.klein {
  font-size: 14px;
}

.grid_4er {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
}

._3er-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.package-cards {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  background-color: var(--white);
  border: 1px solid #dfdfdf;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px;
  transition: all .5s;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.package-cards:hover {
  transform: translate(0, -10px);
}

.tabs-menu2 {
  border-bottom: 1px solid var(--highlights-color);
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.menu-card-tabs {
  border: 1px solid var(--white);
  background-color: var(--highlights-color);
  color: var(--white);
}

.menu-card-tabs.w--current {
  background-color: #fff;
}

.menu-card-tabs.heading-font1.w--current {
  border: 1px solid var(--highlights-color);
  color: var(--black);
}

.content-container {
  padding: 40px;
}

.tab-men-2-2, .tab-men-3 {
  z-index: 1;
  background-color: #fff;
  width: 100%;
  margin-top: 40px;
  padding: 40px 60px;
  box-shadow: 2px 2px 10px 2px #0000004d;
}

.icon {
  object-fit: contain;
  width: 35px;
  height: 35px;
}

.info-block {
  margin-top: 40px;
}

.slider {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
}

.image-100-contain {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.navbar {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw;
  display: flex;
}

.div-navbar {
  order: -1;
  display: flex;
}

.nav-menu-3 {
  z-index: 10000;
}

.navbar-new {
  z-index: 1000;
  background-color: #fff;
  justify-content: space-between;
  width: 100%;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  position: sticky;
  top: 0%;
  box-shadow: 0 2px 5px #0003;
}

.link-block, .link-block-liestungen {
  color: #333;
  text-decoration: none;
}

.link-block-liestungen.white {
  color: #fff;
}

.image-103 {
  object-fit: contain;
  width: 40px;
  height: 40px;
}

.social-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 1% 45% auto;
}

.button_round {
  grid-column-gap: 8px;
  border: 1px solid var(--white);
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 22px;
  display: flex;
}

.button_round.heading-3 {
  color: var(--white);
  border-radius: 80px;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
}

.btn-text-2 {
  width: 100%;
  height: 18px;
  margin-bottom: 5px;
  overflow: hidden;
}

.btn-text-1 {
  text-align: center;
}

.hero_text_block {
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  position: absolute;
  inset: 0%;
}

.heading-left {
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 80px;
}

.heading-left.heading-2 {
  font-weight: 700;
  line-height: 1.5;
}

.heading-left.heading-2.farbe-der-headings {
  font-weight: 700;
}

.card-border {
  grid-row-gap: 30px;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 30px 20px;
  display: flex;
}

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

.button {
  grid-column-gap: 8px;
  border: 1px solid var(--white);
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 22px;
  display: flex;
}

.button.heading-3 {
  border-radius: 80px;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
}

.button.heading-3-small {
  border-radius: 80px;
  font-size: 12px;
  line-height: 22px;
  text-decoration: none;
}

.button.heading-3-small.highlights {
  padding: 10px 12px;
}

.icon-inverted {
  filter: invert();
  object-fit: contain;
  width: 20px;
  height: 20px;
}

.service-image {
  width: 100%;
  height: 50vh;
  position: relative;
}

.left_align_card {
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

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

.underline-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #fffc;
  padding-bottom: 6px;
  padding-left: 0;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 12px;
  text-decoration: none;
  position: relative;
}

.underline-link.dark {
  color: var(--black);
  border-bottom-color: #333;
}

.left_align_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 50px;
  display: flex;
}

.left_align_block.white {
  background-color: #fff;
}

.button-secondary-2 {
  justify-content: center;
  align-items: center;
  transition: all .35s;
  display: flex;
}

.button-dark {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-171 {
  height: 30vh;
  margin-bottom: 10px;
}

.list-4 {
  padding-left: 20px;
}

.image-small {
  object-fit: cover;
  width: 100%;
  height: 20vh;
  margin-bottom: 20px;
}

.service-wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.service-image-wrap {
  width: 30%;
  position: relative;
}

.service-img {
  object-fit: cover;
  width: 100%;
  min-height: 480px;
  max-height: 480px;
}

.service {
  width: 100%;
  max-width: 66%;
}

.service-link {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  color: #333;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 22px;
  text-decoration: none;
  display: grid;
}

.service-link:hover {
  border-bottom-color: #00000080;
}

.service-title-wrap {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.service-data {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.service-text {
  width: 100%;
  max-width: 70%;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.service-text.kleiner {
  max-width: 60%;
  font-size: 14px;
}

.block-40padding {
  border: 1px solid #0000001a;
  padding: 40px;
}

.testimonial-text-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.dropdown-content {
  background-color: #fff;
  padding-top: 30px;
  position: static;
  overflow: hidden;
}

.dropdown-content.w--open {
  background-color: #fff;
}

.dropdown-icon {
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 14px;
}

.text-block-3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 12px;
}

.testimonial {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 480px;
  padding: 30px 20px;
  display: flex;
  position: relative;
  box-shadow: 0 0 6px #d7d7d7;
}

.testimonial-button {
  border-radius: 50px;
  padding-left: 30px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
}

.testimonial-button.highlights {
  white-space: normal;
  border-radius: 50px;
}

.testimonial-button.highlights.w--open {
  margin-left: 0;
  margin-right: auto;
}

.testimonial-dropdown {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.grid-col-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.button-drop {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-left: 0;
  display: flex;
}

.testimonial-button-copy {
  border-radius: 50px;
  margin-left: 0;
  padding-left: 30px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
}

.testimonial-button-copy.highlights {
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.button-10 {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  padding: .75rem 1.05rem .75rem 1.15rem;
  font-family: Typekiln Eloquiadisplay, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

.dropdown-link-4 {
  color: #fff;
}

.dropdown-link-4.w--current {
  color: #a4489f;
  background-color: #fff;
  border: 1px solid #a4489f;
}

.dropdown-link-5 {
  color: #fff;
}

.dropdown-link-5.w--current {
  color: #a4489f;
  background-color: #fff;
  border: 1px solid #a4489f;
}

.dropdown-link-5._100 {
  width: 100%;
}

.dropdown-link-5._1 {
  font-size: 17px;
}

.dropdown-link-5.highlight {
  font-size: 17.5px;
}

.text-block-4:hover {
  color: #a4489f;
}

.dropdown-link-6 {
  color: #fff;
}

.dropdown-link-6.w--current {
  color: #a4489f;
  background-color: #fff;
  border: 1px solid #a4489f;
}

.icon-8 {
  color: #a4489f;
}

.nav-link-5 {
  text-transform: uppercase;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
}

.nav-link-5:hover, .nav-link-5.w--current, .nav-link-5.heading-font3.w--current {
  color: #a4489f;
}

.dropdown-list-14, .dropdown-list-14.w--open {
  background-color: #a4489f;
}

.heading-left-2 {
  font-size: 35px;
  line-height: 120%;
}

.inhalt-kontakt {
  justify-content: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.content-left {
  width: 100%;
}

.send-button {
  text-transform: uppercase;
  border-radius: 80px;
  padding: 12px 22px;
}

.send-button:hover {
  background-color: #292929;
}

.form-2 {
  border: 1px solid #dfdfdf;
  transition: all .2s;
}

.form-2:hover {
  border-color: #5e5e5e;
}

.form-2.oben {
  margin-top: 10px;
}

.form-block {
  margin-top: 15px;
  margin-bottom: 15px;
}

.contactcard {
  width: 100%;
  margin-right: 0;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.heading-center {
  text-align: center;
  text-transform: capitalize;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 80px;
}

.heading-center.heading-2 {
  line-height: 1.3;
}

.heading-center.heading-2.farbe-der-headings {
  font-weight: 700;
  line-height: 1.3;
}

.info-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.footer-title {
  color: var(--white);
  margin-bottom: 22px;
  font-family: helvatice, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.logo_footer {
  width: 120px;
  margin-bottom: 32px;
}

.footer-link-dark {
  color: var(--white);
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Typekiln Eloquiatext, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
  display: block;
}

.footer-link-dark:hover {
  color: var(--highlights-color);
}

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

.footer-title-copy {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 700;
}

.dropdown-content-padding {
  background-color: #fff;
  padding: 30px 20px 20px;
  position: static;
  overflow: hidden;
}

.dropdown-content-padding.w--open {
  background-color: #fff;
}

.absolute_block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% -5% 0% auto;
}

.link_contact {
  background-color: var(--highlights-color);
  border-radius: 100px;
  width: 3rem;
  padding: 10px;
}

.div-15-rem {
  width: 15.5rem;
}

.image-108 {
  box-sizing: border-box;
  object-fit: contain;
}

.text-2-links-list {
  text-align: left;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 170%;
}

.wrapp {
  overflow-wrap: anywhere;
}

.dropdown-list-15 {
  inset: 0% auto 0% 0%;
}

.dropdown-list-15.w--open {
  background-color: var(--highlights-color);
  bottom: auto;
  left: 100%;
}

.dropdown {
  width: 100%;
}

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

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

@media screen and (max-width: 991px) {
  .logo.w--current {
    padding-top: 0;
  }

  .telefonnummer, .email {
    margin-bottom: 5px;
  }

  .divblock1 {
    padding-bottom: 20px;
  }

  .men-icon2 {
    color: #fff;
  }

  .titelvideo-start-3 {
    height: 60vh;
  }

  .vido_block_50 {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px;
  }

  .slogan.heading-1 {
    text-align: center;
    font-size: 35px;
  }

  .startseite2 {
    padding: 60px;
  }

  .heading-start2 {
    font-size: 60px;
    line-height: 60px;
  }

  .heading-start2.heading-2.farbe-der-headings {
    font-size: 35px;
    line-height: 1.3;
  }

  .serviceangebote2 {
    width: 90%;
  }

  .heading-mittig-klein1.heading-2 {
    font-size: 19px;
  }

  .inhaltstartseite2 {
    justify-content: flex-start;
    align-items: center;
    padding: 60px;
  }

  .inhaltstartseite2.zweitfarbe {
    padding: 60px;
  }

  .kontaktaufnehmen2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .kontaktaufnehmen2.zweitfarbe {
    padding: 60px;
  }

  .footer2.hauptfarbe.flie-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .karte1 {
    width: 100%;
  }

  .impdat-3 {
    padding: 60px;
  }

  .sucess-block {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .sucess-block.highlights {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-success {
    font-size: 23px;
    line-height: 36px;
  }

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

  .footer-1.hauptfarbe {
    padding: 20px 40px;
  }

  .heading-footer.heading-3 {
    font-size: 12px;
  }

  .inhalt-footer {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-right: 0;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .men-icon1 {
    color: #fff;
  }

  .image-wrapper {
    height: 50vh;
  }

  .image-wrapper.first {
    order: -1;
  }

  .image-100 {
    min-height: auto;
    max-height: none;
  }

  .ablaufplan-big-button-3.black.ablaufplan {
    top: 70px;
  }

  .ablaufplan-big-button-3.black {
    top: 20px;
  }

  .card {
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

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

  .service-cards {
    justify-content: flex-start;
    align-items: center;
  }

  .text-2-links.flie-text {
    text-align: center;
  }

  .text-2-links.flie-text.left {
    text-align: left;
  }

  .grid_4er {
    flex-flow: column;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .tabs-menu2 {
    flex-flow: column;
  }

  .menu-card-tabs.heading-font1 {
    text-align: center;
  }

  .content-container {
    padding: 20px;
  }

  .tab-men-2-2 {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
  }

  .tab-men-3 {
    width: 90%;
  }

  .icon, .info-block {
    margin-top: 10px;
  }

  .slider {
    height: 50vh;
    min-height: auto;
    max-height: none;
  }

  .navbar {
    padding: 0 0;
  }

  .nav-menu-3 {
    background-color: var(--white);
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-button {
    background-color: var(--highlights-color);
    text-align: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .menu-button.w--open {
    background-color: var(--highlights-color);
  }

  .navbar-new {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .image-103 {
    width: 35px;
    height: 35px;
  }

  .social-buttons {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .heading-left {
    font-size: 60px;
    line-height: 60px;
  }

  .heading-left.heading-2 {
    text-align: center;
    font-size: 26px;
  }

  .heading-left.heading-2.farbe-der-headings {
    text-align: center;
    font-size: 26px;
    line-height: 1.3;
  }

  .card-border {
    grid-row-gap: 0px;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .button.heading-3.highlights {
    margin-left: auto;
    margin-right: auto;
  }

  .button.heading-3.highlights._100 {
    width: 100%;
  }

  .button.heading-3-small.highlights {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .left_align_card {
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .left_align_block.zweitfarbe {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .left_align_block.white {
    width: 100%;
    padding: 20px;
  }

  .button-secondary-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .service-wrap {
    flex-flow: column;
  }

  .service-image-wrap {
    width: 100%;
    height: auto;
  }

  .service-img {
    min-height: auto;
    max-height: none;
  }

  .service-img.size {
    height: 50vh;
  }

  .service {
    max-width: 100%;
  }

  .service-link {
    flex-flow: column;
    display: flex;
  }

  .service-title-wrap {
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
  }

  .service-data {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .service-text {
    text-align: center;
    max-width: none;
  }

  .service-text.kleiner {
    font-size: 16px;
  }

  .testimonial-text-block {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .testimonial {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .testimonial-dropdown {
    margin-left: auto;
    margin-right: auto;
  }

  .grid-col-2 {
    flex-flow: column;
    display: flex;
  }

  .testimonial-button-copy.highlights {
    margin-left: auto;
    margin-right: auto;
  }

  .icon-7 {
    color: #fff;
  }

  .dropdown-link-5._1 {
    text-align: left;
  }

  .text-block-4 {
    color: var(--highlights-color);
  }

  .nav-link-5 {
    color: #fff;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-5.heading-font3 {
    color: var(--highlights-color);
  }

  .dropdown-list-14.w--open {
    background-color: var(--highlights-color);
    position: relative;
  }

  .heading-left-2.heading-2.farbe-der-headings {
    text-align: center;
    font-size: 30px;
  }

  .inhalt-kontakt {
    flex-flow: column;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contactcard {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-center {
    font-size: 60px;
    line-height: 60px;
  }

  .heading-center.heading-2.farbe-der-headings {
    font-size: 35px;
    line-height: 1.3;
  }

  .footer-column {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .footer-column.oben {
    margin-top: 163px;
  }

  .footer-link-dark {
    margin-right: 0;
    padding-top: 5px;
    padding-bottom: 0;
  }

  .footer-link-dark.oben {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    place-items: start center;
    display: flex;
  }

  .absolute_block.social {
    flex-flow: column;
    padding-right: 10px;
    position: fixed;
    inset: auto 0% 19% auto;
  }

  .link_contact {
    width: 35px;
    padding: 6px;
  }

  .div-15-rem {
    width: auto;
  }

  .dropdown-toggle-12 {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-18 {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .grid-19, .grid-20, .grid-21, .grid-22, .grid-23, .grid-24, .grid-25, .grid-26, .grid-27, .grid-28, .grid-29, .grid-30 {
    flex-flow: column;
    display: flex;
  }

  .text-2-links-list.flie-text {
    text-align: left;
  }

  .grid-31, .grid-32, .grid-33, .grid-34, .grid-35 {
    flex-flow: column;
    display: flex;
  }

  .grid-36 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .grid-37, .grid-38 {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 25px;
    line-height: 30px;
  }

  .divblock1 {
    height: auto;
  }

  .impdat1-2.flie-text {
    text-align: center;
  }

  .titelvideo-start-3 {
    height: 28rem;
  }

  .video2, .vido_block_50 {
    height: 100%;
  }

  .slogan.heading-1 {
    font-size: 30px;
    line-height: 35px;
  }

  .startseite2 {
    padding: 40px;
  }

  .heading-start2.heading-2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 45px;
  }

  .heading-start2.heading-2.farbe-der-headings {
    font-size: 45px;
    line-height: 45px;
  }

  .text2 {
    padding-bottom: 40px;
  }

  .inhaltstartseite2, .inhaltstartseite2.zweitfarbe {
    padding: 40px;
  }

  .kontaktaufnehmen2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .kontaktaufnehmen2.zweitfarbe {
    padding: 40px;
  }

  .footer2.hauptfarbe.flie-text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .iconfooter2 {
    justify-content: flex-start;
  }

  .footer-inhalt3 {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .columns-14 {
    width: 100%;
  }

  .headingfooter2 {
    text-align: center;
  }

  .headingfooter2.heading-3 {
    text-align: left;
  }

  .karte1 {
    height: auto;
  }

  .kontakt2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .kontakt2.zweitfarbe {
    padding-left: 40px;
    padding-right: 40px;
  }

  .impdat-3 {
    padding: 40px;
  }

  .success-2, .sucess-block {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-div {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }

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

  .footer-1.hauptfarbe {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .maps-gro {
    height: 400px;
  }

  .maos-footer {
    height: 100px;
  }

  .image-wrapper {
    height: 25rem;
  }

  .text-2-links {
    padding-bottom: 40px;
  }

  .text-2-links.flie-text {
    padding-bottom: 0;
  }

  .tabs-menu2 {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-card-tabs, .menu-card-tabs.w--current {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-men-2-2 {
    padding: 20px 40px;
  }

  .tab-men-3 {
    width: 100%;
    margin-top: 20px;
    padding: 20px 40px;
  }

  .icon {
    margin-top: 0;
  }

  .slider {
    height: 25rem;
  }

  .navbar {
    flex-direction: column;
  }

  .social-buttons {
    margin-bottom: 100px;
    margin-right: 10px;
    inset: auto 0% 0% auto;
  }

  .heading-left.heading-2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 31px;
  }

  .heading-left.heading-2.farbe-der-headings {
    font-size: 22px;
    line-height: 30px;
  }

  .button.heading-3-small.highlights {
    font-size: 15px;
  }

  .service-image {
    height: 25rem;
  }

  .left_align_block.zweitfarbe {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-image-wrap {
    margin-bottom: 20px;
  }

  .service-img.size {
    height: 25rem;
  }

  .service-title-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .service-text.kleiner {
    max-width: none;
  }

  .inhalt-kontakt {
    flex-direction: column;
  }

  .contactcard {
    height: 25rem;
  }

  .heading-center.heading-2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 45px;
  }

  .heading-center.heading-2.farbe-der-headings {
    font-size: 30px;
    line-height: 35px;
  }

  .footer-column {
    padding-right: 0;
  }

  .footer-column.oben {
    margin-top: 0;
  }

  .footer-title {
    margin-bottom: 5px;
  }

  .logo_footer {
    width: 111px;
  }

  .footer-grid {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
  }

  .footer-title-copy {
    margin-bottom: 5px;
  }

  .absolute_block.social {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding-right: 0;
    inset: auto 0% 0% auto;
  }

  .div-15-rem {
    width: auto;
  }

  .text-2-links-list {
    padding-bottom: 40px;
  }

  .text-2-links-list.flie-text {
    padding-bottom: 0;
    padding-left: 20px;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 150%;
  }

  h2 {
    font-size: 24px;
    line-height: 150%;
  }

  h3 {
    font-size: 20px;
    line-height: 150%;
  }

  .utility-page-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .flie-text {
    overflow-wrap: anywhere;
  }

  .terminbutton.highlights {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .video2 {
    height: 100%;
  }

  .vido_block_50 {
    height: 100.07%;
  }

  .slogan.heading-1 {
    font-size: 22px;
    line-height: 30px;
  }

  .startseite2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-start2 {
    font-size: 30px;
    line-height: 30px;
  }

  .heading-start2.heading-2 {
    font-size: 22px;
    line-height: 30px;
  }

  .heading-start2.heading-2.farbe-der-headings {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 1.3;
    display: flex;
  }

  .text2.flie-text {
    padding-bottom: 0;
  }

  .serviceangebote2 {
    width: 100%;
    margin-top: 20px;
  }

  .inhaltstartseite2, .inhaltstartseite2.zweitfarbe, .kontaktaufnehmen2.zweitfarbe {
    padding-left: 20px;
    padding-right: 20px;
  }

  .karte1 {
    height: auto;
  }

  .kontakt2.zweitfarbe {
    padding-left: 20px;
    padding-right: 20px;
  }

  .impdat-3 {
    padding: 40px 20px;
  }

  .success-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sucess-block.highlights {
    padding: 20px;
  }

  .heading-success {
    font-size: 19px;
    line-height: 29px;
  }

  .div-block-footer1 {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .maps-gro {
    height: 300px;
  }

  .impdat-2 {
    padding: 40px 10px;
  }

  .impdat-2.flie-text {
    min-height: auto;
  }

  .ablaufplan-big-button-3 {
    white-space: normal;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ablaufplan-big-button-3.black.ablaufplan {
    top: 60px;
  }

  .ablaufplan-big-button-3.black {
    top: 10px;
  }

  .heading-links.heading-2 {
    font-size: 17px;
  }

  .tabs-menu2 {
    flex-direction: column;
  }

  .content-container {
    padding-left: 0;
    padding-right: 0;
  }

  .tab-men-2-2, .tab-men-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-left {
    font-size: 30px;
    line-height: 30px;
  }

  .heading-left.heading-2 {
    font-size: 20px;
    line-height: 26px;
  }

  .heading-left.heading-2.farbe-der-headings {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    line-height: 1.3;
    display: flex;
  }

  .left_align_block.zweitfarbe {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-title-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }

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

  .testimonial-button.highlights {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .heading-left-2.heading-2.farbe-der-headings {
    font-size: 25px;
  }

  .heading-center {
    font-size: 30px;
    line-height: 30px;
  }

  .heading-center.heading-2 {
    font-size: 22px;
    line-height: 30px;
  }

  .heading-center.heading-2.farbe-der-headings {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1.3;
    display: flex;
  }

  .info-3 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .logo_footer {
    width: 89px;
  }

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

  .div-15-rem {
    width: auto;
  }

  .grid-39 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

#w-node-e42d9729-2b82-2501-8cc0-6a479b1b6a28-26aad6f9, #w-node-e42d9729-2b82-2501-8cc0-6a479b1b6a40-26aad6f9, #w-node-e42d9729-2b82-2501-8cc0-6a479b1b6a55-26aad6f9, #w-node-e42d9729-2b82-2501-8cc0-6a479b1b6a6a-26aad6f9, #w-node-_576e7f60-3b26-38ea-7861-ede13399b4e2-c9378ed6, #w-node-ebeac08d-2c10-82c3-a0bc-b6a459ad192d-c9378ed6, #w-node-c24ddcd1-89dc-5663-f370-1bbde3068ce6-c9378ed6, #w-node-_25486d2c-c0d4-2171-7025-b37257ea78aa-c9378ed6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_9d2e94bd-5483-09dd-04b9-a42245d0dce0-d2228448 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9d2e94bd-5483-09dd-04b9-a42245d0dce0-d2228448 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Quattrocento';
  src: url('../fonts/Quattrocento-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quattrocento';
  src: url('../fonts/Quattrocento-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight Cyrillic 400';
  src: url('../fonts/inter-tight-cyrillic-400-normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight Cyrillic 500';
  src: url('../fonts/inter-tight-cyrillic-500-normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lucidacalligraphy';
  src: url('../fonts/LucidaCalligraphy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue W 01 77 Bd Cn Obl';
  src: url('../fonts/Helvetica-Neue-W01-77-Bd-Cn-Obl.ttf') format('truetype'), url('../fonts/Helvetica-Neue-W01-77-Bd-Cn-Obl.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue Ltw 0697 Blkcnobl';
  src: url('../fonts/Helvetica-Neue-LTW0697BlkCnObl.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typekiln Eloquiatext';
  src: url('../fonts/Typekiln---EloquiaText-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typekiln Eloquiadisplay';
  src: url('../fonts/Typekiln---EloquiaDisplay-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arial';
  src: url('../fonts/HelveticaNeueLight.otf') format('opentype'), url('../fonts/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arial';
  src: url('../fonts/HelveticaNeueBlack.otf') format('opentype'), url('../fonts/HelveticaNeueBlack.otf') format('opentype'), url('../fonts/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arial';
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype'), url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'helvatice';
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'helvatice';
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}