/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.menu-container {
  background: #111;
  height: 80px;
  line-height: 80px;
  padding: 0 30px;
  position: relative;
  z-index: 100;
  overflow-y: visible;
  overflow-x: clip;
}
.menu-container::after {
  display: table;
  content: "";
  clear: both;
}
#main-menu {
  margin: 0;
  padding: 0;
  float: none;
  width: 100%;
  position: absolute;
  right: 0;
  opacity: 0;
  background: linear-gradient(to bottom, #000, #111);
  height: 100vh;
  z-index: 100;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 600px) {
  #main-menu {
    width: 300px;
  }
}
#main-menu.active {
  display: inline-block;
}
.logo {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}
#main-menu li a, #main-menu li a:active, #main-menu li a:visited, #main-menu li a:hover {
  text-decoration: none;
  color: #fff;
  user-select: none;
}
#main-menu li a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 12px;
}
@media screen and (min-width: 400px) {
  #main-menu li a {
    padding: 0 20px;
  }
}
@media screen and (min-width: 750px) {
  #main-menu li a {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1100px) {
  #main-menu li a {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1400px) {
  #main-menu li a {
    padding: 0 20px;
  }
}
#main-menu li:last-child a {
  padding-right: 0;
}
#menu-toggle {
  display: none;
}
.menu-toggle-open, .menu-toggle-closed {
  width: 25px;
}
#show-menu {
  float: right;
}
@media screen and (max-width: 1100px) {
  #main-menu {
    opacity: 0;
    transition: opacity 0.2s, transform 1s;
    transform: translateX(20vw);
  }
  #menu-toggle:checked ~ .menu-container #main-menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }
}
.menu-button {
  width: 40px;
  height: 40px;
  position: relative;
  display: inline-block;
  float: right;
  margin-top: 20px;
}
.bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.bar.middle {
  top: 15px;
  opacity: 1;
}
.bar.bottom {
  top: 30px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
#menu-toggle:checked ~ .menu-container .menu-button .bar.top {
  width: 56px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-container .menu-button .bar.middle {
  opacity: 0;
}
#menu-toggle:checked ~ .menu-container .menu-button .bar.bottom {
  width: 56px;
  top: 40px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 1100px) {
  .menu-activator {
    display: none;
  }
  #main-menu {
    display: block;
    background: transparent;
    pointer-events: all;
  }
  #main-menu {
    float: right;
    width: auto;
    position: static;
    opacity: 1;
    height: auto;
  }
  #main-menu li {
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid transparent;
    transition: border 1s ease-in-out;
    height: 80px;
    box-sizing: border-box;
  }
  #main-menu li:hover {
    background: linear-gradient(to top, #0e0e0e, #111);
  }
  #main-menu li.current-menu-item {
    border-bottom: 1px solid #222;
  }
  .menu-button {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .menu-bg {
    opacity: 0;
    transition: opacity 0.9s ease-out;
  }
  #menu-toggle:checked ~ .menu-bg {
    background: rgba(20, 20, 20, 0.9);
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 1;
  }
}
@font-face {
  font-family: "Alright Sans Web";
  font-weight: 400;
  /* Normal weight */
  font-style: normal;
  font-display: auto;
  src: url("//fastly-cloud.typenetwork.com/projects/4984/1c75_4066_baa6e6f83f_636d.woff2?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff2"), url("//fastly-cloud.typenetwork.com/projects/4984/1c75_4066_baa6e6f83f_636d.woff?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff");
}
@font-face {
  font-family: "Alright Sans Web";
  font-weight: 100;
  /* Extra Thin weight */
  font-style: normal;
  font-display: auto;
  src: url("//fastly-cloud.typenetwork.com/projects/4984/1c7b_4060_baa6e6f83f_636e.woff2?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff2"), url("//fastly-cloud.typenetwork.com/projects/4984/1c7b_4060_baa6e6f83f_636e.woff?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff");
}
@font-face {
  font-family: "Alright Sans Web";
  font-weight: 800;
  /* Black weight */
  font-style: normal;
  font-display: auto;
  src: url("//fastly-cloud.typenetwork.com/projects/4984/1c70_405c_baa6e6f83f_636f.woff2?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff2"), url("//fastly-cloud.typenetwork.com/projects/4984/1c70_405c_baa6e6f83f_636f.woff?2e279fb0eb4b717b566a4d4344e195a86ed9643a") format("woff");
}
html, body {
  font-family: "Alright Sans Web", "Alright Sans", "Open Sans", "Alright Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 140%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 450px) {
  html, body {
    font-size: 15px;
    line-height: 140%;
  }
}
@media screen and (min-width: 750px) {
  html, body {
    font-size: 15.5px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1100px) {
  html, body {
    font-size: 16px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1400px) {
  html, body {
    font-size: 17px;
    line-height: 140%;
  }
}
.press-box-date {
  color: #fff;
}
p, p.p4 {
  font-size: 1rem;
  line-height: 150%;
}
p.p5, .p5 {
  font-size: 0.8rem;
  line-height: 150%;
}
p.p3, .p3 {
  font-size: 1.5rem;
  line-height: 150%;
  max-width: 1000px;
  text-wrap: balance;
}
p.p2, .p2 {
  font-size: 2rem;
  line-height: 150%;
  max-width: 1100px;
  text-wrap: balance;
}
p.p1, .p1 {
  font-size: 2.5rem;
  line-height: 150%;
  max-width: 1200px;
  text-wrap: balance;
  color: #fff;
}
.project-name:before {
  content: "";
  width: 0px;
  display: inline-block;
  margin-right: 0px;
  border-top: 1px solid #fff;
  height: 4px;
  transition: width 0.7s 0.1s ease-in, margin 0.7s 0.1s ease-in;
}
a.project:hover .project-name:before {
  transition: width 0.3s 0.3s ease-in, margin 0.3s 0.3s ease-in;
  width: 20px;
  display: inline-block;
  margin-right: 8px;
}
.project-name, .project-location, small {
  font-size: 0.7rem;
  line-height: 130%;
}
h1, h2, h3, .h1, .h2, .h3 {
  font-family: "Prata", "Georgia", serif;
  letter-spacing: 0.03rem;
  color: #fff;
  max-width: 750px;
  text-wrap: balance;
  color: #fff;
  font-weight: 400;
}
h1, .h1 {
  font-size: 2rem;
  line-height: 120%;
  margin-top: -0.3rem;
}
@media screen and (min-width: 450px) {
  h1, .h1 {
    font-size: 2.2rem;
    line-height: 120%;
    margin-top: -0.35rem;
  }
}
@media screen and (min-width: 750px) {
  h1, .h1 {
    font-size: 2.4rem;
    line-height: 120%;
    margin-top: -0.4rem;
  }
}
@media screen and (min-width: 1100px) {
  h1, .h1 {
    font-size: 2.8rem;
    margin-top: -0.45rem;
    line-height: 120%;
  }
}
@media screen and (min-width: 1400px) {
  h1, .h1 {
    font-size: 3rem;
    margin-top: -0.5rem;
    line-height: 120%;
  }
}
h2, .h2 {
  font-size: 1.4rem;
  line-height: 115%;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 450px) {
  h2, .h2 {
    font-size: 1.5rem;
    line-height: 115%;
  }
}
@media screen and (min-width: 750px) {
  h2, .h2 {
    font-size: 1.6rem;
    line-height: 115%;
  }
}
@media screen and (min-width: 1100px) {
  h2, .h2 {
    font-size: 1.7rem;
    line-height: 115%;
  }
}
@media screen and (min-width: 1400px) {
  h2, .h2 {
    font-size: 1.8rem;
    line-height: 115%;
  }
}
h3, .h3 {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 450px) {
  h3, .h3 {
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (min-width: 750px) {
  h3, .h3 {
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (min-width: 1100px) {
  h3, .h3 {
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (min-width: 1400px) {
  h3, .h3 {
    font-size: 1rem;
    line-height: 140%;
  }
}
h3:not(.no-line)::before, .h3:not(.no-line)::before {
  display: block;
  width: 1.4444444444vw;
  transition: width 0.3s ease-in-out, margin 0.3s ease-in-out;
  float: left;
  height: 0.6em;
  content: "";
}
h3.in-view::before, .h3.in-view::before {
  transition: width 0.6s ease-out, margin 0.3s ease-in-out;
  width: 4.3333333333vw;
  border-bottom: 1px solid #fff;
  margin-right: 1.4444444444vw;
}
h4, .h4 {
  font-size: 0.8rem;
  line-height: 150%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h5, .h5 {
  font-size: 0.7rem;
  line-height: 150%;
}
strong {
  font-weight: 800;
}
.button, a.button {
  font-size: 0.7rem;
  padding: 8px 15px;
  text-transform: uppercase;
  line-height: 110%;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05rem;
  display: inline-block;
  transition: transform 0.3s ease-in-out, background-color 1s ease-in-out;
}
@media screen and (min-width: 450px) {
  .button, a.button {
    font-size: 0.7rem;
    line-height: 110%;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1100px) {
  .button, a.button {
    font-size: 0.8rem;
    line-height: 140%;
    padding: 12px 30px;
  }
}
.button:hover, a.button:hover {
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.6);
}
a, a:hover, a:visited, a:active {
  color: #fff;
  text-decoration: none;
}
.current-menu-item a, .project-name {
  font-weight: 800;
}
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.module-slider .slide.active {
  opacity: 1;
  z-index: 3;
}
.module-slider .slide.last-active {
  opacity: 1;
  z-index: 2;
}
.module-projects-slider {
  background: linear-gradient(to bottom, #111, rgba(20, 20, 20, 0));
  margin-top: 8.6666666667vw;
  margin-bottom: 8.6666666667vw;
  overflow: hidden;
}
.module-projects-slider .slide {
  position: absolute;
  height: 60%;
  width: 25%;
  top: -80px;
  transition: left 1s ease-in-out, right 1s ease-in-out, height 1s ease-in-out, opacity 1s ease-in-out, width 1s ease-in-out, top 1s ease-in-out;
  opacity: 0;
  left: -50%;
}
.module-projects-slider .slide-text {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.module-projects-slider .slide img {
  height: calc(90%);
  display: block;
}
.module-projects-slider .slide.active {
  opacity: 1;
  left: 30%;
  width: 40vw;
  height: 100%;
  top: 0;
}
.module-projects-slider .slide.active .slide-text {
  opacity: 1;
}
.module-projects-slider .slide-text {
  width: 40vw;
}
.module-projects-slider .slide.next-next-active {
  left: 150%;
}
.module-projects-slider .slide.next-active {
  opacity: 0.8;
  left: 75%;
  width: 25%;
  top: 0;
}
.module-projects-slider .slide.last-active {
  opacity: 0.8;
  left: 0;
  width: 25%;
  top: 0;
}
.module-projects-slider .controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 10vw;
  box-sizing: border-box;
}
.module-projects-slider .slide-prev, .module-projects-slider .slide-next {
  width: 5vw;
  height: 5vw;
  width: min(5vw, 50px);
  height: min(5vw, 50px);
}
.module-projects-slider .slide-prev {
  float: left;
}
.module-projects-slider .slide-next {
  float: right;
}
@media screen and (max-width: 1100px) {
  .module-projects-slider .slide {
    width: 20%;
  }
  .module-projects-slider .slide.next-active {
    width: 20%;
    left: 85%;
  }
  .module-projects-slider .slide.last-active {
    width: 20%;
    left: -5%;
  }
  .module-projects-slider .slide.active {
    left: 20%;
    width: 60%;
  }
}
.slider-logo {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2vw;
}
.slider-logo .slider-logo-img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
body {
  background-color: #000;
}
.clearfix {
  display: table;
  clear: both;
}
.img-12 {
  width: 100%;
}
.module-text-2-columns + .module-image.width-12 {
  padding-top: 0;
}
.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.height-auto.module-image img {
  height: auto;
}
.module {
  padding: 4.3333333333vw 2vw;
  padding: max(40px, 4.3333333333vw) 2vw;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .module:nth-child(2n) {
    margin-left: auto;
  }
}
.text-wrap {
  padding: 4.3333333333vw;
  max-width: 800px;
  box-sizing: border-box;
}
.module-vertical-divider {
  width: 1px;
  background: #fff;
  box-sizing: content-box;
  margin: 8.6666666667vw 0;
}
.module-spacer {
  width: 100%;
  height: 8.6666666667vw;
}
.width-1 {
  width: 8.6666666667vw;
}
.width-2 {
  width: 17.3333333333vw;
}
.width-3 {
  width: 26vw;
}
.width-4 {
  width: 34.6666666667vw;
}
.width-5 {
  width: 43.3333333333vw;
}
.width-6 {
  width: 52vw;
}
.width-7 {
  width: 60.6666666667vw;
}
.width-8 {
  width: 69.3333333333vw;
}
.width-9 {
  width: 78vw;
}
.width-10 {
  width: 86.6666666667vw;
}
.width-11 {
  width: 95.3333333333vw;
}
@media screen and (max-width: 1100px) {
  .width-1 {
    width: 17.3333333333vw;
  }
  .width-2 {
    width: 26vw;
  }
  .width-3 {
    width: 34.6666666667vw;
  }
  .width-4 {
    width: 43.3333333333vw;
  }
  .width-5 {
    width: 52vw;
  }
  .width-6 {
    width: 60.6666666667vw;
  }
  .width-7 {
    width: 69.3333333333vw;
  }
  .width-8 {
    width: 78vw;
  }
  .width-9 {
    width: 86.6666666667vw;
  }
  .width-10 {
    width: 95.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .width-1 {
    width: 26vw;
  }
  .width-2 {
    width: 34.6666666667vw;
  }
  .width-3 {
    width: 43.3333333333vw;
  }
  .width-4 {
    width: 52vw;
  }
  .width-5 {
    width: 60.6666666667vw;
  }
  .width-6 {
    width: 69.3333333333vw;
  }
  .width-7 {
    width: 78vw;
  }
  .width-8 {
    width: 86.6666666667vw;
  }
  .width-9 {
    width: 95.3333333333vw;
  }
}
@media screen and (max-width: 450px) {
  .width-1 {
    width: 43.3333333333vw;
  }
  .width-2 {
    width: 52vw;
  }
  .width-3 {
    width: 60.6666666667vw;
  }
  .width-4 {
    width: 69.3333333333vw;
  }
  .width-5 {
    width: 78vw;
  }
  .width-6 {
    width: 86.6666666667vw;
  }
  .width-7 {
    width: 95.3333333333vw;
  }
}
.height-1 {
  height: 8.6666666667vw;
}
.height-2 {
  height: 17.3333333333vw;
}
.height-3 {
  height: 26vw;
}
.height-4 {
  height: 34.6666666667vw;
}
.height-5 {
  height: 43.3333333333vw;
}
.height-6 {
  height: 52vw;
}
.height-7 {
  height: 60.6666666667vw;
}
.height-8 {
  height: 69.3333333333vw;
}
.height-9 {
  height: 78vw;
}
.height-10 {
  height: 86.6666666667vw;
}
.height-11 {
  height: 95.3333333333vw;
}
@media screen and (min-width: 450px) {
  .pos-left-2 {
    margin-left: 8.6666666667vw;
  }
  .pos-left-3 {
    margin-left: 8.6666666667vw;
  }
  .pos-left-4 {
    margin-left: 17.3333333333vw;
  }
  .pos-left-5 {
    margin-left: 26vw;
  }
  .pos-left-6 {
    margin-left: 34.6666666667vw;
  }
  .pos-left-7 {
    margin-left: 43.3333333333vw;
  }
  .pos-left-8 {
    margin-left: 52vw;
  }
  .pos-left-9 {
    margin-left: 60.6666666667vw;
  }
  .pos-left-10 {
    margin-left: 69.3333333333vw;
  }
  .pos-left-11 {
    margin-left: 78vw;
  }
}
@media screen and (min-width: 750px) {
  .pos-left-3 {
    margin-left: 8.6666666667vw;
  }
  .pos-left-4 {
    margin-left: 17.3333333333vw;
  }
  .pos-left-5 {
    margin-left: 26vw;
  }
  .pos-left-6 {
    margin-left: 34.6666666667vw;
  }
  .pos-left-7 {
    margin-left: 43.3333333333vw;
  }
  .pos-left-8 {
    margin-left: 52vw;
  }
  .pos-left-9 {
    margin-left: 60.6666666667vw;
  }
  .pos-left-10 {
    margin-left: 69.3333333333vw;
  }
  .pos-left-11 {
    margin-left: 78vw;
  }
}
@media screen and (min-width: 1100px) {
  .pos-left-1 {
    margin-left: 8.6666666667vw;
  }
  .pos-left-2 {
    margin-left: 17.3333333333vw;
  }
  .pos-left-3 {
    margin-left: 26vw;
  }
  .pos-left-4 {
    margin-left: 34.6666666667vw;
  }
  .pos-left-5 {
    margin-left: 43.3333333333vw;
  }
  .pos-left-6 {
    margin-left: 52vw;
  }
  .pos-left-7 {
    margin-left: 60.6666666667vw;
  }
  .pos-left-8 {
    margin-left: 69.3333333333vw;
  }
  .pos-left-9 {
    margin-left: 78vw;
  }
  .pos-left-10 {
    margin-left: 86.6666666667vw;
  }
  .pos-left-11 {
    margin-left: 95.3333333333vw;
  }
}
@media screen and (min-width: 1100px) {
  .module.pos-up-1 {
    transform: translateY(-0.3333333333vw);
    margin-bottom: -4.3333333333vw;
  }
  .module.above-screen.pos-up-1 {
    transform: translateY(-8.3333333333vw);
  }
  .module.in-view.pos-up-1 {
    transform: translateY(-4.3333333333vw);
  }
  .module.module-image.pos-up-1 {
    transform: translateX(40px) scale(0.9) translateY(-0.3333333333vw);
  }
  .module.module-image.pos-up-1:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(-0.3333333333vw);
  }
  .module.module-image.above-screen.pos-up-1 {
    transform: translateX(-40px) scale(0.9) translateY(-8.3333333333vw);
  }
  .module.module-image.pos-up-1:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(-0.3333333333vw);
  }
  .module.module-image.in-view.pos-up-1 {
    transform: translateX(0) scale(1) translateY(-4.3333333333vw);
  }
  .module.pos-up-2 {
    transform: translateY(-4.6666666667vw);
    margin-bottom: -8.6666666667vw;
  }
  .module.above-screen.pos-up-2 {
    transform: translateY(-12.6666666667vw);
  }
  .module.in-view.pos-up-2 {
    transform: translateY(-8.6666666667vw);
  }
  .module.module-image.pos-up-2 {
    transform: translateX(40px) scale(0.9) translateY(-4.6666666667vw);
  }
  .module.module-image.pos-up-2:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(-4.6666666667vw);
  }
  .module.module-image.above-screen.pos-up-2 {
    transform: translateX(-40px) scale(0.9) translateY(-12.6666666667vw);
  }
  .module.module-image.pos-up-2:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(-4.6666666667vw);
  }
  .module.module-image.in-view.pos-up-2 {
    transform: translateX(0) scale(1) translateY(-8.6666666667vw);
  }
  .module.pos-up-3 {
    transform: translateY(-9vw);
    margin-bottom: -13vw;
  }
  .module.above-screen.pos-up-3 {
    transform: translateY(-17vw);
  }
  .module.in-view.pos-up-3 {
    transform: translateY(-13vw);
  }
  .module.module-image.pos-up-3 {
    transform: translateX(40px) scale(0.9) translateY(-9vw);
  }
  .module.module-image.pos-up-3:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(-9vw);
  }
  .module.module-image.above-screen.pos-up-3 {
    transform: translateX(-40px) scale(0.9) translateY(-17vw);
  }
  .module.module-image.pos-up-3:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(-9vw);
  }
  .module.module-image.in-view.pos-up-3 {
    transform: translateX(0) scale(1) translateY(-13vw);
  }
  .module.pos-down-1 {
    transform: translateY(8.3333333333vw);
  }
  .module.above-screen.pos-down-1 {
    transform: translateY(0.3333333333vw);
  }
  .module.in-view.pos-down-1 {
    transform: translateY(4.3333333333vw);
  }
  .module.module-image.pos-down-1 {
    transform: translateX(40px) scale(0.9) translateY(8.3333333333vw);
  }
  .module.module-image.pos-down-1:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(8.3333333333vw);
  }
  .module.module-image.above-screen.pos-down-1 {
    transform: translateX(-40px) scale(0.9) translateY(0.3333333333vw);
  }
  .module.module-image.pos-down-1:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(8.3333333333vw);
  }
  .module.module-image.in-view.pos-down-1 {
    transform: translateX(0) scale(1) translateY(4.3333333333vw);
  }
  .module.pos-down-2 {
    transform: translateY(12.6666666667vw);
  }
  .module.above-screen.pos-down-2 {
    transform: translateY(4.6666666667vw);
  }
  .module.in-view.pos-down-2 {
    transform: translateY(8.6666666667vw);
  }
  .module.module-image.pos-down-2 {
    transform: translateX(40px) scale(0.9) translateY(12.6666666667vw);
  }
  .module.module-image.pos-down-2:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(12.6666666667vw);
  }
  .module.module-image.above-screen.pos-down-2 {
    transform: translateX(-40px) scale(0.9) translateY(4.6666666667vw);
  }
  .module.module-image.pos-down-2:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(12.6666666667vw);
  }
  .module.module-image.in-view.pos-down-2 {
    transform: translateX(0) scale(1) translateY(8.6666666667vw);
  }
  .module.pos-down-3 {
    transform: translateY(17vw);
  }
  .module.above-screen.pos-down-3 {
    transform: translateY(9vw);
  }
  .module.in-view.pos-down-3 {
    transform: translateY(13vw);
  }
  .module.module-image.pos-down-3 {
    transform: translateX(40px) scale(0.9) translateY(17vw);
  }
  .module.module-image.pos-down-3:nth-child(2n) {
    transform: translateX(-40px) scale(0.9) translateY(17vw);
  }
  .module.module-image.above-screen.pos-down-3 {
    transform: translateX(-40px) scale(0.9) translateY(9vw);
  }
  .module.module-image.pos-down-3:nth-child(2n) {
    transform: translateX(40px) scale(0.9) translateY(17vw);
  }
  .module.module-image.in-view.pos-down-3 {
    transform: translateX(0) scale(1) translateY(13vw);
  }
}
.height-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-10 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-11 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height-1 {
  height: 7.5vh;
}
.height-2 {
  height: 15vh;
}
.height-3 {
  height: 22.5vh;
}
.height-4 {
  height: 30vh;
}
.height-5 {
  height: 37.5vh;
}
@media screen and (min-width: 450px) {
  .height-1 {
    height: 22.5vh;
  }
  .height-2 {
    height: 30vh;
  }
  .height-3 {
    height: 37.5vh;
  }
  .height-4 {
    height: 45vh;
  }
  .height-5 {
    height: 52.5vh;
  }
  .height-6 {
    height: 60vh;
  }
  .height-7 {
    height: 67.5vh;
  }
  .height-8 {
    height: 75vh;
  }
  .height-9 {
    height: 82.5vh;
  }
  .height-10 {
    height: 90vh;
  }
  .height-11 {
    height: 97.5vh;
  }
}
@media screen and (min-width: 750px) {
  .height-1 {
    height: 37.5vh;
  }
  .height-2 {
    height: 45vh;
  }
  .height-3 {
    height: 52.5vh;
  }
  .height-4 {
    height: 60vh;
  }
  .height-5 {
    height: 67.5vh;
  }
  .height-6 {
    height: 75vh;
  }
  .height-7 {
    height: 82.5vh;
  }
  .height-8 {
    height: 90vh;
  }
  .height-9 {
    height: 97.5vh;
  }
  .height-10 {
    height: 105vh;
  }
  .height-11 {
    height: 112.5vh;
  }
}
@media screen and (min-width: 1100px) {
  .height-1 {
    height: 45vh;
  }
  .height-2 {
    height: 52.5vh;
  }
  .height-3 {
    height: 60vh;
  }
  .height-4 {
    height: 67.5vh;
  }
  .height-5 {
    height: 75vh;
  }
  .height-6 {
    height: 82.5vh;
  }
  .height-7 {
    height: 90vh;
  }
  .height-8 {
    height: 97.5vh;
  }
  .height-9 {
    height: 105vh;
  }
  .height-10 {
    height: 112.5vh;
  }
  .height-11 {
    height: 120vh;
  }
}
@media screen and (min-width: 1400px) {
  .height-1 {
    height: 52.5vh;
  }
  .height-2 {
    height: 60vh;
  }
  .height-3 {
    height: 67.5vh;
  }
  .height-4 {
    height: 75vh;
  }
  .height-5 {
    height: 82.5vh;
  }
  .height-6 {
    height: 90vh;
  }
  .height-7 {
    height: 97.5vh;
  }
  .height-8 {
    height: 105vh;
  }
  .height-9 {
    height: 112.5vh;
  }
  .height-10 {
    height: 120vh;
  }
  .height-11 {
    height: 127.5vh;
  }
}
.module {
  float: left;
  position: relative;
  transition: opacity 0.9s ease-in, transform 0.8s ease-out;
  opacity: 0.3;
  transform: translateY(4vh);
  box-sizing: border-box;
}
.module.above-screen {
  transform: translateY(-4vh);
}
.module.in-view {
  opacity: 1;
  transform: none;
}
.module.module-image {
  transform: translateX(-40px) scale(0.9) translateY(4vh);
}
.module.module-image.above-screen {
  transform: translateX(-40px) scale(0.9) translateY(-4vh);
}
.module.module-image:nth-child(2n) {
  transform: translateX(40px) scale(0.9) translateY(4vh);
}
.module.module-image.above-screen:nth-child(2n) {
  transform: translateX(40px) scale(0.9) translateY(-4vh);
}
.module.module-image.in-view {
  opacity: 1;
  transform: none;
}
.scroll-reveil {
  transition: opacity 0.6s ease-in, transform 0.8s ease-out;
  opacity: 0.3;
  transform: translateY(4vh);
}
.scroll-reveil.in-view {
  opacity: 1;
  transform: translateY(0);
}
.title-image-box {
  border-right: 1.0833333333vw solid transparent;
}
.title-image {
  height: auto;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 6px;
}
main {
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(to right, #000, #111);
  background-attachment: fixed;
  min-height: calc(100vh - 80px);
}
.content-container {
  display: flex;
  flex-flow: wrap;
  width: 104vw;
  margin: 0 -2vw 0 -2vw;
}
.module.width-12:first-child {
  padding-top: 0;
}
.title-image-box {
  box-sizing: border-box;
}
.title-image-box, .title-image-text-box {
  float: left;
  position: relative;
}
.title-image-box h2, .title-image-text-box h2 {
  font-size: 2.5rem;
}
.title-image-text-box {
  margin-top: calc(100vw / 8);
  margin-bottom: calc(100vw / 24);
  margin-left: -4.3333333333vw;
  transition: transform 0.8s ease-out;
  transform: translateX(calc(-4.3333333333vw));
}
.module-title-image {
  padding: 0;
}
@media screen and (max-width: 1100px) {
  .module-title-image {
    padding: 0 2vw;
  }
  .title-image-text-box {
    margin-left: 17.3333333333vw;
    margin-right: 8.6666666667vw;
    margin-top: -4.3333333333vw;
    transform: translateX(0);
    width: auto;
  }
}
.module-title-image.in-view .title-image-text-box {
  transform: translateX(0);
}
.title-image-text-box h1, .title-image-text-box h2 {
  margin-bottom: 2.8888888889vw;
}
.title-image-text-box p {
  margin-top: 10px;
  transition: margin 0.8s ease-out opacity 2s ease-in-out;
  z-index: 1;
  max-width: 500px;
  margin-left: calc(4.3333333333vw);
  opacity: 0.3;
}
.title-image-text-box p.p3 {
  max-width: 900px;
  color: #fff;
}
.module-title-image.in-view .title-image-text-box p {
  margin-left: 8.6666666667vw;
  opacity: 1;
}
.title-image-gradient {
  position: absolute;
  top: 0;
  left: 40%;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 1100px) {
  .title-image-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
    left: 0;
    top: 40%;
  }
}
.module-title-image .button {
  margin-top: 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .module-title-image .button {
    margin-top: 10px;
  }
}
.module-text-2-columns {
  border-bottom: 2px solid #111;
}
.module-text-2-columns .cols {
  position: relative;
  display: flex;
  margin: 0;
}
@media screen and (min-width: 1600px) {
  .module-text-2-columns .cols {
    max-width: 1600px;
    margin: 0 auto;
  }
}
.module-text-2-columns .column-left, .module-text-2-columns .column-right {
  width: 80%;
  float: left;
  padding: 4.3333333333vw;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 750px) {
  .module-text-2-columns .column-left, .module-text-2-columns .column-right {
    width: 50%;
  }
}
.module-text-2-columns.column-width-33-66 .column-left {
  width: 33.33%;
}
.module-text-2-columns.column-width-33-66 .column-right {
  width: 66.66%;
}
.module-text-2-columns.column-width-66-33 .column-left {
  width: 66.66%;
}
.module-text-2-columns.column-width-66-33 .column-right {
  width: 33.33%;
}
.module-text-2-columns.divider-line .column-right::before {
  height: 0;
  display: table;
  content: "";
  position: absolute;
  top: 4.3333333333vw;
  left: 0;
  border-left: 1px solid #fff;
  transition: height 1s ease-in-out;
}
.module-text-2-columns.in-view.divider-line .column-right::before {
  height: calc(100% - 8.6666666667vw);
}
.module-text-2-columns .cols {
  margin-left: 8.6666666667vw;
}
@media screen and (max-width: 750px) {
  .module-text-2-columns .cols {
    display: block;
  }
  .module-text-2-columns .module-text-2-columns .column-left, .module-text-2-columns .module-text-2-columns .column-right {
    width: 100%;
    float: none;
    padding: 4.3333333333vw;
  }
  .module-text-2-columns .column-right {
    width: auto;
    padding-top: 0;
    margin-left: 8.6666666667vw;
  }
  .module-text-2-columns.divider-line .column-right::before {
    height: 100%;
    top: 0;
  }
}
@media screen and (min-width: 1100px) {
  .module-text-2-columns .cols {
    margin: 0 auto;
  }
}
.module-text-2-columns::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.project {
  padding: 0 2.1666666667vw 2.8888888889vw 2.1666666667vw;
  box-sizing: border-box;
  transition: transform 1.5s ease-out;
}
a.project:hover {
  transition: transform 0.5s ease-in;
  transform: scale(1.05);
}
@media screen and (min-width: 750px) {
  .project {
    width: 50%;
    float: left;
  }
}
a.project .project-label:after {
  content: "";
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  box-sizing: border-box;
  display: block;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 30px;
  top: 47%;
  transform-origin: center center;
  opacity: 0.1;
  transition: opacity 2s ease-in-out;
}
a:hover .project-label:after {
  opacity: 1;
}
.project-label {
  background: linear-gradient(-45deg, #222, transparent);
}
.slide .project-label {
  background: linear-gradient(45deg, #1a1a1a, transparent);
}
.project-label {
  position: relative;
  padding: 10px;
  margin: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-sizing: border-box;
}
a.project:hover .project-label::before {
  transition: opacity 0.5s ease-out;
  opacity: 1;
}
.project img {
  display: block;
  width: 100%;
  height: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}
.archive-projects {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.8666666667vw;
  box-sizing: border-box;
  min-height: 90vh;
  padding-top: 1.4444444444vw;
}
.project-categories-filter-wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 15px;
  margin-bottom: 30px;
  background: linear-gradient(to top, #000, transparent);
  position: sticky;
  top: 0px;
  z-index: 10;
  overflow: auto;
  border-bottom: 1px solid #111;
}
.project-categories-filter {
  width: max-content;
  margin: 0 auto;
}
.project-categories-filter a {
  border: 1px solid #222;
  color: #fff;
  padding: 6px 22px 5.5px;
  border-radius: 20px;
  font-size: 0.7rem;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
  user-select: none;
  transition: background 0.5s ease-out;
}
.project-categories-filter a:hover {
  background: #333;
  color: #fff;
}
.project-categories-filter a.active {
  border: 1px solid #222;
  background-color: #222;
  color: #fff;
}
.project-location {
  color: #fff;
}
.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fadein.in-view {
  opacity: 1;
}
.module-similar-posts {
  padding: 2.1666666667vw;
  background: linear-gradient(to bottom, #111, #000);
}
.module-similar-posts h3 {
  margin-bottom: 2.1666666667vw;
}
.module-similar-posts .project {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .module-similar-posts .project {
    width: 45%;
  }
}
@media screen and (min-width: 900px) {
  .module-similar-posts .project {
    width: 33%;
  }
}
.people-text-box {
  float: left;
  max-width: unset;
  width: 90%;
}
@media screen and (min-width: 750px) {
  .people-text-box {
    width: 65%;
  }
}
.people-wrap::after {
  clear: both;
  display: table;
  content: "";
}
.people {
  padding: 0 8.6666666667vw;
}
.people-wrap {
  max-width: 1400px;
  margin-bottom: 10vh;
  margin: 8.6666666667vw auto;
  background: linear-gradient(0deg, transparent, #111);
}
.project-info-box {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, #111 100%);
  margin: 2.1666666667vw auto;
  border-radius: 20px;
  max-width: 800px;
  max-width: min(90%, 800px);
}
.project-info-box div {
  break-inside: avoid;
}
@media screen and (min-width: 400px) {
  .project-info-box {
    column-count: 2;
  }
}
@media screen and (min-width: 1100px) {
  .project-info-box {
    column-count: 4;
    margin: 2.1666666667vw 0;
    max-width: unset;
  }
}
.project-info-box p {
  margin-bottom: 30px;
  text-wrap: balance;
}
.people-img-wrap {
  height: auto;
  width: 61%;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 750px) {
  .people-img-wrap {
    float: left;
    width: 33%;
    margin-left: 0;
  }
}
.people-img-wrap::after {
  content: "";
  display: block;
  padding-bottom: 110%;
}
@media screen and (min-width: 750px) {
  .people-img-wrap::after {
    padding-bottom: 130%;
  }
}
.people-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-in-out;
  border-radius: 6px;
}
.people-img.in-view {
  transform: translate(-30px, -30px);
}
.approach-wrapper {
  width: auto;
  margin: 0 2.5%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .approach-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1400px) {
  .approach-wrapper {
    margin: 0 auto;
    max-width: 1500px;
  }
}
.approach-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.approach-wrapper::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #111;
  position: absolute;
  position: absolute;
  left: 50%;
}
.approach-box {
  margin-bottom: 5vw;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .approach-box {
    width: 45%;
    margin: 2.5%;
  }
  .approach-box:nth-child(2n - 1) {
    margin-top: 20vh;
  }
}
.approach-box .in-view {
  opacity: 1;
}
.approach-box.module {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.approach-box-illu {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
  transition: transform 0.4s 0.2s ease-in-out, opacity 0.2s ease-out;
  transform: rotateX(40deg);
  opacity: 0;
  transform-origin: bottom;
}
.in-view .approach-box-illu {
  transform: translateX(0);
  opacity: 1;
}
.approach-box-text {
  background: linear-gradient(0deg, transparent, #111);
  margin: 0 5%;
  padding: 5%;
}
.home .menu-container-first-visit {
  animation: positionHomeMenu 1.3s ease-in-out forwards;
}
.module.module-video {
  overflow: hidden;
  transform: translateY(0);
  animation: positionHomeVideo 1.3s ease-in-out forwards;
}
@keyframes positionHomeMenu {
  from {
    margin-top: -100px;
  }
  to {
    margin-top: 0;
  }
}
@keyframes positionHomeVideo {
  from {
    height: calc(100vh);
  }
  to {
    height: calc(75vh - 90px);
  }
}
.module-video.module-video-home {
  padding-bottom: 0;
}
.module-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-video-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8.6666666667vw;
}
.home-video-title-wrap h1 {
  font-size: 4rem;
  line-height: 110%;
  max-width: max(600px, 30vw);
  margin-bottom: -1rem;
}
.home-video-text-wrap.text-wrap {
  min-height: 25vh;
  max-width: 1000px;
  padding: 0 8.6666666667vw 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .home-video-text-wrap.text-wrap {
    padding: 0 8.6666666667vw 8.6666666667vw;
  }
}
.press-container {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 4.3333333333vw;
  box-sizing: border-box;
}
.module.press-box {
  float: left;
  width: calc(90% - 8.6666666667vw);
  padding-right: 4.3333333333vw;
  margin: 4.3333333333vw 4.3333333333vw 8.6666666667vw 4.3333333333vw;
  padding: 0 2.1666666667vw 0 0;
}
@media screen and (min-width: 450px) {
  .module.press-box {
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .module.press-box {
    width: calc(66% - 8.6666666667vw);
    margin: 4.3333333333vw 4.3333333333vw 4.3333333333vw 4.3333333333vw;
  }
  .module.press-box:nth-child(2n) {
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .module.press-box {
    width: calc(50% - 8.6666666667vw);
  }
}
@media screen and (min-width: 1100px) {
  .press-box:nth-child(2n) {
    margin-top: 20%;
  }
}
.press-box-image {
  width: calc(100% - 4.3333333333vw);
  transform: translate(4.3333333333vw, -4.3333333333vw);
  position: relative;
  transition: transform 0.5s ease-in-out;
}
.in-view .press-box-image {
  transform: translate(2.1666666667vw, -2.1666666667vw);
}
.press-box-image:hover {
  transform: translate(2.8888888889vw, -2.8888888889vw);
}
.press-box-image::after {
  content: "";
  display: table;
  height: 0;
  padding-bottom: 61%;
}
.press-box-image h2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.press-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.press-box-image-wrap {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: 15%;
}
.press-box-text-wrap {
  background: linear-gradient(to right, #111, #000);
  border-radius: 10px;
  border-bottom: 1px solid transparent;
  transition: transform 1s ease-in-out;
}
.press-box-text-wrap:hover {
  transform: scale(1.05);
}
.press-box-caption {
  margin: 0 2.1666666667vw 2.1666666667vw 2.1666666667vw;
  position: relative;
  min-height: 20px;
}
@media screen and (max-width: 750px) {
  .press-box-caption {
    margin: 4.3333333333vw 4.3333333333vw 4.3333333333vw 4.3333333333vw;
  }
}
.press-box-image-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.press-box-project-link {
  position: absolute;
  right: 0;
  bottom: 0px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.press-box:hover .press-box-project-link {
  opacity: 1;
}
.press-box-logo {
  position: absolute;
  z-index: 3;
  width: 28%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: top left;
  top: 20%;
  left: 2vw;
  opacity: 0.7;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 750px) {
  .press-box-logo {
    top: 2vw;
  }
}
.module:hover .press-box-logo {
  opacity: 1;
}
.press-title {
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (min-width: 750px) {
  .press-title {
    margin-top: -5rem;
    min-height: 4rem;
  }
}
.gradient-up {
  background: linear-gradient(to top, #000, #131313);
}
.gradient-down {
  background: linear-gradient(to bottom, #000, #131313);
}
.gradient-left {
  background: linear-gradient(to left, #000, #131313);
}
.gradient-right {
  background: linear-gradient(to right, #000, #131313);
}
.footer-social-icons-wrap img {
  height: 15px;
  width: auto;
}
footer {
  background: #111;
  padding: 8.6666666667vw 2.1666666667vw;
  display: flex;
  justify-content: space-evenly;
}
.footer-social-icons-wrap {
  padding-top: 20px;
}
.footer-social-icons-wrap li {
  display: inline-block;
  margin: 5px;
}
.footer-name {
  margin-bottom: 20px;
}
.footer-menu-wrap {
  width: auto;
  padding: 0 4.3333333333vw;
  float: left;
  box-sizing: border-box;
  max-width: 600px;
  opacity: 0.3;
  transition: opacity 1s ease-in-out;
}
.in-view .footer-menu-wrap {
  transition: opacity 3s 1.5 ease-in;
  opacity: 1;
}
.footer-get-in-touch-wrap {
  float: left;
  padding: 0 4.3333333333vw;
  box-sizing: border-box;
  border-left: 1px solid #222;
  display: none;
  opacity: 0.3;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 750px) {
  .footer-get-in-touch-wrap {
    display: block;
  }
}
.in-view .footer-get-in-touch-wrap {
  transition: opacity 3s 1.5 ease-in;
  opacity: 1;
}
.footer-logo-wrap {
  float: left;
  box-sizing: border-box;
  display: none;
}
@media screen and (min-width: 1100px) {
  .footer-logo-wrap {
    display: block;
  }
  .footer-menu-wrap {
    border-left: 1px solid #222;
  }
}
#footer-menu {
  column-count: 1;
  width: 100%;
}
@media screen and (min-width: 450px) {
  #footer-menu {
    column-count: 2;
  }
}
#footer-menu li {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.footer-logo-img {
  margin-right: 4.3333333333vw;
  width: 200px;
}
footer .button {
  border: 0px;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 15px;
  background: #222;
}
input.search-field {
  padding: 20px 40px;
  margin: 8px 0;
  box-sizing: border-box;
  font-size: 2rem;
  color: #fff;
  background-color: #222;
  border: none;
  border-radius: 10px 0 0 10px;
  float: left;
  line-height: 100%;
  width: calc(100% - 90px);
}
@media screen and (max-width: 900px) {
  input.search-field {
    width: calc(100% - 70px);
    padding: 10px 20px;
  }
}
input.search-field:focus {
  outline: none;
}
input.search-submit {
  background-color: #000;
  border: none;
  color: #fff;
  border-radius: 0 10px 10px 0;
  padding: 20px 20px;
  display: inline-block;
  height: 2rem;
  float: left;
  margin: 8px 0;
  box-sizing: content-box;
  line-height: 100%;
  border: 2px solid #222;
  border-left: 0px;
}
@media screen and (max-width: 900px) {
  input.search-submit {
    padding: 10px 10px;
  }
}
input.search-submit:hover {
  border-color: #333;
  color: #fff;
}
.links-404 {
  display: flex;
  flex-wrap: wrap;
}
.link-404 {
  background: #111;
  padding: 20px;
  border: 1px solid #000;
  flex: 1 0;
  text-align: center;
}
.link-404:hover {
  background: #333;
}
.wrap-404 {
  padding: 20px;
}
.title-image-box {
  transform: translateX(-50px) scale(1.2);
  transition: transform 0.8s ease-out;
}
.in-view .title-image-box {
  transform: translateX(0px) scale(1);
}
.cky-consent-container .cky-consent-bar {
  box-shadow: unset !important;
}
button.cky-btn {
  border-radius: 30px;
  font-weight: 400;
  border: 1px solid #fff;
}
.project-tag-box .project-categories-filter {
  width: fit-content;
}
.project-tag-box a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 10px 30px;
}
.animated-logo-home {
  position: absolute;
  width: 30vh;
  right: 50px;
  top: 120px;
  z-index: 10;
  display: none;
}
@media screen and (min-width: 500px) {
  .animated-logo-home {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .animated-logo-home {
    display: block;
    top: 42vh;
    width: 50vh;
  }
}
@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    padding-right: 120px;
  }
  .sbid-logo {
    margin: 20px;
  }
}
.footer-logos {
  display: none;
}
@media screen and (min-width: 600px) {
  footer {
    padding-right: 120px;
  }
  .footer-logos {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    display: block;
  }
  .cyber-logo {
    width: 90px;
    margin: 0px 15px 20px;
  }
  .sbid-logo {
    width: 120px;
  }
  .cyber-logo img, .sbid-logo img {
    width: 100%;
  }
}
.text-wrap p {
  margin-bottom: 15px;
}
/*# sourceMappingURL=main.css.map */