@font-face {
  font-family: 'SuissIntl';
  src: url("../fonts/suisseintl-regular.woff") format("woff");
  font-weight: normal; }

html {
  font-size: 25px;
  overflow-x: hidden; }
  @media only screen and (max-width: 750px) {
    html {
      font-size: 15px; } }

body {
  font-family: 'SuissIntl';
  padding-top: 5.4rem;
  padding-bottom: 4rem; }
  @media only screen and (max-width: 750px) {
    body {
      padding-top: 5.6rem; } }
  body a {
    text-decoration: none; }
    body a.link {
      text-decoration: underline; }
    body a:hover {
      font-style: italic; }
  body ul {
    list-style: none; }
    body ul li {
      margin-bottom: 0.5em; }
      body ul li:last-child {
        margin-bottom: 0; }
  body img {
    display: block;
    width: 100%;
    height: auto; }

body, h1, h2, h3, p, a, li {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  color: black; }
  @media only screen and (max-width: 750px) {
    body, h1, h2, h3, p, a, li {
      font-size: 14px; } }

header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
  min-height: 5.4rem;
  background: white;
  border-bottom: 1px solid black; }
  @media only screen and (max-width: 750px) {
    header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      min-height: 5rem; } }
  header h1 {
    display: inline;
    margin-right: 1em; }
  header .about {
    width: 66.6666%;
    padding: 1rem; }
    header .about .infobtn {
      position: relative;
      cursor: pointer; }
      header .about .infobtn:before {
        content: "";
        display: block;
        position: absolute;
        top: -0.5em;
        right: -0.75em;
        bottom: -0.5em;
        left: -0.75em; }
    header .about .infobtn:hover {
      font-style: italic; }
    @media only screen and (max-width: 750px) {
      header .about {
        width: 100%; }
        header .about .infobtn {
          float: right; } }
  header .filter {
    width: 33.3333%;
    padding: 1rem;
    border-left: 1px solid black; }
    header .filter ul li {
      cursor: pointer; }
      header .filter ul li:hover::before {
        content: "\2612"; }
      header .filter ul li::before {
        content: "\2610";
        display: inline;
        margin-right: 0.15em; }
      header .filter ul li.active::before {
        content: "\2612"; }
    @media only screen and (max-width: 750px) {
      header .filter {
        padding: 0.5rem 1rem;
        width: 100%;
        border-left: none;
        border-top: 1px solid black; }
        header .filter ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; }
          header .filter ul li {
            display: inline-block;
            margin: 0; } }
  header .moreinfo {
    display: none;
    margin-top: 1rem; }
    header .moreinfo p {
      max-width: 800px;
      margin-bottom: 1rem; }
    header .moreinfo a {
      margin-right: 1em; }

.projectwrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid black; }
  .projectwrapper .projectimages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    @media only screen and (max-width: 750px) {
      .projectwrapper .projectimages {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; } }
    .projectwrapper .projectimages > div {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 33.3333%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .projectwrapper .projectimages > div div {
        cursor: pointer; }
      .projectwrapper .projectimages > div.big div {
        width: 100%; }
      .projectwrapper .projectimages > div.medium div {
        width: 50%; }
      .projectwrapper .projectimages > div.small div {
        width: 33.3333%; }
      @media only screen and (max-width: 750px) {
        .projectwrapper .projectimages > div {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 auto;
                  flex: 0 0 auto;
          width: auto;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; }
          .projectwrapper .projectimages > div.big div, .projectwrapper .projectimages > div.medium div, .projectwrapper .projectimages > div.small div {
            width: auto;
            -webkit-box-flex: 0;
                -ms-flex: 0 0 auto;
                    flex: 0 0 auto; }
          .projectwrapper .projectimages > div.big img, .projectwrapper .projectimages > div.medium img, .projectwrapper .projectimages > div.small img {
            height: 275px;
            width: auto; } }
  .projectwrapper .projectinfos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .projectwrapper .projectinfos .maininfo {
      width: 33.3333%;
      padding: 0.5rem 1rem 1rem 1rem; }
      @media only screen and (max-width: 750px) {
        .projectwrapper .projectinfos .maininfo h2:not(.nomoreinfo) {
          text-decoration: underline; } }
    .projectwrapper .projectinfos .additionalinfo {
      font-style: italic; }
    .projectwrapper .projectinfos .desc {
      width: 66.6666%;
      padding: 0.5rem 1rem 1rem 0; }
      @media only screen and (max-width: 750px) {
        .projectwrapper .projectinfos .desc {
          display: none; } }
    @media only screen and (max-width: 750px) {
      .projectwrapper .projectinfos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .projectwrapper .projectinfos .maininfo, .projectwrapper .projectinfos .desc {
          width: 100%;
          padding: 0.5rem 1rem 1rem 1rem; } }
  .projectwrapper.focus .desc {
    display: block; }
  .projectwrapper .projectgallery {
    position: fixed;
    top: 5.4rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden; }
    .projectwrapper .projectgallery .sliderwrapper {
      position: relative;
      height: 100%;
      width: 100%;
      padding-bottom: 1.5rem;
      pointer-events: none; }
      .projectwrapper .projectgallery .sliderwrapper .siema {
        position: relative;
        height: 100%; }
        .projectwrapper .projectgallery .sliderwrapper .siema > div {
          height: 100%; }
          .projectwrapper .projectgallery .sliderwrapper .siema > div div {
            position: relative;
            height: 100%;
            overflow: hidden; }
      .projectwrapper .projectgallery .sliderwrapper img {
        margin: auto;
        height: 100%;
        width: auto; }
    .projectwrapper .projectgallery .closegallery {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      cursor: pointer; }
      .projectwrapper .projectgallery .closegallery span {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.4em; }
    .projectwrapper .projectgallery .nav {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 1.5rem;
      background: white;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: auto;
      padding: 0 1rem; }
      .projectwrapper .projectgallery .nav button {
        background: none;
        outline: none;
        border: none;
        padding: 0;
        cursor: pointer; }
