@font-face {
  font-family: DIN;
  src: url('../fonts/383AE5_0_0.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --text: #5f4d5d;
  --dark-slate-blue: #2a415c;
  --thistle: #cd9f3c;
  --light-steel-blue: #bbc4d4;
  --price: #b0b0b0;
  --titles-text-thistle-deep: #b99bb6;
  --white: white;
  --pink: #d6bbd3;
  --thistle-medium: #c3b6a3;
  --black: black;
  --thistle-dark: #c9adc6;
  --thistle-noble: #d7b7d4;
  --lines: #e6e6e6;
  --bg-darker: #b08ead;
  --slider-button: #a78ba4;
}

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

body {
  color: var(--text);
  font-family: DIN, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

h1 {
  color: var(--dark-slate-blue);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: DIN, sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 50px;
}

h2 {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: DIN, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
}

h3 {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: DIN, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: DIN, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

h5 {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: DIN, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h6 {
  color: var(--dark-slate-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: DIN, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

p {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: DIN, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

a {
  color: var(--thistle);
  letter-spacing: 0;
  cursor: pointer;
  font-family: DIN, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

a:hover {
  color: var(--light-steel-blue);
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: DIN, sans-serif;
  font-size: 22px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 22px;
}

li {
  color: var(--dark-slate-blue);
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

strong {
  font-family: DIN, sans-serif;
  font-weight: 400;
}

figcaption {
  color: var(--price);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 12px;
}

.navbar {
  border-top: 4px solid var(--thistle);
  background-color: #fff;
  flex-flow: wrap;
  justify-content: space-around;
  width: 100%;
  height: 120px;
  display: flex;
}

.brand {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding-left: 0;
  transition: opacity .2s;
  display: flex;
}

.brand:hover {
  opacity: .8;
}

.menu-button {
  z-index: 10;
  float: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5%;
  height: 116px;
  padding-top: 56px;
  transition: opacity .2s;
}

.menu-button:hover {
  opacity: .8;
}

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

.burger-line {
  background-color: var(--titles-text-thistle-deep);
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
}

.content-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.content-section.cont-hellblau {
  background-color: var(--light-steel-blue);
}

.content-section.sec-leistungen {
  padding-top: 0;
}

.content-section.cont-beige {
  background-color: #c3b6a380;
}

.content-wrapper {
  width: 100%;
  max-width: 1265px;
  padding-left: 25px;
  padding-right: 25px;
}

.content-wrapper.wrapper-ferien {
  border-top-width: 1px;
  border-top-color: var(--light-steel-blue);
  padding-top: 0;
}

.hero-section {
  background-color: var(--light-steel-blue);
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 160px;
  position: relative;
}

.hero-section.hero-folge {
  background-color: #c3b6a380;
  padding-top: 60px;
}

.slide-nav {
  display: none;
}

.center-box {
  color: var(--titles-text-thistle-deep);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: none;
  width: 65%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.button {
  border: 1px solid var(--thistle);
  color: var(--thistle);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #0000;
  min-width: 110px;
  height: 45px;
  padding-top: 15px;
  padding-left: 28px;
  padding-right: 28px;
  font-family: DIN, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  transition: background-color .2s, color .2s;
}

.button:hover {
  border-color: var(--dark-slate-blue);
  background-color: var(--dark-slate-blue);
  color: #fff;
}

.button.but-auf-farbe {
  background-color: #fff;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.button.but-auf-farbe:hover {
  background-color: var(--dark-slate-blue);
}

.button.but-standort {
  background-color: var(--thistle);
  color: var(--white);
  height: auto;
  padding-top: 10px;
}

.button.but-standort:hover {
  background-color: var(--light-steel-blue);
}

.top-border._20 {
  text-align: left;
  margin-top: 20px;
}

.top-border._50 {
  margin-top: 50px;
}

.top-border._50.center {
  text-align: center;
}

.top-border._5 {
  margin-top: 5px;
}

.flex-space {
  color: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: "383ae5 0 0";
  font-weight: 400;
  display: flex;
}

.relative {
  flex-direction: column;
  display: flex;
}

.intro-text-box {
  background-color: var(--dark-slate-blue);
  padding: 23px 15px;
  line-height: 20px;
}

.intro-text-box.ohne-hg {
  background-color: #0000;
}

.text-link {
  color: var(--thistle);
  font-family: DIN, sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.image-hover {
  transition: transform .2s;
}

.image-hover:hover {
  transform: scale(1.05);
}

.intro-box {
  background-color: #fff;
  order: 1;
  margin-left: 5px;
  margin-right: 5px;
}

.intro-box.max-weite {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.arrow {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 22px;
}

.nav-menu {
  float: right;
  background-color: #fff;
  width: 403px;
  height: 100vh;
  padding-top: 130px;
  display: none;
  position: fixed;
}

.nav-link {
  color: var(--light-steel-blue);
  height: 120px;
  padding-top: 46px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: DIN, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: background-color .2s;
}

.nav-link:hover {
  border-bottom: 4px solid #fff;
}

.nav-link.w--current {
  color: #fff;
  border-bottom: 4px solid #fff;
  height: 120px;
}

.nav-link.subnav {
  color: #fff;
  height: 65px;
  padding-top: 12px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 14px;
}

.cart-button {
  color: var(--text);
  background-color: #0000;
  justify-content: center;
  width: 75px;
  height: 116px;
  padding-top: 18px;
  transition: opacity .2s;
  display: flex;
  position: relative;
}

.cart-button:hover {
  opacity: .8;
}

.cart {
  float: right;
  width: 5%;
  min-width: 75px;
}

.cart-icon {
  margin-right: 3px;
}

.cart-quantity {
  background-color: var(--pink);
  color: #fff;
  margin-left: 0;
  padding-top: 2px;
  font-family: Roboto;
  line-height: 15px;
}

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

.flex-center.flex2er {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.flex-center.flex2er.rzte {
  max-width: 800px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

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

._50-column-center {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.price {
  color: var(--price);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.5px;
  text-decoration: none;
}

.perk {
  flex-wrap: wrap;
  width: 26%;
  margin-right: 20px;
  display: flex;
}

.perk-icon {
  background-color: var(--thistle);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 125px;
  border-radius: 50%;
  width: 95px;
  height: 95px;
  margin-right: 20px;
}

.perk-icon._1 {
  background-image: url('../images/compras.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 35px;
}

.perk-icon._2 {
  background-image: url('../images/entrega.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.perk-icon._3 {
  background-image: url('../images/como.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 35px;
}

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

.text-white {
  color: #fff;
  font-family: Roboto;
  font-size: 17px;
}

.flex-vertical {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.perks {
  background-color: var(--pink);
  padding-top: 35px;
  padding-bottom: 35px;
  overflow: hidden;
}

.footer {
  background-color: var(--dark-slate-blue);
  padding-top: 40px;
}

.footer.footer-link {
  text-align: center;
  margin-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

._90-column {
  flex: 1;
  align-items: center;
  width: 91%;
  display: flex;
}

.footer-links {
  width: 100%;
  margin-left: 6%;
}

.footer-link {
  color: #fff;
  margin-right: 35px;
  font-size: 21px;
  font-weight: 600;
  line-height: 21px;
  text-decoration: none;
}

.social-icons {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.social-icon {
  background-color: var(--pink);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 125px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  transition: background-color .2s;
}

.social-icon:hover {
  background-color: var(--thistle);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-repeat: no-repeat;
  background-size: 125px;
}

.social-icon.facebook {
  background-image: url('../images/facebook-logo.svg');
  background-size: 15px;
}

.social-icon.instagram {
  background-image: url('../images/instagram-2.svg');
  background-size: 15px;
}

.social-icon.twitter {
  background-image: url('../images/gorjeo-1.svg');
  background-size: 15px;
}

.footer-notice {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10px;
  display: flex;
  position: relative;
}

.footer-notice-text {
  color: #fff;
  font-family: Roboto;
  font-size: 12px;
  line-height: 20px;
}

.go-up {
  background-color: var(--thistle);
  background-image: url('../images/flecha-hacia-arriba.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  width: 32.6px;
  height: 30px;
  transition: background-color .2s;
}

.go-up:hover {
  background-color: var(--light-steel-blue);
}

.notice-link {
  color: #fff;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.hero-image {
  background-image: url('../images/Sievers_und_Linke.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 70%;
  height: 675px;
  position: relative;
  right: -65px;
}

.hero-image.praxis {
  background-image: url('../images/SliderEingang_MKA_5354.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.hero-image.raum {
  background-image: url('../images/SliderRaumMKA_5869.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.right-arrow {
  background-color: var(--thistle);
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  transition: opacity .2s;
}

.right-arrow:hover {
  opacity: .8;
}

.left-arrow {
  background-color: var(--thistle);
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  margin-right: 50px;
  transition: opacity .2s;
  bottom: 0;
  right: 0;
}

.left-arrow:hover {
  opacity: .8;
}

.hero-flex {
  display: flex;
}

.slide {
  text-align: center;
  margin-bottom: 60px;
}

.hero-text-box {
  z-index: 10;
  background-color: var(--dark-slate-blue);
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  max-width: 440px;
  height: 450px;
  margin-top: 110px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.footer-notice-box {
  margin-bottom: 5px;
  padding-top: 9px;
}

.footer-brand.w--current {
  transition: opacity .2s;
}

.footer-brand.w--current:hover {
  opacity: .8;
}

.checkout-button {
  background-color: var(--thistle-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 11px;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .2s;
}

.checkout-button:hover {
  opacity: .8;
}

.remove-button {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

.remove-button:hover {
  opacity: .8;
}

.product-title {
  font-size: 20px;
}

.cart-quantity-2 {
  width: 40px;
  font-family: Roboto;
  font-size: 13px;
}

.product-image {
  margin-top: 10px;
}

.inner-hero {
  background-color: var(--light-steel-blue);
  background-image: url('../images/shutterstock_96792124_lang.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 240px;
  padding-bottom: 60px;
  overflow: hidden;
}

.inner-hero.folge {
  background-position: 100% 0;
  padding-top: 180px;
}

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

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

.error-state {
  background-color: #ffdede;
  font-size: 20px;
}

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

.navbar-2 {
  background-color: var(--dark-slate-blue);
  width: 100%;
  height: 120px;
  display: flex;
  position: fixed;
}

.body {
  color: var(--dark-slate-blue);
  font-family: DIN, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.col-text {
  justify-content: center;
  align-items: center;
  padding: 3%;
  display: flex;
}

.col-text.hellblau {
  background-color: var(--light-steel-blue);
  padding-top: 75px;
  padding-bottom: 75px;
}

.col-text.hellbeige {
  background-color: var(--thistle-medium);
  padding-top: 75px;
  padding-bottom: 75px;
}

.div-text {
  flex: 1;
  margin-left: 10%;
  margin-right: 10%;
}

.para-weiss {
  color: #fff;
}

.para-weiss.para-impdat {
  text-align: right;
}

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

.icon-plus {
  float: left;
  width: 25px;
  margin-top: 5px;
  margin-right: 10px;
}

.h2-weiss {
  color: #fff;
  font-size: 34px;
  line-height: 40px;
}

.text-gold {
  color: var(--thistle);
}

.section {
  text-align: center;
  padding: 80px 10px;
}

.section.text {
  text-align: left;
  background-color: #bbc4d480;
  padding-left: 20%;
  padding-right: 20%;
}

.section.sec-headerbild {
  padding-left: 10px;
}

.section.impdat {
  padding-top: 200px;
}

.col-rechts {
  text-align: right;
}

.h3-impressum {
  color: #fff;
}

.img-logo {
  width: 250px;
  margin-bottom: 30px;
}

.h3-weiss {
  color: #fff;
}

.h3-weiss.h3-kleiner {
  font-size: 22px;
}

.h1-weiss {
  color: #fff;
}

.h1-weiss.links {
  text-align: left;
  margin-bottom: 0;
}

.subnavi {
  background-color: #2a415ccc;
  width: 100%;
  height: 190px;
  padding-top: 125px;
  position: fixed;
}

.subnavi-menu {
  padding-top: 0;
}

.navbar-3 {
  background-color: #0000;
}

.cont-subnav {
  float: right;
}

.div-spacer {
  height: 50px;
}

.div-bild {
  background-image: url('../images/stock-photo-beautiful-smile-and-white-teeth-of-a-young-woman-matching-the-shades-of-the-implants-or-the-613465190.jpg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 30px;
  padding-bottom: 30px;
}

.div-bild.bild-keravoll {
  background-image: url('../images/Keramische_MKA_5863.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-proph {
  background-image: url('../images/Prophylaxe_MKA_5728.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-kinder {
  background-image: url('../images/Kinder_shutterstock_149686247.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.div-bild.bild-impla {
  background-image: url('../images/Implanto_shutterstock_1017351991.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-angst {
  background-image: url('../images/Angst_shutterstock_288277970.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-bleach {
  background-image: url('../images/Bleaching_shutterstock_1057442465.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-op {
  background-image: url('../images/OPMikroskopie_MKA_5878.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-cer {
  background-image: url('../images/Cerec_MKA_5846x.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.div-bild.bild-dig {
  background-image: url('../images/Roentgen_MKA_5395.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-minimal {
  background-image: url('../images/Minimal_MKA_5855.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.div-bild.bild-paro {
  background-image: url('../images/Paro_shutterstock_766671292.jpg');
  background-position: 50%;
  background-size: auto;
}

.div-bild.bild-endo {
  background-image: url('../images/Endo_shutterstock_458451760.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.div-bild.bild-aligner {
  background-image: url('../images/SiversLinke_BildAligner.jpg');
  background-position: 50%;
  background-size: auto;
}

.wide-column-text-box {
  background-color: var(--dark-slate-blue);
  text-align: left;
  align-items: center;
  width: 400px;
  height: 400px;
  margin: 110px 10% 110px auto;
  padding: 60px;
  display: flex;
}

.plus-klein {
  color: var(--thistle);
  font-size: 22px;
}

.div-links {
  text-align: left;
  margin-top: 10px;
  font-size: 16px;
}

.para-kurz {
  width: 90%;
}

.para-center {
  text-align: center;
  margin-bottom: 0;
}

.h3-enger {
  margin-bottom: 10px;
}

.cont-center {
  text-align: center;
}

.div-karte-google {
  text-align: center;
  background-image: url('../images/Map_Anonym.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
}

.hinweisbiox {
  border: 1px solid var(--dark-slate-blue);
  text-align: center;
  margin-top: 30px;
  padding: 10px;
}

.kurztext {
  text-transform: uppercase;
}

.kurztext.weiss {
  color: var(--white);
}

.linkm100 {
  color: #bbc4d480;
  font-size: 14px;
}

.span-unterstrichen {
  text-decoration: underline;
}

.grid-z-hne {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-ffnungszeiten {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  place-items: start;
}

.para-ffnung {
  margin-bottom: 0;
}

.para-ffnung.weiss {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 26px;
    line-height: 34px;
  }

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

  h4 {
    font-size: 18px;
    line-height: 22px;
  }

  h5 {
    font-size: 10px;
  }

  .menu-button {
    float: right;
    width: 60px;
    padding-top: 51px;
  }

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

  .menu-button.men-sub {
    height: 60px;
    padding-top: 12px;
  }

  .content-section {
    padding: 60px 10px;
  }

  .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-wrapper.wrapper-sider {
    padding-left: 0;
    padding-right: 0;
  }

  .center-box {
    width: 80%;
  }

  .button.but-auf-farbe {
    margin-bottom: 30px;
  }

  .relative {
    justify-content: center;
    align-items: center;
  }

  .intro-text-box {
    color: var(--dark-slate-blue);
    margin-bottom: 40px;
    font-family: "383ae5 0 0";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .intro-text-box.ohne-hg {
    margin-bottom: 0;
  }

  .intro-box {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-link {
    background-color: var(--dark-slate-blue);
    color: #fff;
    height: 50px;
    padding-top: 10px;
  }

  .nav-link.w--current {
    background-color: var(--thistle);
    height: 50px;
    padding-top: 10px;
  }

  .cart {
    z-index: 100;
    float: right;
  }

  .flex-center {
    flex-direction: column;
  }

  .perk {
    width: 40%;
  }

  .perk.tablet-none {
    display: none;
  }

  .hero-image {
    background-size: contain;
    width: 60%;
    height: 400px;
    position: static;
  }

  .hero-image.praxis {
    background-size: contain;
  }

  .hero-image.raum {
    background-size: contain;
    width: 60%;
  }

  .hero-text-box {
    width: 45%;
    height: 280px;
    margin-top: 60px;
  }

  .icon {
    background-color: var(--thistle);
    color: #fff;
    width: 35px;
    height: 35px;
    padding: 5px;
  }

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

  .col-text.hellblau, .col-text.hellbeige {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.sec-headerbild {
    padding: 0;
  }

  .h3-weiss.h3-kleiner {
    font-size: 18px;
  }

  .h1-weiss {
    font-size: 38px;
  }

  .h1-weiss.links {
    font-size: 34px;
    line-height: 40px;
  }

  .div-bild {
    background-size: cover;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .wide-column-text-box {
    width: 360px;
    height: 360px;
    margin-right: 0;
  }

  .grid-z-hne {
    grid-template-columns: 1fr;
    margin-left: 30px;
    margin-right: 30px;
  }

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

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

  h2 {
    font-size: 22px;
    line-height: 28px;
  }

  h3 {
    font-size: 18px;
    line-height: 24px;
  }

  li {
    font-size: 14px;
    line-height: 18px;
  }

  .navbar {
    justify-content: flex-end;
  }

  .content-section {
    padding: 40px 10px;
  }

  .hero-section {
    padding-top: 120px;
  }

  .center-box {
    width: 90%;
  }

  .button.but-auf-farbe, .button.but-standort {
    font-size: 13px;
  }

  .relative {
    align-items: center;
  }

  .intro-text-box.ohne-hg {
    margin-bottom: 0;
  }

  .intro-box {
    flex-direction: column;
    margin-bottom: 10px;
    display: flex;
  }

  .nav-link {
    background-color: var(--dark-slate-blue);
    height: 50px;
    padding-top: 10px;
  }

  .flex-center {
    flex-flow: column wrap;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    align-content: center;
    margin-bottom: 0;
  }

  ._50-column-center {
    justify-content: flex-start;
    width: 100%;
  }

  ._50-column-center.mobile-border {
    justify-content: center;
    margin-bottom: 4%;
  }

  .perk {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 4%;
    margin-right: 0;
  }

  .perk.tablet-none {
    display: flex;
  }

  .perk-icon {
    margin-right: 0;
  }

  ._90-column {
    flex-direction: column;
    flex: 0 auto;
    width: 100%;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    margin-top: 4%;
    margin-left: 0%;
    display: flex;
  }

  .social-icons {
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .go-up {
    margin-top: 15px;
  }

  .hero-image {
    background-size: contain;
    height: 380px;
  }

  .hero-image.praxis, .hero-image.raum {
    background-size: contain;
  }

  .hero-flex {
    flex-direction: column;
  }

  .hero-text-box {
    height: 200px;
    margin-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .col-text.hellblau, .col-text.hellbeige {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .para-weiss {
    margin-bottom: 30px;
  }

  .para-weiss.para-impdat {
    margin-bottom: 10px;
  }

  .icon-plus {
    width: 20px;
  }

  .h2-weiss {
    font-size: 20px;
  }

  .section.text {
    padding-left: 10%;
    padding-right: 10%;
  }

  .img-logo {
    margin-bottom: 30px;
  }

  .h3-weiss.h3-kleiner {
    font-size: 22px;
  }

  .h1-weiss.links {
    font-size: 30px;
    line-height: 34px;
  }

  .wide-column-text-box {
    z-index: 0;
  }

  .hinweisbiox {
    font-size: 14px;
    line-height: 18px;
  }

  .col--10 {
    margin-left: -10px;
  }

  .col-ohne {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .brand {
    margin-left: 2%;
  }

  .brand.w--current {
    width: 200px;
    margin-left: 5%;
  }

  .menu-button {
    padding-top: 44px;
  }

  .intro-box {
    width: auto;
  }

  ._90-column {
    width: 100%;
  }

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

  .footer-link {
    margin-bottom: 7%;
    margin-right: 0;
  }

  .hero-image {
    width: 100%;
    height: 300px;
  }

  .hero-image.raum {
    width: 100%;
  }

  .hero-flex {
    flex-direction: column;
  }

  .hero-text-box {
    width: 100%;
    height: 180px;
    margin-top: -46px;
    position: relative;
  }

  .footer-brand {
    margin-bottom: 7%;
  }

  .col-text.hellbeige {
    padding-top: 6%;
    padding-bottom: 6%;
  }

  .columns {
    flex-direction: column;
  }

  .logo-top {
    width: 200px;
  }

  .wide-column-text-box {
    width: auto;
    height: 300px;
    padding: 10px 25px;
  }

  .grid-z-hne {
    margin-left: 10px;
    margin-right: 10px;
  }
}

#w-node-c5d5137e-fcca-ea5e-5f00-ad1fbc18b125-6a696aa6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e45c8532-a75c-17df-8dac-08ed3e2fb48c-5945056f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f9098f0-c67e-c497-f746-e958ad4f9deb-aaeda3b2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4b8e311a-c561-c4f5-d4bc-97184de28be8-83e850ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'DIN';
  src: url('../fonts/383AE5_0_0.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}