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

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

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

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

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

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

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

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

:root {
  --grey: #73767e;
  --dark-slate-grey-2: #3a3f45;
  --black: #333232;
  --dark-grey: #a2b8ba;
  --white-smoke: #eaeaea;
  --azure: #d4e5e7;
  --white: white;
  --light-grey: #ced7db;
  --dark-slate-grey: #2c3945d9;
  --gainsboro: #dbdbdb;
  --indian-red: #e06473;
  --dim-grey: #4e5055;
}

.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(--grey);
  font-family: Montserratoff, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
}

h1 {
  color: var(--dark-slate-grey-2);
  letter-spacing: .8px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 59px;
}

h3 {
  color: var(--dark-slate-grey-2);
  letter-spacing: .6px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

h4 {
  color: var(--dark-slate-grey-2);
  letter-spacing: .5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

h5 {
  color: #eaeaea;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

h6 {
  color: var(--black);
  letter-spacing: .8px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
}

p {
  color: #726f6f;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

a {
  color: #726f6f;
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--dark-grey);
  text-decoration: none;
}

strong {
  font-weight: 600;
}

.body {
  font-size: 1em;
}

.navbar {
  z-index: 99;
  background-color: #eaeaea;
  position: fixed;
  inset: 0% 0% auto;
}

.container-alt {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  max-width: 1600px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
  position: relative;
  overflow: visible;
}

.container-alt.toolbar {
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

.container-alt.small {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 50px;
}

.container-alt.small.show-tablet {
  display: none;
}

.brand {
  flex: 0 auto;
  width: 380px;
  display: block;
}

.div-block {
  flex: 0 auto;
  order: -1;
  position: relative;
}

.nav-menu {
  flex-direction: row;
  flex: 0 auto;
  order: 1;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-end;
  display: flex;
}

.nav-link {
  color: var(--dark-slate-grey-2);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 3px;
}

.nav-link:hover {
  color: var(--dark-grey);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--dark-grey);
  border-bottom-color: #9db9bb;
  font-weight: 600;
}

.nav-link.dropdown-trigger {
  z-index: 2;
}

.nav-link.is-last {
  margin-right: 0;
  padding-right: 0;
}

.banner-wrapper {
  width: 100vw;
  padding-top: 120px;
  position: relative;
}

.banner {
  background-image: url('../images/DSC07890-zoom-web.png');
  background-position: 50% 40%;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: flex-end;
  height: 85vh;
  margin-top: 10px;
  display: flex;
}

.text-block-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading {
  border-bottom: 11px solid var(--azure);
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 70px;
  margin-right: -30px;
  padding-right: 30px;
  font-size: 52px;
  font-weight: 300;
  line-height: 27px;
  display: inline-block;
}

.heading.no-space-bottom {
  margin-bottom: 30px;
}

.text-block {
  text-align: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph {
  font-weight: 300;
}

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

.fixed-image-bg {
  background-image: url('../images/DSC07890-web.png');
  background-position: 38%;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 700px;
}

.fixed-image-bg.fib2 {
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/eukalyptus-start.png');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 130px;
  display: flex;
}

.fixed-image-bg.flex {
  color: var(--white);
  background-image: linear-gradient(#a2b8baf2, #a2b8baf2), url('../images/DSC07890-web.png');
  background-position: 0 0, 38%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  height: auto;
  margin-bottom: 5px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.image {
  text-align: left;
  padding: 5px;
  display: block;
  position: relative;
}

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

.section {
  padding-top: 50px;
  padding-bottom: 100px;
}

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

.section.grey {
  background-color: #f2f2f2;
  padding-top: 63px;
  padding-bottom: 80px;
}

.section.bottom-border {
  border-bottom: 2px solid #a2b8ba;
}

.section.small {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.bottom-border-2 {
  z-index: 1;
  border-bottom: 2px solid #a2b8ba;
  margin-top: -238px;
  position: relative;
}

.section.bottom-border-3 {
  border-bottom: 2px solid #a2b8ba;
}

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

.container-2.space-top {
  margin-top: 120px;
}

.footer-section {
  color: #fff;
  flex-direction: column;
  display: flex;
  position: relative;
}

.copyright {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  display: inline-block;
}

.div-block-3 {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-3.hidden {
  display: none;
}

.div-block-4 {
  background-color: #393f46;
  padding-top: 50px;
  padding-bottom: 30px;
  font-weight: 300;
}

.div-block-5 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 95%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
}

.div-block-5.minus-top {
  margin-top: -155px;
}

.div-block-5.map-spacing {
  margin-top: -49px;
  padding-bottom: 50px;
}

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

.div-block-6.flex-button-container {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.heading-2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.17em;
  font-weight: 300;
  line-height: 1.17em;
}

.paragraph-3 {
  color: #eaeaea;
  max-width: 319px;
  line-height: 1.4;
}

.link {
  color: #fff;
  text-decoration: none;
  display: inline;
}

.link:hover {
  color: #fff;
  font-weight: 200;
  text-decoration: underline;
  display: inline;
}

.text-block-2 {
  color: #fff;
  font-weight: 200;
  display: inline;
}

.div-block-7 {
  text-align: center;
}

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

.link-2:hover {
  color: #fff;
  text-decoration: underline;
}

.white-link {
  color: #eaeaea;
  text-decoration: none;
  transition: color .2s;
}

.white-link:hover {
  color: #eaeaea80;
  text-decoration: none;
}

.white-link.underline {
  text-decoration: underline;
}

.link-4 {
  color: #fff;
  text-decoration: none;
}

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

.link-5 {
  color: #fff;
  text-decoration: none;
}

.link-5:hover {
  color: #fff;
  text-decoration: underline;
}

.div-block-8 {
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
  padding-top: 198px;
  display: flex;
  position: relative;
}

.div-block-9 {
  background-image: url('../images/13.jpg');
  background-position: 69%;
  background-size: cover;
  width: 45%;
}

.div-block-9.team-header {
  background-image: url('../images/DSC06907-web-sw.png');
  background-position: 50%;
}

.div-block-9.praxis-header {
  background-image: url('../images/ambiente.png');
  background-position: 89%;
}

.div-block-9.kontakt-header {
  background-image: url('../images/DSC08588-web.png');
  background-position: 100%;
}

.div-block-10 {
  background-color: #393f46;
  width: 55%;
}

.text-block-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 5px 20px #0003;
  border-bottom: 16px solid #9db9bbb3;
  margin-right: 0;
  padding-right: 20px;
  font-size: 80px;
  font-weight: 700;
  line-height: 35px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
}

.section-3 {
  padding-top: 100px;
  padding-bottom: 50px;
  position: static;
}

.section-3.arzt-section {
  color: var(--black);
  padding-top: 350px;
}

.section-3.impressum-datenschutz-section {
  padding-top: 200px;
}

.section-3.danke {
  padding-top: 220px;
}

.heading-3 {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 0;
  font-size: 120px;
  font-weight: 600;
  line-height: 120px;
}

.div-block-11 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.grid {
  grid-template-rows: minmax(20vw, .25fr) minmax(20vw, .25fr) minmax(20vw, .25fr) minmax(20vw, .25fr);
  grid-template-areas: "Area"
                       "."
                       "."
                       ".";
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.image-2 {
  min-width: 100%;
  max-width: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.grid-2 {
  grid-template-rows: auto auto auto auto;
  margin-top: 130px;
}

.grid-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.image-3 {
  z-index: 0;
  float: none;
  margin-bottom: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.div-block-12 {
  background-color: #0000;
  align-self: stretch;
  width: 50%;
  min-width: auto;
  max-width: none;
  padding: 5px;
  position: relative;
  overflow: hidden;
}

.div-block-13 {
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-13.div-block-14 {
  opacity: 0;
  transition: opacity .25s;
}

.div-block-13.div-block-14:hover {
  opacity: 1;
}

.link-block {
  opacity: 0;
  transition: opacity .25s;
  position: absolute;
  inset: 0%;
}

.link-block:hover {
  opacity: 1;
}

.paragraph-4 {
  z-index: 1;
  color: var(--black);
  text-transform: uppercase;
  cursor: default;
  border-bottom: 20px solid #d4e5e780;
  margin-right: -30px;
  padding-right: 30px;
  font-size: 60px;
  line-height: 22px;
  position: relative;
}

.paragraph-4.paragraph-6 {
  text-shadow: 0 0 20px var(--white);
  cursor: pointer;
  border-bottom-color: #9db9bb8f;
  font-size: 40px;
}

.paragraph-4.paragraph-7 {
  text-shadow: 0 0 20px var(--white);
  border-bottom-color: #9db9bb8f;
  margin-bottom: 0;
  font-size: 40px;
}

.paragraph-5 {
  z-index: 1;
  color: var(--black);
  text-shadow: 0 0 10px var(--white);
  cursor: default;
  margin-top: 0;
  font-size: 20px;
  position: relative;
}

.container-3 {
  justify-content: flex-start;
}

.dropdown {
  background-color: var(--black);
  opacity: 1;
  flex-direction: row;
  align-items: stretch;
  width: 350px;
  padding: 22px 35px;
  display: flex;
  position: static;
  inset: 35px 0% auto 215px;
}

.dropdown.dropdown-content {
  z-index: auto;
  opacity: 1;
  background-color: #0000;
  flex-direction: column;
  flex: 0 auto;
  order: 1;
  align-self: auto;
  margin-bottom: -394px;
  padding: 25px 0 0;
  display: block;
  position: absolute;
  inset: 11px auto auto;
  overflow: hidden;
}

.dropdown.menu-trigger {
  opacity: .54;
  width: 175px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  top: -21px;
}

.link-6 {
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 40px;
  text-decoration: none;
  transition: color .2s;
}

.link-6:hover {
  color: var(--dark-slate-grey-2);
  text-decoration: none;
}

.intro-heading {
  color: #a2b8ba5e;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.intro-heading.smaller {
  letter-spacing: 0;
  font-size: 110px;
}

.intro-heading.smaller.show-mobile {
  display: block;
}

.heading-5 {
  color: #726f6f;
  text-align: center;
  text-transform: uppercase;
  max-width: 580px;
  margin: 30px auto 70px;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.section-4 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-16 {
  background-image: url('../images/prothetik.png');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 670px;
  position: relative;
}

.div-block-16.leistung-img-2 {
  background-image: url('../images/prothetik-2.png');
  background-position: 50%;
}

.div-block-16.leistung-img-4 {
  background-image: url('../images/digitale-abformung.png');
  background-position: 50%;
}

.div-block-16.leistung-img-5 {
  background-image: url('../images/chairside.png');
  background-position: 50%;
}

.div-block-16.leistung-img-6 {
  background-image: url('../images/cmd-2.png');
}

.div-block-16.leistung-img-7 {
  background-image: url('../images/kieferorthopädie_1kieferorthopädie.jpg');
  background-position: 50%;
}

.div-block-16.leistung-img-8 {
  background-image: url('../images/aufbissschienen.png');
  background-position: 50%;
}

.div-block-16.leistung-img-9 {
  background-image: url('../images/prophylaxe_1prophylaxe.jpg');
  background-position: 50%;
}

.div-block-16.leistung-img-10 {
  background-image: url('../images/Fotolia_31594475_XL_CMYK-bearb.jpg');
  background-position: 50%;
}

.div-block-16.leistung-img-11 {
  background-image: url('../images/22.jpg');
  background-position: 50%;
}

.div-block-16.leistung-img-12 {
  background-image: url('../images/kieferorthopaedische-korrekturschienen-img.jpg');
  background-position: 50%;
}

.div-block-16.leistung-img-13 {
  background-image: url('../images/kinderzahnheilkunde-3.png');
}

.div-block-16.leistung-img-14 {
  background-image: url('../images/bleaching.png');
}

.div-block-16.leistung-img-3 {
  background-image: url('../images/implantatprothetik.png');
  background-position: 50%;
}

.div-block-16.leistung-img-16 {
  background-image: url('../images/praxislabor-img.jpg');
}

.section-5 {
  position: relative;
  overflow: hidden;
}

.text-block-4 {
  color: #eaeaea99;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 6.7vw;
  font-weight: 600;
  line-height: 5vw;
  position: absolute;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-2 {
  font-size: 7.5vw;
  line-height: 5vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-3 {
  font-size: 14vw;
  line-height: 10vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-4 {
  font-size: 8.35vw;
  line-height: 6vw;
  left: -13px;
}

.text-block-4.leistung-text-5 {
  font-size: 5.18vw;
  line-height: 4vw;
  bottom: -3px;
  left: 0;
}

.text-block-4.leistung-text-6 {
  font-size: 6.2vw;
  line-height: 4.6vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-7 {
  font-size: 5.5vw;
  line-height: 4vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-9 {
  font-size: 14.4vw;
  line-height: 10.4vw;
  left: -21px;
}

.text-block-4.leistung-text-8 {
  font-size: 5.9vw;
  line-height: 4vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-10 {
  font-size: 7.4vw;
  line-height: 5.4vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-11 {
  font-size: 10vw;
  line-height: 7vw;
  inset: auto 0% 0% -1%;
}

.text-block-4.leistung-text-12 {
  font-size: 3.9vw;
  line-height: 2.9vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-13 {
  font-size: 7.6vw;
  line-height: 5vw;
}

.text-block-4.leistung-text-14 {
  font-size: 16.2vw;
  line-height: 11.8vw;
}

.text-block-4.leistung-text-15 {
  font-size: 6.2vw;
  line-height: 4.6vw;
  inset: auto 0% 0%;
}

.text-block-4.leistung-text-16 {
  font-size: 13vw;
  line-height: 9vw;
  inset: auto 0% 0%;
}

.div-block-17 {
  width: 90%;
  max-width: 1160px;
  margin-left: 10%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.paragraph-8 {
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
}

.heading-6 {
  border-bottom: 12px solid var(--azure);
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 300;
  line-height: 17px;
  display: inline-block;
}

.lightbox-link {
  transition: opacity .2s;
  overflow: visible;
}

.lightbox-link:hover {
  opacity: .7;
}

.columns {
  width: 95%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-5 {
  color: #979ca8;
  text-align: right;
  font-size: 12px;
  line-height: 12px;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--grey);
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 15px;
  display: inline-block;
}

.text-field::placeholder {
  color: var(--grey);
}

.text-field-2 {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--grey);
}

.textarea {
  border: 1px solid var(--grey);
  min-height: 180px;
}

.field-label {
  color: var(--grey);
  margin-top: 20px;
  padding-left: 13px;
  font-size: 14px;
  font-weight: 400;
}

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

.link-7 {
  color: var(--grey);
  font-weight: 600;
  text-decoration: none;
}

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

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

.search {
  display: flex;
}

.container-4 {
  padding-top: 200px;
  padding-bottom: 100px;
}

.search-result-item {
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.search-2 {
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.search-input {
  margin-right: 30px;
}

.heading-7 {
  margin-bottom: 30px;
}

.submit-button {
  background-color: var(--white-smoke);
  color: var(--grey);
  margin-top: 20px;
  padding: 5px 30px;
  transition: background-color .2s ease-in-out;
}

.submit-button:hover {
  background-color: var(--azure);
}

.checkbox-label {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}

.column {
  margin-top: 24px;
}

.checkbox-field {
  width: 100%;
}

.columns-2 {
  flex-direction: column-reverse;
  align-items: flex-start;
  display: flex;
}

.column-2 {
  align-self: flex-end;
}

.heading-8 {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

.columns-3 {
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-9 {
  color: var(--black);
  font-weight: 400;
}

.paragraph-9.has-left-space {
  margin-left: 20px;
}

.heading-9 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
}

.heading-9.sm {
  margin-top: 60px;
  display: flex;
}

.heading-9.white {
  letter-spacing: .5px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 15px;
  display: flex;
}

.heading-9.top-space {
  margin-top: 90px;
}

.div-block-18 {
  background-image: url('../images/map.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  max-width: 800px;
  height: 800px;
  position: relative;
}

.div-block-18.iframe-placeholder.footer-map {
  max-width: 73%;
  height: 300px;
}

.section-6 {
  padding-bottom: 100px;
}

.paragraph-10 {
  text-align: center;
  width: 100%;
  position: relative;
}

.paragraph-11 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.div-block-19 {
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.map-button-txt {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}

.map-button {
  background-color: var(--indian-red);
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 40px;
  transition: background-color .2s ease-in-out;
  display: inline-block;
  position: relative;
}

.map-button:hover {
  background-color: #c25361;
}

.div-block-21 {
  width: 100%;
  max-width: 800px;
  height: 800px;
}

.div-block-21.iframe {
  display: none;
  overflow: hidden;
}

.div-block-21.iframe.footer-map {
  max-width: 73%;
  height: 300px;
  display: none;
}

.html-embed {
  width: 100%;
  height: 800px;
}

.html-embed.footer-size {
  height: 400px;
}

.dropdown-wrapper {
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.dropdown-wrapper.nav-link {
  border-bottom-style: none;
  margin-right: 0;
  padding-right: 0;
}

.dropdown-trigger.nav-link {
  z-index: auto;
  order: -1;
  align-self: flex-start;
  margin-left: auto;
}

.div-block-22 {
  flex-flow: column;
  padding: 25px 50px 25px 40px;
  display: flex;
}

.menu-line {
  background-color: var(--azure);
  width: 5px;
  height: auto;
  margin-right: 25px;
  padding-right: 0;
}

.arzt-fullpage-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.arzt-desc {
  justify-content: space-around;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.arzt-bild {
  flex: 0 auto;
  width: 100%;
  max-width: 800px;
}

.arzt-bild.is-left {
  max-width: 800px;
}

.arzt-bild.height-s {
  overflow: hidden;
}

.arzt-bild.ab-placeholder {
  max-width: 1000px;
}

.arzt-dots {
  align-self: center;
  width: 10vw;
  display: block;
}

.arzt-dots.mobile-arzt-dots {
  display: none;
}

.arzt-vita {
  width: 50%;
  margin-left: 5%;
  padding-right: 50px;
}

.arzt-vita.is-right {
  margin-left: 0;
  margin-right: 5%;
  padding-left: 50px;
  padding-right: 0;
}

.arzt-vita-date-line {
  justify-content: space-between;
  margin-bottom: 25px;
  display: flex;
}

.avdl-left {
  flex: 0 auto;
  width: 130px;
}

.avdl-right {
  flex: 1;
  font-weight: 300;
}

.heading-10 {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 25px;
  margin-bottom: 50px;
  padding-right: 0;
  font-size: 40px;
  font-weight: 600;
  display: inline-block;
}

.heading-10.no-bottom-space {
  margin-bottom: 0;
}

.heading-10.hide-desktop {
  display: none;
}

.image-4 {
  padding-left: 30px;
}

.container-5 {
  margin-top: 30px;
}

.text-block-8 {
  margin-top: 0;
  padding-top: 0;
  font-weight: 500;
  display: none;
}

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

.brandy {
  color: var(--black);
  transition: color .2s;
}

.brandy:hover {
  color: #00ff7f;
  text-decoration: none;
}

.heading-11 {
  color: var(--black);
  font-size: 2em;
  line-height: 2em;
}

.text-block-11 {
  color: var(--black);
  margin-top: 30px;
  font-weight: 300;
}

.link-8, .link-9, .link-10 {
  color: var(--black);
}

.div-block-23 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-23.hidden {
  display: none;
}

.bold-text-dark {
  color: var(--black);
  font-size: 1.1em;
}

.list {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
}

.popup-inner1 {
  background-image: url('../images/gal-2-small.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 500px;
  display: flex;
}

.image-7 {
  cursor: pointer;
  object-fit: fill;
}

.inhalt {
  border: 2px solid #fff;
  flex-direction: column;
  width: 90%;
  height: 90%;
  margin: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.popup-cb {
  z-index: 999;
  object-fit: fill;
  background-color: #000000b3;
  border: 1px solid #30539c66;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  overflow: hidden;
}

.text-text {
  background-color: #fffc;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 95%;
  height: 93%;
  margin: auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.heading-13 {
  text-align: center;
  margin-top: 0;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.heading-13.top-space {
  margin-top: 80px;
}

.popup-fenster {
  flex-direction: column;
  width: 45%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.popup-inner-cb {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.heading-12 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 30px;
  font-weight: 500;
}

.close-cb {
  justify-content: flex-end;
  display: flex;
}

.paragraph-13 {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 26px;
}

.danke-container {
  text-align: center;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-toggle {
  padding: 0;
}

.dropdown-list-wrapper {
  background-color: #a2b8bae6;
}

.div-block-24 {
  display: block;
}

.div-block-25, .div-block-26 {
  display: none;
}

.image-8 {
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.schwerpunkte-auswahl-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.schwerpunkte-button {
  background-color: #8aa8aa;
  border-radius: 4px;
  transition: opacity .1s;
}

.schwerpunkte-button:hover {
  opacity: .8;
  text-decoration: none;
}

.to-top-button {
  z-index: 1;
  background-color: var(--dark-grey);
  border-radius: 4px;
  padding: 5px;
  transition: opacity .1s;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.to-top-button:hover {
  opacity: .8;
}

.insta {
  background-color: #9db9bb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-top: 20px;
  display: flex;
}

.insta.big {
  width: 120px;
  height: 120px;
}

.floating-button {
  z-index: 90;
  color: #f3f3f3;
  background-color: #9db9bb;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: 35% 0% auto auto;
  box-shadow: 3px 3px 10px #00000030;
}

.floating-button.fbcop {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  top: 44%;
}

.floating-button-image {
  background-image: url('../images/calendar.svg');
  background-position: 0 0;
  background-size: contain;
  width: 30px;
  height: 30px;
}

.floating-button-text {
  height: 13px;
  margin-left: 15px;
}

.flex-button {
  background-color: #9db9bb;
  margin-bottom: 20px;
  transition: opacity .2s;
}

.flex-button:hover {
  opacity: .9;
  text-decoration: none;
}

.flex-button.has-left-space {
  margin-left: 30px;
}

.flex-siegel {
  height: 300px;
  margin-bottom: 30px;
}

.flexbox {
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  display: flex;
}

.heading-copy {
  text-transform: uppercase;
  border-bottom: 8px solid #c7d2d3;
  margin-bottom: 70px;
  margin-right: -30px;
  padding-right: 30px;
  font-size: 52px;
  font-weight: 300;
  line-height: 27px;
  display: inline-block;
}

.heading-copy.no-space-bottom {
  margin-bottom: 15px;
}

.div-block-27 {
  text-align: center;
  justify-content: flex-start;
  display: flex;
}

.button-alt {
  background-color: #9db9bb;
  margin-bottom: 20px;
  transition: opacity .2s;
}

.button-alt:hover {
  opacity: .9;
  text-decoration: none;
}

.button-alt.has-left-space {
  margin-left: 30px;
}

.intro-txt {
  margin-bottom: 20px;
  font-weight: 300;
}

.div {
  align-items: flex-end;
  display: flex;
}

.tel-link {
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-right: 30px;
  padding: 0 30px 0 0;
  font-weight: 300;
}

.tel-link:hover {
  border-bottom-color: #c7d2d3;
  text-decoration: none;
}

.tel-link:focus {
  border-bottom-color: #9db9bbc7;
}

.tel-link.w--current {
  color: var(--black);
  border-bottom-color: #9db9bb;
  font-weight: 600;
}

.tel-link.w--current:active {
  border-bottom-color: #9db9bb;
}

.tel-link.dropdown-trigger {
  z-index: 2;
}

.button {
  background-color: var(--indian-red);
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 0;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color .2s;
}

.button:hover {
  color: #fff;
  background-color: #c25361;
  text-decoration: none;
}

.button.has-left-space {
  margin-left: 30px;
}

.button.top-space {
  background-color: #e06473;
  margin-top: 20px;
}

.button.top-space:hover {
  background-color: #c25361;
}

.button.vita-space {
  margin-top: 40px;
  display: none;
}

.toolbar {
  background-color: #9db9bb;
  margin-left: auto;
  margin-right: auto;
}

.toolbar-txt {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
  margin-right: 30px;
  font-size: .8em;
  font-weight: 600;
}

.toolbar-txt.is-last {
  margin-right: 0;
}

.toolbar-link {
  color: #fff;
  transition: color .2s;
}

.toolbar-link:hover {
  color: #ffffffb3;
  text-decoration: none;
}

.toolbar-link.unterstrichen {
  text-decoration: underline;
}

.paragraph-14 {
  color: var(--grey);
  font-weight: 400;
}

.paragraph-14.has-left-space {
  margin-bottom: 0;
  margin-left: 20px;
}

.paragraph-14.bottom-space {
  margin-bottom: 0;
}

.paragraph-15 {
  color: var(--grey);
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 500;
  line-height: 2.3em;
}

.paragraph-15.has-left-space {
  margin-left: 20px;
}

.schwerpunkte-link {
  color: var(--grey);
  text-decoration: underline;
  transition: color .3s;
}

.schwerpunkte-link:hover {
  color: #9db9bb;
  text-decoration: none;
}

.heading-9-copy {
  color: var(--grey);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}

.heading-9-copy.sm {
  margin-top: 60px;
  display: flex;
}

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

.insta-footer {
  background-color: #9db9bb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-top: 0;
  display: flex;
}

.section-7 {
  padding-bottom: 50px;
}

.heading-15 {
  letter-spacing: .5px;
  font-weight: 500;
}

.div-block-30, .div-block-31 {
  display: flex;
}

.nav-block {
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  width: 80%;
  display: flex;
}

.banner-content {
  text-align: center;
  background-image: linear-gradient(#ffffffb3, #fffc 31%, #fff 60%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 10px;
  display: flex;
}

.subhead {
  color: #726f6f;
  margin-top: 32px;
  font-size: 20px;
  font-weight: 300;
}

.grid-4 {
  grid-column-gap: 100px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.container-9 {
  max-width: 1500px;
}

.container {
  text-align: center;
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
}

.container.smaller {
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
}

.columns-4 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.wir-suchen-headline {
  color: var(--white);
  margin-bottom: 40px;
}

.wir-suchen-txt {
  color: var(--white);
  margin-bottom: 70px;
}

.wir-suchen-subheadline {
  color: var(--white);
}

.intro-p {
  text-align: center;
  text-transform: uppercase;
  max-width: 700px;
  margin-top: 30px;
  margin-bottom: 70px;
  font-size: 20px;
  font-weight: 300;
}

.div-block-32 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.lightbox-link-2 {
  display: flex;
}

.column-5 {
  background-image: url('../images/team-02.png');
  background-position: 0 0;
  background-size: auto;
}

.team-img-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 2500px;
  margin-top: 100px;
}

.team-img-grid.tig-2 {
  min-height: 500px;
}

.image-9 {
  z-index: -2;
  position: relative;
}

.paragraph-17 {
  z-index: 3;
}

.team-img-01 {
  background-image: url('../images/team-02.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-01.gradient {
  background-image: linear-gradient(#fff0 68%, #fff9), url('../images/team-02.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.div-block-34 {
  height: 100%;
}

.team-img-content {
  background-image: linear-gradient(#fff0 67%, #ffffffc2 86%, #fff);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.team-img-title {
  color: var(--black);
  letter-spacing: .6px;
  margin-bottom: 30px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.2;
}

.team-img-title.main {
  margin-bottom: 5px;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.1;
}

.team-img-02 {
  background-image: url('../images/carola-p.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-03 {
  background-image: url('../images/saskia-n.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-04 {
  background-image: url('../images/hadiqa-b.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-05 {
  background-image: url('../images/roya-w.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-06 {
  background-image: url('../images/christina-d.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-07 {
  background-image: url('../images/christiane-g.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-08 {
  background-image: url('../images/simone-k.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-09 {
  background-image: url('../images/lara-f.png');
  background-position: 50%;
  background-size: cover;
}

.social-media-headline {
  margin-bottom: 40px;
}

.insta-icon {
  margin-top: 30px;
  transition: opacity .3s;
}

.insta-icon:hover {
  opacity: .5;
}

.adresse {
  margin-bottom: 100px;
}

.adresse.no-space {
  margin-bottom: 0;
}

.columns-5 {
  flex-direction: row;
  justify-content: center;
}

.content-wrapper {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

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

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

.nav-button {
  background-color: var(--indian-red);
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 0;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color .2s;
}

.nav-button:hover {
  color: #fff;
  background-color: #c25361;
  text-decoration: none;
}

.nav-button.has-left-space {
  margin-left: 30px;
}

.nav-button.top-space {
  background-color: #e06473;
  margin-top: 20px;
}

.nav-button.top-space:hover {
  background-color: #c25361;
}

.nav-button.vita-space {
  margin-top: 40px;
}

.toolbar-button {
  background-color: var(--indian-red);
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 0;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color .2s;
}

.toolbar-button:hover {
  color: #fff;
  background-color: #c25361;
  text-decoration: none;
}

.toolbar-button.has-left-space {
  margin-left: 30px;
}

.toolbar-button.top-space {
  background-color: #e06473;
  margin-top: 20px;
}

.toolbar-button.top-space:hover {
  background-color: #c25361;
}

.toolbar-button.vita-space {
  margin-top: 40px;
}

.toolbar-container-tablet, .show-mobile {
  display: none;
}

.heading-10-mobile {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 50px;
  padding-right: 0;
  font-size: 40px;
  font-weight: 600;
  display: none;
}

.heading-10-mobile.no-bottom-space {
  margin-bottom: 0;
}

.heading-10-mobile.hide-desktop {
  display: none;
}

.vita-button {
  background-color: var(--indian-red);
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 0;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color .2s;
}

.vita-button:hover {
  color: #fff;
  background-color: #c25361;
  text-decoration: none;
}

.vita-button.has-left-space {
  margin-left: 30px;
}

.vita-button.top-space {
  background-color: #e06473;
  margin-top: 20px;
}

.vita-button.top-space:hover {
  background-color: #c25361;
}

.vita-button.vita-space {
  margin-top: 40px;
}

.vita-heading {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 50px;
  padding-right: 0;
  font-size: 40px;
  font-weight: 600;
  display: inline-block;
}

.vita-heading.no-bottom-space {
  margin-bottom: 0;
}

.vita-heading.hide-desktop, .section-tablet {
  display: none;
}

.arzt-vita-3 {
  width: 50%;
  margin-left: 5%;
  padding-right: 50px;
}

.arzt-vita-3.is-right {
  margin-left: 0;
  margin-right: 5%;
  padding-left: 50px;
  padding-right: 0;
}

.arzt-vita-2 {
  width: 50%;
  margin-left: 5%;
  padding-right: 50px;
}

.arzt-vita-2.is-right {
  margin-left: 0;
  margin-right: 5%;
  padding-left: 50px;
  padding-right: 0;
}

.arzt-vita-4 {
  width: 50%;
  margin-left: 5%;
  padding-right: 50px;
}

.arzt-vita-4.is-right {
  margin-left: 0;
  margin-right: 5%;
  padding-left: 50px;
  padding-right: 0;
}

.arzt-vita-copy {
  width: 50%;
  margin-left: 5%;
  padding-right: 50px;
}

.arzt-vita-copy.is-right {
  margin-left: 0;
  margin-right: 5%;
  padding-left: 50px;
  padding-right: 0;
}

.map-block {
  background-image: url('../images/map.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  max-width: 800px;
  height: 800px;
  position: relative;
}

.map-block.iframe-placeholder.footer-map {
  max-width: 73%;
  height: 300px;
}

.map-block-hidden {
  width: 100%;
  max-width: 800px;
  height: 800px;
}

.map-block-hidden.iframe {
  display: none;
  overflow: hidden;
}

.map-block-hidden.iframe.footer-map {
  max-width: 73%;
  height: 300px;
}

.hidden {
  display: none;
}

.heading-10-tablet {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 50px;
  padding-right: 0;
  font-size: 40px;
  font-weight: 600;
  display: none;
}

.heading-10-tablet.no-bottom-space {
  margin-bottom: 0;
}

.heading-10-tablet.hide-desktop {
  display: none;
}

.team-img-10 {
  background-image: url('../images/luzie-l.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-11 {
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/avatar.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.team-img-12 {
  background-image: url('../images/alisya-n.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-13 {
  background-image: url('../images/martina-m.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-14 {
  background-image: url('../images/nicole-b.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-15 {
  background-image: url('../images/buesra-s.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-16 {
  background-image: url('../images/jessica-b.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-17 {
  background-image: url('../images/beata-t.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-18 {
  background-image: url('../images/nila-h.png');
  background-position: 50%;
  background-size: cover;
}

.team-img-avatar {
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/avatar.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.team-img-20 {
  background-image: url('../images/thomas.jpg');
  background-position: 50%;
  background-size: cover;
}

.team-img-20.gradient {
  background-image: linear-gradient(#fff0 68%, #fff9), url('../images/team-02.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.team-img-13-copy {
  background-image: url('../images/martina-mueller.png');
  background-position: 50%;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  h3 {
    font-size: 18px;
  }

  .body {
    font-size: 16px;
  }

  .container-alt {
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding-bottom: 13px;
  }

  .container-alt.small {
    justify-content: flex-start;
  }

  .container-alt.small.hide-tablet {
    display: none;
  }

  .container-alt.small.show-tablet {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: flex-start flex-end;
    align-items: center;
    height: 100px;
    padding-top: 18px;
    padding-bottom: 13px;
    padding-right: 0;
    display: flex;
  }

  .brand {
    width: 300px;
  }

  .nav-menu {
    background-color: var(--white-smoke);
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding: 20px;
    inset: 100px 0% auto auto;
  }

  .nav-link {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
  }

  .nav-link.mobile-navlink {
    margin-top: 0;
  }

  .nav-link.leddtop {
    margin-top: 10px;
  }

  .banner {
    height: 600px;
  }

  .heading {
    border-bottom-style: solid;
    margin-top: 0;
    margin-bottom: 75px;
    margin-right: 0;
    padding-right: 0;
    font-size: 43px;
    line-height: 24px;
    display: inline-block;
  }

  .text-block {
    max-width: 600px;
  }

  .fixed-image-bg {
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: scroll;
    height: 500px;
  }

  .div-block-2 {
    width: 270px;
  }

  .section.bottom-border {
    display: none;
  }

  .section.bottom-border-2 {
    margin-top: -179px;
  }

  .div-block-4 {
    padding-bottom: 16px;
  }

  .div-block-5 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: stretch;
    place-items: start;
    max-width: 1000px;
    padding-bottom: 40px;
    display: grid;
  }

  .div-block-5.map-spacing {
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    display: flex;
  }

  .div-block-6 {
    text-align: left;
  }

  .div-block-6.flex-button-container {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 65%;
  }

  .heading-2 {
    margin-bottom: 20px;
  }

  .menu-button {
    flex: 0 auto;
    order: 1;
    margin-bottom: 0;
    padding: 6px;
  }

  .menu-button.w--open {
    background-color: #a2b8ba80;
    border-radius: 10px;
  }

  .icon {
    color: var(--dark-slate-grey-2);
    font-size: 1.7em;
    line-height: 1em;
  }

  .div-block-8 {
    height: 65vh;
    padding-top: 160px;
  }

  .div-block-9 {
    filter: brightness(80%);
    width: 100%;
  }

  .div-block-9.team-header {
    background-position: 50% 0;
  }

  .div-block-9.kontakt-header {
    background-position: 100% 0;
  }

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

  .text-block-3 {
    text-align: center;
    border-bottom-width: 12px;
    font-size: 38px;
    line-height: 13px;
    top: auto;
    bottom: 5%;
    left: 50%;
  }

  .section-3.arzt-section {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .section-3.impressum-datenschutz-section {
    padding-top: 119px;
  }

  .heading-3 {
    font-size: 80px;
  }

  .grid-3 {
    margin-top: 30px;
  }

  .image-3 {
    display: none;
  }

  .div-block-13 {
    justify-content: flex-end;
  }

  .div-block-13.div-block-14, .link-block {
    opacity: 1;
  }

  .paragraph-4 {
    background-color: #2c3945d9;
    border-bottom-style: none;
    border-bottom-width: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .paragraph-4.paragraph-6 {
    text-align: center;
    letter-spacing: 1px;
    text-transform: none;
    background-color: #fff;
    border: 2px solid #000;
    align-self: stretch;
    margin-bottom: 0;
    margin-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
  }

  .paragraph-4.paragraph-7 {
    background-color: var(--dark-slate-grey);
    color: #fff;
    letter-spacing: 1px;
    text-transform: none;
    align-self: stretch;
    margin-bottom: 0;
    margin-right: 0;
    padding: 9px 0 2px 16px;
    font-size: 16px;
    font-weight: 600;
  }

  .paragraph-5 {
    background-color: var(--dark-slate-grey);
    color: #fff;
    letter-spacing: 1px;
    align-self: stretch;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 9px;
    padding-left: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
  }

  .dropdown.dropdown-content {
    display: none;
  }

  .link-6 {
    color: var(--black);
  }

  .intro-heading {
    font-size: 70px;
  }

  .intro-heading.smaller {
    font-size: 65px;
  }

  .heading-5 {
    margin-right: auto;
  }

  .div-block-16 {
    background-attachment: scroll;
    height: 400px;
  }

  .text-block-4 {
    bottom: 0;
  }

  .text-block-4.leistung-text-2 {
    bottom: -2px;
    left: -6px;
  }

  .text-block-4.leistung-text-3 {
    line-height: 10vw;
    bottom: 1px;
    left: -5px;
  }

  .text-block-4.leistung-text-4 {
    left: -6px;
  }

  .text-block-4.leistung-text-5 {
    width: 100%;
    bottom: 0;
    left: -2px;
  }

  .text-block-4.leistung-text-6 {
    bottom: -1px;
    left: -7px;
  }

  .text-block-4.leistung-text-7 {
    font-size: 5.6vw;
    bottom: -3px;
    left: -1px;
  }

  .text-block-4.leistung-text-9 {
    font-size: 14.2vw;
    bottom: -2px;
    left: -7px;
  }

  .text-block-4.leistung-text-8 {
    font-size: 5.86vw;
    bottom: -2px;
    left: 0;
  }

  .text-block-4.leistung-text-10 {
    font-size: 7.4vw;
    bottom: -2px;
    left: -10px;
  }

  .text-block-4.leistung-text-11 {
    font-size: 10vw;
    bottom: -3px;
    left: -6px;
  }

  .text-block-4.leistung-text-12 {
    font-size: 3.9vw;
    bottom: -4px;
    left: -3px;
  }

  .text-block-4.leistung-text-13 {
    font-size: 7.5vw;
    left: -6px;
  }

  .text-block-4.leistung-text-16 {
    bottom: 1px;
    left: -5px;
  }

  .div-block-17 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .heading-6 {
    font-size: 24px;
  }

  .submit-button {
    transition: transform .15s ease-in-out, background-color .25s ease-in-out;
  }

  .submit-button:hover {
    background-color: var(--gainsboro);
  }

  .submit-button:active {
    transform: scale(.98);
  }

  .div-block-18.iframe-placeholder {
    max-width: 400px;
    height: 400px;
  }

  .div-block-18.iframe-placeholder.footer-map {
    max-width: 100%;
    height: 400px;
  }

  .div-block-21.iframe {
    max-width: 400px;
    height: 400px;
    display: none;
    overflow: hidden;
  }

  .div-block-21.iframe.footer-map {
    max-width: 100%;
    height: 400px;
  }

  .html-embed {
    width: 100%;
    height: 400px;
  }

  .dropdown-wrapper.nav-link {
    margin: 40px 30px 30px 0;
  }

  .dropdown-trigger.nav-link {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .dropdown-trigger.nav-link.w--current {
    padding-right: 30px;
  }

  .div-block-22 {
    padding: 0 0 0 30px;
  }

  .arzt-fullpage-wrapper {
    overflow: hidden;
  }

  .arzt-desc {
    flex-direction: column-reverse;
    width: 100vw;
  }

  .arzt-bild {
    flex-flow: row;
    justify-content: flex-end;
    align-self: flex-end;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-top: 50px;
    margin-right: 0;
    padding-right: 0;
    display: flex;
  }

  .arzt-dots {
    display: none;
  }

  .arzt-dots.mobile-arzt-dots {
    order: -1;
    width: 10vw;
    min-width: 90px;
    margin-right: 20px;
    display: block;
  }

  .arzt-vita {
    width: 80%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    overflow: hidden;
  }

  .heading-10 {
    font-size: 30px;
  }

  .heading-10.hide-tablet {
    display: none;
  }

  .image-4 {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .image-5 {
    order: 1;
    width: 80%;
    display: block;
  }

  .container-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-text {
    width: 95%;
  }

  .popup-fenster {
    width: 75%;
  }

  .dropdown-2 {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .dropdown-list-wrapper.w--open {
    background-color: #0000;
    display: none;
    position: relative;
  }

  .schwerpunkte-auswahl-container {
    display: flex;
  }

  .floating-button.fbcop {
    margin-right: -200px;
  }

  .flex-siegel {
    margin-bottom: 15px;
  }

  .heading-copy {
    border-bottom-style: solid;
    margin-top: 0;
    margin-bottom: 75px;
    margin-right: 0;
    padding-right: 0;
    font-size: 43px;
    line-height: 24px;
    display: inline-block;
  }

  .tel-link {
    margin-top: 40px;
    margin-bottom: 30px;
    margin-left: 30px;
  }

  .tel-link.mobile-navlink {
    margin-top: 0;
  }

  .tel-link.leddtop {
    margin-top: 10px;
  }

  .toolbar {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .toolbar-txt {
    letter-spacing: .5px;
    margin-right: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .schwerpunkte-link {
    font-size: 14px;
  }

  .name-wrapper {
    width: 80%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .subhead {
    letter-spacing: 0;
    font-size: 18px;
    line-height: 26px;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    width: 85%;
  }

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

  .team-img-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    min-height: 1800px;
  }

  .team-img-grid.tig-2 {
    min-height: 350px;
  }

  .insta-icon {
    margin-bottom: 20px;
  }

  .content-wrapper.smaller {
    width: 75%;
  }

  .nav-button {
    margin-bottom: 0;
    display: none;
  }

  .toolbar-button {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.8;
    display: flex;
  }

  .toolbar-container-tablet {
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .heading-10-mobile {
    font-size: 30px;
  }

  .div-block-36 {
    flex-direction: column;
    flex: 0 auto;
    align-items: stretch;
  }

  .div-block-37 {
    border-bottom: 2px solid #a2b8ba;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 30px;
    display: flex;
  }

  .image-10 {
    object-fit: cover;
    width: 100%;
    height: 600px;
    margin-bottom: 30px;
  }

  .vita-button {
    background-color: var(--dark-grey);
  }

  .vita-button:hover {
    background-color: #818f90;
  }

  .vita-heading {
    margin-bottom: 25px;
    font-size: 30px;
  }

  .section-tablet {
    display: block;
  }

  .arzt-vita-3, .arzt-vita-2, .arzt-vita-4, .arzt-vita-copy {
    width: 80%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    overflow: hidden;
  }

  .map-block.iframe-placeholder {
    max-width: 400px;
    height: 400px;
  }

  .map-block.iframe-placeholder.footer-map {
    max-width: 100%;
    height: 400px;
  }

  .map-block-hidden.iframe {
    max-width: 400px;
    height: 400px;
    display: none;
    overflow: hidden;
  }

  .map-block-hidden.iframe.footer-map {
    max-width: 100%;
    height: 400px;
  }

  .heading-10-tablet {
    font-size: 30px;
    line-height: 35px;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .container-alt {
    flex-direction: column;
    align-items: stretch;
    height: 184px;
  }

  .div-block {
    align-self: flex-start;
  }

  .banner-wrapper {
    padding-top: 171px;
  }

  .heading {
    font-size: 32px;
    line-height: 18px;
  }

  .fixed-image-bg {
    background-position: 50%;
    height: 400px;
  }

  .menu-button.hie-mobile {
    padding: 0;
    display: none;
  }

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

  .div-block-8 {
    padding-top: 252px;
  }

  .div-block-9.kontakt-header {
    background-position: 50% 0;
  }

  .text-block-3 {
    top: auto;
    left: 50%;
  }

  .text-block-3.more-width {
    width: 335px;
  }

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

  .container-3 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .intro-heading {
    margin-bottom: 30px;
    font-size: 55px;
    line-height: 63px;
  }

  .intro-heading.smaller {
    font-size: 48px;
    line-height: 53px;
  }

  .intro-heading.smaller.show-mobile {
    margin-bottom: 30px;
  }

  .intro-heading.smaller.hide-mobile {
    display: none;
  }

  .heading-5 {
    width: 90%;
  }

  .section-4 {
    padding-top: 49px;
    padding-bottom: 50px;
  }

  .text-block-4 {
    font-size: 6.6vw;
    bottom: 0;
    left: -1px;
  }

  .text-block-4.leistung-text-2 {
    font-size: 7.4vw;
    bottom: -1px;
    left: -4px;
  }

  .text-block-4.leistung-text-4 {
    font-size: 8.3vw;
    bottom: 1px;
  }

  .text-block-4.leistung-text-5 {
    bottom: -1px;
    left: 2px;
  }

  .text-block-4.leistung-text-6 {
    font-size: 6.1vw;
    bottom: -1px;
  }

  .text-block-4.leistung-text-7 {
    bottom: -1px;
    left: 0;
  }

  .text-block-4.leistung-text-9, .text-block-4.leistung-text-8 {
    bottom: -1px;
  }

  .text-block-4.leistung-text-10 {
    bottom: -3px;
    left: -5px;
  }

  .text-block-4.leistung-text-11 {
    bottom: -3px;
  }

  .text-block-4.leistung-text-12 {
    bottom: -2px;
  }

  .text-block-4.leistung-text-13, .text-block-4.leistung-text-15 {
    bottom: -1px;
  }

  .div-block-18.iframe-placeholder {
    max-width: 100%;
  }

  .paragraph-10 {
    line-height: 1.6;
  }

  .div-block-21.iframe {
    max-width: 100%;
  }

  .column-3 {
    margin-top: 30px;
  }

  .arzt-fullpage-wrapper {
    flex-direction: column;
    width: 100vw;
  }

  .arzt-desc {
    flex-direction: column-reverse;
    width: 100vw;
  }

  .arzt-bild {
    align-self: flex-end;
    margin-top: 50px;
    margin-right: 0;
  }

  .arzt-dots.mobile-arzt-dots {
    min-width: 70px;
  }

  .arzt-vita {
    width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-10 {
    font-size: 24px;
    line-height: 23px;
  }

  .heading-10.hide-mobile {
    display: block;
  }

  .popup-inner1 {
    height: 280px;
  }

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

  .popup-fenster {
    width: 89%;
  }

  .heading-12 {
    font-size: 27px;
    line-height: 33px;
  }

  .paragraph-13 {
    font-size: 14px;
    line-height: 24px;
  }

  .schwerpunkte-auswahl-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .insta.big {
    width: 100px;
    height: 100px;
  }

  .heading-copy {
    font-size: 32px;
    line-height: 18px;
  }

  .name-wrapper {
    width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-block {
    width: 80%;
  }

  .nav-block.hide-mobile {
    display: none;
  }

  .nav-block.left-align {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-32 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-img-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 2150px;
  }

  .team-img-grid.tig-2 {
    min-height: 290px;
  }

  .team-img-title {
    margin-bottom: 15px;
    font-size: .8em;
  }

  .team-img-title.main {
    font-size: 1.3em;
  }

  .content-wrapper.smaller {
    width: 95%;
  }

  .nav-button {
    font-size: 14px;
    display: block;
  }

  .toolbar-button {
    display: none;
  }

  .show-mobile {
    justify-content: space-around;
    margin-bottom: -25px;
    display: flex;
  }

  .heading-10-mobile {
    font-size: 24px;
    line-height: 23px;
  }

  .heading-10-mobile.hide-mobile {
    display: block;
  }

  .column-6 {
    padding-bottom: 35px;
  }

  .vita-heading {
    font-size: 24px;
    line-height: 23px;
  }

  .vita-heading.hide-mobile {
    display: block;
  }

  .arzt-vita-3, .arzt-vita-2, .arzt-vita-4, .arzt-vita-copy {
    width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-block.iframe-placeholder, .map-block-hidden.iframe {
    max-width: 100%;
  }

  .heading-10-tablet {
    font-size: 24px;
    line-height: 23px;
  }

  .heading-10-tablet.hide-mobile {
    display: block;
  }
}

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

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

  h4 {
    letter-spacing: .4px;
    font-size: 17px;
  }

  h6 {
    letter-spacing: 0;
    font-size: 21px;
  }

  .container-alt {
    width: 95%;
    height: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    width: 230px;
  }

  .div-block {
    align-self: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-menu {
    flex-direction: row;
    flex: 1;
    order: 0;
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-start;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    display: flex;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
  }

  .banner {
    height: 350px;
  }

  .heading {
    margin-bottom: 30px;
    font-size: 19px;
    font-weight: 500;
    line-height: 9px;
  }

  .paragraph {
    font-size: 16px;
    line-height: 30px;
  }

  .fixed-image-bg {
    background-position: 50%;
    height: 220px;
  }

  .fixed-image-bg.fib2 {
    background-position: 100%;
  }

  .div-block-2 {
    inset: 20% auto auto 50%;
    transform: translate(-50%);
  }

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

  .section.small {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section.bottom-border-2 {
    margin-top: -70px;
  }

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

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

  .div-block-4 {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-5 {
    grid-template: "."
                   "."
                   "."
                   "."
                   / 1fr;
    grid-auto-flow: column;
  }

  .div-block-5.map-spacing {
    flex-direction: column;
  }

  .div-block-6.flex-button-container {
    justify-content: flex-start;
  }

  .icon {
    font-size: 1.3em;
  }

  .div-block-8 {
    height: 700px;
    padding-top: 190px;
  }

  .div-block-9.team-header {
    background-position: 50%;
  }

  .div-block-9.kontakt-header {
    background-position: 50% 0;
  }

  .text-block-3 {
    border-bottom-width: 11px;
    font-size: 30px;
    line-height: 12px;
  }

  .text-block-3.more-width {
    width: 260px;
  }

  .section-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-3.arzt-section {
    padding-top: 30px;
  }

  .section-3.impressum-datenschutz-section {
    padding-top: 60px;
    overflow: hidden;
  }

  .heading-3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 43px;
  }

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

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

  .container-3 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .intro-heading {
    margin-bottom: 0;
    font-size: 32px;
  }

  .intro-heading.smaller {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 31px;
  }

  .intro-heading.smaller.show-mobile {
    letter-spacing: 0;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 35px;
  }

  .heading-5 {
    max-width: 346px;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
  }

  .div-block-16 {
    height: 200px;
  }

  .div-block-16.leistung-img-2 {
    background-position: 50%;
  }

  .text-block-4 {
    bottom: 0;
    left: -2px;
  }

  .text-block-4.leistung-text-2 {
    bottom: -1px;
    left: -2px;
  }

  .text-block-4.leistung-text-3 {
    bottom: -2px;
    left: -1px;
  }

  .text-block-4.leistung-text-4 {
    bottom: -2px;
    left: -3px;
  }

  .text-block-4.leistung-text-5 {
    font-size: 5vw;
    line-height: 6vw;
    bottom: -3px;
    left: 0;
  }

  .text-block-4.leistung-text-6 {
    left: -2px;
  }

  .text-block-4.leistung-text-7 {
    bottom: 0;
    left: 1px;
  }

  .text-block-4.leistung-text-9 {
    bottom: -1px;
    left: -5px;
  }

  .text-block-4.leistung-text-8 {
    bottom: -1px;
  }

  .text-block-4.leistung-text-10 {
    bottom: -1px;
    left: -5px;
  }

  .text-block-4.leistung-text-11 {
    font-size: 9.8vw;
    bottom: -1px;
    left: -3px;
  }

  .text-block-4.leistung-text-12 {
    bottom: -1px;
    left: -5px;
  }

  .text-block-4.leistung-text-13, .text-block-4.leistung-text-16 {
    left: -1px;
  }

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

  .heading-6 {
    line-height: 24px;
  }

  .heading-6.leistung-headline-zweizeilig {
    font-size: 19px;
    line-height: 5px;
  }

  .checkbox-label {
    width: 100%;
    max-width: 450px;
  }

  .div-block-21.iframe {
    display: none;
  }

  .html-embed {
    display: block;
  }

  .column-3 {
    margin-top: 30px;
  }

  .dropdown-wrapper.nav-link {
    margin-left: 30px;
  }

  .dropdown-trigger.nav-link {
    order: 0;
    align-self: stretch;
    margin-left: 0;
  }

  .arzt-dots.mobile-arzt-dots {
    display: none;
  }

  .arzt-vita {
    object-fit: fill;
    margin-top: 10px;
    overflow: visible;
  }

  .avdl-left {
    width: 100px;
  }

  .avdl-right {
    line-height: 1.7em;
  }

  .heading-10 {
    letter-spacing: 0;
    object-fit: fill;
    width: 100%;
    margin-bottom: 30px;
    font-size: 22px;
  }

  .heading-10.hide-mobile {
    display: none;
  }

  .image-5 {
    margin-left: auto;
    margin-right: auto;
  }

  .heading-11 {
    color: var(--black);
    font-size: 2em;
    line-height: 2em;
  }

  .text-block-11 {
    color: var(--black);
    margin-top: 50px;
    font-weight: 300;
    line-height: 1.8em;
  }

  .text-block-12 {
    color: var(--black);
    font-weight: 300;
    line-height: 1.8em;
  }

  .list {
    font-size: 16px;
    line-height: 26px;
  }

  .popup-inner1 {
    height: 450px;
  }

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

  .paragraph-13 {
    font-size: 14px;
    line-height: 24px;
  }

  .dropdown-toggle, .dropdown-2 {
    width: 100%;
  }

  .schwerpunkte-auswahl-container {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .schwerpunkte-button {
    background-color: #9db9bb;
    padding: 1px 9px;
    font-size: .8em;
  }

  .to-top-button {
    display: none;
  }

  .heading-copy {
    margin-bottom: 30px;
    font-size: 19px;
    font-weight: 500;
    line-height: 9px;
  }

  .column-4 {
    margin-bottom: -10px;
  }

  .name-wrapper {
    object-fit: fill;
    margin-top: 10px;
    overflow: visible;
  }

  .nav-block.left-align {
    text-align: center;
    margin-top: 5px;
  }

  .banner-content {
    background-image: linear-gradient(#ffffff94, #fff 18%);
  }

  .subhead {
    font-size: 15px;
    line-height: 24px;
  }

  .intro-p {
    margin-top: 15px;
    font-size: 14px;
  }

  .team-img-grid {
    grid-template-columns: 1fr;
    min-height: 5000px;
    margin-top: 50px;
  }

  .team-img-content {
    background-image: linear-gradient(#fff0 44%, #ffffffb3 88%);
  }

  .content-wrapper.smaller {
    width: 90%;
  }

  .nav-button {
    padding: 7px 15px;
    font-size: 11px;
  }

  .show-mobile {
    margin-bottom: 0;
  }

  .heading-10-mobile {
    letter-spacing: 0;
    object-fit: fill;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 29px;
    display: inline-block;
  }

  .image-10 {
    height: 320px;
  }

  .vita-heading {
    text-align: center;
    letter-spacing: 0;
    object-fit: fill;
    width: 100%;
    margin-bottom: 30px;
    font-size: 22px;
  }

  .vita-heading.hide-mobile {
    display: none;
  }

  .arzt-vita-3, .arzt-vita-2, .arzt-vita-4, .arzt-vita-copy {
    object-fit: fill;
    margin-top: 10px;
    overflow: visible;
  }

  .map-block-hidden.iframe {
    display: none;
  }

  .heading-10-tablet {
    letter-spacing: 0;
    object-fit: fill;
    width: 100%;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 29px;
  }
}

#w-node-_012531bf-bddb-653a-d211-544c3f73ec15-2609de44, #w-node-a1620685-397e-3227-5f4c-cdcd07625f2d-2609de44, #w-node-fd441d3e-dc9b-29e5-8bf4-7904665b1784-2609de44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_29cb38e4-4a85-2183-456c-d7ce84babdce-f4b6cc1d {
    grid-area: Area;
  }
}


@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-ExtraBold.ttf') format('truetype'), url('../fonts/MontserratOff-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserratoff';
  src: url('../fonts/MontserratOff-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}