:root {
  --white: white;
  --black: #0f1a16;
  --dim-grey: #22302b;
  --dim-grey-2: #535863;
  --medium-slate-blue: #70b098;
  --medium-sea-green: #57a084;
  --light-cyan: rgba(151, 172, 161, .5);
  --white-smoke: #e9e8e8;
  --silver: #bebecc;
}

body {
  background-color: var(--white);
  color: var(--black);
  max-width: 100vw;
  font-family: Nunito Sans, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  overflow: visible;
}

h1 {
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: .7em;
  font-size: 40px;
  line-height: 1;
}

h2 {
  letter-spacing: 2px;
  margin-bottom: .775em;
  font-size: 2.1875em;
  font-weight: 800;
  line-height: 1.1;
}

h3 {
  letter-spacing: 1px;
  margin-top: 0;
  font-size: 1.875em;
  font-weight: 700;
}

h4 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875em;
  font-weight: 200;
}

h6 {
  letter-spacing: 1px;
  margin-bottom: 1.875em;
  font-size: 1em;
  font-weight: 400;
}

p {
  letter-spacing: .6px;
  margin-bottom: 2.5em;
  line-height: 1.4;
}

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

a:hover {
  color: var(--dim-grey-2);
}

strong {
  font-weight: bold;
}

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

.overlap-textbox {
  text-shadow: 0 0 7px #f7f7f7;
  flex: 0 auto;
  width: 70%;
  margin-right: -20vw;
  position: relative;
}

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

.container {
  width: 90%;
  max-width: 1600%;
  margin-left: auto;
  margin-right: auto;
}

.container.is--nav {
  justify-content: space-between;
  align-items: center;
  padding: 1.7em 4.0625em;
  display: flex;
}

.container.is--light {
  padding-left: 0;
}

.container.is--copyright {
  padding-top: 2em;
  padding-bottom: 2em;
}

.container.is--mobile_container {
  display: none;
}

.button {
  background-color: var(--medium-slate-blue);
  border-radius: .75em;
  padding: .625em 1.25em;
  font-size: 1.25em;
  font-weight: 600;
  transition: background-color .3s;
}

.button:hover {
  background-color: var(--medium-sea-green);
}

.button.is--last {
  background-color: var(--medium-slate-blue);
  color: var(--white);
  margin-left: 1.5em;
}

.button.is--last:hover {
  background-color: var(--medium-sea-green);
}

.button.is--inverted {
  background-color: var(--dim-grey);
  text-transform: none;
}

.button.is--inverted:hover {
  background-color: var(--black);
}

.section.is--hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, .61) 96%), url('../images/hero.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 67.5em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section.is--hero.is--small {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, .61) 88%), url('../images/hero.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  height: 40em;
}

.section.is--welcome_section {
  background-color: var(--light-cyan);
  margin-top: 1.25em;
}

.logo-mobile {
  display: none;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  display: flex;
}

.menu-button {
  border-radius: 50%;
}

.brand {
  max-width: 300px;
}

.navbar {
  z-index: 5;
  background-color: var(--white-smoke);
  width: 100%;
  margin-bottom: -7.4em;
}

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

.hero_item.is--light {
  color: var(--white);
  text-align: center;
}

.grid {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.grid.is--formular {
  align-items: flex-start;
}

.grid.is--bottom-align {
  align-items: flex-end;
}

.img-stacker {
  padding: 0;
  display: flex;
}

.img-stacker.left-overlap {
  margin-left: -16em;
}

.img-stacker.right-overlap {
  justify-content: flex-end;
  margin-right: -16em;
}

.span {
  font-weight: 700;
}

.content-item {
  width: 80%;
}

.round_img {
  z-index: 2;
  border-radius: 1000px;
  width: 30em;
  min-width: 30em;
  height: 30em;
  min-height: 30em;
  position: relative;
}

.round_img.left-overlapp {
  left: -18em;
}

.round_img.right-overlapp {
  right: -18em;
}

.round-color {
  z-index: -2;
  background-color: var(--light-cyan);
  border-radius: 1000px;
  width: 30em;
  min-width: 30em;
  height: 30em;
  min-height: 30em;
  position: relative;
}

.grid-item.is--left {
  width: 28%;
}

.grid-item.is--right {
  width: 52%;
}

.grid-item.is--footer-bot {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.is--last-paragraph {
  margin-bottom: 0;
}

.number-img-1 {
  width: 13%;
  margin-top: -4em;
  margin-right: -10em;
}

.number-img-2 {
  width: 16%;
  margin-top: -4em;
  margin-left: -12.2em;
}

.number-img-3 {
  width: 17%;
  margin-top: -4em;
  margin-right: -13.4em;
}

.tabs-menu {
  background-color: var(--light-cyan);
  padding: 2em 5em;
}

.tab-link {
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  padding: .5em 1em;
  transition: color .3s, opacity .3s;
}

.tab-link:hover {
  color: var(--medium-slate-blue);
}

.tab-link.w--current {
  color: var(--medium-sea-green);
  background-color: rgba(0, 0, 0, 0);
  transition: color .65s;
}

.tab_item_wrapper {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1em;
  display: flex;
}

.tab-item-content {
  background-color: var(--dim-grey);
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 33.125em;
  margin-right: .5em;
  display: flex;
}

.text-wrapper {
  color: #fff;
  margin-left: 2.5em;
}

.tab-item-img {
  justify-content: center;
  align-items: center;
  width: 35%;
  margin-left: .5em;
  display: flex;
}

.tab-item-img.is--plain {
  background-color: var(--dim-grey);
  height: 33.125em;
}

.tab-img-schwerpunkte {
  object-fit: cover;
  height: 33.125em;
}

.tab-img-team {
  object-fit: cover;
  width: 100%;
  height: 33.125em;
}

.number-img-4 {
  width: 17%;
  margin-left: -12.2em;
}

.kontakt-form-block {
  flex: 1;
  margin-top: 8.75em;
  font-size: 1em;
}

.form-block {
  color: var(--dim-grey-2);
}

.text-field {
  min-height: 50px;
  margin-bottom: 1.5625em;
}

.textarea {
  min-height: 130px;
  margin-bottom: 1.5625em;
}

.checkbox-field {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
  margin-left: 1em;
}

.text-block {
  margin-top: 2em;
}

.text-block.is--footnote {
  font-size: .8125em;
}

.map, .map-code {
  width: 100%;
  height: 100%;
}

.copyright {
  margin-bottom: 0;
  font-size: .875em;
}

.footer {
  background-color: var(--light-cyan);
  padding-top: 50px;
  padding-bottom: 50px;
}

.grid-wrapper-left {
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.grid-wrapper-right {
  text-align: right;
  flex: 0 auto;
  align-items: flex-end;
  display: flex;
}

.footer-link {
  text-transform: none;
  padding-right: 1.875em;
  font-size: .9em;
  font-weight: 400;
  transition: color .3s;
}

.footer-link:hover {
  color: var(--dim-grey-2);
}

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

.jameda-img {
  width: 15%;
  margin-bottom: 1.25em;
}

.social-block {
  width: .8em;
  margin-left: .9em;
}

.social-block:hover {
  width: .8em;
}

.social-block.is--insta {
  width: 1.9em;
}

.social-block-container {
  margin-right: 4.5em;
}

.number-img-1-mobil, .number-img-2-mobil, .number-img-3-mobil, .number-img-4-mobil {
  width: 13%;
  margin-top: -4em;
  margin-right: -10em;
  display: none;
}

.nav_link {
  text-align: center;
  letter-spacing: .7px;
  margin-left: .25em;
  margin-right: .25em;
  padding: 1em;
  font-weight: 400;
  transition: font-size .2s, color .3s;
}

.nav_link:hover, .nav_link.w--current {
  color: var(--medium-slate-blue);
}

.imp-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-block a {
  font-size: 1em;
}

.round-img-placeholder {
  background-color: var(--white);
  border-radius: 200px;
  width: 10em;
  height: 10em;
}

.link-datenschutz {
  font-size: 1em;
}

.image-10 {
  object-fit: contain;
}

.text-wrapper-2 {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.center {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.seperator {
  background-color: #939fae;
  width: 70%;
  height: 1px;
  margin-bottom: 20px;
}

.seperator.sepfull {
  width: 70%;
  max-width: 250px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.logo-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-bottom: 70px;
  display: flex;
}

.openings-row {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.container-7 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.openings-block-left {
  min-width: 50px;
}

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

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

.heading-18 {
  color: #b49063;
}

.openings-table {
  margin-bottom: 20px;
  display: none;
}

.termine {
  display: none;
}

.heading-19 {
  line-height: 1.1;
}

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

.paragraph-15 {
  margin-bottom: 0;
}

.logo-wrapper-2 {
  justify-content: center;
  align-items: center;
  width: 40%;
  margin-right: 60px;
  display: flex;
}

.center-2 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.heading-20 {
  color: #5689e9;
  font-size: 25px;
  line-height: 1.3;
}

.text-wrapper-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading-21 {
  line-height: 1.2;
}

.opening-row {
  align-items: flex-start;
  padding-bottom: 6px;
  display: flex;
}

.opening-day {
  min-width: 110px;
}

.heading-22 {
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  h4 {
    font-size: 20px;
    line-height: 1.1;
  }

  h6, p {
    font-size: 12px;
  }

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

  .overlap-textbox {
    width: 90%;
    margin-right: auto;
  }

  .container {
    padding-left: 8vw;
  }

  .container.is--nav {
    width: auto;
    padding: 1em 8vw;
  }

  .container.is--mobile_container {
    display: block;
  }

  .container.is--desktop_container {
    display: none;
  }

  .button {
    font-size: 12px;
  }

  .button.is--last, .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .nav-menu {
    background-color: rgba(66, 70, 80, .9);
    background-image: linear-gradient(to bottom, var(--dim-grey) 9%, rgba(255, 255, 255, 0) 66%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    justify-content: flex-end;
    width: 40%;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .menu-button {
    padding: 16px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0%;
  }

  .brand {
    flex: none;
    width: 120px;
  }

  .navbar {
    margin-bottom: -10.3em;
  }

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

  .grid.is--bottom-align {
    justify-content: flex-end;
    display: flex;
  }

  .img-stacker.left-overlap {
    justify-content: flex-end;
    margin-left: 0;
    margin-right: -133px;
  }

  .content-item.is--light {
    width: 100%;
  }

  .round_img.left-overlapp {
    width: 300px;
    min-width: 300px;
    height: 300px;
    min-height: 300px;
    left: -16.6em;
  }

  .round-color {
    width: 180px;
    min-width: 180px;
    height: 180px;
    min-height: 180px;
  }

  .grid-item {
    padding: 0;
  }

  .grid-item.is--left {
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .grid-item.is--right {
    width: 90%;
  }

  .grid-item.is--first-item {
    width: 70%;
  }

  .grid-item.is--footer-bot {
    justify-content: flex-start;
  }

  .number-img-1, .number-img-2, .number-img-3 {
    display: none;
  }

  .tab-link {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    line-height: 1.1;
  }

  .number-img-4 {
    display: none;
  }

  .text-field, .textarea {
    font-size: 10px;
  }

  .checkbox-field {
    margin-top: 10px;
  }

  .checkbox {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }

  .text-block {
    font-size: 10px;
  }

  .text-block.is--footnote {
    font-size: 9px;
    line-height: 1.4;
  }

  .copyright {
    letter-spacing: .5px;
    font-size: 8px;
  }

  .footer {
    flex: 0 auto;
  }

  .grid-wrapper-left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .grid-wrapper-right {
    flex-direction: row-reverse;
    align-items: flex-end;
    width: 100%;
    margin-top: 50px;
    display: flex;
  }

  .footer-link {
    font-size: 16px;
  }

  .jameda-img {
    width: 11%;
    margin-top: -11.05em;
    margin-bottom: 0;
    margin-right: -24px;
  }

  .social-block {
    width: 13px;
    margin-left: 0;
  }

  .social-block.is--insta {
    width: 30px;
    margin-left: 1.7em;
  }

  .number-img-1-mobil {
    width: 120px;
    margin-top: 0;
    margin-bottom: 30px;
    margin-right: 0;
    display: block;
  }

  .number-img-2-mobil, .number-img-3-mobil {
    width: 160px;
    margin-top: 0;
    margin-bottom: 30px;
    margin-right: 0;
    display: block;
  }

  .number-img-4-mobil {
    width: 170px;
    margin-top: 0;
    margin-bottom: 30px;
    margin-right: 0;
    display: block;
  }

  .checkbox-label {
    font-size: 10px;
  }

  .image {
    width: 30px;
  }

  .nav_link {
    text-align: left;
    margin-left: 2.35em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    font-size: 12px;
  }

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

  .text-block-13 {
    font-size: 16px;
    line-height: 1.4;
  }

  .center {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container-7 {
    width: 95%;
  }

  .logo-wrapper-2 {
    width: 60%;
    margin-right: 0;
  }

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

  .heading-20 {
    font-size: 27px;
  }

  .text-wrapper-3 {
    min-width: auto;
    margin-top: 20px;
  }

  .opening-wrapper {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .overlap-textbox {
    width: 100%;
  }

  .container, .container.is--light {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-item.is--first-item {
    width: 100%;
  }

  .grid-item.is--footer-bot {
    flex-direction: row-reverse;
    align-items: flex-start;
    width: auto;
  }

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

  .grid-wrapper-left {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .grid-wrapper-right {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

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

  .footer-link.is--last-link {
    padding-right: 10px;
  }

  .jameda-img {
    width: 18%;
    margin-top: 0;
    margin-right: 0;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: 1px;
    font-size: 27px;
  }

  .container.is--nav {
    padding-top: .5em;
    padding-bottom: .5em;
  }

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

  .section.is--hero {
    background-image: linear-gradient(rgba(31, 31, 31, .78) 4%, rgba(255, 255, 255, 0) 36%), linear-gradient(rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, .61) 96%), url('../images/hero.jpg');
    background-position: 0 0, 0 0, 47%;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
  }

  .nav-menu {
    box-shadow: none;
    border-radius: 0;
  }

  .brand {
    width: 100px;
  }

  .navbar {
    margin-bottom: -9.6em;
  }

  .logo-container {
    margin-top: -4em;
    margin-left: -7px;
  }

  .img-stacker.left-overlap {
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .round_img.left-overlapp {
    width: 250px;
    min-width: 250px;
    height: 250px;
    min-height: 250px;
  }

  .grid-item.is--right, .grid-item.is--first-item {
    width: 100%;
  }

  .grid-item.is--footer-bot {
    flex-direction: row-reverse;
    align-items: center;
  }

  .tab-link {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .tab-item-content {
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: 300px;
    margin-right: 0;
  }

  .text-wrapper {
    margin-top: 25px;
    margin-left: 0;
  }

  .tab-item-img {
    margin-left: 0;
    display: none;
  }

  .tab-item-img.is--plain {
    display: none;
  }

  .grid-wrapper-left {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .grid-wrapper-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
    display: flex;
  }

  .footer-link {
    padding-right: 0;
    font-size: 18px;
  }

  .jameda-img {
    width: 33%;
    margin-top: 0;
    margin-right: 0;
  }

  .social-block {
    width: 13px;
    margin-left: 0;
  }

  .social-block.is--insta {
    width: 29px;
    margin-left: 14px;
  }

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

  .number-img-1-mobil, .number-img-2-mobil, .number-img-3-mobil, .number-img-4-mobil {
    display: none;
  }

  .heading {
    margin-bottom: 5px;
  }

  .image {
    width: 25px;
  }

  .logo-wrapper {
    margin-bottom: 50px;
  }

  .logo-wrapper-2 {
    width: 100%;
    height: 150px;
    margin-bottom: 30px;
  }

  .heading-20 {
    font-size: 20px;
  }

  .opening-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
}


@font-face {
  font-family: 'Typemates';
  src: url('../fonts/TypeMates--CeraRoundProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typemates';
  src: url('../fonts/TypeMates--CeraRoundProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typemates';
  src: url('../fonts/TypeMates--CeraRoundProThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typemates';
  src: url('../fonts/TypeMates--CeraRoundProRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typemates';
  src: url('../fonts/TypeMates--CeraRoundProBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typemates cera round pro';
  src: url('../fonts/TypeMates--Cera-Round-Pro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}