@charset "UTF-8";
/* Variables
-------------------------*/
/* Colors */
/* CSS Properties */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300..800&display=swap");
h1, h2, h3, h4, h5, p, ul li, ol li, a {
  color: inherit;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 400;
  hyphens: manual;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Host Grotesk", sans-serif;
  line-height: 1.25;
  font-weight: 350;
  margin-bottom: 0.65em;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, .h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong {
  font-weight: 500;
}

p, ul li, ol li, span, a {
  color: inherit;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 300;
}

.wysiwyg {
  color: #124C4B;
}
.wysiwyg.dark {
  color: #F5FFD1;
}
.wysiwyg h1, .wysiwyg .h1 {
  font-size: clamp(24px, 24px + (56 - 24) * (100vw - 320px) / (1440 - 320), 56px);
  line-height: 1.45;
}
.wysiwyg h2, .wysiwyg .h2 {
  font-size: clamp(22px, 22px + (50 - 22) * (100vw - 320px) / (1440 - 320), 50px);
  line-height: 1.45;
}
.wysiwyg h3, .wysiwyg .h3 {
  font-size: clamp(20px, 20px + (46 - 20) * (100vw - 320px) / (1440 - 320), 46px);
  line-height: 1.25;
}
.wysiwyg h4, .wysiwyg .h4 {
  font-size: clamp(18px, 18px + (28 - 18) * (100vw - 320px) / (1440 - 320), 28px);
  line-height: 1.25;
}
.wysiwyg h5, .wysiwyg .h5 {
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 320px) / (1440 - 320), 17px);
  line-height: 1.25;
}
.wysiwyg p, .wysiwyg ul li, .wysiwyg ol li, .wysiwyg a {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 320px) / (1440 - 320), 22px);
  line-height: 1.65;
}
.wysiwyg p strong, .wysiwyg ul li strong, .wysiwyg ol li strong, .wysiwyg a strong {
  font-weight: 500;
}

/* Elements
-------------------------*/
.grid-x.standard-grid {
  position: relative;
  width: 100%;
  max-width: 2000px;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
}

[data-reveal=fade] {
  opacity: var(--opacity, 0) !important;
  will-change: transform;
  transform: translateY(var(--vertical, 50px)) translateX(var(--horizontal, 0px)) scale(var(--scale, 1));
  transition: opacity var(--duration, 0.85s) ease calc(var(--delay, 0s) + 0.15s), transform var(--duration, 0.85s) ease calc(var(--delay, 0s) + 0.15s);
}
[data-reveal=fade].revealed {
  opacity: var(--to-opacity, 1) !important;
  transform: translateY(0px);
}

[data-reveal=heading] {
  opacity: 0;
}
[data-reveal=heading].revealed {
  opacity: 1;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.cta-btn:hover.light span.icon::before {
  transform: rotate(-45deg);
  transform: rotate(-45deg) translateX(2px);
}
.cta-btn:hover.light span.icon::after {
  transform: rotate(45deg);
  transform: rotate(45deg) translateX(-2px);
}
.cta-btn:hover span.icon::before {
  transform: rotate(-45deg) translateX(1px);
}
.cta-btn:hover span.icon::after {
  transform: rotate(45deg) translateX(-1px);
}
.cta-btn:hover span.text {
  transform: translateX(3px);
}
.cta-btn.light span.icon::before, .cta-btn.light span.icon::after {
  content: url("assets/images/cone-left.svg");
  transform-origin: left center;
}
.cta-btn.light span.text {
  color: #053d40;
}
.cta-btn span.icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  transition: 0.25s ease all;
}
.cta-btn span.icon::before {
  content: url("assets/images/cone-right.svg");
  position: relative;
  display: inline-block;
  height: 30px;
  transform-origin: right center;
  transition: 0.15s ease all;
}
.cta-btn span.icon::after {
  content: url("assets/images/cone-right.svg");
  position: relative;
  display: inline-block;
  height: 30px;
  transform-origin: right center;
  transition: 0.15s ease all;
}
.cta-btn span.text {
  font-family: "Host Grotesk", sans-serif;
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 320px) / (1440 - 320), 22px);
  color: #F5FFD1;
  height: 30px;
  line-height: 30px;
  font-weight: 450;
  will-change: transform;
  transition: 0.25s ease all;
}

html {
  scroll-behavior: smooth;
}

body {
  overscroll-behavior: contain;
  background-color: #F5FFD1;
  color: #000000;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: rgb(3.8913043478, 47.4739130435, 49.8086956522);
}
body::-webkit-scrollbar-thumb {
  background: rgb(20.929787234, 88.370212766, 87.2074468085);
}
body::-webkit-scrollbar-thumb:hover {
  background: rgb(22.8829787234, 96.6170212766, 95.3457446809);
}

/* Header
-----------------*/
header {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
header:has(.container:hover)::before {
  opacity: 1;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) all;
  pointer-events: none;
  z-index: 1;
}
header .container {
  position: relative;
  margin-bottom: 25px;
  max-width: 800px;
  height: 50px;
  padding: 10px 20px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
header .container:hover .hamburger .text .menu {
  opacity: 0;
}
header .container:hover .hamburger .text .open {
  opacity: 1;
}
header .container:hover .hamburger .text .close {
  opacity: 0;
}
header .container.active::before {
  background-color: #39B6A8;
}
header .container.active .hamburger .text .menu {
  opacity: 0;
}
header .container.active .hamburger .text .open {
  opacity: 0;
}
header .container.active .hamburger .text .close {
  opacity: 1;
}
header .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #44A0A0;
  border-radius: 2px;
  z-index: 2;
}
header .container .logo {
  position: relative;
  z-index: 3;
}
header .container .hamburger {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}
header .container .hamburger.active .icon .line.line-1 {
  transform: rotate(-30deg);
}
header .container .hamburger.active .icon .line.line-2 {
  opacity: 0;
}
header .container .hamburger.active .icon .line.line-3 {
  transform: rotate(30deg);
}
header .container .hamburger .text {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1.1em;
  margin-right: 10px;
  display: grid;
  justify-content: flex-end;
  text-align: right;
}
header .container .hamburger .text span {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transition: 0.25s ease all;
}
header .container .hamburger .text .menu {
  opacity: 1;
}
header .container .hamburger .icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  height: 25px;
  padding: 7px;
  background-color: #88EEA6;
  border-radius: 2px;
  position: relative;
}
header .container .hamburger .icon .line {
  position: absolute;
  top: 50%;
  left: calc(50% - 15px);
  height: 1px;
  width: 30px;
  background-color: #39B6A8;
  transform-origin: 50% 50%;
  transition: 0.25s ease all;
}
header .container .hamburger .icon .line.line-1 {
  transform: translateY(-6px);
}
header .container .hamburger .icon .line.line-3 {
  transform: translateY(6px);
}

nav {
  position: absolute;
  bottom: 49px;
  width: 150%;
  max-width: 89.9vw;
  left: 50%;
  transform: translateX(-50%) scale(0.5) translateY(50px);
  transform-origin: bottom center;
  background-color: #39B6A8;
  background: linear-gradient(to top, #39B6A8, rgb(32.6489361702, 137.8510638298, 136.0372340426));
  border-radius: 4px;
  padding: 50px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease all;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-user-select: none;
          user-select: none;
}
nav.active {
  transform: translateX(-50%) scale(1) translateY(5px);
  opacity: 1;
  pointer-events: auto;
}
nav.active ul li {
  opacity: 1;
  transform: translateY(0px);
  transition: 0.35s ease all;
}
nav.active .image-container {
  opacity: 1;
  transform: translateY(0%);
}
nav ul {
  list-style: none;
  margin: 0;
}
nav ul li {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.15s ease all;
}
nav ul li:nth-child(1) {
  transition-delay: calc(0.075s * 1 + 0.1s);
}
nav ul li:nth-child(2) {
  transition-delay: calc(0.075s * 2 + 0.1s);
}
nav ul li:nth-child(3) {
  transition-delay: calc(0.075s * 3 + 0.1s);
}
nav ul li:nth-child(4) {
  transition-delay: calc(0.075s * 4 + 0.1s);
}
nav ul li:nth-child(5) {
  transition-delay: calc(0.075s * 5 + 0.1s);
}
nav ul li a {
  display: inline-block;
  font-size: 3.25em;
  font-weight: 400;
  color: #88EEA6;
  transition: 0.25s ease all;
}
nav ul li a:hover {
  color: #FFFFFF;
  font-weight: 500;
  transform: translateX(5px);
}
nav .image-container {
  justify-self: flex-end;
  opacity: 0;
  transform: translateY(35%) scale(0.9);
  transition: 0.45s ease all;
}

/* Content
-----------------*/
section {
  position: relative;
  overflow: hidden;
}
section.gradient-bg {
  background: linear-gradient(to right, #F5FFD1, #88EEA6);
}
section.green {
  background-color: #053D40;
}
section.lighter {
  background-color: #124C4B;
}
section video {
  mask-image: radial-gradient(closest-side, black, black, transparent);
}

section.home.intro {
  padding-top: clamp(25px, 5vw, 70px);
  padding-bottom: clamp(25px, 5vw, 70px);
  background: linear-gradient(to right, rgba(136, 238, 166, 0.65) 0%, #F5FFD1 50%);
  min-height: 100svh;
  display: flex;
  align-items: center;
}
section.home.intro .cell {
  min-width: 0;
}
section.home.intro .text-container {
  display: flex;
  align-items: center;
}
section.home.intro .text-container h1 {
  width: 100%;
}
section.home.intro .text-container .illustration {
  position: absolute;
  transform: translateY(-50%);
}
section.home.intro .text-container .illustration svg {
  overflow: visible;
}
section.home.intro .text-container .illustration svg .shape-1 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.intro .text-container .illustration svg .shape-2 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.intro .image-container video {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
section.home.text {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.text.lighter .standard-grid {
  align-items: center;
}
section.home.text .standard-grid {
  row-gap: clamp(45px, 12vw, 150px);
  align-items: center;
}
section.home.text .wysiwyg.dark {
  position: relative;
  color: #F5FFD1;
  z-index: 2;
}
section.home.text video {
  object-fit: cover;
}
section.home.text .illustration {
  position: absolute;
  top: 0;
  right: 100px;
  z-index: 0;
}
section.home.text .illustration svg {
  overflow: visible;
}
section.home.text .illustration svg .shape-1 {
  fill: none;
  stroke: #1D6868;
  stroke-width: 0.15;
}
section.home.text .illustration svg .shape-2 {
  fill: none;
  stroke: #1D6868;
  stroke-width: 0.15;
}
section.home.projects {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.projects .illustration {
  position: absolute;
  transform: translateY(-25%);
  right: 100px;
}
section.home.projects .illustration svg {
  overflow: visible;
}
section.home.projects .illustration svg .shape-1 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.projects .illustration svg .shape-2 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.projects .wysiwyg {
  padding-bottom: clamp(30px, 8vw, 100px);
}
section.home.projects .project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
section.home.projects .project-card {
  border: 1px solid #053D40;
  padding: 10px;
  margin-bottom: 20px;
}
section.home.projects .project-card .image-container img {
  aspect-ratio: 65/25;
  object-fit: cover;
  width: 100%;
}
section.home.projects .project-card .text-button-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
}
section.home.projects .project-card .text-button-container h4 {
  color: #124C4B;
  max-width: 80%;
}
section.home.projects .project-card .text-button-container a {
  border: 1px solid #053D40;
  color: #053D40;
  padding: 20px 25px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
section.home.projects .project-card .text-button-container a:hover {
  background-color: #053D40;
  color: #F5FFD1;
}
section.home.partners {
  padding-top: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.partners .illustration {
  position: absolute;
  transform: translateY(-25%);
  opacity: 0.5;
  right: 0;
  z-index: -1;
}
section.home.partners .illustration svg {
  overflow: visible;
}
section.home.partners .illustration svg .shape-1 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.partners .illustration svg .shape-2 {
  fill: none;
  stroke: #F5FFD1;
  stroke-width: 0.15;
}
section.home.partners .grid-x {
  align-items: center;
}
section.home.partners .grid-x h2 {
  position: relative;
  z-index: 2;
}
section.home.partners .partner-slider-wrap {
  display: grid;
  align-items: center;
}
section.home.partners .partner-slider-wrap .partner-slider {
  overflow: hidden;
  grid-row: 1;
  grid-column: 1;
  mask-image: linear-gradient(to right, transparent 0%, white 20%, white 80%, transparent 100%);
}
section.home.partners .partner-slider-wrap .partner-slider .panel {
  width: 100%;
  min-width: 180px;
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home.partners .partner-slider-wrap .partner-slider .panel img {
  height: 50px;
  width: auto;
}
section.home.partners .partner-slider-wrap .partner-slider-controls {
  grid-row: 1;
  grid-column: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}
section.home.partners .partner-slider-wrap .partner-slider-controls button {
  cursor: pointer;
  width: 50px;
  height: 20px;
  transition: 0.25s ease all;
  pointer-events: auto;
}
section.home.partners .partner-slider-wrap .partner-slider-controls button.js-partner-prev:hover {
  transform: translateX(-5px);
}
section.home.partners .partner-slider-wrap .partner-slider-controls button.js-partner-next:hover {
  transform: translateX(5px);
}
section.home.partners .partner-slider-wrap .partner-slider-controls button svg {
  width: 100%;
  height: 100%;
}

section.project.intro {
  padding-top: clamp(30px, 7vw, 90px);
  padding-bottom: clamp(35px, 7vw, 100px);
  background: linear-gradient(to right, #88EEA6, #F5FFD1);
}
section.project.intro .grid-x {
  align-items: center;
}
section.project.intro .text-container h1 {
  color: #124C4B;
  margin-bottom: 24px;
}
section.project.intro .text-container ul.project-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}
section.project.intro .text-container ul.project-meta li {
  color: rgba(18, 76, 75, 0.85);
  font-size: calc(clamp(16px, 16px + (22 - 16) * (100vw - 320px) / (1440 - 320), 22px) * 0.9);
  font-weight: 450;
}
section.project.intro .image-container img {
  width: calc(100% + 100px);
  max-width: none;
}
section.project.back-link {
  background: linear-gradient(to right, #88EEA6, #F5FFD1);
}
section.project.text {
  padding-top: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(30px, 8vw, 100px);
  background: linear-gradient(to right, #88EEA6, #F5FFD1);
}
section.project.text.text-1 {
  padding-top: clamp(15px, 4vw, 50px);
}
section.project.text.text-1 .grid-x {
  align-items: flex-end;
}
section.project.text.text-2 {
  padding-top: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.project.text.text-2 .grid-x {
  align-items: flex-end;
}
section.project.text .back-link {
  display: inline-flex;
  align-items: center;
  color: rgba(18, 76, 75, 0.9);
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 320px) / (1440 - 320), 15px);
  font-weight: 450;
  margin-bottom: clamp(30px, 5vw, 60px);
  text-transform: lowercase;
}
section.project.text .back-link::before {
  content: "❝";
  margin-right: 8px;
  color: #88EEA6;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / (1440 - 320), 24px);
  line-height: 1;
}
section.project.visual {
  padding-top: clamp(15px, 4vw, 50px);
  padding-bottom: clamp(15px, 4vw, 50px);
  background: linear-gradient(to right, #88EEA6, #F5FFD1);
}
section.project.visual .image-container img {
  width: 100%;
}

/* Footer
-----------------*/
footer {
  background-color: #053D40;
  padding-top: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(30px, 8vw, 100px);
}
footer .grid-x {
  align-items: center;
}
footer .image-container {
  grid-column: 1/span 5;
}
footer .image-container video {
  object-fit: cover;
  mask-image: radial-gradient(closest-side, black, black, transparent);
}
footer .text-container {
  grid-column: 7/span 4;
  color: #F5FFD1;
}
footer .text-container h3 {
  margin-bottom: 16px;
}
footer .text-container hr {
  width: 75%;
  border: none;
  border-bottom: 1px solid #88EEA6;
  margin-left: 0;
}
footer .text-container p {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / (1440 - 320), 18px);
  opacity: 0.9;
  margin-bottom: 24px;
}
footer .text-container ul.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
footer .text-container ul.footer-links li a {
  color: #F5FFD1;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 320px) / (1440 - 320), 16px);
  font-weight: 400;
  opacity: 0.85;
  transition: 0.25s ease all;
  display: flex;
  align-items: center;
}
footer .text-container ul.footer-links li a span.icon {
  margin-right: 15px;
}
footer .text-container ul.footer-links li a:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* Media Queries
-------------------------*/
@media screen and (min-width: 1026px) {
  .phablet {
    display: none !important;
  }
}
@media screen and (min-width: 642px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1025px) {
  .desktop-only {
    display: none !important;
  }
  .grid-x.standard-grid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
  .grid-x.standard-grid {
    padding-left: 35px;
    padding-right: 35px;
  }
  header .container {
    margin-bottom: 25px;
  }
  header nav {
    grid-template-columns: 1fr;
    padding: 35px;
  }
  header nav ul li a {
    font-size: 2.5em;
  }
  header nav .image-container {
    display: none;
  }
  section.home.intro {
    padding-top: 100px;
    min-height: auto;
  }
  section.home.partners .partner-slider-wrap .partner-slider .panel img {
    width: 60%;
  }
  section.home.projects .project-grid {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  section.home.projects .project-card .text-button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  section.home.projects .project-card .text-button-container h4 {
    max-width: 100%;
    margin-bottom: 10px;
  }
  section.home.projects .project-card .text-button-container a {
    text-align: center;
  }
  section.project.intro {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  section.project.intro .text-container {
    margin-bottom: 50px;
  }
  section.project.intro .image-container img {
    width: 100%;
  }
  section.project.back-link {
    padding-bottom: 50px;
  }
  section.project.text {
    padding: 35px 0;
  }
  section.project.text .cta-btn {
    padding-top: 35px;
  }
  footer {
    padding-bottom: 150px;
  }
}