@charset "UTF-8";
/* required components */
/*@import "defaults/bootstrap/index";*/
/* ===========================================
   MAIN STYLES
   Core layout, components, and page-specific styles
   =========================================== */
/* Variables
******************************************/
:root {
  --border-radius: 0;
  --grid-base: 6px;
  /* Font Sizes */
  --font-size-h1: 42px;
  --font-size-h2: 33px;
  --font-size-h3: 26px;
  --font-size-h4: 27px;
  --font-size-p-small: 17px;
  --font-size-p: 20px;
  /* Line Heights */
  --line-height-h1: 40px;
  --line-height-h2: 36px;
  --line-height-h3: 30px;
  --line-height-h4: 30px;
  --line-height-p-small: 20px;
  --line-height-p: 24px;
  /* Margins */
  --margin-h1: 36px;
  --margin-h2: 24px;
  --margin-h3: 18px;
  --margin-h4: 20px;
  --margin-p-small: 24px;
  --margin-p: calc(3 * var(--grid-base));
  /* Padding Presets */
  --p-s: calc(3 * var(--grid-base));
  --p-m: calc(6 * var(--grid-base));
  --p-l: calc(10 * var(--grid-base));
  --p-xl: calc(20 * var(--grid-base));
  --p-hero: calc(7.3 * var(--grid-base));
  /* Layout */
  --container-padding: calc(2 * var(--grid-base));
  --container-padding-large: calc(6 * var(--grid-base));
  --gutter-spacing: calc(1.5 * var(--grid-base));
  --nav-height: 53px;
  /* Colors */
  --primary-color: #000;
  --secondary-color: #fff;
  --third-color: #ff382b;
  --hover-color: #7b7b7b;
}

/* Werkschau Theme
******************************************/
.werkschau {
  --primary-color: #fff;
  --secondary-color: #000;
  --third-color: #000;
}

/* Variables Desktop (768px+)
******************************************/
@media only screen and (min-width: 768px) {
  :root {
    --border-radius: 0;
    --font-size-h1: 44px;
    --font-size-h2: 34px;
    --font-size-h3: 26px;
    --line-height-h1: 44px;
    --line-height-h2: 36px;
    --line-height-h3: 29px;
    --line-height-p: 25px;
    /* Margins */
    --margin-h1: 35px;
    --margin-h2: 35px;
    --margin-h3: 35px;
    --margin-h4: 35px;
    --margin-p-small: 24px;
    --margin-p: 20px;
  }
}

/* Variables Desktop (992px+)
******************************************/
@media only screen and (min-width: 992px) {
  :root {
    --border-radius: 0;
    --font-size-h1: 44px;
    --font-size-h2: 34px;
    --font-size-h3: 28px;
    --line-height-h1: 44px;
    --line-height-h2: 36px;
    --line-height-h3: 31px;
    --font-size-p: 20px;
    --line-height-p: 24px;
    /* Margins */
    --margin-h1: 35px;
    --margin-h2: 35px;
    --margin-h3: 35px;
    --margin-h4: 35px;
    --margin-p-small: 24px;
    --margin-p: 20px;
    /* Padding Presets */
    --p-s: calc(4 * var(--grid-base));
    --p-m: calc(8 * var(--grid-base));
    --p-l: calc(16 * var(--grid-base));
    --p-xl: calc(32 * var(--grid-base));
    --p-hero: calc(16 * var(--grid-base));
  }
}

/* Variables Large Desktop (1200px+)
******************************************/
@media only screen and (min-width: 1200px) {
  :root {
    --grid-base: 7px;
    --font-size-h1: 54px;
    --font-size-h2: 42px;
    --font-size-h3: 30px;
    --font-size-h4: 30px;
    --line-height-h1: 54px;
    --line-height-h2: 44px;
    --line-height-h3: 33px;
    --line-height-h4: 35px;
    --margin-p: 12px;
  }
}

/* Variables XL Desktop (1400px+)
******************************************/
@media only screen and (min-width: 1400px) {
  :root {
    --grid-base: 7px;
    --font-size-h1: 60px;
    --font-size-h2: 50px;
    --font-size-h3: 30px;
    --font-size-h4: 30px;
    --line-height-h1: 60px;
    --line-height-h2: 52px;
    --line-height-h3: 33px;
    --font-size-p-caps: 29px;
    --line-height-h4: 35px;
  }
}

/* Import Fonts
******************************************/
@font-face {
  font-family: Q;
  src: url(../../../dist/fonts/FoundersGrotesk-Regular.otf);
  font-weight: 500;
}

@font-face {
  font-family: Q;
  src: url(../../../dist/fonts/FoundersGrotesk-Medium.otf);
  font-weight: 700;
}

@font-face {
  font-family: Q;
  src: url(../../../dist/fonts/FoundersGrotesk-Bold.otf);
  font-weight: 900;
}

@font-face {
  font-family: Q;
  src: url(../webfonts/FoundersGrotesk-RegularItalic.otf);
  font-style: italic;
  font-weight: 300;
}

@font-face {
  font-family: Signifier;
  src: url(../../../dist/fonts/Signifier-ExtralightItalic.otf);
}

/* New Type CSS
******************************************/
p {
  margin-bottom: var(--margin-p);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

a {
  color: var(--primary-color);
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  text-decoration: underline;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

h2 a,
h3 a {
  text-underline-position: under;
  -webkit-text-decoration: underline 2px solid var(--primary-color);
          text-decoration: underline 2px solid var(--primary-color);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  opacity: 1;
}

h2 a:hover,
h3 a:hover {
  -webkit-text-decoration: underline 2px solid var(--third-color);
          text-decoration: underline 2px solid var(--third-color);
}

ul {
  -webkit-padding-start: 17px;
          padding-inline-start: 17px;
  margin-left: 5px;
  list-style: circle;
}

.navbar ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

/* Headlines Desktop */
.p-small {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
}

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  margin-bottom: var(--margin-h1);
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  margin-bottom: var(--margin-h2);
}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: var(--margin-h3);
}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  margin-bottom: var(--margin-h4);
}

/* Adjust Paragraph Spacing Bottom */
.p-half-p {
  margin-bottom: calc(2 * var(--grid-base));
}

.p-full-p {
  margin-bottom: calc(4 * var(--grid-base));
}

.p-double-p {
  margin-bottom: calc(8 * var(--grid-base));
}

/* Darstellungsoption Border Top
******************************************/
.border-top {
  border-top: 1px solid #a6a6a6;
}

/* Padding Classes
******************************************/
.pt-hero {
  padding-top: var(--p-hero);
}

.pb-hero {
  padding-bottom: var(--p-hero);
}

.pt-xl {
  padding-top: var(--p-xl);
}

.pb-xl {
  padding-bottom: var(--p-xl);
}

.pt-l {
  padding-top: var(--p-l);
}

.pb-l {
  padding-bottom: var(--p-l);
}

.pt-m {
  padding-top: var(--p-m);
}

.pb-m {
  padding-bottom: var(--p-m);
}

.pt-s {
  padding-top: var(--p-s);
}

.pb-s {
  padding-bottom: var(--p-s);
}

.pt-nav {
  padding-top: var(--nav-height);
}

.pb-nav {
  padding-bottom: var(--nav-height);
}

/* ===========================================
   NAVIGATION
   Main navbar, links, mobile menu, subnav
   =========================================== */
/* Base Navbar
------------------------------------------ */
.navbar {
  padding: 0;
  height: var(--nav-height);
  background-color: var(--third-color);
  -webkit-transition: height 0.3s ease, background-color 0.3s ease;
  transition: height 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
  z-index: 12;
}

.navbar-collapse {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

/* Theme overrides for homepage */
.is-home .navbar {
  background-color: var(--third-color);
}

.is-home .main {
  background-color: var(--third-color);
}

nav img {
  width: auto;
}

/* Nav Links
------------------------------------------ */
.nav-link {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  text-decoration: none;
  padding: 7px 10px 0 0;
  margin: 0;
  color: var(--primary-color);
  display: block;
  -webkit-transition: color 40ms ease, opacity 0.3s ease;
  transition: color 40ms ease, opacity 0.3s ease;
}

.is-customized .nav-link:hover {
  color: var(--nav-hover-color);
  opacity: 0.7;
}

/* Navbar Brand / Logo
------------------------------------------ */
.navbar-brand {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 0;
  padding: 0;
  height: 100%;
  text-decoration: none;
}

.navbar-brand svg {
  height: 24px;
}

.logo-top {
  padding-left: var(--container-padding);
  text-decoration: none;
}

.logo-top h4 {
  margin-bottom: 0;
}

/* Nav Container
------------------------------------------ */
.nav-container {
  height: 100%;
  width: 100%;
  padding-right: var(--container-padding);
  line-height: 30px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.info-open .navbar {
  padding-right: 0 !important;
}

.nav-icons {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

.nav-icons h3 {
  margin-bottom: 0;
}

/* Navbar Toggler (Hamburger Button)
------------------------------------------ */
.navbar-toggler {
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-left: 20px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  border: 0;
  border-radius: 0;
}

.navbar-collapse.collapsing {
  -webkit-transition: height 0.01s;
  transition: height 0.01s;
}

/* Navbar Nav List
------------------------------------------ */
.navbar-nav {
  width: auto;
  height: 100%;
}

.language-switch {
  font-size: 25px;
  font-family: Signifier, serif;
}

/* ===========================================
   SUBNAV / DROPDOWN
   Height controlled by JS for sync with .main
   =========================================== */
.nav-subnav {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Subnav items - fade in on hover */
.nav-subnav > li {
  -webkit-transition: opacity 0.2s ease, max-height 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, max-height 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.3s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.3s ease, -webkit-transform 0.2s ease;
  max-height: 0;
}

/* Subnav visible on hover */
.navbar-nav > li:hover > .nav-subnav > li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Staggered animation for subnav items */
.navbar-nav > li:hover > .nav-subnav > li:nth-child(1) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

.navbar-nav > li:hover > .nav-subnav > li:nth-child(2) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.navbar-nav > li:hover > .nav-subnav > li:nth-child(3) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.navbar-nav > li:hover > .nav-subnav > li:nth-child(4) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.navbar-nav > li:hover > .nav-subnav > li:nth-child(5) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}

.navbar-nav > li:hover > .nav-subnav > li:nth-child(6) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

/* ===========================================
   ACTIVE STATES
   =========================================== */
.current-menu-item {
  color: var(--third-color);
}

.is-home .current-menu-item {
  color: var(--secondary-color);
}

/* Last menu item width fix for long subnav text */
.menu-item:last-child {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.menu-item:last-child .nav-subnav {
  white-space: normal;
}

/* Link active states */
.link-active {
  color: var(--third-color);
}

.werkschau .link-active {
  color: var(--primary-color);
}

.link-active:hover {
  color: var(--secondary-color);
}

.werkschau .link-active:hover {
  color: var(--primary-color);
}

/* Mobile subnav active state */
.active.nav-subnav {
  visibility: visible;
  max-height: 1000px;
  opacity: 1;
}

/* ===========================================
   HIDDEN NAV STATE
   Used when overlay is open
   =========================================== */
.hidenav .navbar {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.hidenav .project-wrapper {
  padding-top: 0;
}

.hidenav .home-slide {
  padding-bottom: 70px !important;
  padding-top: 30px;
}

/* ===========================================
   HAMBURGER ICON ANIMATION
   Three-line to X animation
   =========================================== */
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  background: var(--primary-color);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon3 span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}

.animated-icon3 span:nth-child(2) {
  top: -4px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  height: 30px;
  border-radius: 30px;
}

.animated-icon3 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}

/* Open state - transforms to X */
.animated-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  left: 8px;
  opacity: 1;
}

.animated-icon3.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 21px;
  left: 8px;
  opacity: 1;
}

.nav-subnav {
  margin-left: 0;
}

.active.nav-subnav {
  margin-left: 0;
}

.nav-background {
  height: 150vh;
  width: 100vw;
  position: fixed;
  background-color: var(--primary-color);
  opacity: 0.6;
  z-index: 10;
  display: none;
  top: 0;
}

.nav-open body {
  overflow: hidden;
}

/* ===========================================
   MOBILE STYLES (max-width: 991px)
   =========================================== */
@media only screen and (max-width: 991px) {
  .nav-bg {
    background-color: var(--third-color);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 220px;
    -webkit-transition: bottom 0.5s ease;
    transition: bottom 0.5s ease;
    z-index: -1;
  }
  .logo-top h3, .navbar-toggler h3 {
    padding-bottom: 3px;
  }
  .nav-open .nav-bg {
    bottom: 0;
  }
  .mobile--only {
    display: block;
  }
  .mobile--none {
    display: none !important;
  }
  /* Full-screen mobile menu */
  .menu-open {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    padding-top: calc(var(--nav-height) - 10px);
    padding-left: var(--container-padding);
    padding-bottom: var(--container-padding);
    max-height: 0;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
  }
  .nav-open .menu-open {
    max-height: 100vh;
  }
  .menu-open-inner {
    width: 100%;
    height: 100%;
  }
  .nav-item {
    margin: 0;
    -webkit-transition: height 0.4s ease;
    transition: height 0.4s ease;
  }
  .navbar-nav {
    width: auto;
    height: auto;
    padding-top: 30px;
    margin-left: 0;
  }
  .navbar {
    padding-right: 0 !important;
    overflow: visible;
  }
  .nav-subnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* Mobile submenu toggle (+/- icon) */
  .submenu-toggle {
    width: 18px;
    height: 18px;
    margin-top: 15px;
    margin-left: 8px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  .submenu-toggle span {
    height: 100%;
    width: 2.5px;
    display: block;
    background-color: var(--primary-color);
    position: absolute;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .submenu-toggle span:first-child {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .active .submenu-toggle span:nth-child(2) {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .has-subnav .submenu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .active.nav-subnav > li {
    max-height: 100px;
  }
  .nav-subnav .menu-item .nav-link {
    padding-left: 30px;
    -webkit-transition: opacity 0.3s ease, padding 0.3s ease;
    transition: opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
  }
  .active.nav-subnav .menu-item .nav-link {
    padding-left: 0;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease, padding 0.4s ease;
    transition: opacity 0.4s ease, padding 0.4s ease;
  }
  .nav-subnav > li {
    -webkit-transition: opacity 0.2s ease, max-height 0.5s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, max-height 0.5s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.5s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.5s ease, -webkit-transform 0.2s ease;
    max-height: 0;
  }
  .nav-link.active {
    color: var(--secondary-color);
  }
  .nav-link {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
  }
  /* Staggered animation for subnav items */
  .active.nav-subnav .menu-item:nth-child(1) .nav-link {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .active.nav-subnav .menu-item:nth-child(2) .nav-link {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .active.nav-subnav .menu-item:nth-child(3) .nav-link {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .active.nav-subnav .menu-item:nth-child(4) .nav-link {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .active.nav-subnav .menu-item:nth-child(5) .nav-link {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .active.nav-subnav .menu-item:nth-child(6) .nav-link {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}

/* ===========================================
   DESKTOP STYLES (min-width: 992px)
   =========================================== */
@media only screen and (min-width: 992px) {
  .mobile--only {
    display: none;
  }
  .navbar-nav a:hover {
    color: var(--secondary-color);
  }
  .is-home .navbar-nav a:hover {
    color: var(--secondary-color);
  }
  .navbar-brand {
    width: 25%;
    padding: 8px 0;
  }
  .menu-open {
    display: block !important;
    height: 100%;
    width: 75%;
  }
  .menu-open-inner {
    height: 100%;
    width: 100%;
  }
  .navbar-nav {
    width: 100%;
    padding: 8px 0;
  }
  .nav-item {
    height: 100%;
  }
  .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0;
  }
  /* Desktop subnav - horizontal layout */
  .nav-subnav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .nav-subnav .nav-link {
    padding-bottom: 0;
  }
  .nav-subnav > li {
    max-height: 500px;
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  /* Staggered animation for subnav items */
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(1) {
    -webkit-transition-delay: 50ms;
            transition-delay: 50ms;
  }
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(2) {
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(3) {
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(4) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(5) {
    -webkit-transition-delay: 250ms;
            transition-delay: 250ms;
  }
  .navbar-nav > li:hover > .nav-subnav > li:nth-child(6) {
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }
}

@media only screen and (max-width: 991px) {
  .menu-open {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s ease;
    transition: max-height 0.8s ease;
  }
  .nav-open .menu-open {
    max-height: 500px;
    /* Genug für alle Items */
  }
  /* Nav Items - standardmäßig versteckt */
  .navbar-nav > .nav-item {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
    transition: opacity 0.1s ease, transform 0.1s ease;
    transition: opacity 0.1s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  }
  .nav-open .navbar-nav > .nav-item {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  /* Staggered fade-in wenn offen */
  .nav-open .navbar-nav > .nav-item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .navbar-nav > .nav-item:nth-child(1) {
    -webkit-transition-delay: 0.02s;
            transition-delay: 0.02s;
  }
  .navbar-nav > .nav-item:nth-child(2) {
    -webkit-transition-delay: 0.04s;
            transition-delay: 0.04s;
  }
  .navbar-nav > .nav-item:nth-child(3) {
    -webkit-transition-delay: 0.06s;
            transition-delay: 0.06s;
  }
  .navbar-nav > .nav-item:nth-child(4) {
    -webkit-transition-delay: 0.08s;
            transition-delay: 0.08s;
  }
  .nav-open .navbar-nav > .nav-item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .nav-open .navbar-nav > .nav-item:nth-child(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .nav-open .navbar-nav > .nav-item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .nav-open .navbar-nav > .nav-item:nth-child(4) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}

/* Toggler bis 991px anzeigen */
@media only screen and (max-width: 991px) {
  .navbar-toggler {
    display: block !important;
  }
}

/* Toggler ab 992px verstecken */
@media only screen and (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
  /* Sicherstellen, dass Desktop-Nav sichtbar ist */
  .menu-open {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .navbar-nav > .nav-item {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}

/* Col Custom
******************************************/
/* Adjust Container and Row to match Grid */
.container-fluid {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.row {
  margin-right: calc(-1 * var(--container-padding));
  margin-left: calc(-1 * var(--container-padding));
}

/* Allgemeine Col Einstellungen */
.col-custom {
  position: relative;
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.ce-table .col-custom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

@media only screen and (min-width: 992px) {
  .col-custom {
    padding-right: calc(var(--container-padding) / 2);
    padding-left: calc(var(--container-padding) / 2);
  }
  .col-custom:first-child {
    padding-left: var(--container-padding);
  }
  .col-custom:last-child {
    padding-right: var(--container-padding);
  }
}

/* Twocol Layouts
  ******************************************/
/* Allgemeine Twocol Einstellungen */
.ce-twocol.mh-1,
.ce-onecrol.mh-1,
.ce-threecol.mh-1,
.ce-fourcol.mh-1 {
  min-height: calc(20 * var(--grid-base));
  padding-bottom: calc(4 * var(--grid-base));
}

.ce-twocol.mh-2,
.ce-onecrol.mh-2,
.ce-threecol.mh-2,
.ce-fourcol.mh-2 {
  min-height: calc(40 * var(--grid-base));
  padding-bottom: calc(4 * var(--grid-base));
}

.ce-twocol.mh-3,
.ce-onecrol.mh-3,
.ce-threecol.mh-3,
.ce-fourcol.mh-3 {
  min-height: calc(60 * var(--grid-base));
  padding-bottom: calc(4 * var(--grid-base));
}

.ce-twocol.mh-4,
.ce-onecrol.mh-4,
.ce-threecol.mh-4,
.ce-fourcol.mh-4 {
  min-height: calc(80 * var(--grid-base));
  padding-bottom: calc(4 * var(--grid-base));
}

.ce-threecol .col-custom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.table-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.table-row .table-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

/* Teaser List 
*************************/
.teaser-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.ce-teaser-list .col-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  padding-right: 0;
}

.ce-teaser-list a {
  text-decoration: none;
}

.ce-teaser-list .teaser-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: 15px;
}

.ce-teaser-list .teaser-meta {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  margin-bottom: 15px;
  margin-left: 50px;
  opacity: 0.4;
}

.ce-teaser-list .teaser-short {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  max-width: 700px;
}

.ce-teaser-list .teaser-caption {
  padding: var(--container-padding);
}

.teaser-image img {
  margin-bottom: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.teaser-container .teaser-image {
  overflow: hidden;
}

.ce-teaser-list .teaser-meta span {
  margin-right: 100px;
}

.ce-twocol.switch-order .col-custom:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.ce-twocol.switch-order .col-custom:nth-child(1) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media only screen and (min-width: 992px) {
  .ce-twocol .col-custom {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .teaser-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ce-twocol.switch-order .col-custom:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ce-twocol.switch-order .col-custom:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .teaser-container:hover .teaser-image img {
    -webkit-transform: scale(1.05) translateX(10px);
    transform: scale(1.05) translateX(10px);
  }
  .table-row .table-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .table-row .table-col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .table-row .table-col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    max-width: 10%;
  }
  .ce-twocol.q-col .col-custom:nth-child(2) {
    max-width: 700px;
  }
  .ce-table.news-table .table-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ce-table.news-table .table-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ce-table.news-table .table-col:first-child,
  .ce-table.news-table .table-col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .ce-table.news-table .table-col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .ce-twocol.q-col.q-col-full .col-custom:nth-child(2) {
    max-width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .ce-twocol.layout-6-5 .col-custom:nth-child(1) {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ce-twocol.layout-6-5 .col-custom:nth-child(2) {
    -ms-flex: 0 0 41.666666%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666666%;
    max-width: 41.666666%;
    margin-left: 8.333333%;
  }
  .ce-twocol.layout-5-6 .col-custom:nth-child(2) {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ce-twocol.layout-5-6 .col-custom:nth-child(1) {
    -ms-flex: 0 0 41.666666%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666666%;
    max-width: 41.666666%;
    margin-right: 8.333333%;
  }
  .ce-twocol.layout-4-8 .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.3333333%;
  }
  .ce-twocol.layout-4-8 .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666666%;
            flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .ce-twocol.layout-8-4 .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666666%;
            flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .ce-twocol.layout-8-4 .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.3333333%;
  }
  .ce-threecol.layout-4-3-5 .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .ce-threecol.layout-4-3-5 .col-custom:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .layout-3 .teaser-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
  }
}

/* Threecol Layouts
  ******************************************/
/* Allgemeine Threecol Einstellungen */
@media only screen and (min-width: 992px) {
  .ce-threecol .col-custom {
    -ms-flex: 0 0 33.3333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }
  .ce-threecol.q-col .col-custom {
    -ms-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
    max-width: auto;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .ce-threecol.q-col .col-custom:first-child {
    -ms-flex: 0 0 33.3333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .ce-threecol.q-col .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* Fourcol Layouts
  ******************************************/
/* Allgemeine Fourcol Einstellungen */
.ce-fourcol .col-custom {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

@media only screen and (max-width: 991px) {
  .ce-fourcol.q-col .col-custom:first-child {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0 !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    -ms-flex-positive: 0;
    flex-grow: 0;
    min-width: 0 !important;
  }
}

@media only screen and (min-width: 992px) {
  .ce-fourcol .col-custom {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ce-fourcol.q-col .col-custom {
    -ms-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
    max-width: auto;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .ce-fourcol.q-col .col-custom:first-child {
    -ms-flex: 0 0 33.3333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .ce-fourcol.q-col .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 991px) {
  .q-col .col-custom {
    min-width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
  }
}

/* Onecol Spacer
  ******************************************/
@media only screen and (min-width: 992px) {
  .ce-onecol-spacer .col-custom {
    max-width: 50%;
  }
}
/* Hero
********************************************/
.ce-hero.parallax-scroll img {
  height: 120%;
  margin-top: -10%;
}

/* Adjustments for Editorial Page
********************************************/
.ce-table .table-row {
  border-top: 1px solid black;
  padding-top: 8px;
  padding-bottom: 12px;
}

.ce-table .table-row:last-child {
  border-bottom: 1px solid black;
}

.ce-table .table-row h3 {
  margin-bottom: 0;
}

.table-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ce-onecol.layout-12 .col-custom {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

/* Table Styles */
.ce-table table {
  width: 100%;
  border-collapse: collapse;
}

.ce-table tr {
  border-top: 1px solid black;
}

.ce-table tr:last-child {
  border-bottom: 1px solid black;
}

.ce-table td {
  padding-top: 8px;
  padding-bottom: 12px;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

/* Mobile: 2 Spalten Layout */
.ce-table td {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.ce-table td:first-child {
  width: 30%;
}

.ce-table td:nth-child(2) {
  width: 69%;
}

.ce-table td:nth-child(3) {
  width: 30%;
}

.ce-table td:nth-child(4) {
  width: 69%;
}

.ce-table tr {
  display: block;
}

/* Desktop: 4 Spalten Layout */
@media only screen and (min-width: 992px) {
  .ce-table tr {
    display: table-row;
  }
  .ce-table td {
    display: table-cell;
  }
  .ce-table td:nth-child(1) {
    width: 25%;
  }
  .ce-table td:nth-child(2) {
    width: 33.33333%;
  }
  .ce-table td:nth-child(3) {
    width: 10%;
  }
  .ce-table td:nth-child(4) {
    width: 31.66667%;
  }
}

/* TESTING */
.main {
  -webkit-transition: margin-top 1s ease;
  transition: margin-top 1s ease;
  background-color: var(--secondary-color);
}

.move-out .main {
  margin-top: -500px;
}

.move-in .main {
  margin-top: 200px;
}

.fancybox__caption {
  display: none;
}

.fancybox__backdrop,
.fancybox__content {
  background-color: var(--secondary-color);
  background: white !important;
}

.fancybox__content img {
  max-width: 900px;
}

.sticky-wrapper,
.sticky-wrapper2 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.timeline-element {
  width: 50vw;
}

/* ===========================================
   SWIPER STYLES
   All carousel/slider components
   =========================================== */
/* Base Swiper
------------------------------------------ */
.swiper {
  height: 100%;
}

.swiper-container {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  height: 100%;
}

/* ===========================================
   HOME SWIPER
   Main homepage slider with project previews
   =========================================== */
.home-container {
  width: 600px;
  overflow: hidden;
}

.swiper-home-bg-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-home-bg-container img,
.swiper-home-bg-container video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

.swiper-home-text-container .event-date-big {
  background-color: transparent;
  padding: 0;
}

.swiper-home-text-container .event-teaser .event-date {
  font-size: var(--font-size-p-small);
  color: var(--hover-color);
  margin-bottom: 0;
}

/* Home container hover effect - zoom + lift */
.home-container img,
.home-container video {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.home-container:hover img,
.home-container:hover video {
  -webkit-transform: scale(1.1) translateY(-10px);
          transform: scale(1.1) translateY(-10px);
}

.home-container video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-container .animation-container {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

/* Home Container Overlay (Caption area)
------------------------------------------ */
.home-container-overlay {
  position: relative;
  background-color: var(--secondary-color);
  width: 100%;
}

.home-container-caption {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 100%;
}

.home-container-caption p,
.home-container-caption a {
  background-color: var(--secondary-color);
  padding: 0;
  margin-bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.home-container-caption .more-link {
  display: none;
}

/* ===========================================
   HOME EVENT CONTAINER
   Event slide in homepage swiper
   =========================================== */
.home-event-container {
  background-color: var(--secondary-color);
}

.home-event-container .btn {
  border: none;
  padding: 0;
  text-align: left;
  font-size: var(--font-size-h4);
  border-radius: 0;
}

.home-event-container .btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.home-event-container .btn img {
  width: 20px;
  height: 20px;
  margin-top: -6px;
  margin-left: 12px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.home-event-container .btn:hover img {
  margin-left: 20px;
}

.home-event-container .swiper-home-text-container {
  height: 100%;
  width: 100%;
}

.home-event-container .swiper-home-text-container .event-title {
  font-size: var(--font-size-h4);
  line-height: 32px;
  max-width: 450px;
  margin-bottom: 20px;
}

.home-event-container .event-teaser {
  margin-bottom: 30px;
}

/* ===========================================
   WORK SWIPER
   Project detail page slider
   =========================================== */
.work-swiper .swiper-slide {
  width: 100%;
  height: 550px;
}

.work-swiper .swiper-slide img {
  height: 100%;
  width: 100%;
}

.home-slide {
  width: 100%;
  height: auto;
  padding: var(--container-padding);
  padding-bottom: 0;
  padding-top: 70px;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.swiper-wrapper video {
  height: 100%;
  width: 100%;
}

/* Swiper Pagination
------------------------------------------ */
.swiper-pagination {
  width: auto;
  position: relative;
  margin-bottom: 0;
  padding-top: 15px;
}

/* ===========================================
   CE SWIPER / ABOUT SLIDER
   Used on info page for image galleries
   =========================================== */
.swiperce,
.swiper-news {
  width: 100%;
  overflow: hidden;
}

.swiperce {
  position: relative;
}

.swiperce .swiper-slide,
.swiper-news .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.swiper-news .swiper-slide img {
  width: 100%;
  height: auto;
}

.swiperce .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
}

.swiperce .swiper-slide a {
  height: 100%;
}

.ce-aboutslider .col-custom {
  padding-right: 0 !important;
}

.swiperce .swiper-slide {
  height: 300px;
  width: auto;
}

/* Swiper Navigation Buttons
------------------------------------------ */
.swiperce .swiper-button-prev,
.swiperce .swiper-button-next,
.swiper-news .swiper-button-prev,
.swiper-news .swiper-button-next {
  position: relative;
  top: auto;
  width: 25px;
  height: 44px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: none;
}

.swiperce .swiper-button-prev,
.swiper-news .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiperce .swiper-conterols-container,
.swiper-news .swiper-conterols-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

/* ===========================================
   SWIPER NEWS
   News page image slider
   =========================================== */
.swiper-news.swiperce .swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper-news.swiperce .swiper-slide,
.swiper-news.swiperce .swiper-wrapper {
  width: 100%;
}

/* ===========================================
   SWIPER MORE
   "More projects" slider at bottom of pages
   =========================================== */
.swipermore {
  overflow: hidden;
}

.swipermore .swiper-slide {
  width: 85%;
  height: 400px;
  overflow: hidden;
}

.swipermore .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ce-swipermore .col-custom:nth-child(2) {
  padding: 0;
}

/* ===========================================
   MOBILE STYLES (max-width: 991px)
   =========================================== */
@media only screen and (max-width: 991px) {
  /* Stack slides vertically on mobile */
  .work-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ===========================================
   DESKTOP STYLES (min-width: 992px)
   =========================================== */
@media only screen and (min-width: 992px) {
  .work-swiper .swiper-slide {
    min-width: 700px;
    height: 100%;
    padding: 0;
    width: 40%;
  }
  .swiperce .swiper-button-prev,
  .swiperce .swiper-button-next,
  .swiper-news .swiper-button-prev,
  .swiper-news .swiper-button-next {
    width: 27px;
  }
  .work-swiper .swiper-slide img {
    height: 100%;
    width: 100%;
  }
  .work-swiper .home-slide {
    padding-left: var(--container-padding);
  }
  .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .swiper-slide {
    width: auto;
  }
  .swiper-slide img {
    height: 100%;
    width: auto;
  }
  .swiper-wrapper video {
    height: 100%;
    width: 100%;
  }
  .swiperce .swiper-slide {
    height: 500px;
    width: auto;
  }
  .home-slide {
    width: 70vw;
    min-width: 300px;
    padding: 0 100px 0 var(--container-padding);
  }
  .swipermore .swiper-slide {
    width: 60%;
  }
  /* Home container - fade in overlay on hover */
  .home-container-overlay {
    opacity: 0;
    top: 50px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .home-container:hover .home-container-overlay {
    opacity: 1;
    top: 0;
  }
  .home-container-caption .more-link {
    display: inline-block;
    white-space: nowrap;
    margin-left: 10px;
    overflow: visible;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  /* Home event desktop adjustments */
  .home-event-container .swiper-home-text-container .event-title {
    margin-bottom: 20px;
  }
  .home-container .animation-container {
    width: 70%;
    height: 100%;
    margin-left: 15%;
  }
}

/* Large Desktop (1200px+)
------------------------------------------ */
@media only screen and (min-width: 1200px) {
  .swiperce .swiper-slide {
    height: 550px;
    width: auto;
  }
}

.swiperce .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-user-drag: none;
}

.swiperce .swiper-slide img {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ce-aboutslider .col-custom {
  padding-left: 0;
}

/* CE Teaser Slider
***********************************/
.ce-teaser-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.ce-teaser-slider .swiper-slide .teaser-slider-container .teaser-slider-img {
  overflow: hidden;
  width: 100%;
}

.ce-teaser-slider .swiper-slide .teaser-slider-container img {
  -webkit-transform: scale(1.05) translateX(-5px);
          transform: scale(1.05) translateX(-5px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.ce-teaser-slider .swiper-slide {
  width: 90%;
  min-width: 300px;
  padding-left: var(--container-padding);
}

@media only screen and (min-width: 768px) {
  .ce-teaser-slider .swiper-slide {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 992px) {
  .ce-teaser-slider .swiper-slide .teaser-slider-container:hover img {
    -webkit-transform: scale(1.05) translateX(5px);
            transform: scale(1.05) translateX(5px);
  }
  .ce-teaser-slider .swiper-slide {
    width: 40%;
  }
  .ce-aboutslider .col-custom .swiper-slide:first-child {
    padding-left: var(--container-padding);
  }
}

@media only screen and (min-width: 1200px) {
  .ce-teaser-slider .swiper-slide {
    width: 25%;
  }
}

.ce-teaser-slider .swiper-slide:last-child {
  margin-right: calc(var(--container-padding) / 2);
}

.teaser-slider-container {
  text-decoration: none;
}

.ce-teaser-slider .col-custom {
  padding-left: 0;
  padding-right: 0;
}

.teaser-slider-caption-container {
  padding-top: 10px;
}

.ce-teaser-slider .swiper-button-next,
.ce-teaser-slider .swiper-button-prev,
.ce-aboutslider .swiper-button-next,
.ce-aboutslider .swiper-button-prev {
  position: relative;
  top: auto;
  width: 18px;
  height: auto;
  margin-top: 0;
  left: auto;
  right: auto;
}

.ce-teaser-slider .swiper-button-prev,
.ce-aboutslider .swiper-button-prev {
  margin-right: 15px;
}

.ce-teaser-slider .swiper-button-next::after,
.ce-teaser-slider .swiper-button-prev::after,
.ce-aboutslider .swiper-button-next::after,
.ce-aboutslider .swiper-button-prev::after {
  content: none;
}

.swiper-controls {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-bottom: calc(var(--grid-base)*2);
  margin-top: 15px;
}

.ce-teaser-slider .swiper-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ce-teaser-slider .swiper-button-prev img,
.ce-teaser-slider .swiper-button-next img,
.ce-aboutslider .swiper-button-prev img,
.ce-aboutslider .swiper-button-next img {
  opacity: 0.3;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}

.ce-teaser-slider .swiper-button-prev:hover img,
.ce-teaser-slider .swiper-button-next:hover img,
.ce-aboutslider .swiper-button-prev:hover img,
.ce-aboutslider .swiper-button-next:hover img {
  opacity: 1;
}

.swiper-controls h3 {
  margin-bottom: 0;
}

.ce-teaser-slider .swiper-slide h3 {
  margin-bottom: 6px;
}

.ce-teaser-slider .swiper-slide p {
  font-size: var(--font-size-p-small);
  color: var(--hover-color);
  line-height: var(--line-height-p-small);
}

.ce-teaser-slider.teaser-size-small .swiper-slide h3 {
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) {
  .ce-teaser-slider .swiper-button-next,
  .ce-teaser-slider .swiper-button-prev,
  .ce-aboutslider .swiper-button-next,
  .ce-aboutslider .swiper-button-prev {
    width: 20px;
  }
}

/* ===========================================
   GLOBAL STYLES
   =========================================== */
html {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
  scroll-behavior: smooth;
}

body {
  color: var(--primary-color);
  font-family: "Q", sans-serif;
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

figure {
  width: 100%;
}

img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
}

video {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.bg-white {
  background-color: var(--secondary-color);
}

.hideme {
  opacity: 0;
}

/* ===========================================
   BUTTONS
   =========================================== */
button:focus {
  outline: 0;
}

.btn {
  padding: 8px 30px 12px;
  font-size: var(--font-size-p);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease, color 0.3s ease !important;
  transition: all 0.3s ease, color 0.3s ease !important;
}

.btn-small {
  font-size: var(--font-size-p-small);
  margin-bottom: 0;
  line-height: var(--line-height-p-small);
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 3px 8px 5px 8px;
  background-color: white;
  border: 1px solid black;
  border-radius: 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease, color 0.3s ease !important;
  transition: all 0.3s ease, color 0.3s ease !important;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Arrow button with animated arrow */
.arrow-btn:after {
  content: "→";
  font-family: Signifier, serif;
  padding-left: 5px;
  font-size: 35px;
  padding-bottom: 8px;
  -webkit-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
}

.arrow-btn:hover:after {
  padding-left: 15px;
}

/* More link with sliding background */
.more-link {
  position: relative;
  z-index: 1;
}

.more-link:after {
  content: "";
  background-color: var(--third-color);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.more-link:hover:after {
  width: 0;
}

.more-link:hover {
  opacity: 1;
}

/* Back button with rotated arrow */
.back-btn {
  text-decoration: none;
}

.back-btn img {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 10px;
  margin-top: 10px;
}

/* ===========================================
   MAIN CONTAINER
   =========================================== */
.main {
  margin-top: var(--nav-height);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow-anchor: none;
}

footer {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.aktuelles-footer-left .row .col-custom:nth-child(3) {
  display: none !important;
}

.aktuelles-footer-right .row .col-custom:nth-child(2),
.aktuelles-footer-right .row .col-custom:nth-child(1) {
  display: none !important;
}

.aktuelles-footer-right .col-custom,
.aktuelles-footer-left .col-custom {
  min-height: 150px;
}

.aktuelles-footer-right .col-custom a,
.aktuelles-footer-left .col-custom a {
  text-decoration: none;
}

.is-home .main {
  padding-top: 52px;
}

/* Remove nav spacer on specific pages */
.remove-nav-spacer .main {
  margin-top: 0;
}

/* Container transitions */
.container,
.container-fluid {
  -webkit-transition: opacity 0.5s ease 0.4s;
  transition: opacity 0.5s ease 0.4s;
}

.loaded .container,
.loaded .container-fluid {
  opacity: 1;
}

/* ===========================================
   COLUMN LAYOUT
   Two-column layout with scroll effect
   =========================================== */
.column {
  width: 100%;
  position: relative;
}

.column-2 {
  left: 0;
  top: 0;
}

/* Scroll adjust - used for parallax-like column scrolling */
.scroll-adjust {
  position: relative;
  will-change: transform;
}

.scroll-adjust.column-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.scroll-adjust.column-2 {
  position: absolute;
  top: 0;
  left: 50%;
}

/* ===========================================
   PROJECT STYLES
   Project overview and detail pages
   =========================================== */
.project-wrapper {
  -webkit-transition: padding-top 0.2s ease;
  transition: padding-top 0.2s ease;
}

.project-wrapper img {
  border-radius: 0;
}

.project-footer {
  height: 70px;
  padding-right: var(--container-padding);
}

.project-title {
  padding-top: 0;
  max-width: 400px;
  margin-bottom: 0;
}

.project-title h2 {
  font-size: 31px;
  margin-bottom: 0;
}

/* Project overlay - slides up on detail pages */
.project-overlay {
  width: 100%;
  position: absolute;
  top: 0;
  background-color: var(--secondary-color);
  z-index: 1;
  padding: var(--container-padding);
  display: none;
  min-height: 100vh;
}

.info-open .project-overlay {
  display: block;
}

.text-container {
  width: 50vw;
}

.info-container-right {
  padding-top: 20px;
}

.project-header-btn-container {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 20px;
}

/* Service/meta info styling */
.service-container p,
.more-head p {
  margin-bottom: 0;
  color: var(--hover-color);
  font-size: 15px;
}

.service-container p {
  margin-right: 15px;
}

.more-head p {
  margin-bottom: 15px;
}

/* Project typography */
.project-caption {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.project-title,
.project-name {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
}

.project-portrait {
  width: 250px;
}

.project-caption-container {
  padding: var(--container-padding);
  padding-bottom: 55px;
}

.project-award-container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Project header layout */
.project-header,
.ce-project-teaser {
  overflow: visible;
}

.project-header .row,
.ce-project-teaser .row,
.ce-aktuelles .row,
.ce-events-overview .row {
  margin: 0;
}

.project-header .col-custom,
.project-header,
.ce-project-teaser .col-custom,
.ce-project-teaser,
.ce-aktuelles .col-custom,
.ce-aktuelles,
.ce-events-overview .col-custom,
.ce-events-overview {
  padding: 0;
}

.project-header .row .col-custom:first-child {
  background-color: var(--third-color);
}

.project-head-left {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-left: var(--container-padding) !important;
}

.project-info-container {
  padding: var(--container-padding) 0;
}

/* Project header image */
.project-header-img {
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.project-header-img img,
.project-header-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Two-column project grid */
.project-twocol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.project-twocol a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* Project name styling */
.project-name-span {
  font-family: Signifier, serif;
  margin-right: 30px;
}

.project-name {
  text-indent: 70px;
}

.project-year {
  font-size: 18px;
}

/* Project categories */
.project-category-container {
  margin-top: 70px;
}

.project-category-container p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 22px;
}

.project-category-container a {
  margin-right: 3px;
}

/* Project open button */
.project-open {
  color: var(--secondary-color);
  background-color: var(--primary-color);
}

.project-open:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

/* Fancybox hover cursor */
.fancybox-hover:hover {
  cursor: url("../img/arrow_click.png") 16 16, auto;
}

/* Project hover image (werkschau) */
.projekt-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.project-teaser-image {
  position: relative;
}

.project-teaser:hover .projekt-hover-img {
  opacity: 1;
}

/* ===========================================
   PROJECT TEASER
   Project cards in overview
   =========================================== */
.project-teaser {
  text-decoration: none;
}

.project-teaser .project-short,
.project-teaser .project-name {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  max-width: 700px;
}

.project-teaser .project-categorie {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
}

.project-teaser .project-short {
  margin: 10px 0;
}

.project-teaser .project-categorie span {
  margin-bottom: 3px;
  color: var(--hover-color);
}

.project-teaser .project-name {
  font-family: Signifier, serif;
  margin-left: 10px;
}

.project-teaser .project-title {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.project-teaser-caption {
  padding: var(--container-padding);
}

/* ===========================================
   FILTER
   Project filter on overview page
   =========================================== */
.categories-container {
  width: 100%;
  overflow: hidden;
}

.filter-container {
  padding-top: var(--nav-height);
  padding-bottom: 12px;
}

.filter-container h3 {
  margin-bottom: 0;
}

.filter-container a {
  text-decoration: none;
}

/* Expandable filter area */
.filter-container-bottom {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.filter-open .filter-container-bottom {
  max-height: 500px;
}

.filter-container-bottom a {
  padding-right: 15px;
  position: relative;
}

/* Filter toggle button (+/-) */
.filter-btn .filter-btn-toggle {
  width: 10px;
  height: 10px;
  margin-top: 12px;
  margin-left: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.filter-btn h3 {
  margin-left: 8px;
}

.filter-btn h1,
.filter-btn h3 {
  margin-bottom: 0;
}

.filter-btn-toggle span {
  height: 100%;
  width: 2px;
  display: block;
  background-color: var(--primary-color);
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.filter-btn-toggle span:first-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.filter-open .filter-btn-toggle span:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.dimmed {
  opacity: 0.5;
}

.active-link {
  color: var(--third-color);
}

/* ===========================================
   FOOTER
   =========================================== */
footer a,
.footer-slide a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-slide a:hover {
  color: var(--secondary-color);
}

footer,
.footer-slide {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.footer-slide .ce-threecol .col-custom:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 20px;
}

footer .ce-threecol .col-custom:first-child {
  padding-bottom: 20px;
}

.footer-slide .ce-threecol .col-custom:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.footer-slide .ce-threecol .col-custom:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* ===========================================
   CE AKTUELLES
   News & Events combined page
   =========================================== */
.ce-aktuelles .column:first-child,
.ce-events-overview .column:first-child {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.ce-aktuelles .column:nth-child(2),
.ce-events-overview .column:nth-child(2) {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ce-aktuelles .scroll-adjust.column-2,
.ce-events-overview .scroll-adjust.column-2 {
  position: absolute;
  top: 0;
  left: 30%;
}

.ce-events-overview .event-headline {
  padding: 0 var(--container-padding);
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ce-aktuelles .event-headline {
  padding: 0 var(--container-padding);
  margin-top: -6px;
  color: var(--third-color);
  margin-bottom: 0;
}

/* ===========================================
   NEWS
   News teaser and detail styles
   =========================================== */
.news-teaser {
  text-decoration: none;
  width: 100%;
}

.news-teaser .news-teaser-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* News image hover effect */
.news-teaser .news-teaser-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.news-teaser:hover .news-teaser-image img {
  -webkit-transform: scale(1.05) translateX(10px);
          transform: scale(1.05) translateX(10px);
}

.news-teaser .news-short {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  max-width: 700px;
}

.news-teaser-caption {
  padding: var(--container-padding);
}

/* News meta info (date, category) */
.news-meta {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  margin-bottom: 15px;
  color: var(--hover-color);
}

.news-meta span {
  margin-right: 50px;
}

.event-headline .news-title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  margin-bottom: 35px;
}

.news-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: 15px;
}

.news-teaser-image {
  background-size: cover;
  background-position: center;
}

.news-teaser-end {
  padding: var(--container-padding);
}

.news-teaser-end .more-link {
  text-decoration: none;
}

.ce-news-detail .col-custom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.news-detail-header .col-custom {
  max-width: 1400px;
}

.event-header {
  margin-bottom: 50px;
  margin-top: 30px;
}

.event-caption-container {
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  margin-left: -100%;
  position: absolute;
  width: 16vw;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}

.column-1:hover .event-caption-container {
  margin-left: 0;
}

.expand__box {
  overflow: hidden;
  max-height: 50px;
  /* initial = collapsed */
  will-change: max-height;
}

.info-open .expand__box {
  max-height: 400px;
}

.event-caption-container.info-open {
  position: relative;
}

.expand__btn {
  margin-top: .5rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-size: var(--font-size-p-small);
  text-decoration: underline;
}

.event-details,
.event-category {
  font-size: var(--font-size-p);
}

.event-teaser-wrapper {
  width: 60vw;
}

.event-teaser,
.event-teaser-wrapper {
  width: 100%;
  overflow: hidden;
}

.ce-aktuelles .col-custom .column-1 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.ce-aktuelles .col-custom .column-2 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.event-teaser-caption {
  position: relative;
}

.event-details p,
.event-category p,
.event-category a {
  margin-bottom: 0;
  color: var(--hover-color);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* ===========================================
   EVENTS
   Event teaser and detail styles
   =========================================== */
.event-teaser {
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}

.news-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.event-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.event-teaser-img img {
  padding: var(--container-padding);
  padding-top: 0;
}

.ce-events-overview .event-teaser-img img {
  padding: 0;
}

.event-header .event-date {
  margin-right: 50px;
  margin-bottom: 0;
}

/* Event info (time, location) */
.event-info {
  line-height: var(--line-height-p-small);
}

.event-info span,
.event-info a {
  color: var(--hover-color);
  width: 60%;
  max-width: 200px;
}

.event-info span:first-child {
  width: 40%;
}

.event-info a {
  text-decoration: none;
}

.event-info a:hover {
  opacity: 1;
}

.event-info a {
  border: 1px solid black;
  border-radius: 20px;
}

/* Sticky date header */
.event-date-big {
  padding-bottom: 5px;
  top: -20px;
  z-index: 1;
  padding-top: 0;
}

.event-date-big-2 {
  padding-bottom: 5px;
  top: -20px;
  z-index: 1;
  padding-top: 0;
}

.event-col-inner:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
}

.event-date-big-2 h3 {
  font-size: var(--font-size-p-small);
  color: var(--hover-color);
  margin-bottom: 0;
  line-height: var(--line-height-p-small);
}

.event-date-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event-teaser-end {
  padding-left: var(--container-padding);
  padding-bottom: var(--container-padding);
  padding-top: var(--container-padding-large);
}

.event-teaser-end a,
.news-teaser-end a {
  color: var(--primary-color);
  text-decoration: none;
}

.event-teaser-end .more-link::after {
  background-color: white;
}

.color-red {
  color: var(--third-color);
}

/* CE Aktuelles - Event styling */
.ce-aktuelles .event-teaser .event-title,
.ce-events-overview .event-teaser .event-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  max-width: 350px;
  margin-bottom: 10px;
}

.ce-aktuelles .event-teaser .event-date,
.ce-events-overview .event-teaser .event-date {
  font-size: var(--font-size-h3);
  margin-bottom: 5px;
}

.ce-aktuelles .event-teaser-caption {
  padding: var(--container-padding);
  padding-top: 0;
  padding-bottom: 0;
}

/* ===========================================
   CE EVENT DETAIL
   Single event page
   =========================================== */
.ce-event-detail {
  padding: var(--nav-height) 0 0 0;
  overflow: visible;
}

.ce-event-detail .row {
  margin: 0;
}

.ce-event-detail .col-custom {
  padding: 0;
}

.ce-event-detail .scroll-adjust.column-1 {
  position: relative;
}

.ce-event-detail .column-1,
.ce-event-detail .column-2 {
  padding: 34px var(--container-padding) 50px;
}

.ce-event-detail .event-image-container {
  height: 50vh;
}

.ce-event-detail .event-headline {
  padding-bottom: 5px;
}

.ce-event-detail .event-teaser .event-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.ce-event-detail .event-teaser .event-date {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.ce-event-detail .event-teaser-caption {
  margin-bottom: 50px;
}

.ce-event-detail .event-meta {
  margin-left: 50px;
}

.ce-event-detail .col-custom:nth-child(2) .event-date {
  width: 110px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ce-event-detail .event-title {
  max-width: 700px;
}

.event-image-container {
  height: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}

.event-image-container img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ===========================================
   CE EVENTS OVERVIEW
   Events-only listing page
   =========================================== */
.ce-events-overview .column:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-transition: -webkit-box-flex 0.4s ease;
  transition: -webkit-box-flex 0.4s ease;
  transition: flex 0.4s ease;
  transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease;
}

.events-placeholder {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: calc(1.5 * var(--container-padding));
  border-radius: 5px;
}

.events-placeholder-wrapper {
  padding: var(--container-padding);
}

.events-placeholder .event-info span,
.event-info a {
  margin-right: 40px;
}

.ce-events-overview .event-info a,
.event-info a {
  padding: 5px 5px 5px 5px;
  padding-right: 5px;
}

.events-placeholder .event-teaser-caption,
.events-placeholder .event-date-big {
  background-color: transparent;
  padding: 0;
}

.ce-events-overview .event-date-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ce-events-overview .event-date-big {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-bottom: 0;
}

.ce-events-overview .event-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.ce-events-overview .event-teaser-caption {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.ce-events-overview .event-teaser-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.ce-events-overview .event-teaser-img img {
  padding-bottom: 0;
}

.ce-events-overview .event-wrapper-inner {
  width: 100%;
}

.ce-events-overview.ce-aktuelles .column {
  overflow-y: auto;
  height: auto;
}

.ce-events-overview .event-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.ce-events-overview .event-date-big {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* ===========================================
   CE AKTUELLES OVERVIEW
   News-only listing page
   =========================================== */
.ce-aktuelles-overview.ce-aktuelles .column:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ce-aktuelles-overview .news-teaser {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.ce-aktuelles-overview.ce-aktuelles .column {
  overflow-y: auto;
  height: auto;
}

.ce-aktuelles .event-teaser .event-date,
.ce-events-overview .event-teaser .event-date {
  font-size: var(--font-size-p-small);
}

/* ===========================================
   ACCORDION
   Expandable FAQ/info sections
   =========================================== */
.accordion-item {
  border-bottom: 1px solid black;
}

.accordion-item:first-child {
  border-top: 1px solid black;
}

.accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0 22px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.accordion-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

/* Accordion +/- icon */
.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 20px;
  min-height: 20px;
  margin-left: 20px;
}

.accordion-icon .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.accordion-icon .line-1 {
  top: calc(50% + 1px);
}

.accordion-icon .line-2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion-item.active .line-2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-content {
  display: none;
  padding: 20px 0;
}

.event-col-bottom,
.event-col-top {
  padding-left: var(--container-padding);
}

.events-placeholder .event-col-top,
.events-placeholder .event-col-bottom {
  padding-left: 0;
}

.events-placeholder .event-col-bottom {
  display: none !important;
}

/* ===========================================
   WERKSCHAU
   Exhibition/showcase page styles
   =========================================== */
.werkschau .ce-hero {
  padding-top: var(--nav-height);
}

.werkschau .ce-project-teaser .col-custom:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* Opening hours table */
.opening-hours-row div {
  margin-right: 10px;
}

.opening-hours-row div:first-child {
  width: 60px;
}

.opening-hours-row div:nth-child(2) {
  width: 130px;
}

.werkschau .opening-hours-row h3 {
  margin-bottom: 5px;
}

/* Fixed apply button */
.apply-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--third-color);
  width: 200px;
  height: 200px;
  border-radius: 150px;
  z-index: 100;
  text-align: center;
  font-size: var(--font-size-h3);
  padding-bottom: 15px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.apply-btn:hover {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

/* ===========================================
   AWARDS
   Award display section
   =========================================== */
.awards-container {
  padding-top: 50px;
}

.awards-container img {
  height: 70px;
  width: auto;
}

.awards-headline p {
  margin-bottom: 0;
}

.award-image-container {
  margin-top: 20px;
}

/* ===========================================
   CE HERO
   Full-width hero image/video section
   =========================================== */
.ce-hero {
  background-position: center;
  height: 800px;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.bg-red,
.red-bg {
  background-color: var(--third-color);
}

.red-text {
  color: var(--third-color);
}

.white-text {
  color: var(--secondary-color);
}

/* ===========================================
   V2 THEME
   Alternative styling for aktuelles pages
   =========================================== */
.ce-aktuelles .event-headline,
.ce-aktuelles .news-headline {
  padding: 10px var(--container-padding);
  color: var(--primary-color);
  margin: 0;
  background-color: var(--secondary-color);
}

.news-headline {
  width: 100%;
}

.event-date-big {
  top: -4px;
  padding-bottom: 0;
}

.event-date-big h3 {
  margin-bottom: 0;
}

.ce-events-overview .event-info span,
.ce-events-overview .event-info a {
  margin-right: 0;
  padding-right: 40px;
}

.ce-events-overview .event-info a,
.event-info a {
  padding: 5px 8px 5px 8px;
  padding-right: 8px;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.ce-events-overview .event-info a:hover,
.event-info a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.filter-container-top {
  padding-top: 8px;
}

/* New and unsorted */
.home-overlay {
  position: absolute;
  display: none;
}

.style-h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

.style-h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
}

.style-p {
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
}

.last-page,
.next-page {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: var(--font-size-h3);
}

.interview-name {
  min-width: 50px;
  display: inline-block;
  font-weight: 300;
}

.pullquote {
  width: 100%;
  font-size: var(--font-size-h2);
  float: left;
  line-height: var(--line-height-h2);
  padding: 30px 0 20px 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 0.8s ease;
  transition: opacity 1s ease, -webkit-transform 0.8s ease;
  transition: opacity 1s ease, transform 0.8s ease;
  transition: opacity 1s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.interview-question {
  font-weight: 700;
}

.ce-aktuelles .column {
  -webkit-transition: -webkit-box-flex 0.4s ease !important;
  transition: -webkit-box-flex 0.4s ease !important;
  transition: flex 0.4s ease !important;
  transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease !important;
}

.ce-onecol.news-detail-header .col-custom {
  margin-left: 0;
  margin-right: 0;
}

.ce-events-overview .event-info-wrapper {
  width: 100%;
}

.ce-onecol.news-detail-header .col-custom:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.ce-onecol.news-detail-header .col-custom:nth-child(3),
.ce-onecol.news-detail-header .col-custom:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 10px;
}

.ce-onecol.news-detail-header .col-custom:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.ce-onecol.news-detail-header .col-custom:nth-child(3) {
  margin-bottom: 30px;
}

.event-title {
  margin-bottom: 20px;
}

.event-col-top {
  margin-bottom: 20px;
}

.events-placeholder-wrapper .event-col-top {
  margin-bottom: 10px;
}

.events-placeholder-wrapper .event-date-big-2 {
  padding-bottom: 0;
}

.events-placeholder-wrapper .event-teaser-caption p {
  margin-bottom: 0;
}

.ce-events-overview .event-caption-container {
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  margin-left: 0;
  position: relative;
  width: 100%;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}

.event-col-bottom {
  padding-bottom: 0;
}

.events-placeholder-wrapper .events-placeholder-header h3 {
  margin-bottom: 15px;
  font-size: var(--font-size-p);
}

.ce-events-overview .event-teaser-wrapper {
  display: block !important;
}

.ce-events-overview .event-col-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event-details p:first-child,
.event-category p:first-child {
  margin-right: 5px;
}

.is-home .events-placeholder-wrapper {
  padding-bottom: 0;
  padding-top: 0;
  z-index: 10;
  position: relative;
}

.big-quote {
  text-align: center;
  font-size: 35px;
  line-height: 38px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ce-events-overview .column-1:hover .event-col:nth-child(2),
.ce-events-overview .column-1 .event-col:nth-child(2) {
  padding: var(--container-padding);
}

.event-teaser {
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #d6d6d6;
}

.link-list {
  list-style-type: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  margin: 0;
  padding: 0;
}

.link-list li {
  font-size: var(--font-size-h3) !important;
  line-height: var(--line-height-h3);
}

.link-list h1 {
  font-size: var(--font-size-h3) !important;
  margin-bottom: 0;
  line-height: var(--line-height-h3);
}

/* ===========================================
   MEDIA QUERIES
   =========================================== */
/* Tablet (768px+)
------------------------------------------ */
@media only screen and (min-width: 768px) {
  .column-1:hover .event-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666666%;
            flex: 0 0 66.66666666%;
  }
  .ce-events-overview .column-1:hover .event-col:first-child,
  .ce-events-overview .column-1 .event-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
  .news-meta span {
    margin-right: 100px;
  }
  .event-col {
    -webkit-transition: -webkit-box-flex 0.4s ease;
    transition: -webkit-box-flex 0.4s ease;
    transition: flex 0.4s ease;
    transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease;
  }
  .news-meta {
    margin-left: 50px;
  }
  .event-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .event-col-inner:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
  .event-col-inner:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
  .ce-events-overview .column-1:hover .event-col:nth-child(2),
  .ce-events-overview .column-1 .event-col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    padding: 0;
  }
  .ce-events-overview .event-teaser-caption {
    padding-bottom: 0;
  }
  .event-teaser {
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%;
  }
  .event-col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0px;
            flex: 0 0 0;
    overflow: hidden;
    position: relative;
  }
  .column-1:hover .event-col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
  }
  .column {
    width: 50%;
  }
  .column-2 {
    left: 50%;
  }
  .ce-aktuelles-overview .news-teaser {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ce-aktuelles .column-2,
  .ce-events-overview .column-2 {
    left: 0;
  }
  .project-teaser-caption {
    padding-bottom: 30px;
  }
  /* Filter comma separator */
  .filter-container-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .filter-container-bottom a::after {
    content: ",";
    position: absolute;
    bottom: 2px;
    right: 9px;
    font-size: var(--font-size-h3);
  }
  .news-teaser {
    width: 50%;
  }
  .limit-container-width .ce-onecol .col-custom {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    margin-left: 8.333333%;
  }
  .ce-onecol.news-detail-header .col-custom {
    margin-left: 0;
    margin-right: 0;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 8.3333333%;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(3),
  .ce-onecol.news-detail-header .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666%;
            flex: 0 0 41.6666%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-bottom: 30px;
  }
  .ce-onecol.news-detail-header .col-custom:first-child {
    margin-left: 8.3333333%;
  }
  .event-title {
    margin-bottom: 30px;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(3) {
    margin-bottom: 0;
  }
  .event-details,
  .event-category {
    margin-top: 6px;
  }
  .pullquote {
    width: 382px;
    max-width: 388px;
    padding: 17px 10px 10px 0px;
    margin-left: calc(100% / 12 * -1);
  }
  .big-quote {
    font-size: 60px;
    line-height: 70px;
  }
  .ce-events-overview .event-info-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .ce-events-overview .event-col-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* Mobile/Tablet (max 992px)
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .project-header .row .col-custom:first-child {
    min-width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 100% !important;
            flex: 0 1 100% !important;
  }
  .project-header-img {
    height: 70vh !important;
  }
  .aktuelles-footer-left,
  .aktuelles-footer-right {
    display: none !important;
  }
  .work-swiper {
    margin-top: -70px;
  }
  .is-home .footer-slide {
    height: auto;
    padding-top: 50px;
  }
  .ce-aktuelles .col-custom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .ce-events-overview .event-teaser {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .event-teaser-wrapper {
    display: none;
  }
  .logo-top h3,
  .navbar-toggler h3 {
    font-size: var(--font-size-h2);
    color: var(--primary-color) !important;
  }
  .link-list {
    display: none;
  }
}

/* Desktop (992px+)
------------------------------------------ */
@media only screen and (min-width: 992px) {
  .is-aktuelles footer {
    display: none;
  }
  .footer-slide .ce-threecol .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
    padding-left: var(--container-padding-large);
  }
  .footer-slide .ce-threecol .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.66666666%;
            flex: 0 0 46.66666666%;
    max-width: 46.66666666%;
  }
  .footer-slide .ce-threecol .col-custom:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.3333333%;
            flex: 0 0 23.3333333%;
    max-width: 23.3333333%;
  }
  .big-quote {
    font-size: 45px;
    line-height: 50px;
  }
  .accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin-left: 20px;
  }
  footer,
  .footer-slide {
    font-size: var(--font-size-p);
    line-height: var(--line-height-p);
  }
  .ce-aktuelles .column:nth-child(2) {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-transition: -webkit-box-flex 0.4s ease;
    transition: -webkit-box-flex 0.4s ease;
    transition: flex 0.4s ease;
    transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease;
  }
  .interview-name {
    min-width: 100px;
  }
  .is-home {
    height: 100vh;
    overflow-y: hidden;
  }
  .events-placeholder-wrapper {
    display: none;
  }
  .ce-events-overview .event-info span,
  .ce-events-overview .event-info a {
    margin-right: 40px;
    padding-right: 0;
  }
  .ce-events-overview .event-info a,
  .event-info a {
    padding: 5px 8px 5px 8px;
    padding-right: 8px;
  }
  .news-teaser-caption {
    max-width: 40vw;
  }
  .is-home .main {
    height: 100vh;
  }
  .ce-aktuelles .column:first-child {
    width: 40%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .ce-aktuelles .column:nth-child(2),
  .ce-events-overview .column:nth-child(2) {
    width: 60%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-wrapper {
    height: 100%;
  }
  .project-header-btn-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
  /* Project overlay animation */
  .project-overlay {
    width: 100%;
    height: auto;
    overflow-y: auto;
    top: auto;
    background-color: transparent;
    z-index: 1;
    margin-top: -70px;
    display: block !important;
    padding-top: 14px;
    -webkit-transition: margin 0.7s ease;
    transition: margin 0.7s ease;
  }
  html.html-project.info-open {
    height: auto;
    overflow-y: scroll;
  }
  .info-open .project-overlay {
    margin-top: -64px;
  }
  .info-open .main {
    margin-top: -50vh;
  }
  .ce-aktuelles .column-1:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .info-container-right {
    padding-top: 70px;
    padding-left: 0;
  }
  .info-container-left {
    width: 70vw;
    min-width: 300px;
    padding-left: var(--container-padding);
  }
  .project-footer-spacer {
    width: 70vw;
    min-width: 300px;
  }
  /* Sticky project sidebar */
  .project-head-left {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    padding-bottom: var(--container-padding);
  }
  .project-title,
  .project-name {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
  }
  .project-category-container {
    margin-left: 55px;
  }
  .project-twocol a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .ce-project-teaser .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  /* Scrollable columns with hidden scrollbar */
  .ce-aktuelles .column {
    overflow-y: auto;
    height: calc(100vh - var(--nav-height));
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .ce-aktuelles .column::-webkit-scrollbar,
  .ce-events-overview .column::-webkit-scrollbar {
    display: none;
  }
  /* Event detail desktop */
  .ce-event-detail .event-image-container {
    height: 100vh;
  }
  .ce-event-detail .column-1,
  .ce-event-detail .column-2 {
    padding-right: var(--container-padding-large);
    padding-left: var(--container-padding-large);
  }
  .ce-event-detail .col-custom:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: var(--nav-height);
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .ce-event-detail .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .event-image-container img {
    height: 100%;
  }
  .news-teaser {
    width: 100%;
  }
  .is-aktuelles {
    height: 100vh;
    overflow: hidden;
  }
  .ce-events-overview .event-teaser-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
  .ce-events-overview .event-date-big {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    padding-top: 0;
  }
  .limit-container-width .ce-onecol .col-custom {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.333333%;
            flex: 0 0 66.333333%;
    margin-left: 16.333333%;
  }
  .ce-onecol.news-detail-header .col-custom {
    margin-left: 0;
    margin-right: 0;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.333333%;
            flex: 0 0 66.333333%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(3),
  .ce-onecol.news-detail-header .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }
  .ce-onecol.news-detail-header .col-custom:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
  }
  .pullquote {
    width: 382px;
    font-size: var(--font-size-h3);
    max-width: 388px;
    float: left;
    line-height: var(--line-height-h3);
    padding: 13px 10px 10px 0px;
    margin-left: calc(100% / 12 * -2);
  }
  .accordion-header {
    padding: 24px 0 30px;
  }
  /*     .is-home .events-placeholder-wrapper {
        display: block;
        position: absolute;
        width: 400px;
        z-index: 10;
    } */
  .is-home .events-placeholder-wrapper h3 {
    font-size: var(--font-size-p);
  }
  /* Expandable columns on hover */
  .ce-aktuelles .column:first-child {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    -webkit-transition: -webkit-box-flex 0.4s ease;
    transition: -webkit-box-flex 0.4s ease;
    transition: flex 0.4s ease;
    transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease;
  }
  .ce-events-overview .event-info span,
  .ce-events-overview .event-info a {
    margin-right: 60px;
  }
  .ce-aktuelles .column-1:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .ce-aktuelles .column:nth-child(2) {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-transition: -webkit-box-flex 0.4s ease;
    transition: -webkit-box-flex 0.4s ease;
    transition: flex 0.4s ease;
    transition: flex 0.4s ease, -webkit-box-flex 0.4s ease, -ms-flex 0.4s ease;
  }
}

/* Medium breakpoint adjustment
------------------------------------------ */
@media only screen and (max-width: 1250px) {
  .project-header .row .col-custom:first-child {
    min-width: 40% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 40% !important;
            flex: 0 1 40% !important;
  }
}

/* Large Desktop (1200px+)
------------------------------------------ */
@media only screen and (min-width: 1200px) {
  .project-teaser-caption {
    padding-bottom: 70px;
  }
  .ce-aktuelles .event-teaser .event-title,
  .ce-events-overview .event-teaser .event-title {
    max-width: 450px;
  }
  .filter-btn .filter-btn-toggle {
    width: 13px;
    height: 13px;
    margin-top: 13px;
    margin-left: 8px;
  }
  .ce-events-overview .event-teaser-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .ce-events-overview .event-date-big {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .limit-container-width .ce-onecol .col-custom {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-left: 25%;
  }
  .ce-onecol.news-detail-header .col-custom {
    margin-left: 0;
    margin-right: 0;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(3),
  .ce-onecol.news-detail-header .col-custom:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }
}

/* XL Desktop (1400px+)
------------------------------------------ */
@media only screen and (min-width: 1400px) {
  .news-teaser .news-teaser-image {
    width: 100%;
    height: auto;
  }
  .filter-btn .filter-btn-toggle {
    width: 15px;
    height: 15px;
    margin-top: 12px;
    margin-left: 8px;
  }
  .limit-container-width .ce-onecol .col-custom {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .pullquote {
    margin-left: -150px;
  }
  .event-details,
  .event-category {
    width: 100px;
  }
  .ce-onecol.news-detail-header .col-custom {
    margin-left: 0;
    margin-right: 0;
  }
  .ce-onecol.news-detail-header .col-custom:first-child,
  .ce-onecol.news-detail-header .col-custom:nth-child(3) {
    width: 200px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .ce-onecol.news-detail-header .col-custom:nth-child(2) {
    width: 800px;
  }
}

.link-list a {
  text-decoration: none;
}

.link-list a:hover {
  color: var(--secondary-color);
}

[id] {
  scroll-margin-top: 80px;
}

.animation-container {
  width: 100%;
  height: 79vh;
  position: relative;
  overflow: hidden;
}

.animation-container canvas {
  display: block;
}

.arrow-link::after {
  content: url(../../../img/arrow_founders.svg);
  display: inline-block;
  height: 15px;
  width: 18px;
  margin-left: 8px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.arrow-link:hover::after {
  margin-left: 15px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-size: var(--font-size-h3);
  width: 100%;
  height: 100%;
  padding-top: var(--container-padding);
  padding-bottom: 20px;
  background-color: var(--third-color);
}

.marquee-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  -webkit-animation: scroll 7s linear infinite;
          animation: scroll 7s linear infinite;
}

.marquee-inner span {
  padding-right: 2rem;
  /* Abstand zwischen den Wiederholungen */
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.event-category a {
  text-decoration: none;
}

.event-category a:hover {
  opacity: 1;
}

.clamp__text {
  font-size: var(--font-size-p-small);
  line-height: var(--line-height-p-small);
  display: block;
  /* bleibt konstant */
  overflow: hidden;
}

/* collapsed: clamp (4 Zeilen) */
@supports (-webkit-line-clamp: 1) {
  .event-caption-container:not(.is-open) .clamp__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--clamp-lines, 4);
  }
}

/* fallback (ohne line-clamp): max-height wird per JS gesetzt */
@supports not (-webkit-line-clamp: 1) {
  .event-caption-container:not(.is-open) .clamp__text {
    display: block;
  }
}

/* Button sitzt inline im Textfluss */
.clamp__toggle {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  margin-left: .35rem;
  vertical-align: baseline;
}

.is-hidden {
  display: none !important;
}

/* open: nichts clampen */
.event-caption-container.is-open .clamp__text {
  overflow: visible;
  max-height: none !important;
  display: block;
  /* bleibt block -> line-height bleibt gleich */
}

.event-caption-container.is-open {
  position: relative;
}

.event-caption-container .clamp__toggle {
  margin-left: 0;
  padding-left: 0;
  font-size: var(--font-size-p-small);
}

.btn-small:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.logo-top h3,
.logo-top .h3 {
  margin-bottom: 0;
  white-space: normal;
}

.nav-item:last-child .nav-link::after {
  content: "";
}

.menu-exhibition .nav-link {
  margin: 0 0 0 1rem !important;
  padding: 0;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

button:focus:not(:focus-visible) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: 0 !important;
}

.awards-items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.awards-items-container .awards-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
  text-align: center;
}

.awards-items-container .awards-item .award-image {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.awards-items-container .awards-item .award-container-inner {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  text-align: center;
}

.project-image-container {
  margin-top: 20px;
}

.project-image-container img {
  width: 60%;
  height: auto;
  display: block;
}

ul.footer-social-nav,
ul.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-media-blocks figure {
  margin: 0;
}

.project-media-blocks figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 992px) {
  .project-twocol figure {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.is-customized body,
.is-customized #footer {
  background-color: var(--third-color);
}

.is-customized .project-teaser .project-categorie span {
  opacity: 0.5;
}

.ce-hero {
  background-position: center;
  height: 400px;
  width: 100%;
  background-size: cover;
  overflow: hidden;
}

.ce-hero img,
.ce-hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 992px) {
  .ce-hero {
    height: 800px;
  }
  .ce-hero img,
  .ce-hero video {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.opening-hours-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.opening-hours-row div.h3 {
  margin-bottom: 5px;
}

.opening-hours-row div {
  margin-right: 0.5em;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
}

.opening-hours-row div:first-child {
  width: 1.25em;
}

.opening-hours-row div:nth-child(2) {
  width: 3em;
}

.opening-hours-row div:nth-child(3) {
  min-width: 3.75em;
}

.opening-hours-row div:last-child {
  white-space: wrap;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}

/* ===================================
   PROJECT TEASER EXTENSION
   Einheitliche Höhen und 4:3 Ratio
   =================================== */
/* 
   Strategie: 
   - Flexbox für einheitliche Höhen
   - Aspect-ratio für 4:3 Bilder/Videos
   - Min-height für Caption-Bereich
*/
.harmonized-teaser {
  /* Basis: Project Teaser als Flex-Container */
  /* Image Container mit 4:3 Aspect Ratio */
  /* Bilder und Videos füllen den Container aus */
  /* Hover-Image ebenfalls positionieren */
  /* Caption: Nimmt restlichen Platz ein */
  /* Content-Bereiche im Caption */
  /* Columns müssen gleiche Höhe haben */
  /* Jeder Project-Teaser in Column nimmt volle Breite */
  /* Responsive Anpassungen */
  /* Fallback für Browser ohne aspect-ratio Support */
  /* Optional: Scroll-Anpassung für Spalten beibehalten */
}

.harmonized-teaser .project-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.harmonized-teaser .project-teaser-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* Verhindert Schrumpfen */
}

.harmonized-teaser .project-teaser-image img,
.harmonized-teaser .project-teaser-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.harmonized-teaser .project-teaser-image .projekt-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.harmonized-teaser .project-teaser:hover .projekt-hover-img {
  opacity: 1;
}

.harmonized-teaser .project-teaser-caption {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 150px;
  /* Mindesthöhe für kleine Screens */
}

.harmonized-teaser .project-teaser-caption .project-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.harmonized-teaser .project-teaser-caption .project-short {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.harmonized-teaser .project-teaser-caption .project-categorie {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
  /* Drückt Kategorien nach unten */
}

.harmonized-teaser .ce-project-teaser .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.harmonized-teaser .ce-project-teaser .column .project-teaser {
  width: 100%;
  margin-bottom: 30px;
  /* Abstand zwischen Projekten */
}

@media only screen and (min-width: 768px) {
  .harmonized-teaser .project-teaser-caption {
    min-height: 180px;
  }
}

@media only screen and (min-width: 1200px) {
  .harmonized-teaser .project-teaser-caption {
    min-height: 200px;
  }
}

@supports not (aspect-ratio: 4/3) {
  .harmonized-teaser .project-teaser-image {
    padding-bottom: 75%;
    /* 3/4 = 0.75 = 75% */
    height: 0;
  }
  .harmonized-teaser .project-teaser-image img,
  .harmonized-teaser .project-teaser-image video,
  .harmonized-teaser .project-teaser-image .projekt-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.harmonized-teaser .scroll-adjust.column-2 .project-teaser,
.harmonized-teaser .scroll-adjust.column-1 .project-teaser {
  /* Columns mit Scroll-Effekt behalten ihre Funktion */
  height: auto;
}
/*# sourceMappingURL=main.css.map */