* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Unica Regular";
  src: url("fonts/Unica77LL-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "inter";
  src: url("fonts/Inter.var.woff2") format("woff");
  font-style: normal;
  font-weight: 389;
  font-display: swap;
}

body,
html {
  font-family: "inter", "Helvetica", sans-serif;
  font-size: 16px;
  color: #111;
}

a,
a:visited {
  color: #111;
  text-decoration: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  font-variation-settings: 'slnt' -10, 'wght' 389;
}

a:hover {
  font-variation-settings: 'slnt' 0,'wght' 550;
}

.mt-z1 {
  margin-top: 1rem;
}

.mt-z2 {
  margin-top: calc($lineHeight * 2);
}

.grid {
  font-size: 0.8rem;
  line-height: 1rem;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-template-areas: "info werkschau" "marginale werkschau";
}

@media screen and (max-width: 750px) {
  .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: "info" "werkschau" "marginale";
    min-height: auto;
  }
}

.grid p + p {
  margin-top: 1.1rem;
}

.info {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: info;
  padding: 10px;
  padding-right: 30px;
  padding-top: 20px;
  z-index: 99;
  background: #fff;
}

@media screen and (max-width: 750px) {
  .info {
    max-height: calc(1.1rem * 3 + 0.75rem);
    overflow: hidden;
    /* border-bottom: 1px solid $black; */
    -webkit-transition: all ease-in-out 0.8s;
    transition: all ease-in-out 0.8s;
    position: relative;
    /* ::after {
            content: ' ';
            position: absolute;
            width: 100%;
            height: 1.1rem;
            background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
            bottom: 0px;
            left: 0;
            transition: all ease 0.5s;
        } */
  }
}

.info--active {
  max-height: 50vh;
}

.werkschau {
  position: relative;
  background: #fff;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: werkschau;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .werkschau {
    /* border-bottom: 1px solid $black; */
  }
}

.main-carousel {
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 750px) {
  .main-carousel {
    height: auto;
  }
}

.main-carousel img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 750px) and (orientation: portrait) {
  .main-carousel img {
    height: 110vw;
  }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
  .main-carousel img {
    height: 100vh;
  }
}

.carousel-cell {
  margin-right: 0px;
}

.caption {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 99999999;
  color: #fff;
  mix-blend-mode: difference;
}

@media screen and (max-width: 750px) {
  .caption {
    left: 20px;
    top: 10px;
    font-size: 0.65rem;
  }
}

.flick-next {
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: 10px;
  color: #fff;
  mix-blend-mode: difference;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  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;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .flick-next {
    display: none;
  }
}

.marginale {
  background: #fff;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: marginale;
  padding: 10px;
  overflow: hidden;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 750px) {
  .marginale {
    /* border-bottom: 1px solid $black; */
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
  }
}

.marg-list {
  list-style-type: none;
  width: 100%;
  text-indent: 10px;
  overflow: hidden;
}

.marg-list li {
  width: 100%;
  /* padding-left: 10px; */
}

.impressum {
  font-size: 0.8rem;
  line-height: 1rem;
  width: 500px;
  position: absolute;
  left: 250px;
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
  padding: 20px 30px 10px 10px;
  -webkit-transform: translateX(-750px);
          transform: translateX(-750px);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 2;
}

.impressum p + p {
  margin-top: 1.1rem;
}

.impressum .columns-2 {
  -webkit-columns: 2;
          columns: 2;
}

@media screen and (max-width: 640px) {
  .impressum .columns-2 {
    -webkit-columns: 1;
            columns: 1;
  }
}

.impressum .impressum--privacy {
  margin-top: calc(1.1rem);
}

.impressum .impressum-close {
  position: -webkit-sticky;
  position: sticky;
  margin-top: 1.1rem;
  top: 0px;
  right: 30px;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  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;
  cursor: pointer;
  padding-top: -0.2rem;
  z-index: 999;
}

@media screen and (max-width: 750px) {
  .impressum {
    /* border-bottom: 1px solid $black; */
    position: relative;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin: 0;
    margin-top: 1.1rem;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(1.1rem * 3 + 0.75rem);
    overflow: hidden;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    cursor: s-resize;
  }
  .impressum .impressum-close {
    display: none;
  }
}

.impressum--active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.impressum-trigger {
  color: #fff;
  font-size: 0.8rem;
  position: fixed;
  top: 20px;
  left: 260px;
  mix-blend-mode: difference;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .impressum-trigger {
    display: none;
  }
}

.impressum-mobile {
  margin-bottom: 1.1rem;
}

.impressum--mobile-active {
  max-height: 3000px;
  cursor: n-resize;
}

.fadeout-more {
  position: absolute;
  width: 100%;
  height: 2.8rem;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
  bottom: 0px;
  left: 0;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: none;
}

@media screen and (max-width: 750px) {
  .fadeout-more {
    display: block;
  }
}

.info--active .fadeout-more,
.impressum--mobile-active .fadeout-more {
  height: 0px;
}
/*# sourceMappingURL=style.css.map */