:root {
  --text-color: #1D1E1B;
  --color-light: #F5F3F0;
  --color-dark: #404843;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  html,
  body {
    font-size: 14px;
  }
  html .container,
  body .container {
    padding: 0 1.5rem;
  }
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.8;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .gsap-reveal {
    opacity: 0;
  }
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Regular.woff2") format("woff2"), url("fonts/subset-Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Italic.woff2") format("woff2"), url("fonts/subset-Satoshi-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-MediumItalic.woff2") format("woff2"), url("fonts/subset-Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-LightItalic.woff2") format("woff2"), url("fonts/subset-Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Black.woff2") format("woff2"), url("fonts/subset-Satoshi-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Medium.woff2") format("woff2"), url("fonts/subset-Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-BlackItalic.woff2") format("woff2"), url("fonts/subset-Satoshi-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-BoldItalic.woff2") format("woff2"), url("fonts/subset-Satoshi-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Light.woff2") format("woff2"), url("fonts/subset-Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/subset-Satoshi-Bold.woff2") format("woff2"), url("fonts/subset-Satoshi-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
header {
  position: relative;
  z-index: 9;
}
header .container {
  position: relative;
}
header .container a.lang {
  position: absolute;
  right: 15px;
  top: 0px;
  color: #fff;
  font-size: 0.8rem;
  z-index: 9;
}
header .header-wrapper {
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 992px) {
  header .header-wrapper {
    min-height: 100px;
  }
}
header .header-wrapper ul.nav li.nav-item {
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 32%;
}
header .header-wrapper ul.nav li.nav-item:hover a, header .header-wrapper ul.nav li.nav-item.active a {
  border-color: #fff;
}
header .header-wrapper ul.nav li.nav-item .nav-link {
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  height: 100px;
  border-bottom: 3px solid transparent;
  align-items: center;
  padding: 0;
}
header .header-wrapper ul.nav li.nav-item .nav-link:hover {
  color: #fff;
}
header .header-wrapper nav.navbar-right ul.nav li.nav-item {
  justify-content: flex-end !important;
}
header .menu-button {
  width: 32px;
  height: 32px;
}
header .menu-button span {
  transition: 0.2s all;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

body.menu-open .menu-button span:first-child {
  transform: rotate(90deg);
}
body.menu-open .menu-button span:last-child {
  transform: rotate(-90deg);
}
body.menu-open .mobile-menu {
  top: 0;
  display: flex;
}

body.white-bg:not(.menu-open) header {
  filter: invert(1);
}

.mobile-menu {
  display: none;
  top: -100%;
  position: absolute;
  background-color: var(--random-color);
  width: 100%;
  height: 75%;
  min-height: 500px;
  left: 0;
  z-index: 6;
  justify-content: center;
  align-items: center;
}
.mobile-menu ul.nav {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile-menu ul.nav a {
  color: #fff;
  font-size: 2rem;
}

footer {
  background-color: var(--random-color, #404843);
  color: #fff;
  position: relative;
  z-index: 6;
}
footer .footer-menu {
  font-size: 1rem;
  opacity: 0.5;
}
footer a.pointer-end:after {
  background-image: url("../img/sea-pointer-w.svg");
}
@media screen and (max-width: 991px) {
  footer .footer-menu {
    font-size: 0.8rem;
  }
}

.page-contact footer .footer-upper {
  display: none !important;
}

a.return-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 999;
  transform: rotate(-90deg);
  background-color: var(--random-color);
  padding: 10px;
  display: none;
}

.scrolled a.return-top {
  display: block;
}

section h2 {
  font-size: 1.6rem;
}

.pointer {
  font-weight: bold;
  font-size: 1.7rem;
  display: inline-block;
}
.pointer:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 26px;
  background: url(../img/sea-pointer.svg) no-repeat;
}
@media screen and (max-width: 991px) {
  .pointer:before {
    width: 20px;
    height: 18px;
    background-size: 20px 18px;
  }
}

.pointer-end {
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-right: 40px;
}
.pointer-end:after {
  content: "";
  width: 18px;
  height: 26px;
  background: url(../img/sea-pointer.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: calc(100% - 20px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .pointer-end:after {
    width: 14px;
    height: 20px;
    left: calc(100% - 15px);
  }
}
.pointer-end.reverse {
  padding-left: 40px;
}
.pointer-end.reverse:after {
  content: "";
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

@keyframes scrollLogo {
  from {
    background-position: 0 0%;
  }
  to {
    background-position: 0 -400px;
  }
}
@keyframes fadeOut {
  to {
    visibility: hidden;
    pointer-events: none;
    top: -120%;
  }
}
.lightbox-modal[aria-hidden=true] {
  display: none;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.lightbox-container {
  background: #fff;
  padding: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  z-index: 1060;
  cursor: pointer;
}

.lightbox-content iframe,
.lightbox-content embed,
.lightbox-content img {
  width: 100%;
  max-width: 100%;
  min-width: 1000px;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
}

.entrance {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--random-color, #192231);
  animation: fadeOut 0.6s ease forwards;
  animation-delay: 2s;
}
.entrance .logo-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 400px;
  overflow: hidden;
  background-image: url("../img/logo-entrance.svg");
  background-repeat: repeat-y;
  background-size: auto 100%;
  background-position: 0 0%;
  animation: scrollLogo 0.5s ease-in-out 0.4s forwards;
}
.entrance .logo-wrapper img {
  width: 100%;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .entrance .logo-wrapper {
    width: 600px;
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .entrance .logo-wrapper {
    width: 300px;
    height: 100px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
}
.background-video video,
.background-video img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
}
.background-video .black-layer {
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}

section.home-about {
  background-color: #fff;
  margin-top: calc(100vh - 150px);
  font-size: 2rem;
  padding: 100px 0;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  section.home-about {
    font-size: 1.5rem;
    margin-top: calc(100vh - 50px);
  }
}

section.press {
  background-color: var(--color-light);
  position: relative;
  z-index: 2;
  padding: 20px 0;
}
section.press.home {
  padding: 100px 0;
}
section.press h1 {
  margin: 45px 0 75px 0;
  font-size: 3rem;
  font-weight: bold;
}
section.press .press-list .press-item {
  border-bottom: 1px solid #505050;
  display: flex;
  padding: 15px 0;
  transition: opacity 0.3s ease-in-out;
  align-items: center;
  min-height: 90px;
}
section.press .press-list .press-item:first-child {
  border-top: 1px solid #505050;
}
section.press .press-list .press-item .title {
  padding: 0 30px;
}
section.press .press-list .press-item .title a {
  max-width: 600px;
}
section.press .press-list .press-item .date {
  width: 80px;
  font-weight: 500;
}
section.press .press-list .press-item .source {
  width: 150px;
  margin-left: auto;
  font-weight: 900;
  text-align: right;
}
section.press .press-list .press-item .source a.pointer {
  font-size: inherit;
}
@media screen and (max-width: 991px) {
  section.press .press-list .press-item {
    flex-direction: column;
    align-items: flex-start;
  }
  section.press .press-list .press-item .title {
    padding: 0;
    margin-bottom: 10px;
  }
  section.press .press-list .press-item .date {
    width: auto;
    margin-bottom: 10px;
  }
  section.press .press-list .press-item .source {
    width: auto;
    text-align: left;
  }
}
section.press .press-list a:hover {
  opacity: 1;
}
section.press .press-list:hover .press-item:not(:hover) {
  opacity: 0.5;
}

.project-list .project-item {
  border-bottom: 1px solid #8C8C8C;
  font-size: 1rem;
  margin-bottom: 15px;
}
.project-list .project-item a {
  display: block;
  overflow: hidden;
}
.project-list .project-item a img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
  transition: all 1s ease-out;
  transform-origin: center center;
}
.project-list .project-item a:hover {
  opacity: 1;
}
.project-list .project-item a:hover img {
  transform: scale(1.1);
}
.project-list .project-item h3 {
  font-weight: 900;
  font-size: inherit;
}
.project-list .project-item p {
  color: #8C8C8C;
  margin-bottom: 0;
  font-size: 0.8rem;
}
.project-list .project-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}
.project-list .project-item__footer:after {
  content: "";
  height: 3px;
  width: 0px;
  background: #000;
  position: absolute;
  left: 0;
  top: calc(100% - 3px);
  transition: width 0.3s ease-in-out;
}
.project-list .project-item:hover .project-item__footer:after {
  width: 120px;
}
.project-list:hover .project-item:not(:hover) {
  filter: grayscale(100%);
}

section.project-hero {
  min-height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: -1;
}
section.project-hero .black-layer {
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}
section.project-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
section.project-hero .project-hero__content {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
}
section.project-hero .project-hero__content h1 {
  font-weight: 900;
  font-size: 3.5rem;
}
section.project-hero .project-hero__content p {
  font-weight: bold;
  font-size: 1.8rem;
}

section.project-details {
  margin-top: calc(100vh - 150px);
  background-color: #fff;
  padding: 50px 0 80px 0;
}
section.project-details .container {
  border-bottom: 1px solid #8C8C8C;
  padding-bottom: 30px;
}
section.project-details .container .col-left {
  color: rgba(29, 30, 27, 0.3764705882);
  font-size: 1.2rem;
}
section.project-details .container .col-right {
  font-size: 1.2rem;
}

.project-gallery {
  background-color: #fff;
}
.project-gallery .container {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.project-gallery .container .gallery-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1rem;
}
.project-gallery .container .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.project-navigation {
  padding-bottom: 50px;
  background-color: #fff;
}
.project-navigation .project-navigation-item {
  border-top: 1px solid #8C8C8C;
  border-bottom: 1px solid #8C8C8C;
  padding: 30px 0 15px 0;
}
.project-navigation .project-navigation-item h3 {
  font-weight: 900;
  font-size: 1.4rem;
}
.project-navigation .project-navigation-item p {
  color: #8C8C8C;
}

section.about-hero {
  min-height: 60vh;
  background-color: var(--random-color, #404843);
  padding-top: 200px;
  width: 100%;
  display: flex;
  color: #fff;
  margin-top: -180px;
  margin-bottom: 30px;
}
section.about-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin: 45px 0 75px 0;
}
section.about-hero p {
  font-size: 2rem;
  margin: 50px 0;
}

section.about-details {
  font-size: 1.5rem;
}
section.about-details h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}
section.about-details .founder {
  border-bottom: 1px solid #8C8C8C;
  padding-bottom: 30px;
}
section.about-details .founder h3 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 15px;
  margin-bottom: 0;
}
section.about-details .founder label {
  color: #8C8C8C;
  display: block;
  margin-bottom: 15px;
}
section.about-details .founder p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

section.contact-hero {
  background-color: var(--random-color, #404843);
  padding-top: 200px;
  margin-top: -180px;
  font-size: 1.5rem;
  color: #fff;
}
section.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}
section.contact-hero form.contact-form .form-group {
  margin-bottom: 20px;
}
section.contact-hero form.contact-form .form-group input,
section.contact-hero form.contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  color: #fff;
  font-size: 1.3rem;
}
section.contact-hero form.contact-form .form-group input::-moz-placeholder, section.contact-hero form.contact-form .form-group textarea::-moz-placeholder {
  color: #8C8C8C;
}
section.contact-hero form.contact-form .form-group input::placeholder,
section.contact-hero form.contact-form .form-group textarea::placeholder {
  color: #8C8C8C;
}
section.contact-hero form.contact-form .form-group input:focus,
section.contact-hero form.contact-form .form-group textarea:focus {
  border-color: #8C8C8C;
  outline: none;
  box-shadow: 0;
}
section.contact-hero form.contact-form .pointer-end {
  filter: brightness(100);
  color: #fff;
}/*# sourceMappingURL=main.css.map */