@font-face {
  font-family: "FH Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/BarlowCondensed-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "FH Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62.5% 100%;
  font-display: swap;
  src: url("../fonts/NotoSans-wdth-wght.woff2") format("woff2");
}

:root {
  --fh-bg: #222222;
  --fh-text: #eeeeee;
  --fh-white: #ffffff;
  --fh-muted: #888888;
  --fh-copy: #999999;
  --fh-caption: #a9a9a9;
  --fh-logo: #f69cf7;
  --fh-edge: 4%;
  --fh-mobile-edge: 5%;
  --fh-fallback-font: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --fh-logo-font: "FH Noto Sans", var(--fh-fallback-font);
  --fh-ui-font: "FH Barlow Condensed", var(--fh-fallback-font);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--fh-bg);
  position: relative;
}

body {
  background: var(--fh-bg);
  color: var(--fh-text);
  font-family: var(--fh-ui-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
  margin: 0;
  text-rendering: optimizeLegibility;
}

body.show-responsive-nav,
body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
object,
iframe {
  max-width: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.preserve-whitespace {
  white-space: pre-wrap;
}

.site-wrap,
.site-container,
.site-content,
.fh-site-main {
  position: relative;
  width: 100%;
}

.site-container {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.site-content {
  margin-left: var(--fh-edge);
  margin-right: var(--fh-edge);
  width: calc(100% - (var(--fh-edge) * 2));
}

.fh-site-main {
  min-height: 60vh;
}

.site-header {
  align-items: center;
  display: flex;
  height: 160px;
  padding: 0 var(--fh-edge) 10px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.header-placeholder {
  display: none;
}

.logo-wrap {
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0;
  width: 42.5%;
}

.logo {
  font-family: var(--fh-logo-font);
  font-size: 38px;
  font-stretch: 90%;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
  text-align: center;
  text-transform: uppercase;
}

.logo,
.logo a {
  color: var(--fh-logo);
}

.logo a:hover {
  color: var(--fh-white);
}

nav {
  float: left;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  width: 27.5%;
}

nav .gallery-title,
nav .page-title,
nav .project-title,
nav .link-title {
  display: inline-block;
  padding-left: 0;
  padding-right: 20px;
}

nav .gallery-title a,
nav .page-title a,
nav .project-title a,
nav .link-title a {
  color: var(--fh-white);
  display: block;
  font-family: var(--fh-ui-font);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}

nav .gallery-title a:hover,
nav .page-title a:hover,
nav .project-title a:hover,
nav .link-title a:hover,
nav .gallery-title a.active,
nav .page-title a.active,
nav .project-title a.active,
nav .link-title a.active {
  color: var(--fh-white);
}

.pf-nav-social {
  text-align: right;
  width: 30%;
}

.hamburger-click-area {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 30px var(--fh-mobile-edge);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-tap-highlight-color: transparent;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
}

.hamburger i {
  background: var(--fh-white);
  display: block;
  height: 2px;
  margin-bottom: 4px;
  width: 24px;
}

.hamburger i:last-child {
  margin-bottom: 0;
}

.responsive-nav {
  background: var(--fh-bg);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 50px var(--fh-mobile-edge) 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: visibility 0s ease 0.2s, opacity 0.2s ease;
  visibility: hidden;
  z-index: 99999;
}

.responsive-nav[hidden] {
  display: none !important;
}

.responsive-nav nav {
  float: none;
  margin: auto;
  max-width: 100%;
  width: 100%;
}

.responsive-nav .nav-container {
  width: 100%;
}

.responsive-nav .gallery-title,
.responsive-nav .page-title,
.responsive-nav .project-title,
.responsive-nav .link-title {
  display: block;
  padding: 0 0 30px;
  text-align: center;
}

.responsive-nav .gallery-title a,
.responsive-nav .page-title a,
.responsive-nav .project-title a,
.responsive-nav .link-title a {
  font-size: 22px;
  line-height: 32px;
}

.close-responsive-click-area {
  cursor: pointer;
  padding: 50px 6%;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent;
}

.close-responsive-button {
  height: 20px;
  position: fixed;
  right: var(--fh-mobile-edge);
  top: 40px;
  width: 20px;
}

.close-responsive-button::before,
.close-responsive-button::after {
  background: var(--fh-white);
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  width: 2px;
}

.close-responsive-button::before {
  transform: rotate(45deg);
}

.close-responsive-button::after {
  transform: rotate(-45deg);
}

.show-responsive-nav .responsive-nav {
  display: flex;
  opacity: 1;
  transition: visibility 0s ease, opacity 0.2s ease;
  visibility: visible;
}

.show-responsive-nav .responsive-nav nav {
  display: block;
}

.show-responsive-nav .site-header,
.show-responsive-nav .site-container {
  display: none;
}

.project-covers {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  width: 100%;
}

.project-cover {
  clear: none;
  display: block;
  float: left;
  overflow: hidden;
  position: relative;
  width: 50%;
}

.project-cover .cover-content-container {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.project-cover .cover-image-wrap {
  overflow: hidden;
  position: relative;
}

.project-cover .cover-image {
  position: relative;
  transform: translateZ(0);
  width: 100%;
}

.project-cover.hold-space .cover-image::before {
  content: "";
  display: block;
  padding-bottom: var(--fh-cover-ratio, 56.25%);
  width: 100%;
}

.project-cover .cover-image::after {
  background: var(--fh-white);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
}

.project-cover:hover .cover-image::after,
.project-cover.touch-hover .cover-image::after {
  opacity: 0.9;
}

.project-cover .cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.project-cover .cover__img {
  background: rgba(0, 0, 0, 0.03);
  height: calc(100% + 2px) !important;
  left: 50%;
  max-width: none !important;
  object-fit: cover;
  position: absolute !important;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px) !important;
}

.project-cover .cover__img.image-loaded {
  background: transparent;
}

.project-cover .details-wrap {
  height: 100%;
  left: 50%;
  opacity: 0;
  padding-bottom: 8%;
  padding-top: 8%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.15s ease;
  width: 100%;
}

.project-cover:hover .details-wrap,
.project-cover.touch-hover .details-wrap {
  opacity: 1;
}

.project-cover .details {
  align-items: center;
  background: rgba(255, 255, 255, 0);
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
}

.project-cover .details-inner {
  overflow: hidden;
  padding: 0 8%;
  width: 100%;
}

.project-cover .title,
.project-cover .date {
  clear: both;
  color: #222222;
  float: none;
  font-family: var(--fh-ui-font);
  font-style: normal;
  font-weight: 400;
  margin: auto;
  padding: 0;
  text-align: center;
  text-transform: none;
  width: 100%;
}

.project-cover .title {
  font-size: 24px;
  line-height: 26px;
}

.project-cover .date {
  font-size: 16px;
  line-height: 20px;
  padding-top: 10px;
}

.page-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}

.page {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.page-header {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}

.page-header .title,
.page-header .description,
.page-header .date,
.page-header .custom1,
.page-header .custom2 {
  margin: 0 auto;
}

.page-header .title {
  color: var(--fh-text);
  font-family: var(--fh-ui-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  padding-bottom: 20px;
  padding-top: 0;
  text-align: center;
  text-transform: none;
  width: 100%;
}

.page-header .description {
  color: var(--fh-muted);
  font-family: var(--fh-ui-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 20px;
  padding-top: 0;
  text-align: center;
  text-transform: none;
  white-space: pre-line;
  width: 100%;
  word-wrap: break-word;
}

.page img,
.page object {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.page-content {
  clear: both;
}

.page-content::after,
.project-module::after,
.other-projects::after {
  clear: both;
  content: "";
  display: table;
}

.project-module {
  clear: both;
  word-break: break-word;
}

.project-modules {
  width: 100%;
}

.standard-modules .image {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-bottom: 20px;
  padding-top: 0;
  width: 100%;
}

.standard-modules .video,
.standard-modules .embed {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-bottom: 40px;
  padding-top: 0;
  width: 100%;
}

.standard-modules .text {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding-bottom: 40px;
  padding-top: 20px;
  width: 100%;
}

.standard-modules .button {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.standard-modules .tree .tree-wrapper {
  display: flex;
}

.standard-modules .tree .tree-wrapper.valign-center {
  align-items: center;
}

.standard-modules .tree .tree-wrapper.valign-bottom {
  align-items: flex-end;
}

.standard-modules .tree .tree-child-wrapper {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  min-width: 1px;
}

.standard-modules .tree .tree-child-wrapper:first-child {
  border-left: 0;
}

.standard-modules .tree .tree-child-wrapper:last-child {
  border-right: 0;
}

.standard-modules .tree .project-module-text {
  max-width: 100%;
}

.fh-ratio-box {
  background: rgba(0, 0, 0, 0.03);
  height: 0;
  overflow: hidden;
  padding-bottom: var(--fh-ratio, 56.25%);
  position: relative;
  width: 100%;
}

.fh-ratio-box > img,
.fh-ratio-box > .fh-placeholder {
  height: 100%;
  inset: 0;
  margin: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.fh-placeholder {
  align-items: center;
  background: #d9d9d9;
  color: #333333;
  display: flex;
  justify-content: center;
  min-height: 120px;
  text-align: center;
}

.fh-embed {
  aspect-ratio: 16 / 9;
  background: #111111;
  width: 100%;
}

.fh-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.standard-modules .rich-text .title {
  color: var(--fh-white);
  font-family: var(--fh-ui-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  padding-bottom: 20px;
  padding-top: 0;
  text-align: center;
  text-transform: none;
}

.standard-modules .rich-text .sub-title {
  color: var(--fh-white);
  font-family: var(--fh-ui-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 30px;
  padding-top: 20px;
  text-align: center;
  text-transform: none;
}

.standard-modules .rich-text .main-text,
.standard-modules .rich-text div,
.standard-modules .rich-text p {
  color: var(--fh-copy);
  font-family: var(--fh-ui-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  padding-bottom: 20px;
  padding-top: 0;
  text-align: center;
  text-transform: none;
}

.standard-modules .rich-text a {
  color: var(--fh-caption);
  text-decoration: underline;
  text-transform: none;
}

.fh-bio-page .rich-text,
.fh-bio-page .rich-text div,
.fh-bio-page .rich-text p,
.fh-bio-page .rich-text span {
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
}

.fh-static-page .project-module-text,
.fh-static-page .rich-text,
.fh-static-page .rich-text .main-text,
.fh-static-page .rich-text div,
.fh-static-page .rich-text p,
.fh-static-page .rich-text span {
  font-family: var(--fh-fallback-font);
  font-stretch: normal;
}

.fh-bio-page .page-header .title {
  text-transform: uppercase;
}

.fh-bio-page .project-module-image {
  margin-bottom: 40px;
}

.button-container {
  margin: 0 auto;
  text-align: center;
}

.button-module {
  align-items: center;
  background: var(--fh-white);
  color: #222222;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--fh-ui-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  line-height: 18px;
  margin: 0 auto;
  max-width: 100%;
  min-height: 48px;
  overflow: hidden;
  padding: 15px 24px;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  word-break: keep-all;
}

.other-projects {
  padding-bottom: 0;
  padding-top: 100px;
  width: 100%;
}

.other-projects .title-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: left;
  width: 100%;
}

.other-projects-title {
  color: var(--fh-text);
  display: inline-block;
  font-family: var(--fh-ui-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
  margin-top: 0;
  text-transform: none;
}

.other-projects .project-covers {
  gap: 5px;
}

.other-projects .project-cover {
  margin-right: 0;
  width: calc(33.3333% - 3.3333px);
}

.other-projects .project-cover:nth-child(n + 4) {
  display: none;
}

.other-projects .project-cover .title {
  font-size: 22px;
  line-height: 24px;
}

.other-projects .project-cover .date {
  font-size: 16px;
  line-height: 20px;
}

.back-to-top {
  display: none;
}

.back-to-top-fixed {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  bottom: 30px;
  display: block;
  height: 60px;
  position: fixed;
  right: 30px;
  width: 60px;
  z-index: 3;
}

.back-to-top-fixed:hover {
  background: rgba(255, 255, 255, 0.2);
}

.icon-back-to-top {
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  height: 60px;
  left: 50%;
  line-height: 60px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}

.icon-back-to-top::before {
  content: "\2191";
}

.site-footer {
  clear: both;
  color: #555555;
  display: block;
  font-family: var(--fh-ui-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 50px 0;
  text-align: center;
  text-transform: none;
  width: 100%;
}

.site-footer a {
  color: #555555;
}

.footer-text {
  text-align: center;
}

.fh-footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

.fh-empty-note {
  color: var(--fh-copy);
  text-align: center;
}

@media (max-width: 932px) {
  nav {
    display: none;
    padding: 0;
    width: 100%;
  }

  .site-header {
    height: 160px;
    padding-bottom: 8px;
    padding-left: var(--fh-mobile-edge);
    padding-right: var(--fh-mobile-edge);
  }

  .logo-wrap {
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .logo {
    font-size: 33px;
    line-height: 30px;
    max-width: 100%;
    padding: 0 39px 0 0;
  }

  .hamburger-click-area {
    display: block;
  }

  .pf-nav-social {
    display: none;
  }

  main,
  .site-container {
    width: 100%;
  }

  .site-content {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .page-header {
    padding-left: var(--fh-mobile-edge);
    padding-right: var(--fh-mobile-edge);
    width: 100%;
  }

  .page-header .title {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 14px;
    width: 100%;
  }

  .page-header .description {
    font-size: 17px;
    line-height: 22px;
    padding-bottom: 14px;
    width: 100%;
  }

  .page-container {
    max-width: 100%;
  }

  .standard-modules .rich-text .title {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 14px;
  }

  .standard-modules .rich-text .sub-title {
    font-size: 18px;
    line-height: 23px;
    padding-bottom: 18px;
    padding-top: 14px;
  }

  .standard-modules .rich-text .main-text,
  .standard-modules .rich-text div,
  .standard-modules .rich-text p {
    font-size: 17px;
    line-height: 22px;
    padding-bottom: 14px;
  }

  .standard-modules .modules .image,
  .standard-modules .modules .video,
  .standard-modules .modules .embed,
  .standard-modules .modules .text {
    width: 100%;
  }

  .standard-modules .modules .button {
    padding: 14px var(--fh-mobile-edge);
  }

  .standard-modules .modules .image {
    padding-bottom: 14px;
  }

  .standard-modules .modules .video,
  .standard-modules .modules .embed {
    padding-bottom: 20px;
  }

  .standard-modules .modules .text {
    padding: 14px var(--fh-mobile-edge) 20px;
  }

  .other-projects .project-cover:nth-child(n + 3) {
    display: none;
  }

  .other-projects {
    padding-top: 40px;
  }

  .other-projects-title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 18px;
    padding-left: var(--fh-mobile-edge);
    padding-right: var(--fh-mobile-edge);
  }

  .other-projects .project-cover {
    width: calc(50% - 2.5px);
  }

  .other-projects .project-cover .title {
    font-size: 17px;
    line-height: 19px;
  }

  .other-projects .project-cover .date {
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
  }

  .back-to-top-fixed {
    display: none;
  }

  .site-footer {
    font-size: 14px;
    line-height: 20px;
    padding: 24px var(--fh-mobile-edge);
  }
}

@media (max-width: 540px) {
  .close-responsive-click-area {
    padding: 40px 10%;
  }

  .close-responsive-button {
    top: 30px;
  }

  .site-header {
    padding-bottom: 6px;
  }

  .logo {
    font-size: 23px;
    line-height: 20px;
  }

  .project-cover {
    width: 100%;
  }

  .project-cover .title {
    font-size: 15px;
    line-height: 16px;
  }

  .project-cover .date {
    font-size: 14px;
    line-height: 20px;
    padding-top: 7px;
  }

  .page-header .title {
    font-size: 19px;
    line-height: 22px;
    padding-bottom: 13px;
  }

  .page-header .description {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 13px;
  }

  .standard-modules .rich-text .title,
  .standard-modules .rich-text .title span {
    font-size: 19px !important;
    line-height: 22px !important;
  }

  .standard-modules .rich-text .sub-title,
  .standard-modules .rich-text .sub-title span {
    font-size: 15px !important;
    line-height: 19px !important;
  }

  .standard-modules .rich-text .main-text,
  .standard-modules .rich-text .main-text span,
  .standard-modules .rich-text div,
  .standard-modules .rich-text div span,
  .standard-modules .rich-text p,
  .standard-modules .rich-text p span {
    font-size: 14px !important;
    line-height: 18px !important;
  }

  .standard-modules .modules .image {
    padding-bottom: 13px;
  }

  .standard-modules .modules .video,
  .standard-modules .modules .embed {
    padding-bottom: 18px;
  }

  .standard-modules .modules .text {
    padding-bottom: 18px;
    padding-top: 13px;
  }

  .standard-modules .modules .tree .tree-wrapper {
    display: block;
  }

  .standard-modules .modules .tree .tree-child-wrapper {
    border-left: 0;
    border-right: 0;
    flex: none !important;
  }

  .other-projects .project-cover:nth-child(n + 2) {
    display: none;
  }

  .other-projects {
    padding-top: 34px;
  }

  .other-projects-title {
    font-size: 15px;
    line-height: 16px;
    margin-bottom: 16px;
  }

  .other-projects .project-cover {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 21px;
    padding-top: 21px;
  }
}
