@charset "UTF-8";
/*
 * SMALL … 0 – 400
 * MEDIUM … 401 - 800
 * LARGE … 801 – 1023
 * XLARGE … 1024 + 
 */
.hyphenate {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1280px;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 60em) {
  .container {
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@font-face {
  font-family: "Sabon";
  src: url("../fonts/SabonLTPro-Roman.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sabon";
  src: url("../fonts/SabonLTPro-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Sabon";
  src: url("../fonts/SabonLTPro-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
#burger-button {
  left: 1rem;
  line-height: 80px;
  color: #333;
}

#close-menu-button {
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 99999999;
  top: 1rem;
  left: 1rem;
  overflow: hidden;
  background-image: url(../img/close-grey.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  height: 80px;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
header .logo {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  text-indent: -9999em;
  display: block;
  width: 180px;
  height: 70px;
  background-image: url(../img/mischertraxler-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border: 0;
  transition: all 0.1s ease-in-out;
}

.main-navigation {
  display: none;
}

.mobile-navigation {
  display: none;
}
.mobile-navigation.open {
  display: block;
}

.menu-mobile-container,
.menu-mobile-menu-container {
  position: fixed;
  z-index: 9999999;
  background: rgba(255, 255, 255, 0.98);
  overflow: scroll;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: auto;
}
.menu-mobile-container .menu,
.menu-mobile-menu-container .menu {
  padding-top: 3rem;
  text-align: center;
  font-family: "Sabon", "Garamond", serif;
  font-size: 1.5rem;
  text-transform: lowercase;
  color: #333;
}
.menu-mobile-container .menu a,
.menu-mobile-menu-container .menu a {
  color: #333;
}

@media only screen and (min-width: 961px) {
  #burger-button {
    display: none;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    height: 12rem;
    transition: height 0.1s ease-in-out;
    z-index: 1000;
    border-bottom: 0;
  }
  header .logo {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.5rem;
    text-indent: -9999em;
    display: block;
    width: 230px;
    height: 60px;
    background-image: url(../img/mischertraxler-logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    border: 0;
    transition: all 0.1s ease-in-out;
  }
  header .mail-link {
    display: none;
    position: absolute;
    top: 2.3rem;
    left: 3rem;
  }
}
@media only screen and (min-width: 961px) and (min-width: 961px) {
  header .mail-link {
    display: block;
  }
}
@media only screen and (min-width: 961px) {
  header.small {
    height: 5rem;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 961px) and (min-width: 961px) {
  header.small {
    height: 6rem;
  }
}
@media only screen and (min-width: 961px) {
  header.small .logo {
    top: 0.8rem;
    width: 200px;
  }
}
@media only screen and (min-width: 961px) and (min-width: 961px) {
  header.small .logo {
    top: 1.3rem;
  }
}
@media only screen and (min-width: 961px) {
  .mobile-navigation {
    display: none;
  }

  .main-navigation {
    display: block;
    text-transform: lowercase;
    position: fixed;
    left: 2rem;
    top: 1.5rem;
    font-size: 14px;
    line-height: 1.3;
    opacity: 1;
    /*
    	.menu-item-has-children:hover .sub-menu {
    		display: block;
    	}

    	.current-menu-item a {
    		text-decoration: underline;
    	}
    */
  }
  .main-navigation .menu-item {
    text-transform: none;
  }
  .main-navigation .menu-item a {
    display: block;
    text-transform: lowercase;
    color: #333;
    transition: margin 0.2s ease-in-out;
  }
  .main-navigation .menu-item a:hover {
    color: black;
    border: 0;
    margin-left: 4px;
  }
  .main-navigation .menu-item.current-menu-item > a, .main-navigation .menu-item.current-menu-parent > a, .main-navigation .menu-item.active > a {
    color: black;
    border: 0;
  }
  .main-navigation .menu {
    position: absolute;
    width: 5rem;
    z-index: 100;
  }
  .main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 5rem;
    width: 20rem;
    z-index: 0;
  }
  .main-navigation .sub-menu.current-menu-item > a, .main-navigation .sub-menu.current-menu-parent > a, .main-navigation .sub-menu.active > a {
    color: black;
    border: 0;
  }
  .main-navigation .menu-item:hover .sub-menu {
    display: block;
  }
}
.post-type-archive-mt_projects .row.headline {
  display: none;
}

/*
 * NEWS BUBBLE
 */
#bubble {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: width 1s, height 1s;
}

#bubble svg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  transition: width 1s height 1s;
}

#bubble-wrapper-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 9999;
  display: none;
}
@media only screen and (min-width: 961px) {
  #bubble-wrapper-outer {
    display: block;
  }
}

#bubble-wrapper {
  position: relative;
  left: calc(100vw - 1rem);
  top: 1rem;
  width: 110px;
  height: 110px;
  overflow: hidden;
  display: none;
  transition: width 1s, height 1s;
  z-index: 10000;
  transform: translateX(-80%) translateY(-10%);
}
@media only screen and (min-width: 961px) {
  #bubble-wrapper {
    display: block;
  }
}
@media only screen and (min-width: 961px) {
  #bubble-wrapper {
    left: calc(100vw - 5rem);
    top: 4rem;
    width: 150px;
    height: 150px;
    overflow: hidden;
  }
}

#bubble-wrapper:hover {
  cursor: pointer;
}

#news-list {
  padding: 35% 25% 25% 25%;
  display: none;
  position: relative;
  z-index: 10;
  color: white;
  font-size: 12px;
}

#bubble-wrapper.expanded {
  width: auto;
  min-width: 400px;
  max-width: 750px;
  min-height: 400px;
  height: auto;
}

#bubble-wrapper.expanded #bubble svg path {
  fill: #777;
}

#bubble-wrapper.expanded #bubble-close-link {
  top: 20%;
  text-indent: -9999em;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

#bubble-wrapper.expanded #news-list {
  display: block;
}

#bubble-close-link {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  z-index: 1000;
  transform: translateX(-50%) translateY(-50%);
  color: white;
  cursor: pointer;
  text-decoration: none;
}
#bubble-close-link:hover {
  border: 0;
  text-decoration: none;
}

@keyframes rotating {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    fill: #777;
  }
  50% {
    fill: #777;
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    fill: #777;
  }
}
.rotating {
  -webkit-animation: rotating 50s linear infinite;
  -moz-animation: rotating 50s linear infinite;
  -ms-animation: rotating 50s linear infinite;
  -o-animation: rotating 50s linear infinite;
  animation: rotating 50s linear infinite;
}

.news-list {
  font-size: 12px;
  /*
  	padding: 3rem;
  	padding-top: 2rem;
  	position: relative;
  	width: 220px;
  	font-size: 12px;
  	line-height: 1.3;
  */
}
@media only screen and (min-width: 961px) {
  .news-list {
    /*
    		font-size: 14px;
    		padding: 5rem;
    		width: 320px;
    */
  }
}
.news-list .news-entry {
  margin-bottom: 1rem;
}
.news-list .news-title {
  font-weight: bold;
}

#bubble .news-list .news-date {
  color: #ccc;
}
#bubble .news-list a, #bubble .news-list a:link, #bubble .news-list a:visited, #bubble .news-list a:active {
  color: white;
  border-bottom: 1px solid #aaa;
}
#bubble .news-list a:hover, #bubble .news-list a:link:hover, #bubble .news-list a:visited:hover, #bubble .news-list a:active:hover {
  color: white;
  border-bottom: 1px solid #fff;
}

.page-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 4rem;
  background: #f1f1f1;
}
.page-footer p {
  font-family: "Sabon", "Garamond", serif;
  line-height: 1.4;
}
.page-footer a {
  color: #333;
  border-bottom: 1px solid #333;
}
.page-footer .newsletter-form input[type=email] {
  background: none;
  font-family: "museo-sans", "Helvetica Neue", sans-serif;
  padding: 0.5em 0;
  border: 0;
  border-bottom: 1px solid #333;
  display: block;
  width: 100%;
}
.page-footer .newsletter-form input[type=submit] {
  display: block;
  margin-top: 1em;
  font-family: "museo-sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 0.5em 1em;
  border: 1px solid #333;
  color: #333;
  background: 0;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999999;
  display: none;
}

html {
  font-size: 16px;
}

body {
  font-family: "museo-sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  color: #333;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  padding-top: 6rem;
  min-height: 100vh;
  line-height: 1.35;
}
@media only screen and (min-width: 961px) {
  body {
    padding-top: 12rem;
  }
}

main {
  min-height: 100vh;
}

h1 {
  font-family: "Sabon", "Garamond", serif;
}

strong {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

a, a.link, a:visited, a:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a.link:hover, a:visited:hover, a:hover:hover {
  border-bottom: 1px solid #000;
}
a.active, a.link.active, a:visited.active, a:hover.active {
  border-bottom: 1px solid #000;
}

section {
  padding: 0;
}
@media only screen and (min-width: 961px) {
  section {
    padding: 3rem 0;
  }
}

.quote {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 961px) {
  .quote {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

blockquote p {
  font-family: "Sabon", "Garamond", serif;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
}
@media only screen and (min-width: 961px) {
  blockquote p {
    font-size: 2rem;
  }
}
blockquote a:hover {
  border: 0 !important;
}
blockquote cite {
  display: block;
  font-family: "museo-sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  margin-top: 0.5rem;
  text-decoration: none;
  border: 0;
  font-weight: bold;
  opacity: 0.8;
  text-align: center;
}

.start-lg blockquote p, .start-lg blockquote cite {
  text-align: left;
}

.end-lg blockquote p, .end-lg blockquote cite {
  text-align: right;
}

.intro {
  font-family: "Sabon", "Garamond", serif;
  text-align: center;
  line-height: 1.2;
  max-width: 80rem;
  margin: auto;
  padding-top: 4rem;
}
.intro h3 {
  text-decoration: underline;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
.intro p {
  font-size: 2rem;
}

.single-mt_projects .intro {
  padding-bottom: 0;
}

.facts {
  text-transform: lowercase;
  padding-top: 0;
  padding-bottom: 0;
}
.facts .extra-info {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 12px;
  line-height: 1.2;
}
@media only screen and (max-width: 960px) {
  .facts .extra-info {
    display: block;
  }
}
.facts .extra-info p {
  font-size: 12px;
  line-height: 1.2;
  opacity: 0.8;
}
.facts .extra-info li {
  display: inline-block;
  width: 12rem;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 0px solid #eee;
}
.facts .extra-info li strong {
  display: block;
}
@media only screen and (max-width: 960px) {
  .facts .extra-info li {
    display: block;
    width: auto;
    margin-bottom: 1em;
  }
}
.facts .extra-info li:last-child {
  border-right: 0;
}
.grid .image {
  background: #f1f1f1;
  padding-top: 50%;
}

.fig:hover figcaption {
  display: block;
}
.fig figcaption {
  padding-top: 0.8em;
  font-size: 14px;
}
.fig figcaption span {
  font-weight: 700;
}

.caption {
  padding-top: 0.3rem;
  font-size: 12px;
  text-align: left;
  font-weight: bold;
  opacity: 0.8;
  color: #333 !important;
}
.caption span {
  font-weight: 700;
}

p + .caption {
  margin-top: 0.5rem;
}

.project-filter, .project-sort {
  text-align: left;
  font-size: 0.9em;
  text-transform: lowercase;
}
.project-filter li, .project-sort li {
  display: inline-block;
  margin: 0 0.4em;
}
.project-filter li:first-child, .project-sort li:first-child {
  margin-left: 0;
}
.project-filter li:last-child, .project-sort li:last-child {
  margin-right: 0;
}

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

.project-grid {
  text-align: center;
  padding-top: 4rem;
}
.project-grid .project-item {
  margin-bottom: 4em;
  transition: opacity 0.2s ease-in-out;
}
.project-grid .project-item:hover {
  opacity: 0.8;
}
.project-grid .title-image {
  padding-top: 66.66%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.project-grid .info {
  text-align: center;
  padding-top: 1em;
}
.project-grid .title {
  font-family: "Sabon", "Garamond", serif;
  text-decoration: underline;
  font-size: 1.1rem;
}
.project-grid .terms {
  text-transform: lowercase;
  font-size: 12px;
  opacity: 0.8;
}
.project-grid .year {
  font-size: 12px;
  opacity: 0.8;
}
.project-grid.no-space {
  padding-top: 0;
}

.project-item a {
  color: #333;
  transition: 0.1s all ease-in-out;
}
.project-item a:hover {
  border: 0;
  opacity: 0.9;
}

.text-element {
  text-align: left;
}
.text-element div {
  column-gap: 3rem;
}
@media only screen and (max-width: 960px) {
  .text-element div {
    column-count: 1 !important;
  }
}

.container {
  text-align: left;
}

.image-link {
  border: 0;
  transition: all 0.1s ease-in-out;
  font-size: 14px;
}
.image-link:hover {
  opacity: 0.9;
  border: 0 !important;
  cursor: pointer;
}
.text-element p {
  margin-top: 1em;
}
.text-element p:first-child {
  margin-top: 0;
}

.additional-info-list {
  font-size: 12px;
  opacity: 0.8;
  text-align: left;
}
.additional-info-list li {
  display: flex;
  flex-direction: row;
}
.additional-info-list .title {
  width: 30%;
  font-weight: bold;
}
.additional-info-list .value {
  max-width: 30em;
  width: 70%;
  padding-left: 1.5em;
}
.additional-info-list li {
  border-bottom: 1px solid #f1f1f1;
  padding: 0.8em 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-wrapper.playing .poster {
  display: none;
}
.video-wrapper.playing:hover .poster {
  display: none;
}
.video-wrapper .poster {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
}
.video-wrapper .poster::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(119, 119, 119, 0.4);
}
.video-wrapper .poster:hover::before {
  background: rgba(119, 119, 119, 0.6);
}
.video-wrapper .poster::after {
  content: url("../img/play.svg");
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-wrapper .video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.video-wrapper .video iframe {
  width: 100%;
  height: 100%;
}

.headline + .headline {
  padding-top: 1rem;
}

.headline {
  font-weight: bold;
  padding-bottom: 0;
}
.headline h2 {
  font-size: 1.2rem;
}
.headline + .row {
  padding-top: 0;
}

.divider {
  padding: 0.2rem 0;
}
.divider hr {
  border: 0;
  border-bottom: 1px solid #eee;
}

.related-projects {
  padding-top: 0;
}

/*# sourceMappingURL=app.css.map */


/* BUBBBLE TWO-COLUMNS */
@media only screen and (min-width: 961px) {

    #bubble-wrapper.two-columns.expanded {
        max-width: 1000px;
    }
    #bubble-wrapper.two-columns.expanded #news-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    #bubble-wrapper.two-columns.expanded #news-list li {
        display: inline-block;
        width: calc(45% - 1em);
        margin: 1em;
    }
    
}


/* COLLECTION */
.collection-item {

    }
    
    .collection-image-wrapper {
        position: relative;
        cursor: pointer;
    }
    

    .project-grid .collection-image-wrapper .collection-image {
        position: absolute;
        top: 0;
        width: 95%;
        padding-top: calc(66.65% * 0.95);
        --offset: 1.2rem;
        transition: transform 0.4s ease-in-out;
    }
        
    .project-grid .collection-image-wrapper .collection-image.collection-image-0 {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .collection-image.top {
        z-index: 99 !important;
    }
    
    .collection-image-1 {
        transform: translateY(calc(1 * var(--offset))) translateX(calc(-1 * var(--offset)));
        z-index: 10;
    }      
    
    .collection-image-2 {
        transform: translateY(calc(0 * var(--offset))) translateX(calc(0 * var(--offset)));
        z-index: 9;
    }
    .collection-image-3 {
        transform: translateY(calc(-1 * var(--offset))) translateX(calc(1 * var(--offset)));
        z-index: 8;
    }
    .collection-image-4 {
        transform: translateY(calc(-2 * var(--offset))) translateX(calc(2 * var(--offset)));
        z-index: 7;
    } 
    
    .collection-image-wrapper:hover .collection-image-1 {
        transform: translateY(calc(1.2 * var(--offset))) translateX(calc(-1.2 * var(--offset)));
        z-index: 10;
    }      
    
    .collection-image-wrapper:hover .collection-image-2 {
        transform: translateY(calc(0 * var(--offset))) translateX(calc(0 * var(--offset)));
        z-index: 9;
    }
    .collection-image-wrapper:hover .collection-image-3 {
        transform: translateY(calc(-1.2 * var(--offset))) translateX(calc(1.2 * var(--offset)));
        z-index: 8;
    }
    .collection-image-wrapper:hover .collection-image-4 {
        transform: translateY(calc(-2.2 * var(--offset))) translateX(calc(2.2 * var(--offset)));
        z-index: 7;
    }


    
/*
    .collection-image-wrapper:hover .collection-image-1 {
        transform: translateY(calc(2.5 * var(--offset))) translateX(calc(-2.5 * var(--offset)));
        z-index: 10;
    }      
    
    .collection-image-wrapper:hover .collection-image-2 {
        transform: translateY(calc(0 * var(--offset))) translateX(calc(0 * var(--offset)));
        z-index: 9;
    }
    .collection-image-wrapper:hover .collection-image-3 {
        transform: translateY(calc(-2.5 * var(--offset))) translateX(calc(2.5 * var(--offset)));
        z-index: 8;
    }
    .collection-image-wrapper:hover .collection-image-4 {
        transform: translateY(calc(-5 * var(--offset))) translateX(calc(5 * var(--offset)));
        z-index: 7;
    }
*/
    
    
    .collection-item  .collection-image.on-top {
        z-index: 20;
    }
           
    
    .collection-item  .collection-image:hover {
        z-index: 99;
    }