@font-face {
  font-family: Proxima Nova;
  src: url('../fonts/Proxima-Nova-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Proxima Nova Thin;
  src: url('../fonts/Proxima-Nova-Thin.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Proxima Nova;
  src: url('../fonts/Proxima-Nova-Extrabold.otf') format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --black: #1d1d1b;
  --dark-slate-blue: #1d3e84;
  --dim-grey: #535863;
  --white: white;
  --dark-slate-grey: #373736;
  --white-smoke: #f3f3f3;
  --cyan: #09e7f0;
}

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

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

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

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

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

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

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

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

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

body {
  color: var(--black);
  background-color: #edf0f6;
  font-family: Proxima Nova, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  color: var(--dark-slate-blue);
  letter-spacing: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Proxima Nova, sans-serif;
  font-size: 7vw;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  color: var(--dark-slate-blue);
  letter-spacing: 5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Proxima Nova Bold, sans-serif;
  font-size: 2em;
  font-weight: 700;
}

h3 {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Proxima Nova, sans-serif;
  font-size: .97em;
  font-weight: 400;
  line-height: 1.1;
}

h4 {
  color: var(--dim-grey);
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.1;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #1e3e8499;
}

strong {
  letter-spacing: 1px;
  font-family: Proxima Nova Bold, sans-serif;
  font-weight: 700;
}

.nav-menu {
  flex-direction: row;
  justify-content: space-between;
  width: 90%;
  max-width: 1600px;
  display: flex;
}

.menu-button-wrapper {
  cursor: pointer;
  width: 40px;
  height: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.nav-menu-bar {
  z-index: 1;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.brand-wrapper {
  width: 350px;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.nav-link {
  color: var(--dark-slate-blue);
  letter-spacing: 2px;
  font-size: 1.1em;
  transition: color .2s;
  display: block;
}

.nav-link:hover {
  color: #1d3e844d;
}

.nav-link.w--current {
  color: #1d3e84;
  font-family: Proxima Nova Bold, sans-serif;
  font-weight: 700;
}

.menu-bar {
  background-color: var(--dark-slate-blue);
  width: 30px;
  height: 2px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.menu-bar.mb1 {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  top: 8px;
  left: 50%;
  transform: translate(-50%);
}

.menu-bar.mb2 {
  top: 18px;
  left: 50%;
  transform: translate(-50%);
}

.menu-bar.mb3 {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  top: 28px;
  left: 50%;
  transform: translate(-50%);
}

.navbar {
  background-color: #0000;
}

.nav-link-wrapper {
  align-items: flex-start;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container.is-bigger {
  max-width: 1600px;
}

.container.more-margin {
  width: 100%;
  max-width: 1500px;
  margin-left: 0;
  margin-right: 0;
}

.start-banner-wrapper {
  padding-top: 0;
  padding-bottom: 50px;
}

.start-banner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.start-banner.more-width {
  max-width: 1500px;
}

.banner-image {
  border: 3px solid #fff;
  width: 100%;
}

.banner-bar {
  background-color: var(--dark-slate-blue);
  width: 80%;
  height: 40px;
  position: relative;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -28px);
}

.section {
  position: relative;
}

.slope-wrapper {
  z-index: -1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slope-block {
  background-color: var(--white);
  width: 100%;
  height: 40%;
}

.slope {
  width: 100%;
}

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

.section-white.sp {
  padding-top: 60px;
  overflow: hidden;
}

.section-white.praxis-section {
  padding-top: 60px;
}

.section-white.top-space {
  padding-top: 140px;
}

.heading-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.flex-container {
  justify-content: space-between;
  display: flex;
}

.activity-tile {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.activity-tile.hidden {
  display: none;
}

.activity-tile-img {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 0;
  display: block;
}

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

.button-arrow {
  width: 24px;
}

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

.ati-img {
  object-fit: contain;
  width: 85px;
}

.ati-img.invis-icon {
  width: 115px;
  padding-top: 45px;
}

.ati-img.paro-icon {
  width: 110px;
  padding-top: 4px;
}

.ati-img.altersmedizin-icon {
  width: 140px;
  padding-top: 15px;
}

.ati-img.kinder-icon {
  width: 80px;
}

.slope-wrapper-rel {
  z-index: -1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.sp {
  padding-top: 110px;
  padding-bottom: 0;
}

._2coltext {
  column-count: 2;
  column-gap: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.start-image-wrapper {
  border-bottom: 40px solid var(--dark-slate-blue);
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.lightbox-start {
  margin-left: 10px;
  margin-right: 10px;
}

.start-bot {
  justify-content: space-between;
  min-height: 550px;
  display: flex;
  position: relative;
}

.start-bot-image {
  background-image: url('../images/Praxis-fuer-Zahnheilkunde-Spremberg-©ChristianeSchleifenbaum-web-09.jpg');
  background-position: 50%;
  background-size: cover;
  width: 50%;
}

.start-bot-text {
  background-color: #edf0f6;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  padding: 60px;
  display: flex;
}

.start-text-small {
  max-width: 250px;
}

.start-bot-icon {
  width: 150px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
}

.footer {
  background-color: var(--white);
  padding-top: 150px;
}

.footer-content-top {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  display: flex;
}

.footer-content-top-text {
  max-width: 370px;
}

.get-in-touch-wrapper {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.button {
  border: 2px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  letter-spacing: 3px;
  background-color: #0000;
  margin-bottom: 20px;
  padding: 18px 20px 20px 26px;
  font-size: 1.4em;
  line-height: 1.1;
  transition: box-shadow .1s;
}

.button:hover {
  color: var(--dark-slate-blue);
  box-shadow: 0 5px 5px -4px #00000087;
}

.button.button-fill {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  margin-bottom: 0;
}

.button.button-fill.map {
  letter-spacing: 2px;
  margin-top: 20px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  font-size: 1em;
}

.button.vita {
  display: none;
}

.footer-content-mid {
  border-bottom: 40px solid var(--dark-slate-blue);
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
}

.social-block {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

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

.text-link:hover {
  color: #1e3e8499;
  text-decoration: none;
}

.footer-content-bot {
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.footer-content-bot.show-tablet {
  display: none;
}

.menu-dropdown {
  z-index: 1;
  opacity: .95;
  background-color: #fff;
  flex-direction: column;
  padding: 25px 30px;
  display: flex;
  position: absolute;
  left: 100px;
  box-shadow: 0 5px 10px -5px #00000030;
}

.dropdown-link {
  color: var(--dark-slate-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: .9em;
  transition: color .1s;
}

.dropdown-link:hover {
  color: #1d3e8466;
}

.header {
  background-image: url('../images/header-12x.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 40vw;
  margin-bottom: 60px;
  padding-bottom: 9vw;
  display: flex;
}

.header.header-ueber-uns {
  background-image: url('../images/ueber-uns2x.jpg');
  margin-bottom: 0;
}

.header.praxis-ueber-uns {
  background-image: url('../images/praxis2x.jpg');
  margin-bottom: 0;
}

.header.kontakt-ueber-uns {
  background-image: url('../images/kontakt2x.jpg');
  margin-bottom: 0;
}

.header.impressum-banner {
  background-image: url('../images/imp.svg');
  background-position: 50% 100%;
  background-size: cover;
  min-height: 30vw;
  margin-bottom: 0;
}

.header-heading-2 {
  color: var(--black);
  font-size: 1.8vw;
}

.slope180 {
  min-width: 100%;
  transform: rotate(180deg);
}

.leistungen-row {
  justify-content: space-between;
  min-height: 700px;
  display: flex;
}

.leistungen-row.hidden {
  display: none;
}

.leistungen-img {
  background-image: url('../images/img-zahnerhaltung.jpg');
  background-position: 50%;
  background-size: cover;
  width: 50%;
}

.leistungen-img.li2 {
  background-image: url('../images/img-prothetik.jpg');
}

.leistungen-img.li3 {
  background-image: url('../images/img-prophylaxe.jpg');
}

.leistungen-img.li4 {
  background-image: url('../images/img-endodontie.jpg');
}

.leistungen-img.li5 {
  background-image: url('../images/img-parodontologie.jpg');
}

.leistungen-img.li6 {
  background-image: url('../images/l62x.jpg');
}

.leistungen-img.li7 {
  background-image: url('../images/img-altersmedizin.jpg');
}

.leistungen-img.li8 {
  background-image: url('../images/img-invisalign.jpg');
}

.leistungen-img.li9 {
  background-image: url('../images/img-cmd.jpg');
}

.leistungen-img.li10 {
  background-image: url('../images/img-aesthetik.jpg');
}

.leistungen-txt {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding: 60px;
  display: flex;
}

.li-overlay {
  background-color: #1d3e8499;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20%;
  display: flex;
}

.leistungen-overlay-text {
  color: var(--white);
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 700;
}

.leistungen-text-heading-1 {
  font-size: 1.2em;
}

.leistungen-text-heading-2 {
  color: var(--dark-slate-blue);
  letter-spacing: 1px;
  margin-bottom: 50px;
  margin-right: 0;
  font-size: 1em;
}

.team-overlay-text {
  color: var(--white);
  text-transform: uppercase;
  font-size: 2em;
}

.team-overlay-subline {
  color: #fff;
  text-transform: uppercase;
  margin-top: 5px;
}

.team-row {
  justify-content: space-between;
  min-height: 700px;
  display: flex;
}

.team-row.hidden {
  display: none;
}

.team-img {
  background-image: url('../images/Zahnarzt-NickA.Fettke-©ChristianeSchleifenbaum-web-06.jpg');
  background-position: 50%;
  background-size: cover;
  width: 50%;
}

.team-img.ti2 {
  background-image: url('../images/iStock-9314221462x.jpg');
}

.team-img.ti3 {
  background-image: url('../images/mädel-32x.jpg');
}

.team-img.ti4 {
  background-image: url('../images/iStock-8198181302x.jpg');
}

.team-img.ti5, .team-img.ti6 {
  background-image: url('../images/mädel-22x.jpg');
}

.te-overlay {
  background-color: #1d3e8466;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20%;
  transition: opacity .2s;
  display: flex;
}

.te-overlay:hover {
  opacity: 0;
}

.team-txt {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding: 60px;
  display: flex;
}

.vita-wrapper {
  width: 100%;
}

.vita-row {
  margin-bottom: 20px;
  display: flex;
}

.vita-date {
  min-width: 110px;
}

.vita-close-wrapper {
  display: none;
}

.gallery-wrapper {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.praxis-grid {
  grid-template-rows: auto;
}

.praxis-lightbox {
  width: 100%;
  height: 35vw;
}

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

.kontakt-form-block {
  flex: 1;
  max-width: 650px;
  margin-left: 150px;
}

.form-block {
  margin-top: 20px;
}

.text-field {
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 130px;
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.submit-button {
  background-color: var(--dark-slate-blue);
  letter-spacing: 2px;
  padding: 15px 20px;
  transition: box-shadow .1s;
}

.submit-button:hover {
  box-shadow: 0 5px 6px -3px #00000087;
}

.checkbox-field {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: .8em;
}

.slope100 {
  width: 100%;
}

.bold-text {
  font-family: Poppins, sans-serif;
}

.footer-zeiten-container {
  justify-content: space-between;
  display: flex;
}

.text-block-5.is-right {
  margin-left: 15px;
}

.oeffnungszeiten-container {
  width: 29%;
}

.image {
  min-width: 100%;
}

.map-code-2 {
  width: 100%;
  height: 100%;
  display: none;
}

.map-2 {
  z-index: 1;
  background-image: url('../images/map.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.karte {
  text-align: center;
  justify-content: center;
  max-width: 1080px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.map-text-text {
  color: #414e5c;
  text-align: center;
  letter-spacing: .5px;
  width: 95%;
  max-width: 470px;
  font-size: 15px;
  line-height: 21px;
}

.karte-wrapper {
  margin-bottom: 100px;
}

.map-text {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.map-container-2 {
  width: 100%;
  height: 500px;
  position: relative;
}

.banner-bar-2 {
  background-color: #2e6a71;
  width: 80%;
  height: 40px;
  position: relative;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -28px);
}

.banner-bar-2.map-bar {
  background-color: var(--dark-slate-blue);
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  left: 0%;
  transform: none;
}

.link {
  color: var(--dark-slate-blue);
}

.schwerpunkte-icon {
  width: 100px;
}

.schwerpunkte-icon.is-bigger {
  width: 150px;
}

.schwerpunkte-icon.is-smaller {
  width: 90px;
}

.div-block {
  width: 100%;
}

.list {
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  list-style-type: disc;
}

.image-2 {
  width: 100%;
}

.social-wrapper {
  text-align: left;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.social-wrapper.show-mobile {
  display: none;
}

.html-embed {
  font-size: 16px;
}

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

.vita-link {
  color: var(--dark-slate-blue);
  font-family: Proxima Nova Bold, sans-serif;
}

.team-icon-img {
  object-fit: contain;
  width: 85px;
}

.team-icon-img.invis-icon {
  width: 115px;
  padding-top: 45px;
}

.team-icon-img.paro-icon {
  width: 110px;
  padding-top: 4px;
}

.team-icon-img.altersmedizin-icon {
  width: 140px;
  padding-top: 15px;
}

.team-icon-img.kinder-icon {
  width: 80px;
}

.div-block-3, .team-wrapper {
  text-align: center;
}

.grid-team {
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 60px;
  margin-bottom: 60px;
}

.recaptcha {
  margin-bottom: 0;
}

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

  .menu-button-wrapper {
    z-index: 1;
  }

  .brand-wrapper {
    width: 220px;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link-wrapper {
    text-align: center;
    background-color: #ecf0f7;
    justify-content: center;
    width: 100vw;
    padding-right: 0%;
    position: absolute;
    top: 150px;
    right: -5vw;
    box-shadow: 4px 4px 5px -5px #00000080;
  }

  .start-banner-wrapper {
    padding-top: 70px;
  }

  .heading-wrapper {
    margin-top: 35px;
  }

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

  .sp {
    padding-top: 0;
  }

  ._2coltext {
    column-count: 1;
  }

  .start-bot {
    min-height: 400px;
  }

  .start-bot-icon {
    width: 100px;
  }

  .button {
    letter-spacing: 2px;
    font-size: 1em;
  }

  .button.vita {
    color: var(--white);
    border-style: none;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 10px;
    font-size: .8em;
    font-weight: 400;
    display: block;
  }

  .social-container {
    flex: 0 auto;
    display: none;
  }

  .social-block {
    margin-top: 10px;
  }

  .footer-content-bot.show-tablet {
    text-align: center;
    display: block;
  }

  .footer-content-bot.hide-tablet, .menu-dropdown {
    display: none;
  }

  .header {
    min-height: 50vw;
    padding-bottom: 10vw;
  }

  .header-heading-2 {
    letter-spacing: 3px;
    font-size: 18px;
    line-height: 1;
  }

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

  .leistungen-img {
    width: 100%;
    height: 300px;
  }

  .leistungen-txt {
    width: 100%;
  }

  .li-overlay {
    justify-content: center;
    padding-bottom: 0%;
  }

  .team-overlay-subline {
    margin-top: 10px;
  }

  .team-row {
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
  }

  .team-img {
    flex: none;
    width: 100%;
    height: 450px;
  }

  .te-overlay {
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
  }

  .te-overlay:hover {
    opacity: 1;
  }

  .team-txt {
    flex: none;
    width: 100%;
    padding: 20px 30px 30px;
    overflow: hidden;
  }

  .vita-close-wrapper {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    margin-left: auto;
    display: flex;
  }

  .kontakt-form-block {
    margin-left: 40px;
  }

  .footer-zeiten-container {
    flex-direction: column;
  }

  .text-block-5 {
    padding-bottom: 18px;
  }

  .oeffnungszeiten-container {
    width: 22%;
  }

  .map-text-text {
    font-size: 12px;
    line-height: 17px;
  }

  .map-container-2 {
    width: 100%;
    height: 300px;
  }

  .social-wrapper {
    justify-content: flex-end;
    display: flex;
  }

  .text-block-11 {
    padding-bottom: 8px;
  }

  .heading {
    letter-spacing: 6px;
    margin-bottom: 0;
  }

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

  .recaptcha {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: 7px;
    font-size: 50px;
  }

  .nav-link {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    display: block;
  }

  .nav-link-wrapper {
    z-index: 1;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    display: none;
    top: 120px;
    box-shadow: 0 10px 10px -4px #0000001a;
  }

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

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

  .start-bot-text {
    padding: 30px;
  }

  .start-bot-icon {
    width: 60px;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-content-top {
    flex-direction: column-reverse;
  }

  .footer-content-top-text {
    text-align: right;
  }

  .get-in-touch-wrapper {
    padding-bottom: 29px;
  }

  .footer-content-mid {
    border-bottom-width: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
  }

  .social-block {
    margin-top: 0;
  }

  .header-heading-2 {
    letter-spacing: 2px;
    font-size: 16px;
  }

  .leistungen-img {
    height: 200px;
  }

  .leistungen-txt {
    padding: 30px;
  }

  .leistungen-overlay-text {
    font-size: 2em;
  }

  .team-overlay-text {
    font-size: 1.4em;
  }

  .kontakt-form-block {
    margin-top: 30px;
    margin-left: 0;
  }

  .submit-button {
    margin-left: auto;
    display: block;
  }

  .footer-zeiten-container {
    flex-direction: row;
  }

  .text-block-5 {
    margin-right: 50px;
    padding-bottom: 0;
  }

  .text-block-5.is-left {
    margin-right: 0;
  }

  .oeffnungszeiten-container {
    width: auto;
  }

  .map-text-text {
    font-size: 15px;
    line-height: 22px;
  }

  .social-wrapper {
    padding-top: 4px;
  }

  .social-wrapper.hide-mobile {
    align-items: center;
  }

  .text-block-12 {
    padding-bottom: 20px;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: 4px;
    font-size: 35px;
    line-height: .7;
  }

  h2 {
    letter-spacing: 4px;
    font-size: 28px;
  }

  h3 {
    letter-spacing: 1px;
    margin-bottom: 0;
  }

  li {
    letter-spacing: 0;
    font-size: 1em;
    font-weight: 400;
  }

  .brand-wrapper {
    width: 210px;
    padding-left: 0;
  }

  .nav-link-wrapper {
    background-color: #ecf0f7;
    display: none;
    top: 144px;
  }

  .start-banner-wrapper {
    padding-top: 30px;
  }

  .banner-image {
    object-fit: cover;
  }

  .banner-bar {
    height: 20px;
    transform: translate(-50%, -15px);
  }

  .activity-tile {
    text-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .activity-tile.mobile-top-space {
    margin-top: -24px;
    padding-bottom: 61px;
  }

  .activity-tile-img, .button-warpper {
    justify-content: center;
  }

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

  ._2coltext {
    margin-bottom: 40px;
  }

  .start-image-wrapper {
    border-bottom-width: 20px;
  }

  .lightbox-start.hide-mobile {
    display: none;
  }

  .start-bot {
    min-height: 300px;
  }

  .start-bot-icon {
    display: none;
  }

  .footer-content-bot.show-tablet {
    text-align: center;
  }

  .header {
    min-height: 60vw;
    padding-bottom: 13vw;
  }

  .header-heading-2 {
    letter-spacing: 1px;
    font-size: 13px;
    line-height: .9;
  }

  .slope180 {
    margin-bottom: 20px;
  }

  .leistungen-row {
    overflow: hidden;
  }

  .leistungen-overlay-text {
    font-size: 1.5em;
  }

  .leistungen-text-heading-1 {
    text-align: center;
    margin-bottom: 10px;
  }

  .leistungen-text-heading-2 {
    text-align: center;
  }

  .footer-zeiten-container {
    display: block;
  }

  .text-block-5.is-left {
    width: 30px;
  }

  .banner-bar-2 {
    height: 30px;
    transform: translate(-50%, -20px);
  }

  .social-wrapper.show-mobile {
    justify-content: center;
    align-items: center;
    margin-bottom: 21px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .social-wrapper.hide-mobile {
    display: none;
  }

  .text-block-11 {
    margin-bottom: 19px;
    padding-bottom: 0;
  }

  .heading-2 {
    line-height: .7;
  }

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

#w-node-fe2702e9-d061-d0b5-16ff-51592080aa6e-c97e153e, #w-node-c5860947-24ce-1b4c-18e4-661814f3d3e3-c97e153e, #w-node-e64d14d0-f68a-b995-25eb-a367ae9b1d0f-c97e153e, #w-node-_01aea9ab-34fa-599d-229b-cdf7319d49d8-c97e153e, #w-node-_7fd9cdc9-a4c2-c03e-da53-16e7d7ddcd43-c97e153e, #w-node-_26b6c5c6-b94c-0f75-bb6e-c8012d6aee35-c97e153e, #w-node-_1c917719-53c2-3897-7e2b-db3d7699786a-c97e153e, #w-node-_780cec4e-8318-1bca-5ba9-4caf7081c28a-c97e153e, #w-node-_99c2c07c-5b8a-636b-e924-66189e13e32f-c97e153e, #w-node-_4ec3b0a7-de99-bbb7-2a81-2d3ae74cbfdf-c97e153e, #w-node-adbf33cc-5f49-a835-6b60-b898a3ac5cfd-c97e153e, #w-node-_58d827f0-cce5-1f68-9f1b-612c947b5eb8-c97e153e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/Proxima-Nova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova Thin';
  src: url('../fonts/Proxima-Nova-Thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/Proxima-Nova-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova Bold';
  src: url('../fonts/Proxima-Nova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova Black';
  src: url('../fonts/Proxima-Nova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}