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

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

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

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

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

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

:root {
  --grey: #73767e;
  --black: #333232;
  --white-smoke: #eaeaea;
  --gainsboro: #dbdbdb;
  --peru: #a28561;
  --black-2: #221f20;
  --azure: #d4e5e7;
  --light-grey: #ced7db;
  --white: white;
  --dark-slate-grey: #2c3945d9;
  --dim-grey: #4e5055;
  --light-grey-2: #cecece;
}

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

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

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

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

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

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

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

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: var(--grey);
  font-family: Robotooff, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 2em;
}

h1, h2 {
  letter-spacing: 5px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: var(--black);
  margin-bottom: 10px;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong {
  font-weight: 600;
}

.body {
  color: var(--black);
  letter-spacing: 1px;
  text-indent: 0;
  font-family: Robotooff, sans-serif;
  font-size: 1em;
  font-weight: 400;
}

.navbar {
  z-index: 99;
  background-color: var(--white-smoke);
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 30px;
  position: fixed;
  inset: 0% 0% auto;
}

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

.brand {
  flex: 0 auto;
  width: 250px;
  max-width: 15vw;
  display: block;
}

.brand.brand-mobile {
  display: none;
}

.logo-container {
  flex: 0 auto;
  order: -1;
  margin-bottom: -20px;
  position: relative;
}

.nav-menu {
  grid-row-gap: 30px;
  flex-flow: wrap;
  order: 1;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-end;
  display: flex;
}

.nav-link {
  border-bottom: 8px solid var(--gainsboro);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 20px;
  padding: 0 15px 0 0;
  font-family: Robotooff, sans-serif;
  font-size: 16.5px;
  line-height: 3px;
}

.nav-link:hover {
  border-bottom-color: #a2856185;
  text-decoration: none;
}

.nav-link:focus {
  border-bottom-color: #a28561b8;
}

.nav-link.w--current {
  color: var(--black);
  border-bottom-color: #a2856185;
}

.nav-link.w--current:hover {
  color: var(--black);
}

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

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

.nav-link.show-mobile {
  display: none;
}

.banner-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.banner {
  background-image: url('../images/392A1586-HDR-bearb.jpg');
  background-position: 50%;
  background-size: cover;
  border: 1px #000;
  height: 100%;
  margin-top: 0;
  padding-top: 130px;
}

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

.heading {
  z-index: 1;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}

.text-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph {
  padding-top: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

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

.fixed-image-bg {
  background-image: url('../images/Zahnarztpraxis-Theelen-Team_Duo-2.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 750px;
}

.fixed-image-bg.fib2 {
  background-image: url('../images/392A1612.jpg');
  background-position: 100%;
}

.image {
  position: relative;
}

.div-block-2 {
  width: 389px;
  display: none;
  position: absolute;
  inset: auto 8% 7% auto;
}

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

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

.section-2 {
  flex-direction: column;
  font-family: Robotooff, sans-serif;
  display: flex;
  position: relative;
}

.paragraph-2 {
  letter-spacing: 2px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.div-block-3 {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Robotooff, sans-serif;
  display: flex;
}

.div-block-4 {
  background-color: var(--peru);
  padding-top: 50px;
  padding-bottom: 30px;
  font-family: Robotooff, sans-serif;
}

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

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

.heading-2 {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.17em;
}

.paragraph-3 {
  max-width: 319px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4em;
}

.paragraph-3.white {
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 26px;
}

.link {
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2px;
  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;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

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

.link-3:hover {
  color: #fff;
  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: 130px;
  font-family: Robotooff, sans-serif;
  display: flex;
  position: relative;
}

.div-block-8.smaller {
  height: 750px;
}

.div-block-9 {
  background-image: url('../images/392A1644-web.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
}

.div-block-9.team-header {
  background-image: url('../images/camden-hailey-george-IJq5FWBpShY-unsplash.jpg');
  background-position: 100%;
  background-size: cover;
}

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

.div-block-9.kontakt-header {
  background-image: url('../images/392A2064.jpg');
  background-position: 40% 40%;
}

.div-block-9.prophylaxe-header {
  background-image: url('../images/392A1437.jpg');
}

.div-block-10 {
  background-color: var(--black-2);
  width: 55%;
}

.text-block-3 {
  border-bottom: 16px none var(--azure);
  color: #fff;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px #000000c7;
  margin-right: 0;
  padding-right: 40px;
  font-family: Robotooff, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.section-3 {
  padding-top: 0;
  padding-bottom: 150px;
  font-family: Robotooff, sans-serif;
  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: 300px;
}

.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;
  min-width: auto;
  max-width: none;
  display: flex;
  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 {
  letter-spacing: 5px;
  text-shadow: 0 0 20px var(--white);
  cursor: pointer;
  border-bottom-style: none;
  font-size: 35px;
  font-weight: 600;
}

.paragraph-4.paragraph-7 {
  color: var(--peru);
  letter-spacing: 5px;
  text-shadow: 0 0 20px var(--white);
  border-bottom-style: none;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
}

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

.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;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  font-weight: 200;
  line-height: 40px;
  text-decoration: none;
  transition: color .2s;
}

.link-6:hover {
  color: var(--peru);
  text-decoration: none;
}

.heading-4 {
  color: var(--peru);
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 50px;
  font-family: Robotooff, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.heading-4.morepadding {
  margin-bottom: 60px;
}

.heading-5 {
  color: var(--black);
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  max-width: 800px;
  margin: 30px auto 70px;
  padding-right: 0;
  font-family: Robotooff, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  display: block;
}

.section-4 {
  padding-top: 0;
  padding-bottom: 100px;
  font-family: Robotooff, sans-serif;
}

.schwerpunkt-image {
  background-image: url('../images/oralchirurgie-zahnarztpraxis-manuel-theelen.jpg');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 670px;
  position: relative;
}

.schwerpunkt-image.leistung-img-2, .schwerpunkt-image.leistung-img-3 {
  background-image: url('../images/15.jpg');
  background-position: 50%;
}

.schwerpunkt-image.leistung-img-4 {
  background-image: url('../images/22.jpg');
  background-position: 50%;
}

.schwerpunkt-image.leistung-img-5 {
  background-image: url('../images/16.jpg');
  background-position: 50%;
}

.schwerpunkt-image.leistung-img-6 {
  background-image: url('../images/19.jpg');
}

.schwerpunkt-image.leistung-img-7 {
  background-image: url('../images/17.jpg');
  background-position: 50%;
}

.schwerpunkt-image.leistung-img-8 {
  background-image: url('../images/21.jpg');
  background-position: 50%;
}

.schwerpunkt-image.leistung-img-9, .schwerpunkt-image.leistung-img-10, .schwerpunkt-image.leistung-img-11, .schwerpunkt-image.leistung-img-12 {
  background-image: url('../images/23.jpg');
  background-position: 50%;
}

.schwerpunkt-image.si-7 {
  background-image: url('../images/implantologie-zahnarztpraxis-manuel-theelen-web.jpg');
  background-position: 50% 40%;
}

.schwerpunkt-image.si-2 {
  background-image: url('../images/zahnersatz-zahnarztpraxis-manuel-theelen-web.jpg');
}

.schwerpunkt-image.si-4 {
  background-image: url('../images/endodontie-zahnarztpraxis-manuel-theelen-web.jpg');
}

.schwerpunkt-image.si-1 {
  background-image: url('../images/aesthetik-zahnarztpraxis-manuel-theelen-web.jpg');
  background-position: 50%;
}

.schwerpunkt-image.si-9 {
  background-image: url('../images/alterszahnmedizin-zahnarztpraxis-manuel-theelen.jpg');
  background-position: 0%;
}

.schwerpunkt-image.si-8 {
  background-image: url('../images/kinderzahnheilkunde-zahnarztpraxis-manuel-theelen-web.jpg');
  background-position: 100% 0;
}

.schwerpunkt-image.si-3 {
  background-image: url('../images/prophylaxe-zahnarztpraxis-manuel-theelen.jpg');
}

.schwerpunkt-image.si-5 {
  background-image: url('../images/parodontologie-zahnarztpraxis-manuel-theelen-web.jpg');
}

.schwerpunkt-image.si-6 {
  background-image: url('../images/oralchirurgie-zahnarztpraxis-manuel-theelen-web.jpg');
}

.schwerpunkt-top {
  position: relative;
  overflow: hidden;
}

.schwerpunkt-title {
  opacity: .5;
  color: var(--white);
  text-align: center;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 700;
  line-height: 7vw;
  position: absolute;
  inset: auto 0% -6px -10px;
}

.schwerpunkt-title.leistung-text-2 {
  color: var(--white);
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
  left: -14px;
}

.schwerpunkt-title.leistung-text-3 {
  color: var(--white);
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
  left: -11px;
}

.schwerpunkt-title.leistung-text-4 {
  color: var(--white);
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
  left: -16px;
}

.schwerpunkt-title.leistung-text-5 {
  color: var(--white);
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 6vw;
  bottom: -3px;
  left: 0;
}

.schwerpunkt-title.leistung-text-6 {
  font-size: 9.4vw;
  line-height: 7.1vw;
  left: -14px;
}

.schwerpunkt-title.leistung-text-7 {
  color: #ffffff85;
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
  left: -11px;
}

.schwerpunkt-title.leistung-text-9 {
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
  left: -21px;
}

.schwerpunkt-title.leistung-text-8 {
  letter-spacing: 12px;
  font-size: 80px;
  line-height: 7vw;
}

.schwerpunkt-title.leistung-text-10, .schwerpunkt-title.leistung-text-11, .schwerpunkt-title.leistung-text-12 {
  font-size: 14.2vw;
  line-height: 11.2vw;
  bottom: -8px;
  left: -21px;
}

.schwerpunkt-text {
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-8 {
  letter-spacing: 1px;
  margin-top: -30px;
  padding-top: 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

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

.lightbox-link {
  width: 100%;
  transition: opacity .2s;
  display: block;
  overflow: visible;
}

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

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

.text-block-5 {
  color: var(--black);
  text-align: right;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 12px;
}

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

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

.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(--black);
  letter-spacing: 1px;
  margin-top: 20px;
  padding-left: 13px;
  font-size: 16px;
  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(--black-2);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 5px 30px;
  transition: background-color .2s ease-in-out;
}

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

.checkbox-label {
  color: var(--black);
  letter-spacing: 1px;
  width: 100%;
  font-size: 12px;
  line-height: 24px;
}

.column {
  margin-top: 24px;
}

.checkbox-field {
  width: 100%;
  margin-bottom: 40px;
}

.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 {
  width: 95%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-9 {
  color: var(--black);
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

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

.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 {
  height: 500px;
}

.section-6 {
  padding-bottom: 100px;
  font-family: Robotooff, sans-serif;
}

.paragraph-10 {
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  font-size: 14px;
  line-height: 26px;
  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%);
}

.paragraph-12 {
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.div-block-20 {
  background-color: var(--black-2);
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 30px;
  transition: background-color .2s ease-in-out;
  display: inline-block;
  position: relative;
}

.div-block-20:hover {
  background-color: var(--peru);
}

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

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

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

.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 {
  justify-content: space-between;
  display: flex;
}

.arzt-desc {
  background-color: var(--gainsboro);
  color: var(--black-2);
  justify-content: space-between;
  width: 90vw;
  display: flex;
}

.arzt-bild {
  width: 40%;
  max-width: 610px;
  margin-top: -50px;
  padding-bottom: 40px;
  padding-right: 40px;
}

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

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

.arzt-vita {
  width: 50%;
  margin-top: -9px;
  margin-bottom: 50px;
  margin-left: 10%;
  padding-right: 90px;
}

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

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

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

.heading-10 {
  border-bottom: 10px none var(--peru);
  color: var(--black-2);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 60px;
  margin-bottom: 50px;
  padding-right: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

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

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

.text-block-8 {
  font-weight: 500;
}

.text-block-9 {
  font-weight: 300;
}

.image-5 {
  max-width: 90%;
  margin-left: 60px;
  padding-left: 0;
}

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

.brandy:hover {
  color: var(--black);
  text-decoration: none;
}

.container-6.impcont {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.text-block-11 {
  color: var(--black);
  letter-spacing: 1px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

.text-block-12 {
  color: #333232;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

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

.div-block-23 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.bold-text-2 {
  color: var(--black);
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 30px;
}

.list {
  margin-bottom: 30px;
  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-own {
  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: 22px;
  font-weight: 400;
  line-height: 28px;
}

.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-2 {
  margin-bottom: -20px;
}

.dropdown-list-wrapper {
  background-color: var(--black);
}

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

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

.heading-bar {
  z-index: 0;
  background-color: var(--peru);
  opacity: .6;
  position: absolute;
  inset: 93% -30px 5% -5px;
}

.heading-bar.bar2 {
  border-bottom-style: none;
  position: relative;
  top: 0%;
}

.heading-bar.hb-v2 {
  background-color: var(--peru);
  height: 12px;
  display: block;
  top: 55%;
  left: 0;
}

.heading-container {
  margin-top: 40px;
  margin-bottom: 60px;
  position: relative;
}

.schwerpunkt-section {
  font-family: Robotooff, sans-serif;
}

.schwerpunkt-block {
  display: block;
}

.schwerpunkt-bot {
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading-section {
  z-index: 1;
  outline-offset: 0px;
  color: var(--black);
  letter-spacing: 5px;
  text-transform: uppercase;
  outline: 3px #333232;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1em;
  display: inline-block;
  position: relative;
}

.heading-section.heading-special {
  letter-spacing: 5px;
  white-space: nowrap;
  font-weight: 700;
}

.heading-section.kontaktheading {
  font-size: 30px;
}

.heading-14 {
  color: var(--peru);
  letter-spacing: 2px;
  font-size: 30px;
  line-height: 1.1em;
}

.paragraph-14 {
  color: var(--black);
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 30px;
}

.section-7, .section-8, .section-9 {
  font-family: Robotooff, sans-serif;
}

.heading-15 {
  color: var(--black-2);
}

.paragraph-15 {
  color: var(--peru);
}

.online-button {
  letter-spacing: 1px;
  background-color: #333;
  margin-bottom: 30px;
  margin-right: 0;
  font-size: 16px;
  transition: background-color .2s;
}

.online-button:hover {
  background-color: var(--peru);
  text-decoration: none;
}

.termin-button-hide-mobil {
  font-family: Robotooff, sans-serif;
}

.nav-top-leiste {
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  display: flex;
}

.nav-link-2 {
  letter-spacing: 1px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
}

.nav-link-2:hover {
  color: #cfc0ad;
  text-decoration: none;
}

.nav-link-2:active {
  color: #cfc0ad;
}

.nav-link-2.w--current {
  color: #f4912f;
}

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

.termine-button-container, .termine-button-container.show-mobile {
  display: none;
}

.popup-inner1-2 {
  background-color: #fff;
  padding: 20px;
  display: flex;
  position: relative;
}

.text-wf {
  text-align: center;
  background-color: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  font-size: 30px;
  line-height: 37px;
  display: flex;
}

.inhalt-2 {
  border: 4px solid var(--peru);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.image-9 {
  object-fit: contain;
  width: 20px;
}

.popup-fenster-2 {
  z-index: 1;
  flex-direction: column;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.close-cb-2 {
  z-index: 1;
  justify-content: flex-end;
  margin-bottom: -20px;
  margin-right: -20px;
  display: flex;
  position: relative;
}

.popup-cb-2 {
  z-index: 999;
  object-fit: cover;
  background-color: #221f2063;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.close-wrapper {
  background-color: var(--peru);
  cursor: pointer;
  padding: 10px;
  transition: background-color .2s;
}

.close-wrapper:hover {
  background-color: var(--black);
}

.popup-p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

.popup-p.headline {
  font-size: 24px;
}

.close-bg {
  z-index: 0;
  opacity: 0;
  background-color: #33323299;
  position: fixed;
  inset: 0%;
}

.popup-p-2 {
  color: var(--peru);
  font-size: 20px;
  text-decoration: none;
  transition: color .2s;
}

.popup-p-2:hover {
  color: #a28561cc;
  text-decoration: none;
}

.popup-bot-row {
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  font-size: 24px;
  display: flex;
}

.body-2, .body-3, .body-4, .body-5, .body-6, .body-7, .body-8, .body-9 {
  font-family: Robotooff, sans-serif;
}

.small-heading {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
}

.flex {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex.leistungen-flex {
  align-items: stretch;
  margin-bottom: 120px;
}

.flex.leistungen-flex.lfeven {
  flex-direction: row-reverse;
}

.flex.leistungen-flex.lfeven.floatleft.ergt34587, .flex.leistungen-flex.flex-lesspad {
  margin-bottom: 0;
}

.container-small {
  flex-direction: column;
  align-items: flex-start;
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.floating-img {
  min-width: 100%;
  margin-top: 0;
  padding-top: 0;
  display: block;
}

.floating-img.hidemobile.mirrored {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.text-box-paragraph {
  text-align: justify;
  max-width: 680px;
}

.text-box {
  flex-direction: column;
  align-items: flex-start;
  width: 45%;
  max-width: 720px;
  margin-right: auto;
  display: flex;
}

.text-box.stretch {
  width: 55%;
}

.text-box.stretch.tb-mid.tbmidstretch {
  padding-left: 20px;
}

.text-box.tb-mid {
  justify-content: center;
}

.text-box.tb-mid.tb9345 {
  width: 60%;
}

.text-box.tb-mid.dsg348765, .text-box.kr897345 {
  width: 100%;
}

.leist-img-wrapper {
  max-width: 500px;
  position: relative;
}

.leist-img-wrapper.liw-l.push.jhvji34z5o {
  align-items: flex-end;
  display: flex;
}

.leist-img-wrapper.liw-l.liw-2 {
  margin-right: 100px;
}

.leist-img-wrapper.liw-l.liw-2.rtz456 {
  align-self: flex-end;
}

.leist-img-wrapper.liw-r {
  max-width: 530px;
}

.list-item, .list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8, .list-item-9, .list-item-10, .list-item-11 {
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 30px;
}

.heading-container-2 {
  display: none;
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translate(-50%);
}

.heading-line {
  background-color: var(--black);
  width: 101%;
  height: 35px;
  margin-top: -35px;
  margin-left: -10px;
  box-shadow: 0 0 10px #0006;
}

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

.header-image.header-top {
  object-position: 50% 10%;
  margin-top: 0;
  padding-top: 25px;
}

.header-image.hi-top-focus {
  object-position: 50% 0%;
}

.prophylaxe-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.prophylaxe-container.kjhdf834z {
  padding-top: 100px;
}

.heading-16 {
  color: var(--peru);
  letter-spacing: 5px;
  margin-bottom: 100px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.paragraph-8-copy {
  letter-spacing: 1px;
  padding-top: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
}

.list-item-12, .list-item-13, .list-item-14 {
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 30px;
}

.lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.column-4 {
  color: var(--black);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form {
  color: var(--black);
}

.bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8, .bold-text-9, .bold-text-10, .bold-text-11, .bold-text-12, .bold-text-13 {
  letter-spacing: 1px;
}

.bold-text-14 {
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 30px;
}

.bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23 {
  letter-spacing: 1px;
}

.bold-text-24, .bold-text-25 {
  line-height: 30px;
}

.gridbox1234 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.dht45 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.link-12, .link-13 {
  color: var(--white);
}

.popup-p-3 {
  color: #c3dbe1;
  text-decoration: none;
}

.close-wrapper-2 {
  cursor: pointer;
  background-color: #c3dbe1;
  padding: 10px;
  transition: background-color .2s;
}

.close-wrapper-2:hover {
  background-color: #b6cbcf;
}

.popup-cb-3 {
  z-index: 999;
  object-fit: cover;
  background-color: #000000a6;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.inhalt-3 {
  border: 4px solid #c3dbe1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.popup-fenster-3 {
  z-index: 1;
  flex-direction: column;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}

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

.close-bg-2 {
  z-index: 0;
  position: fixed;
  inset: 0%;
}

.popup-bot-row-2 {
  color: #c3dbe1;
  justify-content: space-around;
  width: 100%;
  padding-top: 30px;
  font-size: 20px;
  line-height: 30px;
  display: flex;
}

.popup-p-4 {
  margin-top: 30px;
}

.text-wf-2 {
  color: #726f6f;
  text-align: center;
  background-color: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  font-size: 30px;
  line-height: 37px;
  display: flex;
}

.popup-button {
  background-color: #c3dbe1;
  margin-top: 30px;
  padding: 9px 25px 8px;
  font-size: 20px;
  line-height: 26px;
  transition: background-color .2s;
}

.popup-button:hover {
  background-color: #b6cbcf;
  text-decoration: none;
}

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

.hidden-popup {
  display: none;
}

.button {
  background-color: var(--peru);
  color: var(--white);
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity .2s;
  display: block;
}

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

.button.button-centered {
  background-color: var(--black-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 30px;
  font-size: 1em;
  line-height: 1.1;
}

.button.button-centered:hover {
  background-color: var(--peru);
}

.flex-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 50px;
  display: flex;
}

.text-large {
  color: var(--black);
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  max-width: 990px;
  margin: 30px auto;
  padding-right: 0;
  font-family: Robotooff, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  display: block;
}

.download-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  letter-spacing: 1px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  transition: opacity .2s;
  display: flex;
}

.download-block:hover {
  opacity: .85;
  text-decoration: none;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
}

.image-fit {
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: 100%;
}

.donwload-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.team-image {
  background-image: url('../images/Team_Gesamt.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 100%, 0 0;
  background-size: cover, auto;
  height: 600px;
}

.team-image.t-i {
  height: 40vw;
  overflow: visible;
}

.header--push {
  height: 175px;
}

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

@media screen and (max-width: 991px) {
  .navbar {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .container {
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: auto;
    padding-bottom: 0;
  }

  .brand {
    width: 220px;
    max-width: none;
    display: none;
  }

  .brand.brand-mobile {
    display: block;
  }

  .logo-container {
    margin-bottom: 0;
  }

  .nav-menu {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 10px;
    inset: 70px 0% auto auto;
  }

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

  .banner {
    background-position: 20% 100%;
    padding-top: 70px;
  }

  .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 {
    padding-top: 80px;
  }

  .paragraph-2 {
    font-weight: 200;
  }

  .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: center start;
    width: 90%;
    max-width: 600px;
    padding-bottom: 40px;
    display: grid;
  }

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

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

  .menu-button {
    flex: 0 auto;
    order: 1;
    padding: 10px;
  }

  .icon {
    color: var(--black);
    font-size: 1.7em;
    line-height: 1em;
  }

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

  .div-block-8.smaller {
    height: 640px;
    padding-top: 87px;
  }

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

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

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

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

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

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

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

  .section-4 {
    padding-bottom: 0;
  }

  .schwerpunkt-image {
    background-attachment: scroll;
    height: 400px;
  }

  .schwerpunkt-title {
    font-size: 70px;
    line-height: 9.8vw;
    left: -3px;
  }

  .schwerpunkt-title.leistung-text-2 {
    letter-spacing: 10px;
    font-size: 50px;
    line-height: 8vw;
    left: -6px;
  }

  .schwerpunkt-title.leistung-text-3 {
    letter-spacing: 10px;
    font-size: 50px;
    line-height: 8vw;
    left: -5px;
  }

  .schwerpunkt-title.leistung-text-4 {
    font-size: 8vw;
    line-height: 8.8vw;
    left: -6px;
  }

  .schwerpunkt-title.leistung-text-5 {
    letter-spacing: 10px;
    width: 100%;
    font-size: 50px;
    line-height: 8vw;
    bottom: -5px;
    left: -2px;
  }

  .schwerpunkt-title.leistung-text-6 {
    bottom: -1px;
    left: -7px;
  }

  .schwerpunkt-title.leistung-text-7 {
    letter-spacing: 10px;
    font-size: 50px;
    line-height: 8vw;
    left: -7px;
  }

  .schwerpunkt-title.leistung-text-9 {
    letter-spacing: 10px;
    font-size: 60px;
    line-height: 9vw;
    left: -10px;
  }

  .schwerpunkt-title.leistung-text-8 {
    letter-spacing: 10px;
    font-size: 45px;
    line-height: 7vw;
    bottom: -4px;
  }

  .schwerpunkt-title.leistung-text-10, .schwerpunkt-title.leistung-text-11, .schwerpunkt-title.leistung-text-12 {
    left: -10px;
  }

  .schwerpunkt-text {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 50px;
  }

  .paragraph-8 {
    padding-top: 25px;
  }

  .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(--peru);
  }

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

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

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

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

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

  .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-own {
    width: 95%;
  }

  .popup-fenster {
    width: 75%;
  }

  .dropdown-2 {
    margin-bottom: 0;
  }

  .dropdown-list-wrapper.w--open {
    display: none;
  }

  .heading-bar.hb-v2 {
    top: 34%;
  }

  .schwerpunkt-bot {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .heading-section {
    margin-top: 0;
    margin-bottom: 20px;
    margin-right: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 24px;
    display: inline-block;
  }

  .heading-section.heading-special {
    border: 1px #000;
    margin-bottom: 0;
  }

  .online-button {
    margin-bottom: 0;
  }

  .nav-top-leiste {
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }

  .text-wf {
    font-size: 24px;
  }

  .popup-fenster-2 {
    max-width: 620px;
  }

  .popup-p {
    margin-top: 20px;
  }

  .popup-bot-row {
    padding-top: 20px;
    font-size: 20px;
  }

  .flex {
    align-items: flex-start;
  }

  .flex.leistungen-flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .flex.leistungen-flex.lfeven {
    flex-direction: column;
  }

  .container-small {
    width: 90%;
    max-width: 768px;
  }

  .floating-img {
    max-width: 400px;
    margin-bottom: 30px;
  }

  .floating-img.hidemobile {
    display: none;
  }

  .text-box {
    flex: 1;
    width: 100%;
    margin-bottom: 60px;
  }

  .text-box.stretch.tb-mid {
    width: 100%;
  }

  .text-box.stretch.tb-mid.tb23525, .text-box.tb-mid.tb9345, .text-box.rzr9843759483 {
    margin-bottom: 0;
  }

  .leist-img-wrapper.liw-l {
    margin-right: 40px;
  }

  .leist-img-wrapper.liw-l.push {
    margin-bottom: 0;
  }

  .header-image.header-top {
    margin-top: 0;
  }

  .gridbox1234 {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .popup-fenster-3 {
    max-width: 620px;
  }

  .heading-17 {
    font-size: 16px;
  }

  .popup-bot-row-2 {
    padding-top: 20px;
  }

  .popup-p-4 {
    margin-top: 20px;
  }

  .text-wf-2 {
    width: 95%;
    font-size: 24px;
  }

  .button.button-centered {
    border-radius: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-large {
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    border-bottom: 1px #000;
    font-size: 32px;
    line-height: 1.1;
  }

  .text-block {
    width: 87%;
  }

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

  .div-block-8.smaller {
    height: 450px;
  }

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

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

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

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

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

  .heading-5 {
    width: 85%;
  }

  .schwerpunkt-title {
    font-size: 50px;
    line-height: 9vw;
    bottom: -5px;
  }

  .schwerpunkt-title.leistung-text-2 {
    line-height: 9vw;
    left: -4px;
  }

  .schwerpunkt-title.leistung-text-3, .schwerpunkt-title.leistung-text-4 {
    line-height: 9vw;
  }

  .schwerpunkt-title.leistung-text-5 {
    line-height: 9vw;
    bottom: -4px;
    left: 2px;
  }

  .schwerpunkt-title.leistung-text-7 {
    left: -5px;
  }

  .schwerpunkt-title.leistung-text-9 {
    bottom: -3px;
  }

  .schwerpunkt-title.leistung-text-8 {
    letter-spacing: 7px;
    font-size: 32px;
    line-height: 7vw;
    bottom: -2px;
  }

  .schwerpunkt-title.leistung-text-10, .schwerpunkt-title.leistung-text-11, .schwerpunkt-title.leistung-text-12 {
    bottom: -3px;
  }

  .schwerpunkt-text {
    width: 85%;
    padding-top: 0;
  }

  .paragraph-8 {
    padding-top: 25px;
  }

  .div-block-18.iframe-placeholder, .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: 10px;
  }

  .text-block-12 {
    color: var(--black);
  }

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

  .heading-bar.hb-v2 {
    display: none;
  }

  .heading-container {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .heading-section.heading-special {
    white-space: normal;
    font-size: 25px;
  }

  .text-span {
    display: none;
  }

  .popup-inner1-2 {
    padding: 10px;
  }

  .text-wf {
    font-size: 20px;
    line-height: 29px;
  }

  .inhalt-2 {
    padding: 10px;
  }

  .image-9 {
    width: 16px;
  }

  .close-cb-2 {
    margin-bottom: -14px;
    margin-right: 0;
  }

  .close-wrapper {
    padding: 8px;
  }

  .popup-p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 24px;
  }

  .popup-bot-row {
    flex-direction: column;
    padding-top: 20px;
    font-size: 16px;
  }

  .text-box.stretch.tb-mid {
    margin-bottom: 0;
  }

  .header-image.header-top {
    margin-top: 0;
  }

  .close-wrapper-2 {
    padding: 8px;
  }

  .inhalt-3 {
    padding: 10px;
  }

  .popup-bot-row-2 {
    flex-direction: column;
    padding-top: 20px;
    font-size: 16px;
  }

  .popup-p-4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 25px;
  }

  .text-wf-2 {
    font-size: 20px;
    line-height: 29px;
  }

  .popup-button {
    font-size: 16px;
  }

  .text-large {
    width: 85%;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand {
    width: 180px;
  }

  .brand.brand-mobile {
    padding-left: 0;
  }

  .logo-container {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .nav-link.is--last {
    margin-right: 30px;
  }

  .nav-link.show-mobile {
    display: block;
  }

  .banner-wrapper {
    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: 30px;
    padding-bottom: 20px;
  }

  .paragraph-2 {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }

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

  .div-block-5 {
    grid-template-columns: 1fr;
  }

  .div-block-7 {
    flex-direction: column-reverse;
    width: 95%;
  }

  .menu-button {
    padding: 15px;
  }

  .menu-button.w--open {
    background-color: var(--white-smoke);
    color: var(--black);
  }

  .icon {
    font-size: 1.3em;
  }

  .div-block-8 {
    height: 350px;
    padding-top: 60px;
  }

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

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

  .text-block-3 {
    font-size: 32px;
  }

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

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

  .section-3.impressum-datenschutz-section {
    padding-top: 120px;
    padding-bottom: 40px;
    overflow: hidden;
  }

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

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

  .heading-4 {
    letter-spacing: 7px;
    font-size: 24px;
  }

  .heading-4.morepadding {
    margin-top: 20px;
    margin-bottom: 30px;
  }

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

  .schwerpunkt-image {
    height: 200px;
  }

  .schwerpunkt-image.leistung-img-2 {
    background-position: 50%;
  }

  .schwerpunkt-title, .schwerpunkt-title.leistung-text-2 {
    letter-spacing: 8px;
    font-size: 24px;
    line-height: 11vw;
    bottom: -3px;
    left: -2px;
  }

  .schwerpunkt-title.leistung-text-3 {
    opacity: .8;
    letter-spacing: 8px;
    font-size: 24px;
    line-height: 11vw;
    bottom: -3px;
    left: -1px;
  }

  .schwerpunkt-title.leistung-text-4 {
    letter-spacing: 8px;
    font-size: 24px;
    line-height: 11vw;
    bottom: -3px;
    left: -3px;
  }

  .schwerpunkt-title.leistung-text-5 {
    font-size: 30px;
    line-height: 11vw;
    bottom: -6px;
    left: 4px;
  }

  .schwerpunkt-title.leistung-text-6 {
    left: -2px;
  }

  .schwerpunkt-title.leistung-text-7 {
    bottom: -2px;
    left: -3px;
  }

  .schwerpunkt-title.leistung-text-9 {
    bottom: -1px;
    left: -5px;
  }

  .schwerpunkt-title.leistung-text-8 {
    letter-spacing: 2px;
    font-size: 23px;
    line-height: 11vw;
    bottom: -1px;
  }

  .schwerpunkt-title.leistung-text-10, .schwerpunkt-title.leistung-text-11, .schwerpunkt-title.leistung-text-12 {
    bottom: -1px;
    left: -5px;
  }

  .schwerpunkt-text {
    width: 90%;
  }

  .paragraph-8 {
    padding-top: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  .paragraph-8.pg2093, .paragraph-8._98h34t {
    margin-bottom: 40px;
  }

  .paragraph-8._45z45 {
    margin-bottom: 30px;
  }

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

  .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 {
    object-fit: fill;
    width: 100%;
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 9px;
  }

  .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);
    max-width: 90vw;
    margin-top: 0;
    padding-top: 15px;
    font-weight: 300;
    line-height: 30px;
  }

  .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-2, .heading-bar.hb-v2 {
    display: none;
  }

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

  .schwerpunkt-bot {
    padding-top: 35px;
    padding-bottom: 0;
  }

  .heading-section {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .heading-section.heading-special {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .heading-section.kontaktheading {
    font-size: 16px;
    line-height: 30px;
  }

  .termine-button-container, .termine-button-container.show-mobile {
    display: none;
  }

  .popup-p {
    font-size: 15px;
    line-height: 22px;
  }

  .popup-p.headline {
    font-size: 20px;
  }

  .popup-p-2 {
    font-size: 16px;
  }

  .flex.leistungen-flex {
    flex-direction: column;
    margin-bottom: 0;
  }

  .flex.leistungen-flex.lfeven {
    flex-direction: column-reverse;
  }

  .text-box {
    width: 100%;
    margin-bottom: 30px;
  }

  .text-box.stretch.tb-mid.tbmidstretch {
    margin-bottom: 30px;
    padding-left: 0;
  }

  .text-box.tb-mid {
    margin-bottom: 30px;
  }

  .text-box.rzr9843759483 {
    margin-bottom: 10px;
  }

  .text-box.tb28374t {
    margin-bottom: 30px;
  }

  .leist-img-wrapper.liw-l, .leist-img-wrapper.liw-l.push.jhvji34z5o, .leist-img-wrapper.liw-r {
    display: none;
  }

  .list-item, .list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8, .list-item-9, .list-item-10, .list-item-11 {
    font-size: 14px;
    line-height: 26px;
  }

  .prophylaxe-container.kjhdf834z {
    padding-top: 0;
  }

  .heading-16 {
    margin-bottom: 60px;
    padding: 10px 16px;
    font-size: 16px;
  }

  .footer-centered {
    margin-top: 50px;
  }

  .paragraph-8-copy, .list-item-12, .list-item-13, .list-item-14 {
    font-size: 14px;
    line-height: 26px;
  }

  .column-4 {
    padding-right: 10px;
  }

  .bold-text-24 {
    font-size: 14px;
    line-height: 26px;
  }

  .gridbox1234 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .text-large {
    max-width: 346px;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
  }
}

#w-node-e8bc5091-28e5-ade2-46fa-0acd4cc642dd-279c1b13 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4b7ffd93-1921-2101-1be4-4f76f4b6cc20-f4b6cc1d, #w-node-_4b7ffd93-1921-2101-1be4-4f76f4b6cc2d-f4b6cc1d, #w-node-_4b7ffd93-1921-2101-1be4-4f76f4b6cc40-f4b6cc1d {
    justify-self: center;
  }

  #w-node-e8bc5091-28e5-ade2-46fa-0acd4cc642dd-279c1b13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Robotooff';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}