@charset "UTF-8";

@font-face {font-family:'Fleya'; src:url('../fonts/Fleya-Light.woff'); font-weight:200;}
@font-face {font-family:'Fleya'; src:url('../fonts/Fleya-Light-Italic.woff'); font-style: italic; font-weight:200;}

@font-face {font-family:'Inconsolata'; src:url('../fonts/inconsolata/inconsolata-v21-latin-ext_latin-200.woff2'); font-weight:200;}
@font-face {font-family:'Inconsolata'; src:url('../fonts/inconsolata/inconsolata-v21-latin-ext_latin-300.woff2'); font-weight:300;}
@font-face {font-family:'Inconsolata'; src:url('../fonts/inconsolata/inconsolata-v21-latin-ext_latin-regular.woff2'); font-weight:400;}
@font-face {font-family:'Inconsolata'; src:url('../fonts/inconsolata/inconsolata-v21-latin-ext_latin-500.woff2'); font-weight:500;}

@font-face {font-family:'Moderat'; src:url('../fonts/Moderat-Regular.woff'); font-weight:400;}

html, body {
  margin:0;
  padding: 0;
  font-family: 'Fleya', serif;
}

body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  line-height: 1.6;
  position: relative;
}

::selection {
  color: #3fd046;
  background: #ffe4ed;
}

* {
  box-sizing: border-box;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 25px 0 ;
}

a, nav ul li a.active {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  display: inline;
  font-weight:400;
}

h1, .h1, h2, .h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 20px;
  font-family: 'Fleya', serif;
}

h3, .h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 50px 0 0;
  font-family: 'Fleya', serif;
}

p, ul {
  font-weight: 300;
  font-size:16px;
  font-family: 'Moderat', sans-serif;
}
ul li::before {
  content:"⟶ ";
  position: relative;
  top: -3px;
}

.wide-button {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

figure {
  margin: 0;
  padding: 0;
}
figcaption {
  font-weight: 300;
  font-size:14px;
  font-family: 'Moderat', sans-serif;
}
.footnote {
  font-size: 11px;
  position: relative;
  top: -5px;
  font-weight: 700 !important;
  margin: 0 1px;
  letter-spacing: 0.8px;
  font-family: "Inconsolata", monospace;
}
code {
  border: 1px dashed #000;
  padding: 15px 20px;
  margin: 10px 0;
  display: inline-block;
}

section, footer {
  float: left;
  width: 100%;
  padding: 60px 0;
}

.container {
  padding: 0 20px;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}
#nav-bg {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #f2f2f2;
  z-index: 10;
}
#logo {
  padding: 10px 0;
  color: #000;
  transition: color ease .3s;
  position: relative;
}
#logo::before {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  z-index: 0;
  background: rgba(0,0,0,0.45);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  transition: opacity ease .3s;
  opacity: 0;
}
.logo-white #logo::before {
  opacity: 1;
}
#logo h1, #logo .h1 {
  margin-top: 0;
  font-size: 22px;
  position: relative;
  z-index: 1;
}
#logo a {
  border: none;
}
.logo-white #logo {
  color: #fff;
}
.nav-visible.logo-white #logo, .nav-visible #logo {
  color: #000;
}
.work.logo-white.logo-custom-black #logo, .logo-white.logo-custom-black #logo {
  color: #000 !important;
}





.nav-c {
  width: 100%;
  position: relative;
}
#nav-btn {
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 1;
}
.nav-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  margin-top: 5px;
  opacity: 1;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: all ease .3s;
}
.nav-visible .nav-bar:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
  -webkit-transform: translateY(6px) rotate(-45deg);
}
.nav-visible .nav-bar:nth-of-type(2) {
  opacity: 0;
}
.nav-visible .nav-bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  -webkit-transform: translateY(-8px) rotate(45deg);
}
.logo-white .nav-bar {
  background-color: #fff;
}
.nav-visible.logo-white .nav-bar, .nav-visible .nav-bar {
  background-color: #000;
}
.logo-custom-black.logo-white .nav-bar {
  background-color: #000 !important;
}


#nav-list-c {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  transition: opacity ease .3s;
  padding-top: 100px;
}
#nav-list-c ul {
  transition: transform ease .3s;
  transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
}
.nav-visible #nav-list-c ul {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
#nav-list-c ul ul, .nav-visible #nav-list-c ul ul {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
nav ul {
  margin-bottom: 20px;
  line-height: 1.2;
}
nav ul ul {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}
nav ul li {
  margin-bottom: 10px;
}
nav ul li a {
  border-bottom: none;
  font-size: 20px;
  font-weight: 500;
}
nav ul ul li a {
  font-weight: 400;
}
nav ul li.active ul li a {
  border:none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

#slider {
  padding: 0;
  position: relative;
  z-index: 15;
  height: 85vh;
  background-color: #000;
}
#slider-img-c ul, #slider-img-c ul li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#slider-img-c ul li {
  opacity: 0;
  display: none;
  transition: opacity ease .5s;
}
#slider-img-c ul li:first-of-type {
  opacity: 1;
  display: block;
}
#slider-img-c ul li img {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.6;
}
.landscape #slider-img-c ul li img.slider-landscape {
  display: block;
}
.landscape #slider-img-c ul li img.slider-portrait {
  display: none;
}
.portrait #slider-img-c ul li img.slider-landscape {
  display: none;
}
.portrait #slider-img-c ul li img.slider-portrait {
  display: block;
}
.align-height #slider-img-c ul li img {
  height: 100%;
  width: 100%;
}
.align-width #slider-img-c ul li img {
  width: 100%;
  height: 100%;
}
.landscape.cube .align-width #slider-img-c ul li img.slider-landscape {
  height: 100%;
  width: 100%;
}
.portrait.cube .align-height #slider-img-c ul li img.slider-portrait {
  width: 100%;
  height: 100%;
}

#slider-title-c {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  color: #fff;
}

.slider-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  opacity: 1;
  color: #fff;
}
.slider-title a {
  display: inline-block;
  font-size: 16px;
  margin-top: 40px;
}

#slider-title-nav {
  position: absolute;
  font-family: 'Inconsolata', monospace;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  padding-bottom: 50px;
  z-index: 12;
  display: flex;
  justify-content: center;
}

#slider-nav-left, #slider-title-num, #slider-nav-right {
  display: inline-block;
  margin: 0 5px;
  padding: 5px;
  width: 40px;
}
#slider-title-num {
  width: 100px;
  text-align: center;
}
#slider-nav-right {
  text-align: right;
}
#slider-nav-left, #slider-nav-right {
  cursor: pointer;
}



.works-article {
  margin-bottom: 60px;
}
.works-article h3 {
  margin: 5px 0;
}
.works-article p {
  margin: 5px 0;
}
.works-article a {
  border: none;
  padding-bottom: 0;
}

#featured-news {
  margin-bottom: -20px;
}
#news-c {
  display: flex;
  overflow: scroll;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  &::-webkit-scrollbar {
    display: none;
  }
}
.news-article {
  display: flex;
  background-color: #000;
  color: #fff;
  flex-basis: 75vw;
  height: 400px;
  max-height: 75vh;
  margin-right: 20px;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.news-article img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: none;
  opacity: 0.6;
}
.news-article-title {
  position: absolute;
  z-index: 1;
}
.news-article h3 {
  margin: 0;
}



.startseite main {
  order: 10;
}


footer {
  order: 11;
  padding-bottom: 10px;
}
.ft-container {
  border-top: 1px solid #000;
  padding-top: 5px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
footer .h3 {
  margin-top: 5px;
}
footer a {
  border: none;
}
.social {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 8px 10px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.instagram {
  background-image: url("../img/instagram.svg");
}
.ello {
  background-image: url("../img/ello.png");
}




#works-overview {
  padding-top: 40px;
}
.works main {
  padding-top: 60px;
}
.works-overview-article {
  margin-bottom: 60px;
}
.works-overview-article a {
  border: none;
  padding-bottom: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.works-overview-article-img {
  order: 1;
}
.works-overview-article h2, .works-overview-article .h3 {
  flex-basis: 100%;
  margin: 15px 0 0;
  order: 2;
}
.works-overview-article p {
  margin: 5px 0;
  font-weight:200;
}
.works-overview-article p span {
  font-weight:400;
}
.works-overview-article-description {
  order: 3;
}





.standard main {
  padding-top: 40px;
  margin-top: 60px;
}
#scroll-content {
  padding-bottom: 0;
}
article.recognition {
  margin-bottom: 40px;
}
article.recognition:last-of-type {
  margin-bottom: 0;
}
.recognition-img {
  display: none;
}





.work #slider {
  height: 70vh;
}
.work #slider-img-c ul li img {
  opacity: 1;
}
.work main {
  padding-top: 60px;
}
.work main p, .work main figure {
  margin: 30px 0;
}
.work main figure, .work main .iframe-c {
  margin: 60px 0;
}
.work main p:first-of-type {
  margin-top: 20px;
}



.desktop-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}

@media screen and (max-height: 500px) {
  #nav-list-c {
    padding-top: 70px;
  }
  nav ul {
    margin-bottom: 0;
  }
  nav ul li {
    margin-bottom: 5px;
  }
  nav ul li a {
    font-size: 16px;
  }

  #slider-title-nav {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 500px) {
  .container {
    padding: 0 50px;
  }
  .news-article {
    flex-basis: 300px;
    height: 400px;
    max-height: 75vh;
    margin-right: 20px;
    flex-grow: 1;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}


@media screen and (min-width: 700px) {
  #slider {
    height: 100vh;
  }

  .standard #main-content .container {
    width:100%;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .main-content-right {
    flex-shrink: 0;
  }
  .main-content-right img {
    margin-left:50px;
    margin-top: 60px;
    max-width: 250px;
    height: auto;
  }
}


@media screen and (min-width: 800px) {
  .works main {
    width: 100%;
  }
  .works-overview-article {
    position: relative;
    width: 100%;
    height: calc((45vw) *0.666);
    padding-left: 50%;
    align-items: flex-start;
  }
  .works-overview-article-img {
    max-width: 45%;
    position: absolute;
    left: 0;
  }
  .works-overview-article h2, .works-overview-article .h3 {
    margin: 0;
    padding: 0;
  }
  .works-overview-article p.works-overview-article-description {
    margin: 0;
    padding: 0;
    display: block;
    flex-basis: 100%;
    position: absolute;
    top: 40px;
  }

}


@media screen and (min-width: 1000px) {
  .container {
    padding: 0 80px;
  }
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  .startseite main {
    order: 1;
    position: absolute;
    color: #fff;
    z-index: 16;
    top: 20vh;
    width: 30vw;
  }
  .startseite section, .startseite footer {
    order: 2;
    display: none;
  }
  .startseite header {
    position: fixed;
  }
  header {
    position: absolute;
  }
  footer {
    padding-bottom: 50px;
  }
  #logo {
    padding: 30px 0;
    width: auto;
  }
  #logo h1, #logo .h1 {
    display: inline-block;
  }
  .startseite .logo-white #logo, .startseite.nav-visible.logo-white #logo, .startseite.nav-visible #logo {
    color: #fff;
  }
  .work-slide #logo.logo-scroll {
    color: #000;
  }
  .work #logo h1, .work #logo .h1 {
    padding-left: 2px;
  }
  .work #logo.logo-scroll h1, .work #logo.logo-scroll .h1 {

  }
  .work #logo::before {
    transition: opacity ease .3s;
  }
  .work-slide #logo.logo-scroll::before {
    opacity: 0;
  }
  .work.logo-custom-black #logo::before, .logo-white.logo-custom-black #logo::before {
    display:none !important;
  }
  nav {
    left: 50%;
    width: 50%;
  }
  .work-slide nav {
    position: fixed;
  }
  #nav-list-c {
    display: block;
    opacity: 1;
    background-color: transparent;
    padding-top: 35px;
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
  }
  #nav-list-c ul {
    transform: none;
    -webkit-transform: none;
  }
  nav ul ul {
    display: none;
  }
  nav ul li {
    display: inline-block;
    margin-right: 22px;
  }
  .logo-white nav ul li a {
    color: #fff;

  }
  nav ul li a {
    font-weight: 400;
  }

  .startseite section#slider {
    display: block;
  }
  #slider-title-c {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    color: #fff;
  }
  .slider-title {
    top: 20vh;
    left: 50vw;
    width: calc(50vw - 80px);
    padding-left: 80px;
    transform: none;
    -webkit-transform: none;
    text-align: left;
  }
  #slider-title-nav {
    position: absolute;
    bottom: 0;
    left: 50vw;
    padding-left: 80px;
    justify-content: flex-start;
    transform: none;
    -webkit-transform: none;
  }

  .works main {
    padding-top: 0;
  }
  .works main .inner-container {
    position: relative;
    padding-top:20vh;
  }
  #works-overview {
    padding-top:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .works-overview-article {
    position: relative;
    flex-basis: 50%;
    width:auto;
    height: auto;
    padding-left: 0;
    align-items: flex-start;
    margin: 0 0 80px;
  }
  .works-overview-article:nth-of-type(2n){
    padding-left:80px;
  }
  .works-overview-article:nth-of-type(2n+1){
    padding-right:80px;
  }
  .works-overview-article-img {
    flex-basis: 100%;
    position: static;
    max-width: 100%;
    opacity: 1;
    flex-basis: 100%;
    order: 1;
    transition: opacity ease .2s;
  }
  .work-visible {
    z-index: 2;
  }
  .work-visible .works-overview-article-img,
  .work-visible .works-overview-article-description {
    opacity: 1;
  }
  .works-overview-article h2, .works-overview-article .h3 {
    font-size: 18px;
    flex-basis: calc(100% - 160px);
    margin: 15px 0 0;
    padding: 0;
    order: 2;
    color: #000;
    cursor: pointer;
    transition: opacity ease .2s;
  }
  .work-visible h2, .work-visible .h3 {
    color: #000;
  }
  .works-overview-article p.works-overview-article-description {
    margin: 0;
    padding: 0;
    display: block;
    flex-basis: 100%;
    position: static;
    top: auto;
    order: 3;
    transition: opacity ease .2s;
  }
  .works-overview-article-description {
    opacity: 1;
  }

  .works #nav-bg, .works footer {
    display: none;
  }
  .standard #logo {
    position: fixed;
  }
  .standard main {
    margin-top: 0;
    padding-top: 0;
    position: fixed;
    top: 20vh;
    width: 50%;
  }
  .standard #main-content .container {
    padding-right:0;
  }
  #scroll-content {
    margin: 0 0;
    padding: 0;
    position: relative;
    margin-top: 20vh;
    left: 50%;
    width: 50%;
  }
  .standard footer {
    padding-left: 50%;
  }
  article.recognition {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
  }
  /*
  article.recognition:last-of-type {
    margin-bottom: calc(((25vw - 250px) * 0.66));
  }
  */
  #scroll-content h2 {
    margin-top: 60px;
  }
  #scroll-content h2:first-of-type {
    margin-top: 10px;
  }
  .standard main article.recognition:first-of-type,
  .work main article.recognition:first-of-type {
    margin-top: 0;
  }
  .standard article.recognition p,
  .work article.recognition p {
    margin-top: 0;
  }
  .recognition-content {
    flex-basis: 100%;
    padding-right: 20px;
  }
  .standard .recognition-content p,
  .work .recognition-content p {
    margin: 0;
  }
  .standard h3, .work h3 {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .standard h3.h3-spacing, .work h3.h3-spacing {
    margin-top: 50px;
  }
  .standard h3:first-child, .work h3:first-child {
    margin-top: 10px;
  }
  .recognition-img {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    padding-left: 30px;
    opacity: 0;
    transition: opacity ease .2s;
  }
  main .recognition-img p {
    margin: 0;
    font-size: 12px;
  }
  article.recognition.work-visible .recognition-img {
    opacity: 1;
  }


  .work #slider {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50vw;
  }
  .work.work-slide #slider {
    position: absolute;
  }
  .work #slider-title-nav {
    left: 80px;
    justify-content: flex-start;
    padding-left: 0;
  }
  .work #logo {
    position: fixed;
    color: #fff;
  }
  .work #logo::before {
    width: 50vw;
    opacity: 1;
  }
  .work.landscape #slider-img-c ul li img.slider-landscape,
  .work.portrait #slider-img-c ul li img.slider-landscape {
    display:none;
  }
  .work.landscape #slider-img-c ul li img.slider-portrait,
  .work.portrait #slider-img-c ul li img.slider-portrait {
    display: block;
  }
  .work.portrait #slider-img-c ul li img.slider-landscape,
  .work.portrait #slider-img-c ul li img.slider-portrait {
    height: 100%;
    width: 100%;
  }
  .work.portrait.cube #slider-img-c ul li img.slider-portrait {
    width: 100%;
    height: 100%;
  }
  #slider-img-c ul li img.align-top {
    top: 0;
    bottom: auto;
  }
  #slider-img-c ul li img.align-bottom {
    top: auto;
    bottom: 0;
  }

  .work.logo-white nav ul li a, .work nav ul li a {
    color: #000;
  }


  .main-content-intro {
    position: absolute;
    top: 50vh;
    right: 0;
    width: 50%;
    padding: 0 80px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }

  .main-content-right img {
    display: none;
    max-width: 50px;
    height: auto;
  }  

  .work main, .work footer {
    padding-left: 50vw;
  }
  .work main.work-slide, .work.work-slide footer {
    padding-left: 0;
  }
  .work main {
    margin-top: 20vh;
    padding-left: 50vw;
    position: relative;
    margin-bottom: 0;
    width:100%;
  }
  .work.work-slide main {
    padding-top: 110vh;
    padding-left: 0;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
  }
  .work.work-slide main::before {
    content: "⟶︎";
    position: absolute;
    top: 100vh;
    right: 80px;
    transform: rotate(90deg);
    margin-top: -80px;
  }
  .work main img {
    width: 100%;
  }
  .work-slide main p, .work-slide main h2, .work-slide main .h2, .work-slide main h3, .work-slide main .h3 {
    padding: 0 120px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .work-slide main .main-content-intro p {
    padding: 0;
    max-width: 100%;
    margin: 0;
  }

  .two-images-l, .two-images-r, .two-images-m {
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
  .two-images-l {
    align-items: flex-end;
  }
  .work-slide main .two-images-l figure:first-of-type {
    flex-basis: calc(60% - 30px);
  }
  .work-slide main .two-images-l figure:last-of-type {
    flex-basis: calc(40% - 30px);
  }
  .work-slide main .two-images-r figure:first-of-type {
    flex-basis: calc(40% - 30px);
  }
  .work-slide main .two-images-r figure:last-of-type {
    flex-basis: calc(60% - 30px);
  }
  .work-slide main .two-images-m figure {
    flex-basis: calc(50% - 30px);
  }
  .work-slide .main-content-end {
    padding-left: calc(50% + 80px);
  }
  .work-slide .main-content-end p, .work-slide .main-content-end h2, .work-slide .main-content-end .h2, .work-slide .main-content-end h3, .work-slide .main-content-end .h3 {
    padding: 0;
  }

}

@media screen and (min-width: 1300px) {
  nav ul li {
    margin-right: 50px;
  }
  .main-content-right img {
    display: block;
    max-width: calc(20px + 10vw);
  }
}

@media screen and (min-width: 1400px) {
  .main-content-right img {
    display: block;
    max-width: calc(200px + 2vw);
  }
}

@media screen and (min-width: 1500px) {
  .container, .main-content-intro {
    padding: 0 120px;
  }
  .work #slider {
    width: 50vw;
  }
  .work #slider-title-nav {
    left: 120px;
  }
  .work #logo::before {
    width: 50vw;
  }
  .slider-title {
    padding-left: 120px;
    width: calc(50vw - 120px);
  }
  #slider-title-nav {
    padding-left: 120px;
  }
  .works-overview-article h2, .works-overview-article .h3 {
    flex-basis: calc(100% - 240px);
  }
  .works-overview-article {
    margin-bottom: 120px;
  }
  .works-overview-article:nth-of-type(2n) {
    padding-left: 120px;
  }
  .works-overview-article:nth-of-type(2n + 1) {
    padding-right: 120px;
  }
}

@media screen and (min-width: 1920px) {
  .startseite main {
    width: 25vw;
  }
}
