@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.woff") format("woff"), url("/assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.woff") format("woff"), url("/assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: bold;
}
:root {
  --neutral-color: #ffffff;
  --neutral-color-dark: #c0c0c0;
  --dark-color: #131313;
  --dark-color-neutral: #1a1a1a;
}
:root h1 {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8;
  text-transform: uppercase;
}
:root h2 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
:root h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
:root h4 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
:root p {
  text-transform: none;
  font-weight: 400;
  line-height: 1.5;
}

html[data-theme=dark] {
  --neutral-color: #131313;
  --neutral-color-dark: #1c1c1c;
  --dark-color: #ffffff;
  --dark-color-neutral: #ededed;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  height: 40px;
  border: 3px solid transparent;
  border-radius: 8px;
  background-clip: content-box;
  background-color: var(--dark-color-neutral);
}
::-webkit-scrollbar-thumb:hover {
  border: 1px solid transparent;
}

body {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.025em;
  min-height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  background: var(--neutral-color);
  color: var(--dark-color);
  transition: background 0.3s ease;
}
body button {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: transparent;
  padding: 0.75em 2em;
  border: 1px solid var(--dark-color);
  border-radius: 12px;
  pointer-events: all;
  transition: all 0.5s ease;
  color: var(--dark-color);
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.5);
}
body div[role=button] {
  cursor: pointer;
}
body a {
  text-decoration: none;
  text-transform: none;
  color: var(--dark-color);
}

.menu-container {
  background: #131313;
  min-height: 500px;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  z-index: 50;
  padding-top: 2em;
  padding-bottom: 3em;
  transition: all 0.5s ease-in-out;
}
.menu-container nav {
  height: 100%;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.menu-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu-container ul:first-child {
  padding-bottom: 2em;
  border-bottom: 1px solid #ffffff;
}
.menu-container ul:nth-child(2) {
  padding-top: 3em;
}
.menu-container ul:nth-child(2) li {
  justify-content: center;
}
.menu-container ul li a {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.menu-container ul li a.underline {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.menu-container ul li .low {
  font-size: 1.2rem;
  font-weight: 400;
}
.menu-container .submenu-arrow {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  transform: translateX(-50%);
}
.menu-container .submenu-arrow svg {
  height: 28px;
  width: 28px;
}

.submenu {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52% !important;
  width: 100% !important;
  background-color: white;
  transform: translateY(100%);
  transition: all 0.5s ease;
  transition-delay: 0.25s;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  align-content: space-around !important;
  text-align: center !important;
  padding-top: 4em !important;
  padding-bottom: 6em !important;
  padding-left: 2em !important;
  padding-right: 2em !important;
}
.submenu > * {
  opacity: 0;
  transition: 0.2s;
}
.submenu a {
  color: #131313 !important;
}
.submenu.active {
  transform: translateY(0);
}
.submenu.zIndex {
  z-index: 2;
}
.submenu.zIndex > * {
  opacity: 1;
}

.submenu-indicator {
  display: none;
}

.reveal-menu {
  transform: translateX(0);
}

header {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 1em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s ease;
  background-color: var(--neutral-color);
}
header .logo {
  position: relative;
  color: var(--dark-color);
  text-transform: uppercase;
  font-weight: 500;
}
header .logo-tooltip {
  display: none;
}
header .menu-color {
  color: #ffffff;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100px;
}
header .dark-mode-btn {
  position: relative;
  height: 36px;
  width: 36px;
  display: inline-block;
}
header .dark-mode-btn svg {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
header .dark-mode-btn svg path {
  fill: var(--dark-color);
}
header .dark-mode-btn svg circle {
  fill: var(--dark-color);
}
header .dark-mode-btn svg #end {
  visibility: hidden;
}
header .dark-mode-tooltip {
  display: none;
}
header .menu-toggle {
  position: relative;
  height: 25px;
  width: 25px;
}
header .menu-toggle .hamburger {
  width: 100%;
  height: 100%;
}
header .menu-toggle .hamburger .line-one,
header .menu-toggle .hamburger .line-two,
header .menu-toggle .hamburger .line-three {
  stroke: var(--dark-color);
  stroke-width: 10px;
}
header .menu-tooltip {
  display: none;
}

footer {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  padding: 3.5em 1em;
  padding-bottom: 8em;
  margin-top: 6em;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .left-column {
  width: 100%;
  padding-right: 0;
  padding-bottom: 1.5em;
  border-bottom: 1px solid white;
}
footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-nav ul li {
  margin: 0.5em 2vw;
}
footer .footer-nav ul li a {
  display: block;
  color: white;
  transition: transform 0.2s ease-in-out;
  font-size: 1.2rem;
}
footer .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  padding-top: 1.5em;
  text-align: center;
}
footer .right-column p {
  font-size: 1rem;
  padding: 0 2.5em;
}
footer .social {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1em;
  width: 100%;
}
footer .social img {
  width: 24px;
  height: 24px;
  transition: 250ms;
}
footer .social img:hover {
  transform: scale(1.1);
}
footer .language {
  position: absolute;
  bottom: 2.5em;
  right: 2em;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #c0c0c0;
}
footer .language .active {
  color: white;
  font-weight: 700;
}
footer .info {
  position: absolute;
  bottom: 2em;
  left: 2em;
  font-size: 0.8rem;
  text-transform: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
footer .info a {
  color: #c0c0c0;
  font-size: 0.9rem;
}
footer .watermark-footer {
  display: none;
}

.mobileBackground {
  background-color: #131313;
}

.backToTop {
  display: none;
  position: fixed;
  padding: 0;
  bottom: 5vh;
  right: 2em;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid var(--dark-color);
  background: transparent;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 0.25s ease;
  min-width: 0;
}
.backToTop:hover {
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--dark-color);
}
.backToTop:hover svg path {
  fill: var(--neutral-color);
}
.backToTop svg {
  width: 15px;
  margin-left: auto;
  margin-right: auto;
}
.backToTop svg path {
  fill: var(--dark-color);
}

fieldset .highlight {
  height: 0.0001px !important;
}

@media only screen and (min-width: 1024px) {
  body button {
    min-width: 150px;
  }
  body button:hover, body button:focus {
    box-shadow: 1px 6px 4px -2px rgba(0, 0, 0, 0.5);
    color: var(--neutral-color);
    background-color: var(--dark-color);
  }
  header {
    background-color: transparent;
  }
  .menu-container {
    min-height: 500px;
  }
  .menu-container nav {
    width: 100%;
    height: 80vh;
    align-items: center;
  }
  .menu-container ul {
    flex-direction: row;
    gap: 5em;
    height: 66%;
    width: 80%;
    align-items: center;
  }
  .menu-container ul:last-child {
    height: 33%;
  }
  .menu-container ul li a {
    font-size: 2.8vw;
    margin-bottom: 0;
    cursor: pointer;
  }
  .menu-container ul li a:hover {
    transform: scale(1.1);
  }
  .menu-container ul li .low {
    font-size: 1.6vw;
  }
  .menu-container #oelgemaelde,
.menu-container #bildwerk,
.menu-container #expansionen {
    width: 33%;
  }
  .menu-container .menu-item {
    text-align: center;
  }
  .menu-container .submenu-arrow {
    transition: 0.25s ease;
    position: absolute;
    top: 20px;
    right: 0.5em;
    height: 26px;
    width: 26px;
    transform-origin: "center center";
    cursor: pointer;
  }
  .menu-container .submenu-arrow svg {
    height: 20px;
    width: 20px;
  }
  .menu-container .submenu-arrow:hover {
    transform: scale(1.2) translateX(-50%);
  }
  .menu-container .watermark {
    position: absolute;
    display: block;
    width: 100vw;
    left: 50%;
    font-size: calc(4rem + 16vw);
    text-transform: uppercase;
    opacity: 0;
    font-weight: 700;
    transform: translateX(-50%);
    pointer-events: none;
    color: var(--neutral-color);
    transition: opacity 0.5s ease;
    text-align: center;
    line-height: 1;
    word-break: break-all;
  }
  .mobileBackground {
    background-color: initial;
  }
  .submenu {
    justify-content: center !important;
  }
  .submenu.active {
    transform: translateY(3px);
  }
  .submenu-indicator {
    display: none;
    height: 40px;
    width: 150%;
    position: absolute;
    bottom: -28px;
    left: 50%;
    background-color: #ffffff;
    transform: translate(-50%, 50%);
    border-radius: 50%;
  }
  footer {
    height: 280px;
    padding: 2em 5em;
  }
  footer .footer-content {
    flex-direction: row;
    max-width: 1200px;
    width: 80%;
  }
  footer .left-column {
    width: 60%;
    padding-right: 3.5em;
    padding-bottom: 0;
    border-bottom: none;
  }
  footer .footer-nav ul {
    flex-direction: row;
    justify-content: flex-end;
  }
  footer .footer-nav ul li a:hover {
    transform: scale(1.1);
  }
  footer .right-column {
    padding-left: 5em;
    padding-top: 0;
    border-left: 1px solid white;
  }
  footer .right-column p {
    font-size: 0.8rem;
    text-align: left;
    padding: 0;
  }
  footer .language {
    right: 3vw;
    font-size: 0.8rem;
  }
  footer .language span {
    cursor: pointer;
  }
  footer .language span:hover {
    color: wheat;
  }
  footer .info {
    left: 3vw;
    flex-direction: row;
  }
  footer .info a {
    margin-right: 1.5em;
  }
  footer .info a:hover {
    color: white;
  }
  footer .watermark-footer {
    position: absolute;
    display: block;
    left: 33%;
    font-size: 8vw;
    opacity: 0;
    font-weight: 600;
    transform: translateX(-50%);
    pointer-events: none;
    text-align: center;
    color: white;
  }
}
@media only screen and (min-width: 1920px) {
  .menu-container ul li a {
    font-size: 65px;
  }
  .menu-container ul li .low {
    font-size: 38px;
  }
  footer .footer-nav ul li {
    margin: 0 3.5em;
  }
}
.preload {
  background-color: var(--dark-color-neutral);
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 10000;
  transform-origin: 50% 100%;
}
.preload .upper {
  height: 100%;
  width: 100%;
  background-color: var(--neutral-color);
}
.preload .lower {
  height: 100%;
  width: 100%;
  background-color: var(--dark-color-neutral);
}

section {
  padding: 3em 2em;
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5em;
}
.hero .hero-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: 1;
  min-width: 250px;
  width: 100%;
  max-width: 500px;
  z-index: 1;
  gap: 2em;
}
.hero .hero-img img {
  width: 100%;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.hero .content {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  max-width: 420px;
}
.hero .content h1 {
  margin: 0.2em 0;
  font-size: 2.5rem;
  text-align: center;
}
.hero .content p {
  margin-bottom: 2em;
  text-transform: none;
  text-align: justify;
}
.hero .content #back {
  text-decoration: underline;
  font-size: 0.9rem;
  text-align: center;
}
.hero .content button {
  min-width: 200px;
}

/* The Modal (background) */
.more {
  display: none;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1em;
}

.modal,
.bg-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal {
  /* Modal Content (image) */
}
.modal .modal-content {
  margin: auto;
  margin-top: 50%;
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Buttons */
.close {
  position: absolute;
  top: 36px;
  right: 50%;
  color: white;
  font-size: 40px;
  transition: 0.3s;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 10000;
}

.bg-modal .modal-content {
  margin: auto;
  width: 80%;
  max-width: 800px;
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5em;
  padding: 40px 10px;
  padding-bottom: calc(120px + 3vw);
  position: relative;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.8);
  color: #131313;
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.bg-modal .modal-content .image-container {
  display: none;
}
.bg-modal .modal-content .image-container img {
  min-width: 100px;
  width: 100%;
  max-width: 400px;
}
.bg-modal .modal-content .form {
  width: 80%;
}
.bg-modal .modal-content .form form fieldset {
  border: none;
}
.bg-modal .modal-content .form form input {
  width: 100%;
  display: block;
  margin: 1em auto;
  font-size: 1rem;
  padding: 0.5em;
}
.bg-modal .modal-content .form form #textarea {
  resize: none;
  width: 100%;
  margin-bottom: 2em;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: black;
  padding: 0.5em;
}
.bg-modal .modal-content .form-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  background: #404040;
  color: #ffffff;
  text-align: center;
  text-transform: none;
}

.arrows {
  color: white;
  display: flex;
  margin-top: 1em;
}
.arrows #leftArrow,
.arrows #rightArrow {
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  font-size: 1.5rem;
}

.backToTop {
  display: none !important;
}

@media only screen and (min-width: 1024px) {
  section {
    padding: 0;
  }
  .hero {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 3em;
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .hero .hero-img {
    width: 50vw;
    max-width: 650px;
  }
  .hero .content {
    width: 50vw;
    max-width: 400px;
    text-align: justify;
    align-items: center;
    padding-top: 2em;
  }
  .hero .content h1 {
    font-size: 3.5rem;
    line-height: 1;
  }
  .hero .content h4 {
    margin-top: -1em;
    margin-bottom: 1em;
  }
  .hero .content h2 {
    font-size: 2rem;
    margin-bottom: 1em;
  }
  .modal {
    padding-top: 10vh;
  }
  .modal .modal-content {
    width: auto;
    margin-top: 2em;
  }
  .close {
    top: 12px;
    right: 10vw;
    transform: rotate(45deg);
  }
  .close:hover, .close:focus {
    color: #bbb;
    transform: scale(1.2) rotate(45deg);
    cursor: pointer;
  }
  .bg-modal {
    padding-top: 10vh;
  }
  .bg-modal .modal-content {
    max-height: 750px;
    width: 50%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2em;
    padding: 2em;
    padding-bottom: 120px;
    margin-top: 2em;
  }
  .bg-modal .modal-content .image-container {
    display: block;
    width: 80%;
  }
  .bg-modal .modal-content .image-container,
.bg-modal .modal-content .form {
    width: 50%;
  }
  .arrows #leftArrow,
.arrows #rightArrow {
    transition: transform 0.25s ease;
  }
  .arrows #leftArrow:hover,
.arrows #rightArrow:hover {
    transform: scale(1.2);
  }
}/*# sourceMappingURL=style.css.map */