@font-face {
  font-family: Helveticaneue;
  src: url('../fonts/HelveticaNeue-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.section {
  height: 100vh;
}

.heading {
  color: #000;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 80px;
  display: flex;
}

.body {
  height: 100vh;
  font-family: Helveticaneue, Arial, sans-serif;
}

.heading-2 {
  color: #000;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 90vh;
  font-size: 80px;
  display: flex;
  overflow: visible;
}

.transition {
  z-index: 2000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0%;
  transition: opacity 0.5s ease; /* _______________________Füge Transition hinzu */
}

/* Wenn die Transition ausgeblendet wird */
.transition.hidden {
    opacity: 0;
    pointer-events: none; /* WICHTIG: Klicks gehen durch */
}

/* Nach der Fade-Animation komplett verstecken */
.transition.completely-hidden {
    display: none;
}

.transition:active {
  pointer-events: auto;
  backface-visibility: visible;
  mix-blend-mode: normal;
  display: block;
}

.heading-3 {
  color: #000;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90vh;
  font-size: 80px;
  font-weight: 700;
  display: flex;
}

.navbar {
  background-color: #fff;
}

.image {
  width: 50px;
  display: block;
}

.brand {
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-top: 0;
  display: flex;
  position: relative;
}

.image-2 {
  width: 400px;
  display: block;
}

.container {
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  display: flex;
}

.button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  text-align: left;
  background-color: #3898ec00;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.button:hover {
  color: #b6b6b6;
}

.container-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.button-2 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: block;
}

.menu-container {
  justify-content: center;
  align-items: center;
  height: 33vh;
  display: flex;
}

.menu-container._1 {
  justify-content: center;
  align-items: flex-end;
  height: 43vh;
}

.menu-container._2 {
  height: 14vh;
}

.menu-container._3 {
  justify-content: center;
  align-items: flex-start;
  height: 43vh;
  margin-top: 0;
  padding-top: 0;
}

.menu-button {
  color: #000;
  background-color: #3898ec00;
  font-size: 80px;
  font-weight: 700;
  transition: all .2s;
}

.menu-button:hover {
  color: #b6b6b6;
  -webkit-text-stroke-color: #a0a0a0;
  text-decoration: none;
}

.container-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.body-2 {
  font-family: Helveticaneue, Arial, sans-serif;
}

.heading-4 {
  color: #000;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  display: flex;
}

.fq-header {
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  height: 10vh;
  display: block;
  position: fixed;
}

.fq-header.header-collection {
  position: fixed;
}

.footer-button {
  z-index: 1000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vh;
  display: block;
  position: fixed;
}

.footer-button.sec {
  background-color: #fff0;
}

.section-2 {
  justify-content: center;
  align-items: flex-start;
  height: auto;
  max-height: 90vh;
  display: flex;
}

.button-3 {
  display: inline-block;
}

.container-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery-scroll {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-6 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 80px;
}

.gallery-link {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link:hover {
  color: #1a1b1fcc;
}

.gallery-link.w--current {
  font-weight: 600;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
}

.gallery-image-text {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-text-fill-color: inherit;
  background-color: #fff0;
  background-clip: border-box;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 600px;
  margin-top: 10vh;
  display: grid;
  position: static;
}

.lightbox-link {
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.image-3 {
  width: 600px;
  height: 200px;
  display: block;
}

.lightbox-link-2, .lightbox-link-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-4, .image-5, .image-6, .image-7 {
  width: 600px;
  height: 200px;
}

.image-8 {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 50% 10%;
  background-color: #fff;
  flex: 0 auto;
  width: 100%;
  min-width: 0;
  height: 200px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
  position: static;
  top: auto;
  overflow: visible;
}

.image-8:hover {
  opacity: .4;
}

.image-8.ex2 {
  object-position: 50% 40%;
}

.link-block {
  box-sizing: border-box;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
  position: static;
  transform: scale(1);
}

.container-7 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.section-3 {
  justify-content: center;
  align-items: center;
  height: 80vh;
  display: flex;
}

.container-8 {
  justify-content: center;
  align-items: center;
  width: 800px;
  height: 300px;
  display: flex;
}

.image-9 {
  object-fit: cover;
  object-position: 50% 30%;
  flex: 0 auto;
  width: 100%;
  height: 300px;
}

.grid-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 15px;
  margin-right: 15px;
}

.image-10 {
  width: 100%;
}

.container-9 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-4 {
  height: 10vh;
}

.container-10 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.section-5 {
  height: 10vh;
}

.container-11 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.section-6 {
  height: 90vh;
}

.container-12 {
  height: 80vh;
}

.image-11 {
  object-fit: cover;
  width: 100%;
  height: 80vh;
}

.grid-3 {
  grid-template-rows: auto auto auto;
  width: 600px;
}

.container-13 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-link-4, .image-12 {
  width: 100%;
}

.section-7 {
  height: 80vh;
}

.section-8 {
  z-index: 1000;
  position: fixed;
}

.section-9 {
  margin-top: 10vw;
  margin-bottom: 10vh;
}

@media screen and (max-width: 991px) {
  .container-6 {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sticky {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .gallery-scroll {
    padding: 60px 15px;
  }
}

@media screen and (max-width: 479px) {
  .container-6 {
    max-width: none;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }
}

#w-node-_293c9cc1-71a3-79a2-e16f-42a91711399f-9a13c23d {
  align-self: auto;
}

#w-node-_9d359913-08a3-dcb5-a482-099fd31c99b2-9a13c23d {
  place-self: auto;
}

#w-node-_02cf6524-a2b4-9218-55b0-c90b83d1fdd6-9a13c23d, #w-node-dd0661ee-bd7e-e608-74f0-212ea9c8d302-9a13c23d, #w-node-bb62d60d-1359-c32e-e1a9-5ff3d6f19c9b-9a13c23d {
  align-self: auto;
}


@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}