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

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

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

@font-face {
  font-family: Opensansoff;
  src: url('../fonts/OpenSansOff-BoldItalic.ttf') format("truetype"), url('../fonts/OpenSansOff-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Opensansoff;
  src: url('../fonts/OpenSansOff-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Opensansoff;
  src: url('../fonts/OpenSansOff-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensansoff;
  src: url('../fonts/OpenSansOff-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

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

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

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

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

:root {
  --gray: #8d8d8d;
  --dim-grey: #5a5a5a;
  --light-sky-blue: #81b2da;
  --alice-blue: #ddeaf5;
  --white: white;
}

.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(--gray);
  font-family: Opensansoff, sans-serif;
  font-size: 1vw;
  line-height: 2;
}

h1 {
  color: #f86f7f;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Kalamoff, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1em;
  font-weight: 700;
  line-height: 2;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1em;
  font-weight: 600;
  line-height: 2;
}

p {
  margin-bottom: 1em;
  line-height: 1.7;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
}

li {
  padding-bottom: 8px;
}

img {
  max-width: 100%;
  display: inline-block;
}

.navbar {
  z-index: 98;
  background-color: #0000;
}

.nav-container {
  justify-content: center;
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--light-sky-blue);
  margin: 10px;
  padding: 10px;
  font-size: 1.5em;
  font-weight: 600;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--light-sky-blue);
  text-decoration: underline;
}

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

.banner-wrapper {
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.flex-wrapper {
  margin-top: 40px;
  margin-bottom: 70px;
  display: flex;
}

.flex-shrink {
  flex: none;
  width: 180px;
  margin-right: 40px;
}

.rich-text {
  text-align: justify;
}

.flex-grow {
  flex: 1;
}

.start-port {
  width: 100%;
}

.footer {
  background-color: var(--alice-blue);
  color: var(--dim-grey);
}

.footer-top {
  justify-content: space-between;
  width: 90%;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.footer-block {
  display: flex;
}

.footer-block-img {
  margin-top: 10px;
  margin-right: 20px;
}

.footer-bot {
  background-color: var(--light-sky-blue);
  background-image: linear-gradient(to bottom, var(--light-sky-blue), var(--light-sky-blue));
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
}

.footer-link {
  color: var(--white);
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
}

.tabs {
  display: flex;
}

.tabs-menu {
  flex-direction: column;
  padding-right: 4em;
  display: flex;
}

.tab-link {
  color: #4050b2b3;
  background-color: #0000;
  min-width: 22em;
  padding: 10px 0;
}

.tab-link.w--current {
  background-color: #0000;
  text-decoration: underline;
}

.tab-link.not-active {
  color: var(--gray);
  cursor: default;
}

.tab-link.not-active:hover, .tab-link.not-active.w--current {
  text-decoration: none;
}

.gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.gallery-grid-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-lightbox {
  position: relative;
  overflow: hidden;
}

.gallery-thumbnail {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.slider-lightbox {
  width: 100%;
  height: 100%;
}

.slider-lightbox-preview {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider {
  width: 100%;
  max-width: 930px;
}

.lightbox-tabs {
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.tabs-menu-lightbox {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: flex-start;
  display: grid;
}

.tabs-content-lightbox {
  flex: 1;
  margin-bottom: 100px;
  padding-left: 50px;
}

.tab-link-lightbox {
  background-color: #0000;
  border: 4px solid #0000;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
}

.tab-link-lightbox.w--current {
  border-color: var(--light-sky-blue);
  background-color: #0000;
}

.tab-link-lightbox-image {
  object-fit: cover;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  padding: 2px;
}

.tab-image {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.column {
  padding-left: 0;
  padding-right: 0;
}

.textv2 {
  color: var(--gray);
}

.linkv2 {
  color: #4050b2b3;
}

.input {
  border: 1px solid var(--light-sky-blue);
  color: var(--gray);
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
}

.input.textarea {
  height: 250px;
}

.grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.2;
}

.checkbox-wrapper {
  margin-bottom: 0;
}

.checkbox {
  margin-top: 0;
}

.submit-button {
  background-color: var(--light-sky-blue);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  margin-top: 0;
  margin-bottom: 100px;
}

.heading {
  color: var(--light-sky-blue);
  font-size: 1.6em;
}

.logo {
  width: 15em;
}

.header-mobile {
  display: none;
}

.heading-2, .bold-text, .text-block, .text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .heading-3, .text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .heading-4, .heading-5, .text-block-15 {
  color: var(--light-sky-blue);
}

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

.captcha {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
}

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

.popup-fenster {
  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%);
}

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

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

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

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

.text-wf {
  color: #726f6f;
  background-color: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
}

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

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

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

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

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

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

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

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

.popup-blocker {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .nav-link {
    font-size: 24px;
  }

  .banner-wrapper {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .rich-text, .footer, .tabs-menu {
    font-size: 16px;
  }

  .map-wrapper {
    padding-left: 60px;
  }

  .heading {
    font-size: 24px;
  }

  .logo.w--current {
    width: 250px;
  }

  .popup-cb {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    display: none;
  }

  .banner-wrapper {
    margin-top: 0;
  }

  .flex-shrink {
    display: none;
  }

  .rich-text {
    font-size: 16px;
  }

  .footer {
    font-size: 12px;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs-menu {
    flex-flow: wrap;
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .tab-link {
    min-width: auto;
    margin-right: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    font-size: 16px;
  }

  .tab-link.not-active {
    display: none;
  }

  .gallery-grid-container {
    align-self: stretch;
  }

  .lightbox-tabs {
    flex-direction: column-reverse;
    align-items: center;
  }

  .tabs-menu-lightbox {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: flex-start;
    display: flex;
  }

  .tabs-content-lightbox {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .tab-link-lightbox-image {
    width: 70px;
    height: 70px;
  }

  .textv2 {
    font-size: 14px;
  }

  .map-wrapper {
    height: 350px;
  }

  .heading {
    font-size: 24px;
  }

  .header-mobile {
    background-color: var(--white);
    width: 100%;
    display: block;
  }

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

  .brand {
    flex: 1;
  }

  .nav-menu-2 {
    background-color: var(--white);
    flex: 1;
    font-size: 16px;
  }

  .nav-link-mobile {
    text-align: right;
    padding: 10px;
  }

  .section {
    font-size: 16px;
  }

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

  .popup-cb {
    z-index: 99999;
  }

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

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

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

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

@media screen and (max-width: 767px) {
  .gallery {
    padding: 40px 20px;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .tab-image {
    height: 300px;
  }

  .textv2 {
    margin-bottom: 50px;
  }

  .map-wrapper {
    padding-left: 0;
  }

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

  .popup-inner1 {
    padding: 10px;
  }

  .text-wf {
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 80vh;
    font-size: 14px;
    line-height: 1.4;
    overflow: scroll;
  }

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

  .close-wrapper {
    padding: 8px;
  }

  .image-7 {
    width: 16px;
  }

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

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

  .inhalt {
    padding: 10px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 14px;
  }

  ul {
    flex: none;
    overflow: visible;
  }

  .rich-text {
    font-size: 14px;
  }

  .footer, .footer-top {
    flex-direction: column;
  }

  .footer-block {
    margin-bottom: 10px;
  }

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

  .centered-container {
    text-align: left;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .tab-link-lightbox-image {
    width: 40px;
    height: 40px;
  }

  .text-wf {
    justify-content: flex-start;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
  }
}

#Nachricht.w-node-_72b192af-e9fe-a47a-d94f-6c10e88f088e-a26f14cd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_85e971a1-d9d4-8351-2821-481ca8cdbf1f-a26f14cd {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center end;
}


@font-face {
  font-family: 'Kalamoff';
  src: url('../fonts/KalamOff-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kalamoff';
  src: url('../fonts/KalamOff-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kalamoff';
  src: url('../fonts/KalamOff-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-BoldItalic.ttf') format('truetype'), url('../fonts/OpenSansOff-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-ExtraBold.ttf') format('truetype'), url('../fonts/OpenSansOff-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensansoff';
  src: url('../fonts/OpenSansOff-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}