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

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

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

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

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

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

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

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

:root {
  --textfarbe: #383838;
  --hauptfarbe: #9a1919;
  --h1: 3em;
  --h2: 2em;
  --schrift-sekundär: Notoserif, Georgia, sans-serif;
  --font-size: 1.25em;
  --schrift: Notosans, Arial, sans-serif;
  --section-h-padding: 40px;
  --section-v-padding: 80px;
  --min-height-sections: 450px;
  --grid-gap: 16px;
  --h3: 1.625em;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--textfarbe);
  font-family: Notosans, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--hauptfarbe);
  font-family: Notoserif, Georgia, sans-serif;
  font-size: var(--h1);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.2em;
}

h2 {
  color: var(--hauptfarbe);
  font-family: Notoserif, Georgia, sans-serif;
  font-size: var(--h2);
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Notoserif, Georgia, sans-serif;
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.75em;
}

ul, ol {
  font-size: var(--font-size);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  line-height: 1.75em;
}

.header, .main, .footer {
  display: inline;
}

.nav__link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  font-family: var(--schrift);
  color: var(--hauptfarbe);
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  display: flex;
}

.nav__link.w--current {
  color: var(--hauptfarbe);
}

.nav {
  padding-top: 15px;
  padding-right: var(--section-h-padding);
  padding-left: var(--section-h-padding);
  background-color: #fff;
  height: 90px;
  position: sticky;
  inset: 0% 0% auto;
}

.main-slider {
  background-color: var(--hauptfarbe);
  height: calc(100svh - 90px);
}

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

.section {
  padding: var(--section-v-padding) var(--section-h-padding);
}

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

.section.section--cta {
  color: #fff;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/Glasnalm_11.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  display: flex;
}

.section.section--header {
  min-height: var(--min-height-sections);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  grid-column-gap: var(--grid-gap);
  grid-row-gap: var(--grid-gap);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-centered {
  grid-column-gap: var(--grid-gap);
  grid-row-gap: var(--grid-gap);
  justify-content: center;
  align-items: center;
}

.footer__link {
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
}

.footer__link:hover, .footer__link.w--current {
  text-decoration: underline;
}

.textlink {
  color: var(--hauptfarbe);
}

.textlink.textlink--cta {
  color: #fff;
}

.container-2 {
  flex: 1;
}

.hoverbar {
  background-color: #ccc;
  flex: none;
  width: 0%;
  height: 2px;
}

.brand {
  z-index: 5;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logo-image {
  width: 100%;
  max-width: 350px;
}

.brand-container {
  z-index: 100;
  padding-top: 50px;
  padding-right: var(--section-h-padding);
  padding-left: var(--section-h-padding);
  background-image: linear-gradient(#0000004d 50%, #0000);
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-button {
  justify-content: center;
  align-items: center;
}

.heading {
  font-size: var(--h1);
}

.heading-2 {
  font-size: var(--h3);
}

.button {
  background-color: var(--hauptfarbe);
  font-size: var(--font-size);
  border-radius: 6px;
  padding: 15px;
  font-weight: 700;
  line-height: 1.2em;
}

.button:hover {
  color: var(--hauptfarbe);
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #ccc;
}

.button.button--nav {
  display: none;
}

.button.button--zoom {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.container-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-3 {
  font-size: var(--h2);
}

.lightbox__thumbnail {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.header-slider {
  height: var(--min-height-sections);
  background-color: var(--hauptfarbe);
}

.slider__arrow {
  opacity: .6;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: opacity .2s;
  display: flex;
}

.slider__arrow:hover {
  opacity: 100;
}

.slider__arrow-left {
  font-size: 20px;
}

.img-cover {
  filter: brightness(90%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.icon {
  padding-top: 6px;
  padding-bottom: 0;
  padding-right: 0;
}

.arrow-circle {
  color: #fff;
  background-color: #000000b3;
  border: 1px solid #5e5e5e;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.price-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 20px;
}

.price, .price-tag {
  font-size: var(--font-size);
  line-height: 1em;
}

.iframe-consent {
  grid-column-gap: var(--grid-gap);
  grid-row-gap: var(--grid-gap);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.iframe-overlay {
  z-index: 10;
  flex: 0 auto;
  width: 0%;
  height: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.button-container {
  z-index: 4;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  inset: 16px 16px auto auto;
}

.map-container {
  background-color: #ccc;
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.image {
  z-index: 1;
  transform-origin: 0 0;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  max-width: none;
  max-height: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.zoom-button-container {
  z-index: 2;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  padding-top: 16px;
  padding-left: 16px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.icontext-container {
  grid-column-gap: var(--grid-gap);
  grid-row-gap: var(--grid-gap);
}

@media screen and (max-width: 991px) {
  body {
    --textfarbe: #383838;
    --hauptfarbe: #9a1919;
    --h1: 2.5em;
    --h2: 2em;
    --schrift-sekundär: Notoserif, Georgia, sans-serif;
    --font-size: 1.2em;
    --schrift: Notosans, Arial, sans-serif;
    --section-h-padding: 4vw;
    --section-v-padding: 60px;
    --min-height-sections: 450px;
    --grid-gap: 16px;
    --h3: 1.625em;
  }

  p {
    font-size: 1.1em;
  }

  .nav {
    padding-top: 15px;
  }

  .container {
    max-width: 960px;
  }

  .menu-button {
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 3em;
  }

  .button.button--nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    --textfarbe: #383838;
    --hauptfarbe: #9a1919;
    --h1: 2em;
    --h2: 1.8em;
    --schrift-sekundär: Notoserif, Georgia, sans-serif;
    --font-size: 1.1em;
    --schrift: Notosans, Arial, sans-serif;
    --section-h-padding: 4vw;
    --section-v-padding: 8vw;
    --min-height-sections: 450px;
    --grid-gap: 16px;
    --h3: 1.5em;
  }

  h2 {
    font-family: var(--schrift-sekundär);
  }

  .nav__link {
    padding-right: var(--section-h-padding);
    padding-bottom: 15px;
    padding-left: var(--section-h-padding);
  }

  .nav {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    position: sticky;
  }

  .main-slider {
    max-height: 500px;
  }

  .nav__container {
    background-color: #fff;
  }

  .section.section--cta {
    min-height: var(--min-height-sections);
  }

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

  .footer-centered {
    flex-flow: wrap;
  }

  .menu-button {
    float: left;
    background-color: var(--hauptfarbe);
    color: #fff;
    min-width: 60px;
    min-height: 60px;
    display: block;
    position: relative;
  }

  .menu-button.w--open {
    background-color: var(--hauptfarbe);
  }

  .heading, .heading-2 {
    font-family: var(--schrift-sekundär);
  }

  .button:hover {
    border-radius: 6px;
  }

  .button.button--nav {
    float: right;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    display: flex;
  }

  .container-4 {
    width: 100%;
  }

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

  .hamburger__line {
    background-color: #fff;
    width: 40px;
    height: 2px;
  }

  .hamburger {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    transition: all .2s;
  }

  .hamburger:hover {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .header-slider {
    max-height: 500px;
  }

  .price-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .price {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 479px) {
  body {
    --textfarbe: #383838;
    --hauptfarbe: #9a1919;
    --h1: 1.8em;
    --h2: 1.6em;
    --schrift-sekundär: Notoserif, Georgia, sans-serif;
    --font-size: 1em;
    --schrift: Notosans, Arial, sans-serif;
    --section-h-padding: 6vw;
    --section-v-padding: 8vw;
    --min-height-sections: 250px;
    --grid-gap: 16px;
    --h3: 1.4em;
  }

  .main-slider {
    max-height: 500px;
  }

  .footer-centered {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo-image {
    max-width: 50svw;
  }

  .brand-container {
    padding-top: 15px;
  }

  .button {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .button.button--zoom {
    width: 40px;
    height: 40px;
  }

  .header-slider {
    max-height: 500px;
  }

  .slider__arrow {
    width: 65px;
  }

  .button-container {
    flex-flow: column;
  }
}


@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notoserif';
  src: url('../fonts/NotoSerif-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notoserif';
  src: url('../fonts/NotoSerif-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notoserif';
  src: url('../fonts/NotoSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notoserif';
  src: url('../fonts/NotoSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}