@font-face {
  font-family: "Roboto";
  font-weight: 100;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-thin.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 100;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-thin-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-light-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-medium-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-bold-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: normal;
  src: url("/assets/fonts/roboto/roboto-black.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: italic;
  src: url("/assets/fonts/roboto/roboto-black-italic.ttf") format("truetype");
}
.hidden {
  display: none !important;
}

@media screen and (min-width: 780px) {
  .only-on-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 779px) {
  .hidden-on-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 779px) {
  .only-on-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 1320px) {
  .only-on-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 1319px) {
  .only-on-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 1320px) {
  .hidden-on-desktop {
    display: none !important;
  }
}

.italic {
  font-style: italic;
}

.zooms-in {
  transition: transform 0.3s ease;
}
.zooms-in:hover, .poster-wrapper .poster:hover .zooms-in.stylised-link-icon, .poster-wrapper .stylised-link:hover .poster.icon .zooms-in.stylised-link-icon, .stylised-link:hover .poster-wrapper .poster.icon .zooms-in.stylised-link-icon, .poster-wrapper .poster:hover .stylised-link .zooms-in.icon, .stylised-link .poster-wrapper .poster:hover .zooms-in.icon, .stylised-link:hover .zooms-in.icon {
  transform: scale(1.04);
}

.animates-into-view {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-into-view {
  opacity: 1;
  transform: none;
}

* {
  box-sizing: border-box;
}

html, body, p, h1, h2, h3, h4, h5, h6, input, textarea {
  padding: 0;
  margin: 0;
}

html {
  background-color: #060505;
  color: #F4F4F4;
  font-family: Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-width: 375px;
  max-width: 1800px;
  margin: 0 auto;
}

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

button, input[type=submit] {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}
button:disabled, input[type=submit]:disabled {
  cursor: default;
}

input[type=text], input[type=password], input[type=email], input[type=search], textarea, select {
  appearance: none;
  font-family: inherit;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #B9B9B9;
  border-radius: 0;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder, input[type=search]::placeholder, textarea::placeholder, select::placeholder {
  color: #B9B9B9;
}

.contrastHeading {
  line-height: 1;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.45px;
}
@media screen and (min-width: 780px) {
  .contrastHeading {
    font-size: 60px;
    letter-spacing: -0.75px;
  }
}
.contrastHeading.underlined {
  padding-bottom: 16px;
  border-bottom: 1px solid #B9B9B9;
}
@media screen and (min-width: 780px) {
  .contrastHeading.underlined {
    padding-bottom: 20px;
  }
}
.contrastHeading .minor {
  position: relative;
  top: -2px;
  margin-left: 5px;
  font-size: 18px;
  letter-spacing: 2px;
}
@media screen and (min-width: 780px) {
  .contrastHeading .minor {
    font-size: 28px;
    margin-left: 10px;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 779px) {
  .project-list {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .project-list::-webkit-scrollbar {
    display: none;
  }
}
.project-list > .content, .project-list > .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 216px);
  column-gap: 20px;
}
@media screen and (min-width: 780px) {
  .project-list > .content, .project-list > .grid-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media screen and (min-width: 1320px) {
  .project-list > .content, .project-list > .grid-container {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
  }
}
.project-list .project {
  display: block;
}
.project-list .project .image {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.project-list .project .image img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.project-list .project .info .type {
  line-height: 1;
  margin-top: 10px;
  color: #7F7F7F;
  font-size: 14px;
  text-transform: uppercase;
}
.project-list .project .info .title {
  line-height: 1;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 780px) {
  .article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1320px) {
  .article-list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
  }
}
.article-list .article {
  display: block;
}
@media screen and (max-width: 779px) {
  .article-list .article:not(:first-of-type) {
    margin-top: 30px;
  }
}
.article-list .article .cover {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 66%;
}
.article-list .article .cover img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.article-list .article .info {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.article-list .article .info .date {
  letter-spacing: 1.17px;
  color: #7F7F7F;
}
.article-list .article .info .type {
  text-transform: uppercase;
}
.article-list .article .title {
  line-height: 1.4;
  font-size: 16px;
  margin-top: 10px;
}

.stylised-link-icon, .stylised-link .icon {
  width: 50px;
  height: 50px;
  background-color: #F4F4F4;
  transition: background-color 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 780px) {
  .stylised-link-icon, .stylised-link .icon {
    width: 60px;
    height: 60px;
  }
}
.stylised-link-icon:hover, .poster-wrapper .poster:hover .stylised-link-icon, .poster-wrapper .stylised-link:hover .poster.icon .stylised-link-icon, .stylised-link:hover .poster-wrapper .poster.icon .stylised-link-icon, .stylised-link .icon:hover, .poster-wrapper .poster:hover .stylised-link .icon, .stylised-link .poster-wrapper .poster:hover .icon, .poster-wrapper .stylised-link:hover .poster.icon .icon, .stylised-link:hover .poster-wrapper .poster.icon .icon, .stylised-link:hover .icon {
  background-color: #060505;
}
.stylised-link-icon:hover svg, .poster-wrapper .poster:hover .stylised-link-icon svg, .poster-wrapper .stylised-link:hover .poster.icon .stylised-link-icon svg, .stylised-link:hover .poster-wrapper .poster.icon .stylised-link-icon svg, .stylised-link .icon:hover svg, .poster-wrapper .poster:hover .stylised-link .icon svg, .stylised-link .poster-wrapper .poster:hover .icon svg, .poster-wrapper .stylised-link:hover .poster.icon .icon svg, .stylised-link:hover .poster-wrapper .poster.icon .icon svg, .stylised-link:hover .icon svg {
  color: #F4F4F4;
}
.stylised-link-icon svg, .stylised-link .icon svg {
  width: 22px;
  height: 22px;
  color: #060505;
  transition: color 0.4s ease;
}

.stylised-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.stylised-link.underlined {
  border-bottom: 2px solid #F4F4F4;
}
.stylised-link.large {
  display: flex;
}
@media screen and (min-width: 780px) {
  .stylised-link.large {
    width: 460px;
  }
}
@media screen and (min-width: 1320px) {
  .stylised-link.large {
    width: 430px;
  }
}
.stylised-link.large .text {
  font-size: 18px;
}
@media screen and (min-width: 780px) {
  .stylised-link.large .text {
    font-size: 24px;
  }
}
.stylised-link.small .text {
  font-size: 14px;
}
@media screen and (min-width: 780px) {
  .stylised-link.small .icon {
    width: 50px;
    height: 50px;
  }
}
.stylised-link .text {
  margin-right: 20px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1320px) {
  .stylised-link .text {
    font-size: 24px;
  }
}
.poster-wrapper {
  position: relative;
}
.poster-wrapper .poster {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding-bottom: 65.7894736842%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1319px) {
  .poster-wrapper .poster {
    background-size: 130%;
    background-position: 80% 100%;
  }
}
.poster-wrapper .poster > .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  padding-top: 20px;
}
@media screen and (min-width: 780px) {
  .poster-wrapper .poster > .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.poster-wrapper .poster .title, .poster-wrapper .poster .slogan {
  font-weight: 500;
  white-space: nowrap;
}
.poster-wrapper .poster .title {
  line-height: 1.25;
  color: #060505;
  font-size: 24px;
}
.poster-wrapper .poster .slogan {
  position: absolute;
  bottom: 20px;
  line-height: 1;
  color: #F4F4F4;
  font-size: 32px;
  letter-spacing: -0.7px;
}
@media screen and (min-width: 1320px) {
  .poster-wrapper .poster .slogan {
    line-height: 1.2;
    font-size: 44px;
  }
}
.poster-wrapper .poster .stylised-link-icon, .poster-wrapper .poster .stylised-link .icon, .stylised-link .poster-wrapper .poster .icon {
  position: absolute;
  right: 0;
  bottom: 0;
}

.content {
  position: relative;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 780px) {
  .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1320px) {
  .content {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.content.full {
  padding-left: 0;
  padding-right: 0;
}

header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.2s ease;
}
header.dismissed {
  transform: translateY(-100%);
}
header.dark .section {
  background-color: #060505 !important;
}
header.dark .section.head svg {
  filter: invert(100%);
}
header.dark .section.tail button {
  color: #F4F4F4 !important;
}
header.in-menu .section {
  background-color: #060505 !important;
}
header.in-menu .section.head {
  top: 45px;
  left: 20px;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 780px) {
  header.in-menu .section.head {
    left: 40px;
  }
}
@media screen and (min-width: 1320px) {
  header.in-menu .section.head {
    left: 45px;
  }
}
header.in-menu .section.head svg {
  filter: none;
}
header.in-menu .section.tail button {
  color: #F4F4F4 !important;
}
header .section {
  position: relative;
  height: 60px;
  background-color: #F4F4F4;
  transition: background-color 0.2s ease;
}
header .section.head {
  top: 0;
  left: 0;
  width: 60px;
  transition: top 0.4s ease, left 0.4s ease, width 0.4s ease, height 0.4s ease;
}
header .section.head svg {
  height: 100%;
  width: 100%;
  transition: filter 0.3s ease 0.1s;
}
header .section.tail {
  padding: 0 13px;
  display: flex;
  align-items: center;
}
header .section.tail form.search {
  position: fixed;
  top: 0;
  height: 60px;
  left: 0;
  width: calc(100% - 110px);
  padding-left: 20px;
  background-color: inherit;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
}
header .section.tail form.search.shown {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}
@media screen and (min-width: 780px) {
  header .section.tail form.search {
    position: absolute;
    height: 100%;
    left: auto;
    right: 100%;
    width: 390px;
  }
}
header .section.tail form.search input {
  width: 100%;
  line-height: 2;
  border: none;
  font-size: 16px;
}
header .section.tail button {
  width: 40px;
  height: 40px;
  color: #060505;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .section.tail button:not(:first-of-type) {
  margin-left: 4px;
}
header .section.tail button.search svg {
  width: 30px;
  height: 30px;
}
header .section.tail button.menu svg, header .section.tail button.close svg {
  width: 20px;
  height: 20px;
}

#menu, #search-results {
  z-index: 10;
  position: fixed;
  left: 100%;
  transition: left 0.2s ease;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: #060505;
}
#menu.shown, #search-results.shown {
  left: 0;
}

#menu {
  padding-top: 115px;
}
@media screen and (min-width: 780px) {
  #menu {
    padding-top: 125px;
  }
}
#menu > .content {
  height: 100%;
}
#menu > .content h2 {
  color: #F4F4F4;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.38px;
}
@media screen and (min-width: 780px) {
  #menu > .content h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
}
#menu > .content nav {
  overflow-y: auto;
  max-height: calc(100vh - 277px);
  margin-top: 44px;
}
@media screen and (min-width: 780px) {
  #menu > .content nav {
    max-height: calc(100vh - 420px);
    margin-top: 98px;
  }
}
@media screen and (min-width: 1320px) {
  #menu > .content nav {
    max-height: calc(100vh - 400px);
  }
}
#menu > .content nav .link {
  width: 224px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (min-width: 780px) {
  #menu > .content nav .link {
    width: 286px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1320px) {
  #menu > .content nav .link {
    width: 276px;
  }
}
#menu > .content nav .link.on .text, #menu > .content nav .link:hover .text, #menu > .content nav .stylised-link:hover .link.icon .text, .stylised-link:hover #menu > .content nav .link.icon .text, #menu > .content nav .poster-wrapper .poster:hover .link.stylised-link-icon .text, .poster-wrapper .poster:hover #menu > .content nav .link.stylised-link-icon .text, #menu > .content nav .poster-wrapper .stylised-link:hover .poster.icon .link.stylised-link-icon .text, .poster-wrapper .stylised-link:hover .poster.icon #menu > .content nav .link.stylised-link-icon .text, #menu > .content nav .stylised-link:hover .poster-wrapper .poster.icon .link.stylised-link-icon .text, .stylised-link:hover .poster-wrapper .poster.icon #menu > .content nav .link.stylised-link-icon .text, #menu > .content nav .poster-wrapper .poster:hover .stylised-link .link.icon .text, .poster-wrapper .poster:hover .stylised-link #menu > .content nav .link.icon .text, #menu > .content nav .stylised-link .poster-wrapper .poster:hover .link.icon .text, .stylised-link .poster-wrapper .poster:hover #menu > .content nav .link.icon .text {
  color: #F4F4F4;
}
#menu > .content nav .link .text {
  color: #7F7F7F;
}
#menu > .content nav .link .text.main {
  line-height: 1.9;
  font-size: 28px;
  letter-spacing: -0.61px;
}
@media screen and (min-width: 780px) {
  #menu > .content nav .link .text.main {
    line-height: 1.2;
    font-size: 46px;
    letter-spacing: -1px;
  }
}
#menu > .content nav .link .text.minor {
  position: relative;
  top: -1px;
  font-size: 18px;
  letter-spacing: 6px;
}
@media screen and (min-width: 780px) {
  #menu > .content nav .link .text.minor {
    top: -2px;
  }
}
#menu > .content .language-switch {
  position: absolute;
  bottom: 40px;
}
@media screen and (min-width: 1320px) {
  #menu > .content .language-switch {
    bottom: 45px;
  }
}
#menu > .content .language-switch .language {
  padding: 0 8px 0 11px;
  font-size: 16px;
  color: #7F7F7F;
  letter-spacing: -0.33px;
}
#menu > .content .language-switch .language:first-of-type {
  padding-left: 0;
}
#menu > .content .language-switch .language:not(:first-of-type) {
  border-left: 1px solid #F4F4F4;
}
#menu > .content .language-switch .language.on {
  color: #F4F4F4;
}

#search-results {
  z-index: 1000;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 40px 0;
}
#search-results .button-wrapper {
  display: flex;
  justify-content: end;
}
#search-results .button-wrapper button.close {
  position: relative;
  left: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#search-results .button-wrapper button.close svg {
  width: 20px;
  height: auto;
}
#search-results .caption-wrapper {
  margin-top: 120px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B9B9B9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 780px) {
  #search-results .caption-wrapper {
    padding-bottom: 15px;
  }
}
#search-results .caption-wrapper .caption {
  color: #B9B9B9;
  font-size: 16px;
  letter-spacing: -0.2px;
}
@media screen and (min-width: 780px) {
  #search-results .caption-wrapper .caption {
    font-size: 24px;
    letter-spacing: -0.3px;
  }
}
#search-results .caption-wrapper .caption .keyword {
  margin: 0 4px;
  color: #F4F4F4;
}
#search-results .caption-wrapper .icon {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 779px) {
  #search-results .caption-wrapper .icon {
    position: relative;
    top: -2px;
  }
}
#search-results .caption-wrapper .icon svg {
  display: block;
  width: 100%;
  height: auto;
}
#search-results .dynamic-content {
  margin-top: 40px;
}
@media screen and (min-width: 780px) {
  #search-results .dynamic-content > .content, #search-results .dynamic-content > .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1320px) {
  #search-results .dynamic-content > .content, #search-results .dynamic-content > .grid-container {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 48px;
  }
}
@media screen and (max-width: 779px) {
  #search-results .dynamic-content .project:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 780px) {
  #search-results .dynamic-content .project.wide {
    grid-column: span 2;
  }
  #search-results .dynamic-content .project.wide .cover {
    padding-bottom: calc(50% - 10px);
  }
}
@media screen and (min-width: 1320px) {
  #search-results .dynamic-content .project.wide .cover {
    padding-bottom: calc(50% - 15px);
  }
}
#search-results .dynamic-content .project .cover {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 780px) {
  #search-results .dynamic-content .project .cover {
    padding-bottom: 100%;
  }
}
#search-results .dynamic-content .project .cover img {
  width: 100%;
}
@media screen and (min-width: 780px) {
  #search-results .dynamic-content .project .cover img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
  }
}
#search-results .dynamic-content .project .type {
  margin-top: 10px;
  line-height: 1;
  color: #7F7F7F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.17px;
}
#search-results .dynamic-content .project .title {
  line-height: 1;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

footer {
  padding-top: 30px;
  padding-bottom: 40px;
  color: #7F7F7F;
}
@media screen and (min-width: 780px) {
  footer {
    padding-top: 40px;
  }
}
footer nav {
  line-height: 1;
  display: flex;
  flex-direction: row;
}
footer .link:hover, footer .stylised-link:hover .link.icon, .stylised-link:hover footer .link.icon, footer .poster-wrapper .poster:hover .link.stylised-link-icon, .poster-wrapper .poster:hover footer .link.stylised-link-icon, footer .poster-wrapper .stylised-link:hover .poster.icon .link.stylised-link-icon, .poster-wrapper .stylised-link:hover .poster.icon footer .link.stylised-link-icon, footer .stylised-link:hover .poster-wrapper .poster.icon .link.stylised-link-icon, .stylised-link:hover .poster-wrapper .poster.icon footer .link.stylised-link-icon, footer .poster-wrapper .poster:hover .stylised-link .link.icon, .poster-wrapper .poster:hover .stylised-link footer .link.icon, footer .stylised-link .poster-wrapper .poster:hover .link.icon, .stylised-link .poster-wrapper .poster:hover footer .link.icon {
  color: #F4F4F4;
}
@media screen and (min-width: 780px) {
  footer .logo-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}
@media screen and (min-width: 1320px) {
  footer .logo-links {
    justify-content: start;
  }
}
footer .logo-links .logo {
  display: block;
  height: 40px;
  color: #F4F4F4;
}
@media screen and (min-width: 780px) {
  footer .logo-links .logo {
    height: 50px;
  }
}
@media screen and (min-width: 1320px) {
  footer .logo-links .logo {
    margin-right: 150px;
  }
}
footer .logo-links .logo svg {
  height: 100%;
  width: auto;
}
footer .logo-links nav.main {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4.38px;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 779px) {
  footer .logo-links nav.main {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1320px) {
  footer .logo-links nav.main {
    font-size: 16px;
  }
}
@media screen and (min-width: 780px) {
  footer .logo-links nav.main .link:not(:first-child) {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1320px) {
  footer .logo-links nav.main .link:not(:first-child) {
    margin-left: 75px;
  }
}
@media screen and (min-width: 780px) {
  footer .minor-content {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}
@media screen and (min-width: 780px) {
  footer .minor-content .group {
    display: flex;
  }
}
footer .minor-content .group .social-media {
  color: #B9B9B9;
  display: flex;
  flex-direction: row;
  align-items: end;
}
@media screen and (max-width: 779px) {
  footer .minor-content .group .social-media {
    position: absolute;
    top: 0;
    right: 20px;
  }
}
@media screen and (min-width: 780px) {
  footer .minor-content .group .social-media {
    position: relative;
    top: 3px;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1320px) {
  footer .minor-content .group .social-media {
    margin-right: 278px;
  }
}
footer .minor-content .group .social-media .icon {
  width: 25px;
}
footer .minor-content .group .social-media .icon:not(:first-child) {
  margin-left: 30px;
}
footer .minor-content .group .social-media .icon.wechat {
  position: relative;
}
footer .minor-content .group .social-media .icon.wechat:hover .popup, footer .minor-content .group .social-media .stylised-link:hover .icon.wechat .popup, .stylised-link:hover footer .minor-content .group .social-media .icon.wechat .popup, footer .minor-content .group .social-media .poster-wrapper .poster:hover .icon.wechat.stylised-link-icon .popup, .poster-wrapper .poster:hover footer .minor-content .group .social-media .icon.wechat.stylised-link-icon .popup, footer .minor-content .group .social-media .poster-wrapper .poster:hover .stylised-link .icon.wechat .popup, .poster-wrapper .poster:hover .stylised-link footer .minor-content .group .social-media .icon.wechat .popup, footer .minor-content .group .social-media .stylised-link .poster-wrapper .poster:hover .icon.wechat .popup, .stylised-link .poster-wrapper .poster:hover footer .minor-content .group .social-media .icon.wechat .popup {
  display: block;
}
footer .minor-content .group .social-media .icon.wechat .popup {
  content: "";
  display: none;
  position: absolute;
  bottom: calc(100% + 15px);
  left: calc(50% - 41px);
  width: 82px;
  height: 82px;
  border-color: white;
}
footer .minor-content .group .social-media .icon.wechat .popup img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: contain;
}
footer .minor-content .group .social-media .icon svg {
  display: block;
  width: 100%;
  height: auto;
}
footer .minor-content .group nav.minor {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15px;
  justify-content: start;
  align-items: end;
}
@media screen and (max-width: 779px) {
  footer .minor-content .group nav.minor {
    margin-top: 70px;
  }
}
footer .minor-content .group nav.minor .link:not(:first-child) {
  margin-left: 41px;
}
@media screen and (min-width: 780px) {
  footer .minor-content .group nav.minor .link:not(:first-child) {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1320px) {
  footer .minor-content .group nav.minor .link:not(:first-child) {
    margin-left: 90px;
  }
}
footer .minor-content .info {
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 779px) {
  footer .minor-content .info {
    margin-top: 30px;
  }
}
@media screen and (min-width: 780px) {
  footer .minor-content .info .copyright {
    margin-right: 52px;
  }
}

body {
  overflow: auto;
}

section {
  background-color: #060505;
}

section.cover {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 530px;
  padding-top: 200px;
  transition: opacity 0.1s ease;
}
@media screen and (min-width: 780px) {
  section.cover {
    min-height: 640px;
  }
}
section.cover .background-image-container {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
}
section.cover .background-image-container .slide {
  display: block;
  width: 100%;
  height: 100%;
}
section.cover .background-image-container .slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 779px) {
  section.cover .background-image-container .slide > .title {
    display: none;
  }
}
@media screen and (min-width: 780px) {
  section.cover .background-image-container .slide > .title {
    position: absolute;
    bottom: 42px;
    right: 40px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1320px) {
  section.cover .background-image-container .slide > .title {
    right: 45px;
  }
}
section.cover .background-image-container .flickity-page-dots {
  position: absolute;
  bottom: 20px;
}
@media screen and (min-width: 780px) {
  section.cover .background-image-container .flickity-page-dots {
    padding-left: 30px;
    bottom: 42px;
    text-align: left;
  }
}
@media screen and (min-width: 1320px) {
  section.cover .background-image-container .flickity-page-dots {
    padding-left: 35px;
  }
}
section.cover .background-image-container .flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 10px;
  background-color: #8A8A8A;
  border-radius: 0;
  opacity: 1;
}
section.cover .background-image-container .flickity-page-dots .dot.is-selected {
  background: white;
}
section.cover > .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
@media screen and (min-width: 780px) {
  section.cover > .title {
    align-items: normal;
    padding-left: 22vw;
  }
}
@media screen and (min-width: 1320px) {
  section.cover > .title {
    padding-left: 27vw;
  }
}
@keyframes cover-title-1 {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes cover-title-2 {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes cover-title-3 {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
section.cover > .title.animated {
  animation: 0.4s 0s cover-title-1 forwards;
}
section.cover > .title.animated h1 > span {
  animation: 0.6s 0.3s cover-title-2 forwards;
}
section.cover > .title.animated h2 {
  animation: 0.5s 0.4s cover-title-3 forwards;
}
section.cover > .title h1, section.cover > .title h2 {
  font-weight: 600;
}
section.cover > .title h1 {
  line-height: 32px;
  padding-left: 10px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.45px;
  border-left: 2px solid #F4811F;
}
@media screen and (min-width: 780px) {
  section.cover > .title h1 {
    line-height: 1;
    padding-left: 15px;
    font-size: 60px;
    letter-spacing: -0.75px;
  }
}
section.cover > .title h1 > span {
  display: block;
  opacity: 0;
}
section.cover > .title h2 {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 1.7px;
  opacity: 0;
}
@media screen and (max-width: 779px) {
  section.cover > .title h2 {
    padding-right: 24px;
  }
}
@media screen and (min-width: 780px) {
  section.cover > .title h2 {
    font-size: 24px;
    letter-spacing: 3.5px;
  }
}
section.cover > .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 68px;
}
@media screen and (min-width: 780px) {
  section.cover > .bottom {
    bottom: 40px;
  }
}
@media screen and (max-width: 779px) {
  section.cover > .bottom > .content {
    display: flex;
    justify-content: center;
  }
}
section.cover > .bottom > .content .scroll-instruction {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.1px;
}
@media screen and (min-width: 780px) {
  section.cover > .bottom > .content .scroll-instruction {
    margin-left: max(180px, 22vw - 40px);
  }
}
@media screen and (min-width: 1320px) {
  section.cover > .bottom > .content .scroll-instruction {
    margin-left: calc(27vw - 45px);
  }
}
section.cover > .bottom > .content .scroll-instruction svg {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -1px;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  transform: rotate(90deg);
}

section.motto {
  padding-top: 60px;
}
@media screen and (min-width: 780px) {
  section.motto {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1320px) {
  section.motto {
    padding-top: 100px;
  }
}
@media screen and (min-width: 780px) {
  section.motto > .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}
@media screen and (max-width: 779px) {
  section.motto p + p {
    margin-top: 30px;
  }
}
section.motto p.prominent {
  line-height: 1.2;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.45px;
}
@media screen and (min-width: 780px) {
  section.motto p.prominent {
    width: 66%;
    font-size: 40px;
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 1320px) {
  section.motto p.prominent {
    line-height: 1.1;
    font-size: 46px;
    letter-spacing: -0.57px;
  }
  section.motto p.prominent:first-of-type {
    width: 62%;
  }
  section.motto p.prominent:not(:first-of-type) {
    width: 74%;
  }
}
section.motto p.minor {
  line-height: 2;
  font-size: 16px;
}
@media screen and (min-width: 780px) {
  section.motto p.minor {
    letter-spacing: -1px;
  }
  section.motto p.minor:not(:first-of-type) {
    width: 31%;
  }
  section.motto p.minor:first-of-type {
    width: 22%;
  }
}
@media screen and (min-width: 1320px) {
  section.motto p.minor {
    letter-spacing: normal;
  }
  section.motto p.minor:not(:first-of-type) {
    width: 32%;
    padding-right: 9%;
  }
  section.motto p.minor:first-of-type {
    width: 23%;
  }
}

section.articles {
  padding-top: 60px;
  padding-bottom: 20px;
}
@media screen and (min-width: 780px) {
  section.articles {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1320px) {
  section.articles {
    padding-top: 100px;
  }
}

section.projects {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 780px) {
  section.projects {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1320px) {
  section.projects {
    padding-top: 100px;
  }
}
@media screen and (max-width: 779px) {
  section.projects .spotlight > .content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1320px) {
  section.projects .spotlight > .content {
    display: grid;
    grid-template-columns: auto 450px;
    column-gap: 30px;
  }
}
section.projects .spotlight .image {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}
section.projects .spotlight .image img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 780px) {
  section.projects .spotlight .info > .content {
    padding-left: 0;
    padding-right: 0;
  }
}
section.projects .spotlight .info .caption {
  line-height: 1;
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (min-width: 1320px) {
  section.projects .spotlight .info .caption {
    margin-top: 0;
  }
}
section.projects .spotlight .info .title {
  line-height: 1.4;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 780px) {
  section.projects .spotlight .info .title {
    line-height: 1.5;
    margin-top: 20px;
    font-size: 24px;
  }
}
section.projects .project-list {
  padding-top: 60px;
}
@media screen and (min-width: 780px) {
  section.projects .project-list {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1320px) {
  section.projects .project-list {
    padding-top: 40px;
  }
}
section.projects .stylised-link {
  margin-top: 60px;
}
@media screen and (min-width: 780px) {
  section.projects .stylised-link {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1320px) {
  section.projects .stylised-link {
    margin-top: 100px;
  }
}

section.about {
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 780px) {
  section.about {
    padding-top: 60px;
  }
}
section.about .background-mask {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(6, 5, 5, 0.5);
}
@media screen and (min-width: 780px) {
  section.about > .content {
    width: 460px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1320px) {
  section.about > .content {
    width: 430px;
  }
}
section.about h3 {
  line-height: 1;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.78px;
}
@media screen and (min-width: 780px) {
  section.about h3 {
    font-size: 40px;
    letter-spacing: -0.87px;
  }
}
section.about p {
  margin-top: 20px;
  line-height: 2;
  font-size: 16px;
}
@media screen and (min-width: 780px) {
  section.about p {
    margin-top: 30px;
  }
}
section.about .link-wrapper {
  text-align: right;
}
@media screen and (min-width: 1320px) {
  section.about .link-wrapper {
    text-align: left;
  }
}
section.about .link-wrapper .stylised-link {
  margin-top: 160px;
}
@media screen and (min-width: 780px) {
  section.about .link-wrapper .stylised-link {
    margin-top: 220px;
  }
}
@media screen and (min-width: 1320px) {
  section.about .link-wrapper .stylised-link {
    margin-top: 190px;
  }
}

section.recruitment {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #B9B9B9;
  color: #060505;
}
@media screen and (min-width: 780px) {
  section.recruitment > .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}
@media screen and (min-width: 780px) {
  section.recruitment .slogan-link {
    width: 50%;
    height: 320px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
section.recruitment .slogan-link h3 {
  line-height: 1.25;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.33px;
}
@media screen and (min-width: 780px) {
  section.recruitment .slogan-link h3 {
    line-height: 1.2;
    font-size: 36px;
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 1320px) {
  section.recruitment .slogan-link h3 {
    max-width: 500px;
  }
}
@media screen and (max-width: 779px) {
  section.recruitment .slogan-link .link-wrapper {
    text-align: right;
  }
}
section.recruitment .slogan-link .link-wrapper .stylised-link {
  margin-top: 90px;
}
@media screen and (min-width: 780px) {
  section.recruitment .slogan-link .link-wrapper .stylised-link {
    margin-top: 0;
  }
}
@media screen and (min-width: 780px) {
  section.recruitment .poster-wrapper {
    width: 50%;
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
  }
}
section.recruitment .poster-wrapper .poster-width {
  width: 100%;
  max-width: 486px;
}
@media screen and (max-width: 779px) {
  section.recruitment .poster-wrapper .poster-width .poster {
    margin-top: 20px;
  }
}

footer {
  background-color: #060505;
}
