@font-face {
  font-family: "Metro Sans";
  font-style: regular;
  font-weight: 400;
  src: url(../fonts/metro-sans-regular.woff) format("woff");
}
@font-face {
  font-family: "Metro Sans";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/metro-sans-regular-italic.woff) format("woff");
}
@font-face {
  font-family: "Metro Sans";
  font-style: bold;
  font-weight: 600;
  src: url(../fonts/metro-sans-bold.woff) format("woff");
}
@font-face {
  font-family: "Metro Sans";
  font-style: italic;
  font-weight: 600;
  src: url(../fonts/metro-sans-bold-italic.woff) format("woff");
}
@view-transition {
  navigation: auto;
}
/* FN RESET STYLE SHEET*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: "Metro Sans";
  font-weight: 400;
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  background: white;
}

body {
  font-weight: 400;
  font-size: 1vw;
  line-height: 1.2;
}

.no-scroll {
  overflow: hidden;
}

.flex {
  display: flex;
}
.flex.flex-col {
  flex-direction: column;
}
.flex.al-it-center {
  align-items: center;
}
.flex.just-center {
  justify-content: center;
}
.flex.just-between {
  justify-content: space-between;
}
.flex.just-around {
  justify-content: space-around;
}

.m-main {
  margin: 1.5vw;
}

.p-main {
  padding: 1.5vw;
}

.mt-1 {
  margin-top: 1.5vw;
}

.mt-2 {
  margin-top: 3vw;
}

.mt-3 {
  margin-top: 4.5vw;
}

@media screen and (max-width: 1024px) {
  .menu-content {
    font-size: 2rem;
  }
  .m-main {
    margin: 1.5rem;
  }
  .p-main {
    padding: 1.5rem;
  }
  .mt-1 {
    margin-top: 1.5rem;
  }
  .mt-2 {
    margin-top: 3rem;
  }
  .mt-3 {
    margin-top: 4.5rem;
  }
}
.menu-content {
  font-weight: 600;
  font-size: 1.4vw;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.01em;
}

.logo-wrapper {
  cursor: pointer;
}
.logo-wrapper a,
.logo-wrapper a:visited,
.logo-wrapper a:active {
  color: black;
  text-decoration: none;
}
.logo-wrapper .logo-main,
.logo-wrapper .logo-sub {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1em;
}
.logo-wrapper .logo-main.light,
.logo-wrapper .logo-sub.light {
  color: white;
}
.logo-wrapper .logo-sub {
  font-weight: 400;
  font-style: italic;
}

h1 {
  margin-bottom: 1em;
}

.imprint-content {
  line-height: 1.5em;
}

.text-content a,
.text-content a:visited,
.text-content a:active {
  color: black;
  text-decoration: underline;
}
.text-content a:hover {
  font-weight: bold;
}

/* MENU: */
.menu-icon-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  /* Icon 4 */
}
.menu-icon-wrapper #nav-icon4 {
  width: 4rem;
  height: 2.4rem;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.menu-icon-wrapper #nav-icon4.light span {
  background: white;
}
.menu-icon-wrapper #nav-icon1 span,
.menu-icon-wrapper #nav-icon3 span,
.menu-icon-wrapper #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.menu-icon-wrapper #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.menu-icon-wrapper #nav-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.menu-icon-wrapper #nav-icon4 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.menu-icon-wrapper #nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 9px;
}
.menu-icon-wrapper #nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.menu-icon-wrapper #nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 26px;
  left: 9px;
}

.menu-content {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  height: 100%;
  transform: translate(100%, 0);
  transition: transform 0.3s ease;
  padding-top: 6vw;
  text-align: right;
}
.menu-content .main-menu ul,
.menu-content .sub-menu ul {
  list-style: none;
}
.menu-content .main-menu ul li a,
.menu-content .main-menu ul li a:visited,
.menu-content .main-menu ul li a:active,
.menu-content .sub-menu ul li a,
.menu-content .sub-menu ul li a:visited,
.menu-content .sub-menu ul li a:active {
  color: black;
  text-decoration: none;
}
.menu-content .main-menu ul li a.active,
.menu-content .main-menu ul li a:visited.active,
.menu-content .main-menu ul li a:active.active,
.menu-content .sub-menu ul li a.active,
.menu-content .sub-menu ul li a:visited.active,
.menu-content .sub-menu ul li a:active.active {
  text-decoration: underline;
}
.menu-content.open {
  transform: translate(0%, 0) !important;
}
.menu-content.light a,
.menu-content.light a:visited,
.menu-content.light a:active {
  color: white !important;
}

.menu-close {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
.menu-close.open {
  display: block;
}

.scaled {
  animation: fadeOut 0.5s ease-in-out;
  opacity: 0;
}

.image-gallery-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0;
  overflow: hidden;
  z-index: 1001;
  background-color: white;
  cursor: grab;
  view-transition-name: gallery;
}
.image-gallery-wrapper:focus-visible {
  outline: none;
}

.flickity-viewport {
  height: 100vh;
}

.gallery-img {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-img img {
  display: block;
  height: auto;
  max-width: 70%;
  max-height: 80%;
  width: auto;
  object-fit: contain;
}

.flickity-page-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  bottom: 3vh;
  position: absolute;
  width: 100%;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 0.7rem;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.gallery-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 1010;
}
.gallery-close svg {
  width: 4rem;
  height: auto;
}

.gallery-controls {
  position: absolute;
  z-index: 1010;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 3rem;
}
.gallery-controls svg {
  width: auto;
  height: auto;
}
.gallery-controls.gallery-next {
  right: 0;
}
.gallery-controls.gallery-prev {
  left: 0;
}

@keyframes fadeIn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  10% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(0.7);
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.logo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  transform-origin: top left;
  transition: transform 0.5s ease-in-out;
  z-index: 1001;
}
.logo-wrapper .logo-sub {
  margin-top: 0.3rem;
}

.background-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background: black;
  opacity: 1;
  transition: opacity 4s ease-out;
}
.background-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.background-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  user-select: none;
  touch-action: none;
  pointer-events: none;
}
.background-video-wrapper iframe {
  border: 0;
  width: 100vw;
  height: 56.25vh;
  min-height: 140vh;
  /* min-height: 100vh; */
  min-width: 177.77vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
}
.background-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview {
  width: calc(80vw + 15px);
  max-width: 1615px;
  margin: 0 auto;
  margin-top: 10vw;
}

.overview-sizer {
  width: 20vw;
  max-width: 400px;
}

.overview-item {
  height: 13vw;
  max-height: 266px;
  margin-bottom: 5px;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-color: black;
  overflow: hidden;
}
.overview-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}
.overview-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}
.overview-item[data-size=medium] {
  width: 20vw;
  max-width: 400px;
}
.overview-item[data-size=large] {
  width: calc(40vw + 5px);
  max-width: 805px;
  height: calc(26vw + 5px);
  max-height: 537px;
}
.overview-item[data-orientation=portrait] {
  height: calc(26vw + 5px);
  max-height: 537px;
}
.overview-item.show {
  opacity: 1;
}
.overview-item:hover img {
  opacity: 0.1;
}
.overview-item:hover video {
  opacity: 0.1;
}
.overview-item:hover::before {
  opacity: 1;
}
.overview-item:before {
  color: white;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  content: attr(data-title);
  content: attr(data-title) "\a" attr(data-subtitle);
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  white-space: pre;
  width: 90%;
  text-wrap: auto;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0;
  overflow: hidden;
  z-index: 1001;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  view-transition-name: gallery;
}
.video-wrapper .video-embedd {
  width: 71vw;
  height: 39vw;
  text-align: center;
}
.video-wrapper .video-embedd iframe {
  width: 98%;
  height: 100%;
}
.video-wrapper .video-embedd iframe .plyr__control--overlaid {
  background: white;
}
.video-wrapper .video-embedd iframe .plyr__control--overlaid svg {
  fill: black;
}

.content {
  width: calc(80vw + 15px);
  max-width: 1615px;
  margin: 0 auto;
  margin-top: 10vw;
  gap: 1vw;
}
.content p {
  margin-bottom: 1em;
}

.about-content .text-content {
  width: 50%;
  align-self: center;
}

.about-image {
  width: 50%;
  height: 43vw;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  align-items: center;
  height: 70vh;
}
.contact-content .text-content {
  width: 50%;
}

.imprint-content .text-content {
  width: 100%;
  columns: 3;
  column-gap: 2.5vw;
}

.page-404 {
  width: 50vw;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20vw;
}

@keyframes fadeInMain {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutMain {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(10%);
  }
}
::view-transition-new(gallery) {
  animation: 300ms ease 50ms both fadeInMain, 300ms ease 50ms both slide-up;
}

::view-transition-old(gallery) {
  animation: 300ms ease 50ms both fadeOutMain, 300ms ease 50ms both slide-down;
}

.uploader {
  width: 65%;
  margin: 20% auto;
}
.uploader .video-item {
  font-size: 0.8vw;
}
.uploader .video-item img {
  width: 20vw;
  max-width: 42rem;
  height: auto;
  display: block;
}
.uploader .videoID {
  cursor: pointer;
}
.uploader .video-upload {
  position: relative;
}
.uploader .upload-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
  align-items: center;
}
.uploader .upload-spinner.hidden {
  display: none !important;
}
.uploader .upload-progress {
  opacity: 1;
}
.uploader .upload-progress.hidden {
  opacity: 0.5;
}

@media screen and (max-width: 1300px) {
  .background-loader {
    height: 100dvh;
    animation-duration: 4s;
  }
  .background-video-wrapper {
    height: 100dvh;
  }
  .background-video-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
  }
}
@media screen and (max-width: 1024px) {
  .menu-content {
    padding-top: 10rem;
    font-size: 2rem;
    height: 100dvh;
  }
  .menu-content:not(.light) {
    background: white;
  }
  .overview {
    padding-top: 7rem;
    width: calc(90vw + 5px);
  }
  .overview .overview-sizer {
    width: 45vw;
  }
  .overview .overview-item {
    height: 30vw;
  }
  .overview .overview-item[data-size=medium] {
    width: 45vw;
  }
  .overview .overview-item[data-size=large] {
    width: calc(90vw + 5px);
    height: calc(60vw + 5px);
  }
  .overview .overview-item[data-orientation=portrait] {
    height: calc(60vw + 5px);
  }
  .overview .overview-item::before {
    font-size: 1.3rem;
  }
  .image-gallery-wrapper {
    height: 100svh;
  }
  .gallery-controls {
    display: none;
  }
  .gallery-img {
    height: 100svh;
  }
  .gallery-img img {
    max-width: 90%;
    max-height: 90%;
    width: 100vw;
    object-fit: contain;
  }
  .video-wrapper .video-embedd {
    width: 90vw;
    height: 51vw;
  }
  .content {
    margin-top: 10rem;
    width: calc(90vw + 5px);
    font-size: 1.8rem;
  }
  .about-content,
  .contact-content {
    flex-direction: column;
  }
  .about-content .text-content,
  .contact-content .text-content {
    width: 100%;
  }
  .about-content .text-content .bio,
  .contact-content .text-content .bio {
    margin-top: 2rem;
  }
  .about-content .about-image,
  .contact-content .about-image {
    order: -1;
    align-self: flex-end;
    width: 100%;
    height: 80vw;
    max-height: 400px;
  }
  .about-content .about-image img,
  .contact-content .about-image img {
    object-position: top;
  }
  .imprint-content .text-content {
    columns: 1;
    font-size: 1.4rem;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .menu-content {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1300px) {
  .overview .overview-item:before {
    font-size: 1.3rem;
  }
}
