@charset "UTF-8";
/* Varibles
*******************************/
:root {
  --border-radius: 0;
  --grid-base: 6px;
  --font-size-h1: 35px;
  --font-size-h2: 30px;
  --font-size-h3: 22px;
  --font-size-h4: 22px;
  --font-size-p-small: 18px;
  --font-size-p: 24px;
  --line-height-h1: 38px;
  --line-height-h2: 32px;
  --line-height-h3: 26px;
  --line-height-h4: 35px;
  --line-height-p-small: 24px;
  --line-height-p: 32px;
  --margin-h1: 35px;
  --margin-h2: 35px;
  --margin-h3: 35px;
  --margin-h4: 35px;
  --margin-p-small: 24px;
  --margin-p: 20px;
  --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));
  --container-padding: calc(3 * var(--grid-base));
  --container-padding-large: calc(6 * var(--grid-base));
  --gutter-spacing: calc(1.5 * var(--grid-base));
  --nav-height: 70px;
  --primary-color: #000;
  --secondary-color: #fff;
  --third-color: #ff382b;
}

.werkschau {
  --primary-color: #000;
  --secondary-color: #fff;
  --third-color: #000;
}

.werkschau2 {
  --primary-color: #ff162f;
  --secondary-color: #1e969a;
  --third-color: rgb(235, 159, 28);
}

.mixed-media {
  --primary-color: #ff162f;
  --secondary-color: white;
  --third-color: white;
}

.corporate-design {
  --primary-color: #ff7bac;
  --secondary-color: white;
  --third-color: white;
}

.ws-fotografie {
  --primary-color: #057c36;
  --secondary-color: white;
  --third-color: white;
}

.ws-animation {
  --primary-color: #ff7f00;
  --secondary-color: white;
  --third-color: white;
}

.ws-editorial {
  --primary-color: #ff7f00;
  --secondary-color: white;
  --third-color: white;
}

.ws-sonstiges {
  --primary-color: #ff162f;
  --secondary-color: white;
  --third-color: white;
}

.ws-film {
  --primary-color: #057c36;
  --secondary-color: white;
  --third-color: white;
}

/* Varibles +768
*******************************/
@media only screen and (min-width: 992px) {
  :root {
    --border-radius: 0;
    --font-size-h1: 44px;
    --font-size-h2: 34px;
    --font-size-h3: 30px;
    --line-height-h1: 44px;
    --line-height-h2: 36px;
    --line-height-h3: 33px;
  }
}

/* Varibles +1200
*******************************/
@media only screen and (min-width: 1200px) {
  :root {
    --grid-base: 7px;
    --font-size-h1: 54px;
    --font-size-h2: 42px;
    --font-size-h3: 36px;
    --font-size-h4: 25px;
    --line-height-h1: 54px;
    --line-height-h2: 44px;
    --line-height-h3: 38px;
    --line-height-h4: 35px;
    --margin-p: 32px;
  }
}

@media only screen and (min-width: 1400px) {
  :root {
    --grid-base: 7px;
    --font-size-h1: 60px;
    --font-size-h2: 50px;
    --font-size-h3: 40px;
    --font-size-h4: 30px;
    --line-height-h1: 60px;
    --line-height-h2: 52px;
    --line-height-h3: 44px;
    --line-height-h4: 35px;
  }
}

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

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

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

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

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

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

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Headlines Desktop */
.p-small {
  font-size: 12px;
  line-height: calc(2 * var(--grid-base));
  margin-bottom: calc(2 * var(--grid-base));
}

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-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);
}

/* Nav
******************************************/
.navbar-collapse {
  width: 100%;
}

.navbar {
  padding: 0;
  height: var(--nav-height);
  background-color: var(--secondary-color);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

nav img {
  width: auto;
}

/* Styling for Nav Links */
.nav-link {
  margin-left: 0 !important;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  text-decoration: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 7px;
  margin-right: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Add Comma after each Element with after */
.nav-link::after {
  content: ",";
}

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

/* Navbar Brand */
.navbar-brand svg {
  height: 24px;
}

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

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

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

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

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

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

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

.show {
  -webkit-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

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

.navbar-nav {
  width: auto;
  height: 100%;
}

.navbar-brand,
.nav-icons {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.navbar-brand {
  margin-right: 0;
  padding: 0;
  height: 100%;
}

.language-switch {
  font-size: var(--font-size-h3);
  padding-top: 5px;
}

@media only screen and (max-width: 991px) {
  .menu-open {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    display: none;
    padding-top: calc(var(--nav-height) - 10px);
    padding-left: var(--container-padding);
    background-color: var(--secondary-color);
  }
  .menu-open-inner {
    width: 100%;
    height: 100%;
  }
  .nav-item {
    margin: 0;
    -webkit-transition: height 0.4s ease;
    transition: height 0.4s ease;
  }
  .nav-link {
    margin-bottom: 10px;
  }
  .navbar-nav {
    width: auto;
    height: auto;
  }
  .nav-link::after {
    content: "";
  }
  .nav-link.last-nav-item::after {
    content: "";
  }
  .navbar {
    padding-right: 0 !important;
  }
  .submenu-toggle {
    width: 22px;
    height: 22px;
    margin-top: 9px;
    display: none;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin-left: 7px;
  }
  .submenu-toggle span {
    height: 100%;
    width: 3px;
    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;
  }
}

@media only screen and (min-width: 992px) {
  .menu-open {
    display: block !important;
    height: 100%;
  }
  .menu-open-inner {
    height: 100%;
  }
  .nav-link {
    padding-top: 0;
  }
  .nav-item {
    height: 100%;
  }
}

/* Nav Toggle Aniamtion
*************************************/
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

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

.animated-icon3 span {
  background: var(--primary-color);
}

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

.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;
  -webkit-transform: opacity 0.2s ease;
          transform: opacity 0.2s ease;
}

.animated-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  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 {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .mobile--none {
    display: none !important;
  }
  .nav-subnav {
    padding-left: 40px !important;
  }
}

@media only screen and (min-width: 992px) {
  .mobile--only {
    display: none;
  }
  .nav-subnav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--secondary-color);
    height: 50px;
    left: 0;
    max-height: 1000px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
  }
}

.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;
}

/* 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);
}

@media only screen and (min-width: 992px) {
  .col-custom {
    padding-right: var(--gutter-spacing);
    padding-left: var(--gutter-spacing);
  }
  .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));
}

@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%;
  }
  .ce-twocol.q-col .col-custom:nth-child(2) {
    max-width: 700px;
  }
  .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%;
  }
}

/* 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%;
  }
}
/* 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 {
  height: 100%;
}

.home-container {
  width: 600px;
}

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

.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 Work Detail
******************************************/
.swiper-container {
  width: 100%;
  height: auto;
}

.swiper,
.swiper-wrapper {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .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;
  }
}

.swiper {
  height: 100%;
}

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

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

.home-slide {
  width: 100%;
  height: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  padding-top: var(--container-padding);
}

.swiper-text-container h2 {
  margin-bottom: 0;
}

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

.swiper-last {
  margin-right: 0;
}

.swiper-last .btn {
  margin-right: 0;
  margin-right: var(--container-padding);
  width: 100%;
}

.swiper-last .project-teaser {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .work-swiper .swiper-slide img {
    height: 100%;
    width: 100%;
  }
  .work-swiper .swiper-slide {
    min-width: 700px;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    width: 40%;
  }
  .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: auto;
  }
  .swiper-text-container {
    height: 100%;
    max-width: 700px;
    margin-left: 50px;
    margin-right: 100px;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .swiper-last .btn {
    width: auto;
  }
  .swiper-last {
    margin-right: var(--container-padding);
  }
  .swiper-last .project-teaser {
    width: auto;
  }
}

/* Swiper pagination
  ******************************************/
.swiper-pagination {
  margin-bottom: 20px;
}

.swiper-pagination > > > .swiper-pagination-bullet {
  opacity: 1;
  border: white solid 1px;
  background-color: transparent;
}

.swiper-pagination > > > .swiper-pagination-bullet-active {
  background-color: white;
}

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

/* About Swiper
  ******************************************/
.swiperabout .swiper-slide,
.swiperce .swiper-slide {
  height: 350px;
  width: auto;
}

.swiperabout .swiper-slide img {
  border-radius: var(--border-radius);
}

.swiperabout img,
.swiperabout video {
  width: auto;
  height: 100%;
}

@media only screen and (min-width: 992px) {
  .swiperabout video {
    width: auto;
    height: 100%;
  }
  .swiperabout .swiper-slide,
  .swiperce .swiper-slide {
    height: 500px;
    width: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .swiperabout .swiper-slide,
  .swiperce .swiper-slide {
    height: 700px;
    width: auto;
  }
}

.swiperabout .swiper-slide {
  -webkit-transition: border-radius 0.3s ease;
  transition: border-radius 0.3s ease;
  overflow: hidden;
}

.swiperabout .swiper-slide:hover {
  border-radius: 50px;
}

.swiperabout .swiper-slide img,
.swiperabout .swiper-slide video {
  -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;
}

.swiperabout .swiper-slide:hover img,
.swiperabout .swiper-slide:hover video {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* Team Swiper
  ******************************************/
.swiperteam .swiper-slide {
  height: 350px;
  width: auto;
}

.swiperteam .home-slide {
  padding-left: 0;
}

.swiperteam img {
  width: auto;
  height: 100%;
}

.team-slide img {
  margin-bottom: var(--gutter-spacing);
}

.team-slide p {
  margin-bottom: -9px;
}

.team-slide a {
  text-decoration: none;
}

@media only screen and (min-width: 992px) {
  .swiperteam .swiper-slide {
    height: 500px;
  }
}
.work-filter-container {
  padding-top: 70px;
  margin-bottom: 18px;
}

.work-filter-container p {
  margin-right: 10px;
}

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

.work-filter-container .filter-button {
  margin-right: 5px;
  padding: 5px 15px;
  font-size: 12px;
}

.work-teaser-container .img-wrapper {
  overflow: hidden;
  margin-bottom: 8px;
}

.work-teaser-container .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.work-teaser-container .work-teaser-caption p {
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 24px;
}

.work-teaser-container a,
.work-teaser-container a:hover {
  text-decoration: none;
}

.work-teaser-container:hover .img-wrapper img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.work-teaser-container .img-wrapper {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.work-teaser-container:hover .img-wrapper {
  border-radius: 10px;
}

.filter-button.active {
  background-color: black;
  color: white;
}

@media only screen and (min-width: 992px) {
  .work-list-container .col-custom {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 0 0 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .work-list-container .col-custom {
    -ms-flex: 0 0 33.333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333333%;
    max-width: 0 0 33.333333333%;
  }
}

/* Overall Stylings
******************************************/
html {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

body {
  color: var(--primary-color);
  font-family: "roc-grotesk", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;
  line-height: var(--line-height-p);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

figure {
  width: 100%;
}

img {
  width: 100%;
  border-radius: var(--border-radius);
}

video {
  border-radius: var(--border-radiust);
}

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

/* Hide Class for Home Bubbles
**********************************/
.hideme {
  opacity: 0;
}

/* Button Styles
**********************************/
button:focus {
  outline: 0;
}

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

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

/* Project Detail Styles
******************************************/
@media only screen and (min-width: 992px) {
  .html-project .main {
    height: 100vh;
  }
  .project-wrapper {
    height: 100%;
    padding-top: 70px;
  }
}

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

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

.service-container p {
  margin-bottom: 0;
  margin-right: 15px;
  color: #a6a6a6;
  font-size: 15px;
}

.more-head p {
  margin-bottom: 15px;
  color: #a6a6a6;
  font-size: 15px;
}

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

.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;
}

.project-title {
  padding-top: 0;
  max-width: 500px;
}

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

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

.home-slide {
  padding-top: 70px;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

@media only screen and (min-width: 992px) {
  .project-header-btn-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
  .project-overlay {
    width: 100%;
    height: auto;
    overflow-y: auto;
    top: auto;
    background-color: transparent;
    z-index: 1;
    -webkit-transition: margin 0.7s ease;
    transition: margin 0.7s ease;
    margin-top: -70px;
    display: block !important;
    padding-top: 14px;
  }
  html.html-project {
    height: 100vh;
    overflow: hidden;
  }
  html.html-project.info-open {
    height: auto;
    overflow-y: scroll;
  }
  .info-open .project-overlay {
    margin-top: -64px;
  }
  .info-open .main {
    margin-top: -50vh;
  }
  html.html-project.info-open {
    height: auto;
    overflow-y: scroll;
  }
  .home-slide {
    width: 70vw;
    min-width: 300px;
    padding-left: var(--container-padding);
    padding-right: 100px;
    padding-top: 0;
  }
  .info-container-right {
    padding-top: 70px;
    padding-left: 0;
  }
  .project-title {
    padding-bottom: 0;
  }
}

.info-container-left {
  width: 70vw;
  min-width: 300px;
  padding-left: var(--container-padding);
}

.project-footer-spacer {
  width: 70vw;
  min-width: 300px;
}

.project-footer-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

video {
  width: 100%;
  height: auto;
}

.project-title h2 {
  margin-bottom: 0;
}

.blog-html .container {
  max-width: 850px;
}

.blog-html img {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}

/*
.blog-html body,
.blog-html nav,
.blog-html nav a {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.blog-html nav svg {
    fill: var(--secondary-color);
}
*/
.blog-categories p {
  margin-right: 10px;
  opacity: 0.6;
}

.img-container img {
  width: 200px;
  padding-bottom: 20px;
}

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

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

.spacer {
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}

.scroll-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}

.scroll-section-last {
  height: 1200px !important;
}

.container-test {
  width: 100%;
}

.container-test:first-child {
  height: 100%;
}

#container-test-left .container-home-wrapper {
  padding-left: var(--container-padding);
  padding-bottom: var(--container-padding);
  padding-right: var(--container-padding);
}

#container-test-right .container-home-wrapper {
  padding-right: var(--container-padding);
  padding-bottom: var(--container-padding);
  padding-left: var(--container-padding);
}

.container-home-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 80px;
}

.container-home-wrapper:hover {
  border-radius: 0;
}

.no-scroll {
  height: 400px !important;
}

.container-home-inner {
  width: 100%;
  height: 100%;
  border-radius: 300px;
  background-position: center;
  background-size: cover;
  -webkit-transition: border-radius 1s ease;
  transition: border-radius 1s ease;
  overflow: hidden;
  display: block;
  -webkit-transition: border-radius 0.5s ease;
  transition: border-radius 0.5s ease;
  border-radius: 50px !important;
  overflow: hidden;
}

.container-home-inner:hover {
  border-radius: 0 !important;
}

/* Set image behavior and size */
.container-home-inner img {
  width: 100%;
  border-radius: var(--border-radius);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: center;
     object-position: 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;
}

.container-home-inner:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#container-test-left,
#container-test-right {
  width: 100%;
  height: 50%;
}

#container-test-right {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

@media only screen and (min-width: 992px) {
  #container-test-left .container-home-wrapper {
    padding-left: var(--container-padding);
    padding-bottom: var(--container-padding);
    padding-right: var(--gutter-spacing);
  }
  #container-test-right .container-home-wrapper {
    padding-right: var(--container-padding);
    padding-bottom: var(--container-padding);
    padding-left: var(--gutter-spacing);
  }
  .container-home-inner {
    border-radius: 80px !important;
  }
  #container-test-left,
  #container-test-right {
    width: 50%;
    height: 100%;
  }
  #container-test-left {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #container-test-left .container-home-wrapper {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.container,
.container-fluid {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  overflow: hidden;
}

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

.home-container-test {
  position: fixed;
  top: 70px;
  width: 100%;
  height: calc(100vh - 70px);
}

.hideme {
  height: 0 !important;
  overflow: hidden;
  padding: 0;
}

/* Footer
******************************************/
footer a {
  text-decoration: none;
}

/* History
******************************************/
.history .main {
  padding-top: 100px;
}

.year-title p {
  font-size: 35vw;
  line-height: 30vw;
}

.year-left {
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.year-left,
.year-right {
  padding-top: 18vh;
}

.history-col-left {
  -ms-flex-item-align: self-start;
      -ms-grid-row-align: self-start;
      align-self: self-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

/* Neue Styles */
.swiper-home-text-container {
  position: absolute;
  top: 0;
  padding: 15px 20px;
}

.swiper-home-text-container h3 {
  font-size: 40px;
  line-height: 42px;
}

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

.home-container-overlay {
  position: relative;
  background-color: var(--secondary-color);
  width: 100%;
}

.home-container-caption {
  padding-top: 10px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

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

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

.home-container-caption a:hover {
  opacity: 0.7;
}

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

.home-container {
  overflow: hidden;
}

.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);
}

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

.navbar-brand {
  text-decoration: none;
}

@media only screen and (min-width: 992px) {
  .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;
  }
}

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

.project-caption {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: 400;
}

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

.project-title {
  margin-bottom: 0;
}

.project-portrait {
  width: 250px;
}

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

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

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

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

.project-header,
.ce-project-teaser {
  overflow: visible;
}

.project-twocol {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.project-header .row,
.ce-project-teaser .row,
.ce-aktuelles .row {
  margin-left: 0;
  margin-right: 0;
}

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

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

.project-header .row .col-custom:first-child,
.ce-swipermore .col-custom:first-child {
  min-width: 35% !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 35% !important;
          flex: 0 1 35% !important;
}

.project-header .row .col-custom:nth-child(2),
.ce-swipermore .col-custom:nth-child(2) {
  min-width: 65% !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 65% !important;
          flex: 0 0 65% !important;
}

.project-image-container img {
  width: 60%;
}

@media only screen and (max-width: 1250px) {
  .project-header .row .col-custom:first-child,
  .ce-swipermore .col-custom:first-child {
    min-width: 40% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 40% !important;
            flex: 0 1 40% !important;
  }
  .project-header .row .col-custom:nth-child(2),
  .ce-swipermore .col-custom:nth-child(2) {
    min-width: 60% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 60% !important;
            flex: 0 0 60% !important;
  }
}

@media only screen and (max-width: 992px) {
  .project-header .row .col-custom:first-child,
  .ce-swipermore .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 .row .col-custom:nth-child(2),
  .ce-swipermore .col-custom:nth-child(2) {
    min-width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
  }
  .project-header-img {
    height: 70vh !important;
  }
}

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

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

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

.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 center;
     object-position: center center;
}

@media only screen and (min-width: 992px) {
  .project-head-left {
    -ms-flex-item-align: start;
        align-self: flex-start;
    top: 70px;
    position: -webkit-sticky;
    position: sticky;
    height: calc(100vh - 70px);
    padding-left: var(--container-padding) !important;
    padding-bottom: var(--container-padding);
  }
  .project-title,
  .project-name,
  .news-title {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
  }
}

.categories-container {
  width: 100%;
  overflow: hidden;
}

.project-name-span {
  font-family: "museo-slab", serif;
  font-weight: 300;
  font-style: italic;
  margin-right: 30px;
}

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

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

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

.project-category-container {
  margin-top: 70px;
}

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

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

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

.swipermore {
  overflow: hidden;
}

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

@media only screen and (min-width: 992px) {
  .project-category-container {
    margin-left: 55px;
  }
  .project-twocol a {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swipermore .swiper-slide {
    width: 60%;
    height: 400px;
  }
  .werkschau .ce-project-teaser .col-custom:first-child {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ce-project-teaser .col-custom:nth-child(2) {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .navbar-nav li:hover > .nav-subnav {
    top: 62px;
    opacity: 1;
  }
}

.column {
  width: 100%;
  position: relative;
}

.ce-aktuelles .column:first-child {
  width: 100%;
  background-color: var(--third-color);
  padding-right: 100px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 100%;
}

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

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

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

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

.ce-aktuelles .event-headline {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  padding-top: var(--container-padding-large);
}

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

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

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

@media only screen and (min-width: 768px) {
  .ce-aktuelles .column-2 {
    left: 40%;
    top: 0;
  }
  .column-2 {
    left: 50%;
    top: 0;
  }
  .column {
    width: 50%;
    position: relative;
  }
  .project-teaser-caption {
    padding-bottom: 30px;
  }
  .ce-aktuelles .column:first-child {
    width: 40%;
    background-color: var(--third-color);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .ce-aktuelles .column:nth-child(2) {
    width: 60%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ce-aktuelles .column-2 {
    left: 100%;
    top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .ce-aktuelles .column:first-child {
    width: 30%;
  }
  .ce-aktuelles .column:nth-child(2) {
    width: 70%;
    left: 30%;
  }
  .project-teaser-caption {
    padding-bottom: 70px;
  }
}

.content {
  position: relative;
  height: 500px;
}

.project-teaser {
  text-decoration: none;
}

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

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

.project-teaser .project-categorie span {
  margin-right: 10px;
  margin-bottom: 3px;
  opacity: 0.3;
}

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

.project-teaser .project-name {
  font-family: "museo-slab", serif;
  font-weight: 300;
  font-style: italic;
  margin-left: 10px;
}

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

.active.nav-subnav {
  visibility: visible;
  max-height: 1000px;
}

/* News Overview */
.news-teaser {
  text-decoration: none;
}

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

@media only screen and (min-width: 768px) {
  .project-teaser .project-name {
    white-space: nowrap;
  }
}

@media only screen and (min-width: 1200px) {
  .news-teaser .news-teaser-image {
    width: 420px;
    height: 400px;
  }
}

@media only screen and (min-width: 1400px) {
  .news-teaser .news-teaser-image {
    width: 550px;
  }
}

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

.news-teaser .news-teaser-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center 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;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

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

.news-meta {
  margin-bottom: 15px;
  margin-left: 50px;
  font-family: Signifier, serif;
}

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

/* Event */
.ce-aktuelles .event-teaser .event-title {
  font-size: var(--font-size-h4);
  line-height: 22px;
  max-width: 350px;
}

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

@media only screen and (min-width: 1200px) {
  .ce-aktuelles .event-teaser .event-date {
    margin-bottom: 18px;
  }
  .ce-aktuelles .event-teaser .event-title {
    max-width: 450px;
    line-height: 32px;
  }
}

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

.event-teaser {
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}

.ce-aktuelles .event-teaser-caption {
  padding: var(--container-padding);
  margin-bottom: 10px;
}

.event-teaser:hover {
  color: var(--secondary-color);
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}

/* Event Detail */
.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 center;
     object-position: center center;
}

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

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

.ce-event-detail {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  padding-top: var(--nav-height);
}

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

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

.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-p);
  line-height: 24px;
}

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

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

@media only screen and (min-width: 992px) {
  .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;
  }
  .event-image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .ce-event-detail .col-custom:first-child {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .ce-event-detail .col-custom:nth-child(2) {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

/* News Detail */
.ce-news-detail .column-1 {
  width: 50%;
}

.ce-news-detail .column-2 {
  width: 50%;
  left: 50%;
  background-color: var(--third-color);
}

.ce-news-detail .column-1,
.ce-news-detail .column-2 {
  padding-right: var(--container-padding-large);
  padding-left: var(--container-padding-large);
  padding-top: 34px;
  padding-bottom: 50px;
}

.ce-news-detail {
  overflow: visible;
  padding-top: var(--nav-height);
}

.ce-news-detail .col-custom:first-child {
  padding-right: var(--container-padding-large);
}

.ce-news-detail .col-custom:nth-child(2) {
  position: -webkit-sticky;
  position: sticky;
  top: var(--nav-height);
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* Swiper ce */
.ce-swiper {
  width: 100%;
  overflow: hidden;
}

.ce-swiper .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;
}

.ce-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ce-swiper .swiper-button-prev,
.ce-swiper .swiper-button-next {
  position: relative;
  top: auto;
  width: 27px;
  height: 44px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.ce-swiper .swiper-conterols-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.ce-swiper {
  position: relative;
}

.ce-swiper .swiper-button-next,
.ce-swiper .swiper-container-rtl,
.ce-swiper .swiper-button-prev {
  background-image: none;
  right: auto;
  left: auto;
}

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

.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;
}

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

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

.home-event-container .swiper-home-text-container {
  padding: var(--container-padding-large);
  height: 100%;
}

.home-event-container .swiper-home-text-container .event-date {
  font-size: var(--font-size-h2);
  margin-bottom: 15px;
}

.home-event-container {
  background-color: var(--third-color);
}

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

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

.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 {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
}

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

/* Werkschau */
.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-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;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

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

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

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

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

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

@media only screen and (min-width: 768px) {
  .werkschau .opening-hours-row h3 {
    margin-bottom: 5px;
  }
  .opening-hours-row div {
    margin-right: 10px;
  }
  .opening-hours-row div:first-child {
    width: 60px;
  }
  .opening-hours-row div:nth-child(2) {
    width: 130px;
  }
}

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

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

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

.swiper-home-bg-container {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

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

.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-btn .filter-btn-toggle {
  width: 10px;
  height: 10px;
  margin-top: 14px;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-left: 10px;
}

.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);
}

@media only screen and (min-width: 768px) {
  .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-h4);
  }
}

@media only screen and (min-width: 1200px) {
  .filter-btn .filter-btn-toggle {
    width: 13px;
    height: 13px;
    margin-top: 13px;
    margin-left: 12px;
  }
  .filter-container-top {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-btn .filter-btn-toggle {
    width: 15px;
    height: 15px;
    margin-top: 12px;
    margin-left: 15px;
  }
}

.dimmed {
  opacity: 0.5;
}

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

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

/* Accordeon */
.accordion-item {
  border-bottom: 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: 24px 0 30px 0;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

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

.accordion-icon {
  position: relative;
  width: 20px;
  height: 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-2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion-item.active .line-2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  /* macht aus + ein - */
}

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

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

.submenu-open .main {
  margin-top: 112px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.main {
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
  margin-top: var(--nav-height);
}

.ce-swipermore {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.teaser-mixed-media {
  --primary-color: white;
  --secondary-color: #ff162f;
  --third-color: #ff162f;
}

.teaser-corporate-design {
  --primary-color: white;
  --secondary-color: #ff7bac;
  --third-color: #ff7bac;
}

.teaser-illustration {
  --primary-color: white;
  --secondary-color: #ff7bac;
  --third-color: #ff7bac;
}

.teaser-foto {
  --primary-color: white;
  --secondary-color: #057c36;
  --third-color: #057c36;
}

.teaser-animation {
  --primary-color: white;
  --secondary-color: #ff7f00;
  --third-color: #ff7f00;
}

.teaser-editorial {
  --primary-color: white;
  --secondary-color: #ff7f00;
  --third-color: #ff7f00;
}

.teaser-website {
  --primary-color: white;
  --secondary-color: #ff7f00;
  --third-color: #ff7f00;
}

.teaser-sonstiges {
  --primary-color: white;
  --secondary-color: #ff162f;
  --third-color: #ff162f;
}

.teaser-film {
  --primary-color: white;
  --secondary-color: #057c36;
  --third-color: #057c36;
}

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

.ce-hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Wichtig: füllt den Container aus */
  position: absolute;
  top: 0;
  left: 0;
}

.ce-hero {
  overflow: hidden;
  position: relative;
}

.elementor-icon-list-items,
.elementor-icon-list-items li,
.elementor-icon-list-items li:hover,
.elementor-icon-list-items a,
.elementor-icon-list-items a:hover {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  padding-right: 20px;
}

@media only screen and (max-width: 500px) {
  .logo-top h3 {
    max-width: 150px;
    white-space: normal;
  }
}

.language-switch {
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.language-switch:hover {
  text-decoration: none;
  opacity: 0.7;
}

.logo-top {
  padding-top: 10px;
  padding-bottom: 10px;
}

.project-year {
  display: block;
}

.project-onecol img {
  padding: 20px;
}
/*# sourceMappingURL=style.css.map */