:root {
  --guest-house-green: #52503b;
  --orange: #e08631;
  --white: white;
  --beige: #faf8f0;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

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

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

a {
  color: var(--guest-house-green);
  text-decoration: underline;
}

blockquote {
  border-left: 5px solid var(--orange);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero-section {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero-image-overlay {
  z-index: 10;
  opacity: .1;
  background-color: #000;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-text {
  z-index: 20;
  color: var(--white);
  text-align: center;
  max-width: 1200px;
  margin-left: 120px;
  margin-right: 120px;
  position: relative;
}

.hero-title {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-logotype {
  width: 256px;
}

.text-small-caps {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.text-small-caps.text-white {
  color: var(--white);
}

.text-small-caps.text-orange {
  color: var(--orange);
}

.bg-green {
  background-color: var(--guest-house-green);
}

.arrow-animation {
  z-index: 20;
  opacity: .8;
  width: 60px;
  margin-bottom: 90px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
}

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

.section.bg-beige {
  background-color: var(--beige);
  font-size: 15px;
  line-height: 23px;
}

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

.section.bg-orange {
  background-color: var(--guest-house-green);
  padding-top: 50px;
  padding-bottom: 50px;
}

.section.testimonials {
  background-color: var(--beige);
  display: none;
  overflow: hidden;
}

.container {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  position: relative;
}

.container.tight {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.large-callout-wrap {
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
}

.large-callout-wrap.reveal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.large-callout {
  color: var(--guest-house-green);
  width: 80%;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 1.4;
}

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

.feature-wrap {
  display: flex;
}

.feature-icon {
  opacity: .6;
  min-width: 36px;
  margin-right: 16px;
}

.feature-name {
  color: var(--guest-house-green);
  font-weight: 600;
}

.feature-text {
  opacity: .8;
  font-weight: 500;
}

.section-title {
  max-width: 600px;
  margin-bottom: 32px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title.center.reveal {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-green {
  color: var(--guest-house-green);
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 45px;
}

.section-subheading {
  opacity: .8;
  color: var(--guest-house-green);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.section-subheading._2 {
  margin-bottom: 25px;
}

.triple-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.triple-column-content-wrap {
  text-align: center;
}

.triple-column-icon {
  min-width: 64px;
  margin-bottom: 12px;
}

.triple-column-name {
  color: var(--guest-house-green);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.triple-column-text {
  opacity: .8;
  color: var(--guest-house-green);
}

.section-separator {
  background-color: var(--orange);
  width: 42px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
}

.section-separator.top {
  margin-bottom: 32px;
}

.section-separator.top.reveal {
  background-color: var(--orange);
  margin-bottom: 25px;
  margin-left: 0;
}

.section-separator.top.left {
  margin-left: 0;
}

.section-separator.left {
  margin-bottom: 15px;
  margin-left: 0;
}

.feature-section-alternative-grid {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.footer-logotype-wrap {
  text-align: center;
  margin-top: 32px;
}

.text-white {
  color: var(--white);
}

.text-white.dim {
  opacity: .8;
}

.button {
  background-color: var(--guest-house-green);
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 400;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}

.button:hover {
  opacity: .9;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.button.space-top {
  margin-top: 10px;
}

.button.space-top.w--current {
  margin-right: 10px;
}

.button.space-top._2 {
  display: none;
}

.button.space-top.zertifikat {
  margin-top: 0;
  margin-right: 10px;
}

.button.white {
  background-color: var(--white);
  color: var(--guest-house-green);
}

.button._404 {
  margin-top: 16px;
}

.button.large {
  padding: 16px 26px;
  font-size: 16px;
}

.button.large-outline {
  padding: 16px 26px;
  font-size: 16px;
  transition: background-color .2s, opacity .2s, transform .2s, box-shadow .2s;
}

.button.large-outline.space-right {
  border: 4px solid var(--guest-house-green);
  color: var(--guest-house-green);
  background-color: rgba(0, 0, 0, 0);
  margin-right: 20px;
  padding: 12px 22px;
}

.button.large-outline.space-right:hover {
  background-color: rgba(82, 80, 59, .1);
}

.navigation-link {
  opacity: .8;
  color: var(--white);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.navigation-link:hover {
  opacity: .6;
}

.navigation-link.w--current {
  opacity: 1;
  color: var(--white);
  font-weight: 500;
}

.navigation {
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  padding: 10px 3%;
  display: flex;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navigation-container-mobile {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 44px;
  transition: opacity .2s;
}

.brand:hover {
  opacity: .8;
}

.navigation-mobile {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navigation-left {
  align-items: center;
  width: 50%;
  display: flex;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  font-size: 16px;
  display: flex;
}

.navigation-wrap {
  z-index: 999;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navigation-center {
  color: #283338;
  align-items: center;
  font-size: 15px;
  display: flex;
  position: static;
}

.navigation-logotype {
  width: 110px;
  max-width: none;
}

.navigation-container {
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-background {
  background-color: var(--guest-house-green);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-section-overlay {
  z-index: 1000;
  background-color: var(--guest-house-green);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-section-text {
  flex-direction: column;
  justify-content: center;
  max-width: 300px;
  height: 100%;
  margin-left: 60px;
  margin-right: 10px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.image-section-text.right {
  z-index: 20;
  margin-left: 10px;
  margin-right: 60px;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.image-section {
  height: 600px;
  position: relative;
  overflow: hidden;
}

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

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

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

.image-section-gradient-overlay {
  background-image: linear-gradient(to right, rgba(82, 80, 59, 0) 50%, var(--white));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 80vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.timeline-start-circle {
  z-index: 10;
  background-color: var(--guest-house-green);
  border: 3px solid #fff;
  border-radius: 16px;
  width: 24px;
  height: 24px;
  margin: 20px auto auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.timeline-content-text {
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  display: flex;
}

.timeline-content-image {
  object-fit: cover;
  min-width: auto;
  max-width: 200px;
}

.timeline-content-wrapper {
  background-color: rgba(82, 80, 59, .02);
  border: 1px solid rgba(82, 80, 59, .05);
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  overflow: hidden;
}

.timeline-grid {
  grid-row-gap: 0px;
  grid-template-columns: 64px 1fr;
}

.timeline-line {
  z-index: 5;
  background-color: var(--guest-house-green);
  opacity: .5;
  width: 4px;
  margin: 34px auto -34px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.timeline-line-wrapper {
  min-height: 80px;
  position: relative;
}

.full-width-grid-content {
  direction: ltr;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 600px;
  padding: 40px;
  display: flex;
}

.full-width-grid-content.with-bg-image {
  min-height: 640px;
}

.full-width-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.bg-image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.page-loader {
  z-index: 1000;
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.page-title {
  color: var(--guest-house-green);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.pageloader {
  z-index: 1000;
  background-color: var(--beige);
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.pageloader-logotype {
  width: 256px;
}

.single-item-form-text-field {
  background-color: rgba(0, 0, 0, 0);
  border: 0 #000;
  border-radius: 8px;
  margin: 6px 0 6px 6px;
  font-size: 12px;
}

.footer-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.space-top {
  margin-top: 20px;
}

.form-button {
  letter-spacing: .4px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 11px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity .2s;
}

.form-button:hover {
  opacity: .8;
}

.form-button.small {
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 11px;
}

.form-button.small.single-item-form-button {
  background-color: var(--guest-house-green);
  color: var(--white);
  margin: 6px;
  font-weight: 400;
}

.social-icons-wrap {
  display: flex;
}

.footer-link {
  opacity: .8;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

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

.footer-logotype {
  width: 200px;
  min-width: auto;
}

.footer-link-wrap {
  margin-top: 10px;
}

.social-icon-wrap {
  opacity: .6;
  width: 32px;
  height: 32px;
  margin-right: 20px;
  transition: opacity .2s;
}

.social-icon-wrap:hover {
  opacity: 1;
}

.social-icon-wrap.last {
  margin-right: 0;
}

.footer-form {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  align-items: center;
  display: flex;
}

.form-block, .social-icon {
  width: 100%;
}

.cta-button-wrap {
  text-align: center;
  margin-top: 20px;
}

.cta-section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-wrap {
  position: relative;
}

.slide-nav {
  display: none;
}

.slider-arrow {
  border: 2px solid var(--guest-house-green);
  color: var(--guest-house-green);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  font-size: 22px;
  transition: background-color .2s;
  top: auto;
  bottom: -80px;
  left: auto;
  right: 0%;
}

.slider-arrow:hover {
  background-color: rgba(82, 80, 59, .1);
}

.slider-arrow.left {
  right: 6%;
}

.testimonial-wrap {
  background-color: var(--white);
  border: 1px solid rgba(82, 80, 59, .1);
  border-radius: 4px;
  padding: 30px;
}

.slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-bottom: 50px;
}

.slide {
  width: 50%;
  margin-right: 20px;
}

.mask {
  overflow: visible;
}

.testimonial-rating-wrap {
  margin-bottom: 10px;
}

.star-icon {
  width: 18px;
  margin-right: 2px;
}

.no-space-top {
  margin-top: 0;
}

.testimonial-author {
  border-left: 2px solid var(--orange);
  margin-top: 20px;
  padding-left: 8px;
  font-weight: 500;
}

.light-link {
  color: var(--white);
  text-decoration: underline;
}

.the-hosts-image {
  border: 3px solid rgba(82, 80, 59, .1);
  border-radius: 128px;
  width: 256px;
}

.contact-grid {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.text-field {
  background-color: rgba(255, 255, 255, .02);
  border: 1px solid #e5e7eb;
  border-radius: 0;
  height: 50px;
  margin-bottom: 0;
}

.text-field:focus {
  border-color: var(--orange);
}

.grid-1-2-text {
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  justify-content: space-between;
}

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

.medium-width-content {
  direction: ltr;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  position: relative;
}

.small-section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

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

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

.margin-header {
  margin-right: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.text-large {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.code-span {
  color: #000;
  background-color: #c7c7c7;
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
}

.grid-1-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  justify-items: start;
  display: grid;
}

.text-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.style-guide-marker {
  margin-bottom: 30px;
  font-size: 10px;
}

.subheading-small {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.style-guide-color-block {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  width: 100px;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.style-guide-color-block.bg-orange {
  background-color: var(--orange);
}

.style-guide-color-block.bg-green {
  background-color: var(--guest-house-green);
}

.style-guide-color-block.bg-beige {
  background-color: var(--beige);
}

.grid-1-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

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

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

.paragraph, .paragraph-2 {
  font-size: 20px;
  line-height: 25px;
}

.success-message {
  background-color: var(--beige);
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 18px;
  line-height: 25px;
}

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

.image {
  border-radius: 15px;
  display: block;
  box-shadow: 4px 4px 10px -3px rgba(0, 0, 0, .41);
}

.div-block {
  cursor: pointer;
  background-image: url('../images/Bildschirmfoto-2022-02-01-um-15.52.53.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 290px;
  display: flex;
  box-shadow: 0 0 8px rgba(0, 0, 0, .47);
}

.div-block-2 {
  background-image: url('../images/Play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
}

.paragraph-3, .paragraph-4 {
  font-size: 16px;
  line-height: 25px;
}

.video-overlai {
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-2 {
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-video {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  display: flex;
}

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

.men-link {
  border-bottom: 2px solid var(--guest-house-green);
  color: #fff;
  margin-right: 15px;
  padding-bottom: 1px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.men-link:hover {
  border-bottom-color: #fff;
  text-decoration: none;
}

.section-3 {
  background-color: var(--beige);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.slider-2 {
  background-color: rgba(0, 0, 0, 0);
  width: 70%;
  height: auto;
  display: flex;
}

.cta-section-title-copy.reveal {
  margin-bottom: 50px;
}

.icon {
  background-color: var(--guest-house-green);
  color: var(--beige);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 30px;
  transition: all .3s ease-in-out;
  display: flex;
}

.icon:hover {
  background-color: var(--beige);
  color: var(--guest-house-green);
}

.icon-2 {
  color: var(--guest-house-green);
}

.slide-nav-2 {
  color: var(--guest-house-green);
  display: none;
}

.div-block-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.zitate {
  opacity: .8;
  color: var(--guest-house-green);
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.zitate._2 {
  margin-bottom: 25px;
}

.referenzen {
  color: var(--guest-house-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 30px;
}

.section-separator-copy.top.reveal {
  background-color: var(--orange);
  margin-bottom: 20px;
}

.referenzen-person {
  color: var(--guest-house-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
}

.slide-2, .mask-2 {
  height: auto;
}

.slide-3 {
  height: 100%;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  display: flex;
}

.text-green-copy {
  color: var(--guest-house-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 45px;
}

.cta-section-title-copy {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section-title-copy.reveal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-separator-copy {
  background-color: var(--orange);
  width: 42px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
}

.section-separator-copy.top {
  margin-bottom: 32px;
}

.section-separator-copy.top.reveal {
  background-color: var(--orange);
  margin-bottom: 25px;
  margin-left: 0;
}

.section-separator-copy.top.left {
  margin-left: 0;
}

.section-separator-copy.left {
  margin-bottom: 15px;
  margin-left: 0;
}

.section-separator-copy-copy.top.reveal {
  background-color: var(--orange);
  margin-bottom: 25px;
  margin-left: auto;
}

.section-separator-copy-copy {
  background-color: var(--orange);
  width: 42px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
}

.section-separator-copy-copy.top {
  margin-bottom: 32px;
}

.section-separator-copy-copy.top.reveal {
  background-color: var(--orange);
  margin-bottom: 20px;
}

.section-separator-copy-copy.top.left {
  margin-left: 0;
}

.section-separator-copy-copy.left {
  margin-bottom: 15px;
  margin-left: 0;
}

.link-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

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

  .large-callout {
    margin-bottom: 20px;
    font-size: 72px;
  }

  .feature-wrap {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .section-title.center.reveal {
    text-align: left;
  }

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

  .triple-column-content-wrap.reveal {
    text-align: left;
  }

  .mobile-navigation-link {
    width: 100%;
  }

  .mobile-navigation-link.w--current {
    color: var(--guest-house-green);
    font-weight: 500;
  }

  .navigation {
    display: none;
  }

  .navigation-container-mobile {
    justify-content: space-between;
  }

  .navigation-mobile {
    flex-direction: row;
    justify-content: center;
    height: 85px;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .navigation-left {
    display: flex;
  }

  .navigation-center {
    display: none;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 15px;
    box-shadow: 42px 42px 55px rgba(32, 53, 90, .09);
  }

  .menu-button-mobile {
    background-color: var(--white);
    color: var(--guest-house-green);
    border-radius: 100px;
    padding: 11px;
    font-size: 22px;
  }

  .menu-button-mobile.w--open {
    background-color: var(--white);
    opacity: .8;
    color: var(--guest-house-green);
  }

  .image-section-text {
    margin-left: 40px;
  }

  .image-section-text.right {
    margin-right: 40px;
  }

  .image-section {
    height: 400px;
  }

  .image-section-gradient-overlay {
    background-image: linear-gradient(to right, rgba(82, 80, 59, 0) 26%, var(--white));
  }

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

  .page-title {
    font-size: 54px;
  }

  .slider-arrow.left {
    left: 0;
    right: auto;
  }

  .slide {
    width: 100%;
  }

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

  .medium-width-content {
    max-width: none;
  }

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

  .small-section.bg-white {
    padding-top: 170px;
  }
}

@media screen and (max-width: 767px) {
  .hero-text {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-logotype {
    width: 160px;
    margin-bottom: 20px;
  }

  .arrow-animation {
    width: 120px;
    display: none;
  }

  .large-callout {
    font-size: 44px;
  }

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

  .section-title.center.reveal {
    text-align: center;
  }

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

  .triple-column-content-wrap.reveal {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .triple-column-icon {
    min-width: 52px;
  }

  .feature-section-alternative-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-section-text {
    max-width: 240px;
  }

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

  .image-section-gradient-overlay {
    background-image: linear-gradient(to right, rgba(82, 80, 59, 0) 12%, var(--white));
  }

  .timeline-content-image {
    max-width: 100%;
  }

  .timeline-content-wrapper {
    flex-direction: column;
  }

  .full-width-grid-content.with-bg-image {
    min-height: 480px;
  }

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

  .page-title {
    font-size: 42px;
  }

  .footer-form {
    max-width: none;
  }

  .contact-grid, .grid-1-2-text {
    grid-template-columns: 1fr;
  }

  .medium-width-content {
    max-width: none;
  }

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

  .margin-header {
    margin-right: 0;
    position: static;
  }

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

@media screen and (max-width: 479px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    text-align: center;
    font-size: 28px;
    line-height: 1;
  }

  .arrow-animation {
    width: 60px;
    display: block;
  }

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

  .container, .container.tight {
    padding-left: 15px;
    padding-right: 15px;
  }

  .large-callout-wrap.reveal {
    margin-left: 15px;
    margin-right: 15px;
  }

  .large-callout {
    width: 110%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 30px;
  }

  .feature-icon {
    min-width: 28px;
  }

  .section-title.center.reveal {
    margin-left: 0;
    margin-right: 0;
  }

  .text-green {
    font-size: 35px;
    line-height: 40px;
  }

  .section-subheading {
    font-size: 14px;
    line-height: 24px;
  }

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

  .button.space-top.zertifikat {
    margin-bottom: 10px;
    margin-right: 0;
    padding: 10px 15px;
    font-size: 15px;
  }

  .button.large-outline.space-right.w--current {
    margin-right: 10px;
  }

  .navigation {
    display: flex;
  }

  .brand.w--current {
    margin-right: 0;
  }

  .navigation-right {
    display: none;
  }

  .navigation-logotype {
    width: 120px;
    display: block;
  }

  .menu-button-mobile, .image-section-text {
    display: none;
  }

  .image-section {
    height: 220px;
  }

  .image-section-gradient-overlay {
    display: none;
  }

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

  .timeline-line-wrapper {
    display: none;
  }

  .full-width-grid-content {
    padding: 30px;
  }

  .social-icon-wrap {
    margin-right: 10px;
  }

  .slider {
    margin-bottom: 85px;
  }

  .contact-form-grid.reveal {
    grid-template-columns: 1fr;
  }

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

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

  .column {
    padding: 0;
  }

  .columns {
    flex-direction: column;
  }

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

  .section-3 {
    padding: 50px 15px;
  }

  .slider-2 {
    width: 100%;
  }

  .icon {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .div-block-4 {
    padding: 0;
  }

  .div-block-5 {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-green-copy {
    font-size: 25px;
    line-height: 30px;
  }

  .column-2 {
    padding: 0;
  }
}

#w-node-_0a6e5d70-069d-f9bb-5ede-690c5e6f6887-1820c1b6 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_97e60695-0dfd-05cf-c9c2-ca54a41552f3-22197ddd, #w-node-_97e60695-0dfd-05cf-c9c2-ca54a41552f7-22197ddd, #w-node-_5c9a3c6d-5412-bd61-a978-0f06f5e61180-22197ddd, #w-node-_5c9a3c6d-5412-bd61-a978-0f06f5e61184-22197ddd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e152ae19-2168-4c85-04cc-be145faa7de1-22197ddd, #w-node-e152ae19-2168-4c85-04cc-be145faa7de5-22197ddd, #w-node-_209b6e3d-eb11-b1a8-29ee-a712eef248d9-22197ddd, #w-node-_209b6e3d-eb11-b1a8-29ee-a712eef248dd-22197ddd {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_0a88de6f-b4ab-b48d-b5dd-3e2b9b29ac79-22197ddd, #w-node-_0a88de6f-b4ab-b48d-b5dd-3e2b9b29ac7d-22197ddd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db9cf663-8a06-7400-654d-a095a8406f18-22197ddd, #w-node-db9cf663-8a06-7400-654d-a095a8406f1c-22197ddd {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_0a6e5d70-069d-f9bb-5ede-690c5e6f6887-1820c1b6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_97e60695-0dfd-05cf-c9c2-ca54a41552f3-22197ddd, #w-node-_5c9a3c6d-5412-bd61-a978-0f06f5e61180-22197ddd, #w-node-e152ae19-2168-4c85-04cc-be145faa7de1-22197ddd, #w-node-_209b6e3d-eb11-b1a8-29ee-a712eef248d9-22197ddd, #w-node-_0a88de6f-b4ab-b48d-b5dd-3e2b9b29ac79-22197ddd, #w-node-db9cf663-8a06-7400-654d-a095a8406f18-22197ddd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


