<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** IMPORTS **/
@import 'components/reset.css';


/** FONTS **/

@font-face {
    font-family: 'ppeditorial';
    src: url('./fonts/PPEditorialNew-Ultralight.woff2') format(woff2);
    font-style: normal;
   
}

@font-face {
  font-family: 'ppeditorial';
  src: url('./fonts/PPEditorialNew-UltralightItalic.woff') format(woff2);
  font-style: italic;
}

@font-face {
    font-family: 'freigeist';
    src: url('./fonts/font.woff2') format(woff2);
    font-display: swap;
    font-weight: 100 1000;
}


/** VARIABLES **/
:root {
    --clr-blue: #0000FF;
    --clr-black: #000;
    --clr-white: #fff;

    --ff-serif: 'ppeditorial', serif;
    --ff-sans: 'freigeist', Helvetica, sans-serif;

    --fs-l: clamp(3.81rem, calc(2.65rem + 5.81vw), 9.63rem);
    --fs-m: clamp(1.88rem, calc(1.58rem + 1.50vw), 3.38rem);
    --fs-s: clamp(1.13rem, calc(1.05rem + 0.38vw), 1.50rem);
}

/** TYPOGAPHY **/

strong {
  font-weight: bold;
}

u {
  text-decoration: underline;
}

s {
  text-decoration: line-through;
}

em {
  font-style: italic;
}

/** Links **/

a:hover {
  font-style: italic;
}

.fs-l {
    font-size: var(--fs-l);
}

.fs-m {
    font-size: var(--fs-m);
}

.fs-s {
    font-size: var(--fs-s);
}

.grotesk {
    font-family: var(--ff-sans);
    font-weight: 650;
    font-stretch: condensed;
}

.centered  {
    text-align: center;
}

/** GENERAL **/
html {
    font-family: var(--ff-serif);
    color: var(--clr-blue);
}

h1 {
    font-family: 'freigeist';
    font-weight: 650;
    font-size: var(--fs-l);
    font-stretch: condensed;
    padding: 0;
    margin: 0;
    line-height: 0.85;
}

/** HEADER **/



.header {
  /*background-color: var(--clr-white) !important;*/
  /*color: var(--clr-blue);*/
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: top;
  width: 100%;
  padding: 0 1.5rem;
  transition: all ease-in-out 0.3s;
}

.header a:hover {
    font-style: normal !important;
}

.logo {
    color: var(--clr-white);
    z-index: 999;
    margin-top: 1rem;
    display: flex;
    transition: 0.3s ease-out;
    font-weight: 650;
    transition: all ease-in-out 0.2s;
}




.logo:hover {
  font-stretch: 87%;
  font-style: normal;
}



.logo div {
  line-height: 0.85;
  transition: 0.3s
}

.logo-active {
  flex-direction: column;
  transition: 0.3s;
}

.burger {
  z-index: 9999;
  margin-top: 1rem;
}

.burger svg {
  width: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
  height: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
}

/** FOOTER **/

.marquee {
    position: fixed;
    width: 100%;
    bottom:0;
    background-color: var(--clr-blue);
    color: var(--clr-white);
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    z-index: 9999;
    padding-top: 0.5rem;
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: start;
    min-width: 50%;
    gap: 0.5rem;
    animation: scroll 15s linear infinite;
    white-space: nowrap; /* Prevents content from wrapping */
  }

  .marquee:hover .marquee__content {
    animation-play-state: paused;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }

/** Home Page **/
.arrow-up {
  position: relative;
  z-index: 99;
  background-color: var(--clr-blue);
  min-height: 25vh;
  height: 25vh !important;
  display: flex;
  padding-bottom: 2rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.arrow-up svg {
  width: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
  height: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
}

.container-intro {
    position: relative;
    height: 100vh;
    overflow: auto;
    scroll-snap-type: y mandatory;
}

.slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    color: var(--clr-white)
}

.slide img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
    border-radius: 0 !important;
  }
  .slide figcaption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
  }

  .slide-txt {
    max-width: 60%;
  }

  .slide-btn {
    font-size: var(--fs-m);
    border: 1.6px solid;
    padding: 0rem 2rem;
    padding-top: 0.5rem;
    border-radius: clamp(1.88rem, calc(1.58rem + 1.50vw), 3.38rem);
  }

  .slide-btn:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
    border: 1px solid transparent !important;
  }

/* Introvideo */
#introvideo {
  background-color: black;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  /** SLIDE OUT **/

  .slideout {
    width: 50vw;
    height: 100vh;
    position: fixed;
    background-color: var(--clr-white);
    color: var(--clr-blue);
    z-index: 100;
    top: 0;
    right: -50vw;
    padding: 1rem;
    padding-bottom: 8rem;
    transition: 0.2s ease-out;
    overflow-y: scroll;
  }

  .slideout-active {
    right: 0 !important;
  }

  .slideout .burger-open {
    width: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
    height: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem); 
    position: fixed;
    top: 1rem;
    right: -50vw;
    transition: 0.2s;
    z-index: 9999;
  }

  .slideout .burger-work {
    width: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
    height: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem); 
    position: fixed;
    top: 1rem;
    right: -50vw;
    transition: 0.2s;
    z-index: 9999;
  }

  .burger-open-active {
    right: 1rem !important; 
  }

  .burger-open-rotated {
    transform: rotate(180deg);
  }

  .slideout-lg {
    width: 80vw;
    right: -80vw;
  }

  .menu {
    font-size: var(--fs-l);
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    line-height: 0.85;
  }

  .menu li {
    padding: 0;
    margin: 0;
  }

  .menu a {
    font-weight: 650;
    transition: all ease-in-out 0.2s;
  }

  .menu a:hover {
    /*font-weight: 800;*/
    font-stretch: 87%;
    font-style: normal;
  }

/* Main Stage */
.video video {
  border-radius: 0.5rem;
}

.main-stage {
  margin-bottom: 0rem;
}  

#video_hoch {
  display: none; }

#video_quer {
  display: none; }

/* Works Grid */

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 1.5rem;
}

.works-grid figure img {
  border-radius: 0.5rem;
}

.grid img {
  border-radius: 0.5rem;
  display: block; 
}

.works-grid figure {
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0;
  margin-bottom: 1rem;
}

.works-grid figure img {
  transition: 0.3s ease-in-out;
  display: block;
}

.works-grid figure:hover img {
  transform: scale(1.05);
}

.vidfigcaption {
  margin-top: 0.8rem;
}

figcaption {
  margin-top: 0.8rem;
}


/* GRID */

.grid {
  font-size: var(--fs-m);
}

.grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

.small-width {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.small-width .flickity-prev-next-button.previous {
  left: 11%;
}

.small-width .flickity-prev-next-button.next {
  right: 11%;
}

/* GRID Helpers */

.grid figure img {
  border-radius: 0.5rem;
}


.abstand {
  font-size: 0;
  min-height: 5rem;
}

.grid-contact+.grid-contact {
  margin-top: 3.875rem;
}
/* .grid+.grid {
  margin-top: 3.875rem;
} */

.grid&gt;.column {
  grid-column: span var(--columns);
  align-self: center;
}


@media (max-width: 1000px) {
  .grid {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }

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

  .grid&gt;.column {
    margin-bottom: 1.6rem;
  }

  .small-width .flickity-prev-next-button.previous {
    left: 0;
  }
  
  .small-width .flickity-prev-next-button.next {
    right: 0;
  }

  .abstand {
    font-size: 0;
    min-height: 0rem;
  }

}


/* SHOWREEL */
#showreel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-play {
  cursor: pointer;
}

#showreel-play {
  z-index: 99999;
  color: var(--clr-white);
  border: 1px solid var(--clr-white);
  padding: 0.5rem 2.5rem;
  border-radius: clamp(1.88rem, calc(1.58rem + 1.50vw), 3.38rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  font-size: var(--fs-m);
}


/** FILTER **/
.btn-fltr {
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.btn-fltr:hover {
  font-style: italic;
}

.fltr-active {
  font-style: italic;
  /* text-decoration: underline; */
}

.show {
  display: block !important;
}

.filterLi {
  display: none;
}

/* work site */
.work-tags {
  font-style: oblique;
}

.work-tags::after {
  content: ',';
}

.work-tags:last-child::after {
  content: '';
}

.grid-work .column {
  margin-bottom: 5rem;
}

.grid-work figcaption {
  text-align: center;
  font-size: var(--fs-s);
}

.grid-about figcaption {
  text-align: center;
  font-size: var(--fs-s);
}

/* Work Meta */

.work-meta-mother {
  margin-top: 5rem;
  margin-left: 10%;
  margin-right: 10%;
  font-size: var(--fs-s);
}

.work-meta-column {
  display: flex;
  border-bottom: 1.6px solid var(--clr-blue);
  padding-top: 5px;
}


.work-meta-column div:first-child {
  width: 30%;
}

.work-meta-column div {
  width: 70%;
}

.work-meta-column div ul {
  display: flex;
}

.work-meta-column div ul li::after {
  content: ',';
  margin-right: 5px;
}

.work-meta-column div ul li:last-child::after {
  content: '';
}

/** FLICKITY **/

.carousel-cell {
  width: 100%;
}

.flickity-slider img {
  max-width: none;
  width: 100%;
}

/* no circle */
.flickity-button {
  background: transparent;
}

/* big previous &amp; next buttons */
.flickity-prev-next-button {
  transition: all ease-in-out 0.3s;
}

/* icon color */
.flickity-button-icon {
  fill: var(--clr-blue);
}

.flickity-button:hover {
    background: transparent;
}

/* hide disabled button */
.flickity-button:disabled {
  display: none;
}

/* VIDEO VIMEO RESPONSIVE */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  border: 0px !important;
}

.videosrc {
  width: 100%;
}



/** MOBILE **/

.menu-mobile {
  display: none;
  padding: 5rem 1rem 0;
  top: -100vh;
  width: 100vw;
  position: fixed;
  z-index: 9999;
  background: var(--clr-white);
  transition: all ease-in-out 0.3s;
}

.mobile-active {
  top: 0;
}

.m-menu {
  font-size: var(--fs-l);
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.m-menu li {
  padding: 0;
  margin: 0;
}

.m-menu a {
  font-weight: 650;
  transition: all ease-in-out 0.2s;
}

.m-menu a:hover {
  /*font-weight: 800;*/
  font-stretch: 87%;
  font-style: normal;
}

.mobile-burger {
  display: none;
  z-index: 9999;
  margin-top: 1.25rem;
}

.mobile-burger svg {
  width: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
  height: clamp(2.75rem, calc(1.93rem + 3.08vw), 5.63rem);
}

.work-title-mobile {
  display: none;
}

.obenAusrichten {
  margin-top: -2.6rem;
}

.workintro {
  margin-bottom: 0;
}

/* IMPRESSUM */
.grid-impressum {
  font-size: var(--fs-s);
}

.grid-impressum .column {
  align-self: flex-start;
}

.grid-impressum h2 {
  font-size: var(--fs-m);
}

.grid-impressum p {
  margin-top: var(--fs-m);
}

.grid-impressum + .grid-impressum {
  margin-top: var(--fs-l);
}

.grid-impressum h2 + h2 {
  margin-top: var(--fs-m);
}


@media (max-width: 1000px) {
  .work-title-mobile {
    display: inline;
  }

  .workintro {
    margin-bottom: 0.7rem;
  }
  
  .header {
    border-bottom: 1px solid var(--clr-blue);
    background-color: var(--clr-white);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    z-index: 99999;
  }
  .st0 {
    stroke: var(--clr-blue) !important;
  }
  .logo {
    color: var(--clr-blue);
  }



  .logo-active {
    flex-direction: row;
  }

  .slideout {
    width: 100vw;
    height: 100dvh;
    right: -100vw;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .menu-mobile {
    display: block;
  }

  .burger {
    display: none;
  }

  .slideout .burger-open {
    display: none;
  }

  .mobile-burger {
    display: block;
  }

  .slide-txt {
    max-width: 90%;
  }

  .grid-work .column {
    margin-bottom: 1.5rem;
  }



  .work-meta-mother {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .small-width {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .arrow-up {
    min-height: 15vh;
    height: 15vh !important;
  }

  .works-grid {
    row-gap: 1.2rem;
  }

  .works-grid figure {
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 0;
    margin-bottom: 0.7rem;
  }

  .filter {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }


  .obenAusrichten {
    margin-top: 0rem;
  }
}


/* COOKIE CONSENT **/

#cc-main {
  --cc-font-family: var(--ff-serif),-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius: .5rem;
  --cc-btn-border-radius: .4rem;
  --cc-modal-transition-duration: .25s;
  --cc-modal-margin: 1rem;
  --cc-z-index: 2147483647;

  --cc-btn-primary-bg: #0000FF;
  --cc-btn-primary-border-color: #0000FF;
  --cc-btn-primary-hover-bg: #3a3aff;
  --cc-btn-primary-hover-border-color: #3a3aff;
}

.cm__title {
  font-family: var(--ff-sans) !important;
  text-transform: uppercase !important;
}

.pm__title {
  font-family: var(--ff-sans) !important;
  text-transform: uppercase !important;
}

.pm__section-title {
  font-family: var(--ff-sans) !important;
}

.cm__btn {
  font-family: var(--ff-sans) !important;
}</pre></body></html>